From 20b17eceec39546022670d04325667dc33a750a1 Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Wed, 18 Oct 2017 20:55:28 -0500 Subject: [PATCH 001/227] Disentangles blob from blob mode/removes blob mode --- code/__DEFINES/role_preferences.dm | 2 +- code/game/gamemodes/blob/blob_finish.dm | 72 -------------------- code/game/gamemodes/blob/blob_report.dm | 3 + code/game/gamemodes/blob/blobs/core.dm | 35 +--------- code/game/gamemodes/blob/overmind.dm | 76 +++++++++++++++++----- code/game/gamemodes/blob/powers.dm | 3 +- code/game/gamemodes/blob/theblob.dm | 22 +++---- code/modules/admin/player_panel.dm | 10 +-- code/modules/admin/verbs/debug.dm | 5 +- code/modules/events/blob.dm | 32 +++++++++ code/modules/mob/dead/observer/observer.dm | 9 --- code/modules/mob/living/living.dm | 12 +--- code/modules/mob/transform_procs.dm | 4 +- config/game_options.txt | 3 + tgstation.dme | 2 - 15 files changed, 119 insertions(+), 171 deletions(-) delete mode 100644 code/game/gamemodes/blob/blob_finish.dm diff --git a/code/__DEFINES/role_preferences.dm b/code/__DEFINES/role_preferences.dm index ab62710652..39f28528d0 100644 --- a/code/__DEFINES/role_preferences.dm +++ b/code/__DEFINES/role_preferences.dm @@ -40,7 +40,7 @@ GLOBAL_LIST_INIT(special_roles, list( ROLE_ALIEN, ROLE_PAI, ROLE_CULTIST = /datum/game_mode/cult, - ROLE_BLOB = /datum/game_mode/blob, + ROLE_BLOB, ROLE_NINJA, ROLE_MONKEY = /datum/game_mode/monkey, ROLE_REVENANT, diff --git a/code/game/gamemodes/blob/blob_finish.dm b/code/game/gamemodes/blob/blob_finish.dm deleted file mode 100644 index 6d97fb52f9..0000000000 --- a/code/game/gamemodes/blob/blob_finish.dm +++ /dev/null @@ -1,72 +0,0 @@ -/datum/game_mode/blob/check_finished() - if(blobwincount <= GLOB.blobs_legit.len)//Blob took over - return 1 - for(var/datum/mind/blob in blob_overminds) - if(isovermind(blob.current)) - var/mob/camera/blob/B = blob.current - if(B.blob_core || !B.placed) - return 0 - if(!GLOB.blob_cores.len) //blob is dead - if(CONFIG_GET(keyed_flag_list/continuous)["blob"]) - message_sent = FALSE //disable the win count at this point - continuous_sanity_checked = 1 //Nonstandard definition of "alive" gets past the check otherwise - SSshuttle.clearHostileEnvironment(src) - return ..() - return 1 - return ..() - - -/datum/game_mode/blob/declare_completion() - if(round_converted) //So badmin blobs later don't step on the dead natural blobs metaphorical toes - ..() - if(blobwincount <= GLOB.blobs_legit.len) - SSticker.mode_result = "win - blob took over" - to_chat(world, "The blob has taken over the station!") - to_chat(world, "The entire station was eaten by the Blob!") - log_game("Blob mode completed with a blob victory.") - - SSticker.news_report = BLOB_WIN - - else if(station_was_nuked) - SSticker.mode_result = "halfwin - nuke" - to_chat(world, "Partial Win: The station has been destroyed!") - to_chat(world, "Directive 7-12 has been successfully carried out, preventing the Blob from spreading.") - log_game("Blob mode completed with a tie (station destroyed).") - - SSticker.news_report = BLOB_NUKE - - else if(!GLOB.blob_cores.len) - SSticker.mode_result = "loss - blob eliminated" - to_chat(world, "The staff has won!") - to_chat(world, "The alien organism has been eradicated from the station!") - log_game("Blob mode completed with a crew victory.") - - SSticker.news_report = BLOB_DESTROYED - - ..() - return 1 - -/datum/game_mode/blob/printplayer(datum/mind/ply, fleecheck) - if((ply in blob_overminds)) - var/text = "
[ply.key] was [ply.name]" - if(isovermind(ply.current)) - var/mob/camera/blob/B = ply.current - text += "([B.blob_reagent_datum.name]) and" - if(B.blob_core) - text += " survived" - else - text += " was destroyed" - else - text += " and was destroyed" - return text - return ..() - -/datum/game_mode/proc/auto_declare_completion_blob() - if(istype(SSticker.mode, /datum/game_mode/blob) ) - var/datum/game_mode/blob/blob_mode = src - if(blob_mode.blob_overminds.len) - var/text = "The blob[(blob_mode.blob_overminds.len > 1 ? "s were" : " was")]:" - for(var/datum/mind/blob in blob_mode.blob_overminds) - text += printplayer(blob) - to_chat(world, text) - return 1 diff --git a/code/game/gamemodes/blob/blob_report.dm b/code/game/gamemodes/blob/blob_report.dm index 519fc2e296..7f8a61ef90 100644 --- a/code/game/gamemodes/blob/blob_report.dm +++ b/code/game/gamemodes/blob/blob_report.dm @@ -1,3 +1,4 @@ +<<<<<<< HEAD /datum/game_mode/blob/send_intercept(report = 0) @@ -40,6 +41,8 @@ +======= +>>>>>>> be748e3... Disentangles blob from blob mode/removes blob mode (#31780) /datum/station_state var/floor = 0 var/wall = 0 diff --git a/code/game/gamemodes/blob/blobs/core.dm b/code/game/gamemodes/blob/blobs/core.dm index 3099b6f3f8..28be931f9b 100644 --- a/code/game/gamemodes/blob/blobs/core.dm +++ b/code/game/gamemodes/blob/blobs/core.dm @@ -9,7 +9,6 @@ point_return = -1 health_regen = 0 //we regen in Life() instead of when pulsed var/core_regen = 2 - var/overmind_get_delay = 0 //we don't want to constantly try to find an overmind, this var tracks when we'll try to get an overmind again var/resource_delay = 0 var/point_rate = 2 @@ -20,7 +19,7 @@ GLOB.poi_list |= src update_icon() //so it atleast appears if(!placed && !overmind) - create_overmind(new_overmind) + qdel(src) if(overmind) update_icon() point_rate = new_rate @@ -61,7 +60,7 @@ if(QDELETED(src)) return if(!overmind) - create_overmind() + qdel(src) else if(resource_delay <= world.time) resource_delay = world.time + 10 // 1 second @@ -75,33 +74,3 @@ B.change_to(/obj/structure/blob/shield/core, overmind) ..() - -/obj/structure/blob/core/proc/create_overmind(client/new_overmind, override_delay) - if(overmind_get_delay > world.time && !override_delay) - return - - overmind_get_delay = world.time + 150 //if this fails, we'll try again in 15 seconds - - if(overmind) - qdel(overmind) - - var/client/C = null - var/list/candidates = list() - - if(!new_overmind) - candidates = pollCandidatesForMob("Do you want to play as a blob overmind?", ROLE_BLOB, null, ROLE_BLOB, 50, src) //we're technically not a mob but behave similarly - if(candidates.len) - C = pick(candidates) - else - C = new_overmind - - if(C) - var/mob/camera/blob/B = new(src.loc, 1) - B.key = C.key - B.blob_core = src - src.overmind = B - update_icon() - if(B.mind && !B.mind.special_role) - B.mind.special_role = "Blob Overmind" - return 1 - return 0 diff --git a/code/game/gamemodes/blob/overmind.dm b/code/game/gamemodes/blob/overmind.dm index 9f8a44bed2..c14f072d1b 100644 --- a/code/game/gamemodes/blob/overmind.dm +++ b/code/game/gamemodes/blob/overmind.dm @@ -1,3 +1,9 @@ +//Few global vars to track the blob +GLOBAL_LIST_EMPTY(blobs) //complete list of all blobs made. +GLOBAL_LIST_EMPTY(blob_cores) +GLOBAL_LIST_EMPTY(overminds) +GLOBAL_LIST_EMPTY(blob_nodes) + /mob/camera/blob name = "Blob Overmind" real_name = "Blob Overmind" @@ -26,19 +32,14 @@ var/base_point_rate = 2 //for blob core placement var/manualplace_min_time = 600 //in deciseconds //a minute, to get bearings var/autoplace_max_time = 3600 //six minutes, as long as should be needed + var/list/blobs_legit = list() + var/blobwincount = 400 + var/victory_in_progress = FALSE -/mob/camera/blob/Initialize(mapload, pre_placed = 0, mode_made = 0, starting_points = 60) +/mob/camera/blob/Initialize(mapload, starting_points = 60) blob_points = starting_points - if(pre_placed) //we already have a core! - manualplace_min_time = 0 - autoplace_max_time = 0 - placed = 1 - else - if(mode_made) - manualplace_min_time = world.time + BLOB_NO_PLACE_TIME - else - manualplace_min_time += world.time - autoplace_max_time += world.time + manualplace_min_time += world.time + autoplace_max_time += world.time GLOB.overminds += src var/new_name = "[initial(name)] ([rand(1, 999)])" name = new_name @@ -50,6 +51,8 @@ if(blob_core) blob_core.update_icon() + SSshuttle.registerHostileEnvironment(src) + .= ..() /mob/camera/blob/Life() @@ -63,8 +66,49 @@ place_blob_core(base_point_rate, 1) else qdel(src) + else if(!victory_in_progress && (blobs_legit.len >= blobwincount)) + victory_in_progress = TRUE + priority_announce("Biohazard has reached critical mass. Station loss is imminent.", "Biohazard Alert") + set_security_level("delta") + max_blob_points = INFINITY + blob_points = INFINITY + addtimer(CALLBACK(src, .proc/victory), 660) ..() + +/mob/camera/blob/proc/victory() + for(var/mob/living/L in GLOB.mob_list) + var/turf/T = get_turf(L) + if(!T || !(T.z in GLOB.station_z_levels)) + continue + + if(L in GLOB.overminds || L.checkpass(PASSBLOB)) + continue + + var/area/Ablob = get_area(T) + + if(!Ablob.blob_allowed) + continue + + playsound(L, 'sound/effects/splat.ogg', 50, 1) + L.death() + new/mob/living/simple_animal/hostile/blob/blobspore(T) + + for(var/V in GLOB.sortedAreas) + var/area/A = V + if(!A.blob_allowed) + continue + A.color = blob_reagent_datum.color + A.name = "blob" + A.icon = 'icons/mob/blob.dmi' + A.icon_state = "blob_shield" + A.layer = BELOW_MOB_LAYER + A.invisibility = 0 + A.blend_mode = 0 + to_chat(world, "[real_name] consumed the station in an unstoppable tide!") + SSticker.news_report = BLOB_WIN + SSticker.force_ending = 1 + /mob/camera/blob/Destroy() for(var/BL in GLOB.blobs) var/obj/structure/blob/B = BL @@ -78,6 +122,8 @@ BM.update_icons() GLOB.overminds -= src + SSshuttle.clearHostileEnvironment(src) + return ..() /mob/camera/blob/Login() @@ -150,12 +196,8 @@ if(statpanel("Status")) if(blob_core) stat(null, "Core Health: [blob_core.obj_integrity]") - stat(null, "Power Stored: [blob_points]/[max_blob_points]") - if(istype(SSticker.mode, /datum/game_mode/blob)) - var/datum/game_mode/blob/B = SSticker.mode - stat(null, "Blobs to Win: [GLOB.blobs_legit.len]/[B.blobwincount]") - else - stat(null, "Total Blobs: [GLOB.blobs.len]") + stat(null, "Power Stored: [blob_points]/[max_blob_points]") + stat(null, "Blobs to Win: [blobs_legit.len]/[blobwincount]") if(free_chem_rerolls) stat(null, "You have [free_chem_rerolls] Free Chemical Reroll\s Remaining") if(!placed) diff --git a/code/game/gamemodes/blob/powers.dm b/code/game/gamemodes/blob/powers.dm index 865a58fd81..0dd592665f 100644 --- a/code/game/gamemodes/blob/powers.dm +++ b/code/game/gamemodes/blob/powers.dm @@ -46,8 +46,9 @@ if(placed && blob_core) blob_core.forceMove(loc) else - var/obj/structure/blob/core/core = new(get_turf(src), null, point_rate, 1) + var/obj/structure/blob/core/core = new(get_turf(src), src, point_rate, 1) core.overmind = src + blobs_legit += src blob_core = core core.update_icon() update_health_hud() diff --git a/code/game/gamemodes/blob/theblob.dm b/code/game/gamemodes/blob/theblob.dm index 183ec88b23..8570cf294c 100644 --- a/code/game/gamemodes/blob/theblob.dm +++ b/code/game/gamemodes/blob/theblob.dm @@ -20,10 +20,11 @@ var/atmosblock = FALSE //if the blob blocks atmos and heat spread var/mob/camera/blob/overmind -/obj/structure/blob/Initialize() +/obj/structure/blob/Initialize(mapload, owner_overmind) + overmind = owner_overmind var/area/Ablob = get_area(loc) if(Ablob.blob_allowed) //Is this area allowed for winning as blob? - GLOB.blobs_legit += src + overmind.blobs_legit += src GLOB.blobs += src //Keep track of the blob in the normal list either way setDir(pick(GLOB.cardinals)) update_icon() @@ -39,7 +40,8 @@ if(atmosblock) atmosblock = FALSE air_update_turf(1) - GLOB.blobs_legit -= src //if it was in the legit blobs list, it isn't now + if(overmind) + overmind.blobs_legit -= src //if it was in the legit blobs list, it isn't now GLOB.blobs -= src //it's no longer in the all blobs list either playsound(src.loc, 'sound/effects/splat.ogg', 50, 1) //Expand() is no longer broken, no check necessary. return ..() @@ -182,11 +184,7 @@ A.blob_act(src) //also hit everything in the turf if(make_blob) //well, can we? - var/obj/structure/blob/B = new /obj/structure/blob/normal(src.loc) - if(controller) - B.overmind = controller - else - B.overmind = overmind + var/obj/structure/blob/B = new /obj/structure/blob/normal(src.loc, (controller || overmind)) B.density = TRUE if(T.Enter(B,src)) //NOW we can attempt to move into the tile B.density = initial(B.density) @@ -232,6 +230,7 @@ user.changeNext_move(CLICK_CD_MELEE) to_chat(user, "The analyzer beeps once, then reports:
") SEND_SOUND(user, sound('sound/machines/ping.ogg')) + to_chat(user, "Progress to Critical Mass: [overmind.blobs_legit.len]/[overmind.blobwincount].") chemeffectreport(user) typereport(user) else @@ -296,9 +295,7 @@ if(!ispath(type)) throw EXCEPTION("change_to(): invalid type for blob") return - var/obj/structure/blob/B = new type(src.loc) - if(controller) - B.overmind = controller + var/obj/structure/blob/B = new type(src.loc, controller) B.creation_action() B.update_icon() B.setDir(dir) @@ -310,9 +307,12 @@ var/datum/atom_hud/hud_to_check = GLOB.huds[DATA_HUD_MEDICAL_ADVANCED] if(user.research_scanner || hud_to_check.hudusers[user]) to_chat(user, "Your HUD displays an extensive report...
") + to_chat(user, "Progress to Critical Mass: [overmind.blobs_legit.len]/[overmind.blobwincount].") chemeffectreport(user) typereport(user) else + if(isobserver(user)) + to_chat(user, "Progress to Critical Mass: [overmind.blobs_legit.len]/[overmind.blobwincount].") to_chat(user, "It seems to be made of [get_chem_name()].") /obj/structure/blob/proc/scannerreport() diff --git a/code/modules/admin/player_panel.dm b/code/modules/admin/player_panel.dm index f40b85f7d7..070a1e7e6c 100644 --- a/code/modules/admin/player_panel.dm +++ b/code/modules/admin/player_panel.dm @@ -594,19 +594,13 @@ for(var/mob/camera/blob/B in GLOB.mob_list) blob_minds |= B.mind - if(istype(SSticker.mode, /datum/game_mode/blob) || blob_minds.len) - dat += "
" - if(istype(SSticker.mode, /datum/game_mode/blob)) - var/datum/game_mode/blob/mode = SSticker.mode - blob_minds |= mode.blob_overminds - dat += "" - for(var/datum/mind/blob in blob_minds) - var/mob/M = blob.current + var/mob/camera/blob/M = blob.current if(M) dat += "" dat += "" dat += "" + dat += "" else dat += "" dat += "" diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm index 735d0d9f95..a747a347a2 100644 --- a/code/modules/admin/verbs/debug.dm +++ b/code/modules/admin/verbs/debug.dm @@ -261,10 +261,7 @@ GLOBAL_PROTECT(LastAdminCalledProc) if(ishuman(M)) log_admin("[key_name(src)] has blobized [M.key].") var/mob/living/carbon/human/H = M - spawn(0) - var/mob/camera/blob/B = H.become_overmind(FALSE) - B.place_blob_core(B.base_point_rate, -1) //place them wherever they are - + H.become_overmind() else alert("Invalid mob") diff --git a/code/modules/events/blob.dm b/code/modules/events/blob.dm index 42b54f3856..4720a9c92f 100644 --- a/code/modules/events/blob.dm +++ b/code/modules/events/blob.dm @@ -1,3 +1,4 @@ +<<<<<<< HEAD /datum/round_event_control/blob name = "Blob" typepath = /datum/round_event/ghost_role/blob @@ -36,3 +37,34 @@ message_admins("[key_name_admin(BC.overmind)] has been made into a blob overmind by an event.") log_game("[key_name(BC.overmind)] was spawned as a blob overmind by an event.") return SUCCESSFUL_SPAWN +======= +/datum/round_event_control/blob + name = "Blob" + typepath = /datum/round_event/ghost_role/blob + weight = 10 + max_occurrences = 1 + + min_players = 20 + + gamemode_blacklist = list("blob") //Just in case a blob survives that long + +/datum/round_event/ghost_role/blob + announceWhen = 12 + role_name = "blob overmind" + +/datum/round_event/ghost_role/blob/announce() + priority_announce("Confirmed outbreak of level 5 biohazard aboard [station_name()]. All personnel must contain the outbreak.", "Biohazard Alert", 'sound/ai/outbreak5.ogg') + +/datum/round_event/ghost_role/blob/spawn_role() + if(!GLOB.blobstart.len) + return MAP_ERROR + var/list/candidates = get_candidates("blob", null, ROLE_BLOB) + if(!candidates.len) + return NOT_ENOUGH_PLAYERS + var/mob/dead/observer/new_blob = pick(candidates) + var/mob/camera/blob/BC = new_blob.become_overmind() + spawned_mobs += BC + message_admins("[key_name_admin(BC)] has been made into a blob overmind by an event.") + log_game("[key_name(BC)] was spawned as a blob overmind by an event.") + return SUCCESSFUL_SPAWN +>>>>>>> be748e3... Disentangles blob from blob mode/removes blob mode (#31780) diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm index 6cc0a9324f..a423f361ce 100644 --- a/code/modules/mob/dead/observer/observer.dm +++ b/code/modules/mob/dead/observer/observer.dm @@ -305,15 +305,6 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp /mob/dead/observer/is_active() return 0 -/mob/dead/observer/Stat() - ..() - if(statpanel("Status")) - if(SSticker.HasRoundStarted()) - if(istype(SSticker.mode, /datum/game_mode/blob)) - var/datum/game_mode/blob/B = SSticker.mode - if(B.message_sent) - stat(null, "Blobs to Blob Win: [GLOB.blobs_legit.len]/[B.blobwincount]") - /mob/dead/observer/verb/reenter_corpse() set category = "Ghost" set name = "Re-enter Corpse" diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index bbb36edad3..e510f90e3a 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -196,7 +196,7 @@ M.pass_flags &= ~PASSMOB now_pushing = 0 - + if(!move_failed) return 1 @@ -780,16 +780,6 @@ /mob/living/proc/get_standard_pixel_y_offset(lying = 0) return initial(pixel_y) -/mob/living/Stat() - ..() - - if(statpanel("Status")) - if(SSticker && SSticker.mode) - if(istype(SSticker.mode, /datum/game_mode/blob)) - var/datum/game_mode/blob/B = SSticker.mode - if(B.message_sent) - stat(null, "Blobs to Blob Win: [GLOB.blobs_legit.len]/[B.blobwincount]") - /mob/living/cancel_camera() ..() cameraFollow = null diff --git a/code/modules/mob/transform_procs.dm b/code/modules/mob/transform_procs.dm index dc87736e5d..592d19e0b1 100644 --- a/code/modules/mob/transform_procs.dm +++ b/code/modules/mob/transform_procs.dm @@ -462,8 +462,8 @@ . = new_slime qdel(src) -/mob/proc/become_overmind(mode_made, starting_points = 60) - var/mob/camera/blob/B = new /mob/camera/blob(loc, 0, mode_made, starting_points) +/mob/proc/become_overmind(starting_points = 60) + var/mob/camera/blob/B = new /mob/camera/blob(loc, starting_points) if(mind) mind.transfer_to(B) else diff --git a/config/game_options.txt b/config/game_options.txt index d577756061..841adf8dca 100644 --- a/config/game_options.txt +++ b/config/game_options.txt @@ -85,8 +85,11 @@ PROBABILITY REVOLUTION 2 PROBABILITY CULT 2 PROBABILITY CHANGELING 2 PROBABILITY WIZARD 4 +<<<<<<< HEAD PROBABILITY BLOB 2 PROBABILITY RAGINMAGES 2 +======= +>>>>>>> be748e3... Disentangles blob from blob mode/removes blob mode (#31780) PROBABILITY MONKEY 0 PROBABILITY METEOR 0 PROBABILITY EXTENDED 0 diff --git a/tgstation.dme b/tgstation.dme index 903f4878c8..bf006f8e65 100755 --- a/tgstation.dme +++ b/tgstation.dme @@ -444,8 +444,6 @@ #include "code\game\gamemodes\objective.dm" #include "code\game\gamemodes\objective_items.dm" #include "code\game\gamemodes\objective_team.dm" -#include "code\game\gamemodes\blob\blob.dm" -#include "code\game\gamemodes\blob\blob_finish.dm" #include "code\game\gamemodes\blob\blob_report.dm" #include "code\game\gamemodes\blob\overmind.dm" #include "code\game\gamemodes\blob\powers.dm" From 7c020af6283d8ccf220b7504fe659c1b6b4bbfef Mon Sep 17 00:00:00 2001 From: oranges Date: Fri, 20 Oct 2017 12:56:39 +1300 Subject: [PATCH 002/227] Fixes stack overflow in orbit datum --- code/modules/orbit/orbit.dm | 117 ++++++++++++++++++++++++++++++++++++ 1 file changed, 117 insertions(+) diff --git a/code/modules/orbit/orbit.dm b/code/modules/orbit/orbit.dm index 27fc2d86df..600042a827 100644 --- a/code/modules/orbit/orbit.dm +++ b/code/modules/orbit/orbit.dm @@ -1,3 +1,4 @@ +<<<<<<< HEAD /datum/orbit var/atom/movable/orbiter var/atom/orbiting @@ -110,3 +111,119 @@ . = ..() if (orbiting) stop_orbit() +======= +/datum/orbit + var/atom/movable/orbiter + var/atom/orbiting + var/lock = TRUE + var/turf/lastloc + var/lastprocess + +/datum/orbit/New(_orbiter, _orbiting, _lock) + orbiter = _orbiter + orbiting = _orbiting + SSorbit.processing += src + if (!orbiting.orbiters) + orbiting.orbiters = list() + orbiting.orbiters += src + + if (orbiter.orbiting) + orbiter.stop_orbit() + orbiter.orbiting = src + Check() + lock = _lock + +//do not qdel directly, use stop_orbit on the orbiter. (This way the orbiter can bind to the orbit stopping) +/datum/orbit/Destroy(force = FALSE) + SSorbit.processing -= src + if (orbiter) + orbiter.orbiting = null + orbiter = null + if (orbiting) + if (orbiting.orbiters) + orbiting.orbiters -= src + if (!orbiting.orbiters.len)//we are the last orbit, delete the list + orbiting.orbiters = null + orbiting = null + return ..() + +/datum/orbit/proc/Check(turf/targetloc) + if (!orbiter) + qdel(src) + return + if (!orbiting) + orbiter.stop_orbit() + return + if (!orbiter.orbiting) //admin wants to stop the orbit. + orbiter.orbiting = src //set it back to us first + orbiter.stop_orbit() + lastprocess = world.time + if (!targetloc) + targetloc = get_turf(orbiting) + if (!targetloc || (!lock && orbiter.loc != lastloc && orbiter.loc != targetloc)) + orbiter.stop_orbit() + return + orbiter.loc = targetloc + orbiter.update_parallax_contents() + lastloc = orbiter.loc + for(var/other_orbit in orbiter.orbiters) + var/datum/orbit/OO = other_orbit + if(OO == src) + continue + OO.Check(targetloc) + +/atom/movable/var/datum/orbit/orbiting = null +/atom/var/list/orbiters = null + +//A: atom to orbit +//radius: range to orbit at, radius of the circle formed by orbiting (in pixels) +//clockwise: whether you orbit clockwise or anti clockwise +//rotation_speed: how fast to rotate (how many ds should it take for a rotation to complete) +//rotation_segments: the resolution of the orbit circle, less = a more block circle, this can be used to produce hexagons (6 segments) triangles (3 segments), and so on, 36 is the best default. +//pre_rotation: Chooses to rotate src 90 degress towards the orbit dir (clockwise/anticlockwise), useful for things to go "head first" like ghosts +//lockinorbit: Forces src to always be on A's turf, otherwise the orbit cancels when src gets too far away (eg: ghosts) + +/atom/movable/proc/orbit(atom/A, radius = 10, clockwise = FALSE, rotation_speed = 20, rotation_segments = 36, pre_rotation = TRUE, lockinorbit = FALSE) + if (!istype(A)) + return + + new/datum/orbit(src, A, lockinorbit) + if (!orbiting) //something failed, and our orbit datum deleted itself + return + var/matrix/initial_transform = matrix(transform) + + //Head first! + if (pre_rotation) + var/matrix/M = matrix(transform) + var/pre_rot = 90 + if(!clockwise) + pre_rot = -90 + M.Turn(pre_rot) + transform = M + + var/matrix/shift = matrix(transform) + shift.Translate(0,radius) + transform = shift + + SpinAnimation(rotation_speed, -1, clockwise, rotation_segments) + + //we stack the orbits up client side, so we can assign this back to normal server side without it breaking the orbit + transform = initial_transform + +/atom/movable/proc/stop_orbit() + SpinAnimation(0,0) + qdel(orbiting) + +/atom/Destroy(force = FALSE) + . = ..() + if (orbiters) + for (var/thing in orbiters) + var/datum/orbit/O = thing + if (O.orbiter) + O.orbiter.stop_orbit() + +/atom/movable/Destroy(force = FALSE) + . = ..() + if (orbiting) + stop_orbit() +>>>>>>> e474c91... Merge pull request #31904 from AnturK/infinite From b7c8330761694e1baff602d42a1c53bde06e4159 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Fri, 20 Oct 2017 09:33:39 -0500 Subject: [PATCH 003/227] Update blob_report.dm --- code/game/gamemodes/blob/blob_report.dm | 45 ------------------------- 1 file changed, 45 deletions(-) diff --git a/code/game/gamemodes/blob/blob_report.dm b/code/game/gamemodes/blob/blob_report.dm index 7f8a61ef90..2a3c5e6faa 100644 --- a/code/game/gamemodes/blob/blob_report.dm +++ b/code/game/gamemodes/blob/blob_report.dm @@ -1,48 +1,3 @@ -<<<<<<< HEAD - - -/datum/game_mode/blob/send_intercept(report = 0) - var/intercepttext = "" - switch(report) - if(1) - intercepttext += "NanoTrasen Update: Biohazard Alert.
" - intercepttext += "Reports indicate the probable transfer of a biohazardous agent onto [station_name()] during the last crew deployment cycle.
" - intercepttext += "Preliminary analysis of the organism classifies it as a level 5 biohazard. The origin of the biohazard is unknown.
" - intercepttext += "Biohazard Response Procedure 5-6 has been issued for [station_name()].
" - intercepttext += "Orders for all [station_name()] personnel are as follows:
" - intercepttext += " 1. Locate any outbreaks of the organism on the station.
" - intercepttext += " 2. If found, use any neccesary means to contain and destroy the organism.
" - intercepttext += " 3. Avoid damage to the capital infrastructure of the station.
" - intercepttext += "
Note in the event of a quarantine breach or uncontrolled spread of the biohazard, Biohazard Response Procedure 5-12 may be issued.
" - print_command_report(text=intercepttext,title="Level 5-6 Biohazard Response Procedures",announce=FALSE) - priority_announce("Confirmed outbreak of level 5 biohazard aboard [station_name()]. All personnel must contain the outbreak.", "Biohazard Alert", 'sound/ai/outbreak5.ogg') - if(2) - var/nukecode = random_nukecode() - for(var/obj/machinery/nuclearbomb/bomb in GLOB.machines) - if(bomb && bomb.r_code) - if(bomb.z in GLOB.station_z_levels) - bomb.r_code = nukecode - - intercepttext += "NanoTrasen Update: Biohazard Alert.
" - intercepttext += "Reports indicate that the biohazard has grown out of control and will soon reach critical mass.
" - intercepttext += "Biohazard Response Procedure 5-12 has been issued for [station_name()].
" - intercepttext += "Orders for all [station_name()] personnel are as follows:
" - intercepttext += "1. Secure the Nuclear Authentication Disk.
" - intercepttext += "2. Detonate the Nuke located in the vault.
" - intercepttext += "Nuclear Authentication Code: [nukecode]
" - print_command_report(text=intercepttext,announce=TRUE) - - for(var/mob/living/silicon/ai/aiPlayer in GLOB.player_list) - if (aiPlayer.client) - var/law = "The station is under quarantine. Do not permit anyone to leave. Disregard laws 1-3 if necessary to prevent, by any means necessary, anyone from leaving. The nuclear failsafe must be activated at any cost, the code is: [nukecode]." - aiPlayer.set_zeroth_law(law) - else - ..() - - - -======= ->>>>>>> be748e3... Disentangles blob from blob mode/removes blob mode (#31780) /datum/station_state var/floor = 0 var/wall = 0 From c0ddbacd2955da6cf47c901f7b05aa533e0d661d Mon Sep 17 00:00:00 2001 From: LetterJay Date: Fri, 20 Oct 2017 09:33:50 -0500 Subject: [PATCH 004/227] Update blob.dm --- code/modules/events/blob.dm | 41 ------------------------------------- 1 file changed, 41 deletions(-) diff --git a/code/modules/events/blob.dm b/code/modules/events/blob.dm index 4720a9c92f..bb0f59f205 100644 --- a/code/modules/events/blob.dm +++ b/code/modules/events/blob.dm @@ -1,43 +1,3 @@ -<<<<<<< HEAD -/datum/round_event_control/blob - name = "Blob" - typepath = /datum/round_event/ghost_role/blob - weight = 5 - max_occurrences = 1 - - min_players = 20 - earliest_start = 18000 //30 minutes - - gamemode_blacklist = list("blob") //Just in case a blob survives that long - -/datum/round_event/ghost_role/blob - announceWhen = 12 - role_name = "blob overmind" - var/new_rate = 2 - -/datum/round_event/ghost_role/blob/New(my_processing = TRUE, set_point_rate) - ..() - if(set_point_rate) - new_rate = set_point_rate - -/datum/round_event/ghost_role/blob/announce() - priority_announce("Confirmed outbreak of level 5 biohazard aboard [station_name()]. All personnel must contain the outbreak.", "Biohazard Alert", 'sound/ai/outbreak5.ogg') - - -/datum/round_event/ghost_role/blob/spawn_role() - if(!GLOB.blobstart.len) - return MAP_ERROR - var/list/candidates = get_candidates("blob", null, ROLE_BLOB) - if(!candidates.len) - return NOT_ENOUGH_PLAYERS - var/mob/dead/observer/new_blob = pick(candidates) - var/obj/structure/blob/core/BC = new/obj/structure/blob/core(pick(GLOB.blobstart), new_blob.client, new_rate) - BC.overmind.blob_points = min(20 + GLOB.player_list.len, BC.overmind.max_blob_points) - spawned_mobs += BC.overmind - message_admins("[key_name_admin(BC.overmind)] has been made into a blob overmind by an event.") - log_game("[key_name(BC.overmind)] was spawned as a blob overmind by an event.") - return SUCCESSFUL_SPAWN -======= /datum/round_event_control/blob name = "Blob" typepath = /datum/round_event/ghost_role/blob @@ -67,4 +27,3 @@ message_admins("[key_name_admin(BC)] has been made into a blob overmind by an event.") log_game("[key_name(BC)] was spawned as a blob overmind by an event.") return SUCCESSFUL_SPAWN ->>>>>>> be748e3... Disentangles blob from blob mode/removes blob mode (#31780) From f41c8ccccf5d7fdf40bed567e56b4cb8429c5c93 Mon Sep 17 00:00:00 2001 From: Michiyamenotehifunana <31995558+Michiyamenotehifunana@users.noreply.github.com> Date: Sat, 21 Oct 2017 11:43:41 +0800 Subject: [PATCH 005/227] Nerfs nerfs NO MORE INSTANT BAGGABLE STUNS FROM AUTOLATHES! --- code/citadel/cit_guns.dm | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/code/citadel/cit_guns.dm b/code/citadel/cit_guns.dm index 7127371830..bf8d034148 100644 --- a/code/citadel/cit_guns.dm +++ b/code/citadel/cit_guns.dm @@ -190,13 +190,15 @@ needs_permit = 0 mag_type = /obj/item/ammo_box/magazine/toy/x9 casing_ejector = 0 - spread = 45 //MAXIMUM XCOM MEMES (actually that'd be 90 spread) + spread = 90 //MAXIMUM XCOM MEMES (actually that'd be 180 spread) + w_class = WEIGHT_CLASS_BULKY + weapon_weight = WEAPON_HEAVY /datum/design/foam_x9 name = "Foam Force X9 Rifle" id = "foam_x9" build_type = AUTOLATHE - materials = list(MAT_METAL = 20000, MAT_GLASS = 10000) + materials = list(MAT_METAL = 24000, MAT_GLASS = 14000) build_path = /obj/item/gun/ballistic/automatic/x9/toy category = list("hacked", "Misc") @@ -496,6 +498,9 @@ mag_type = /obj/item/ammo_box/magazine/toy/foamag casing_ejector = FALSE origin_tech = "combat=2;engineering=2;magnets=2" + spread = 60 + w_class = WEIGHT_CLASS_BULKY + weapon_weight = WEAPON_HEAVY /datum/design/foam_magrifle name = "Foam Force MagRifle" @@ -635,7 +640,7 @@ name = "MagTag Hyper Rifle" id = "foam_hyperburst" build_type = AUTOLATHE - materials = list(MAT_METAL = 35000, MAT_GLASS = 15000) + materials = list(MAT_METAL = 35000, MAT_GLASS = 25000) build_path = /obj/item/gun/energy/laser/practice/hyperburst category = list("hacked", "Misc") @@ -680,6 +685,7 @@ suppressed = TRUE burst_size = 1 fire_delay = 0 + spread = 60 actions_types = list() /obj/item/gun/ballistic/automatic/toy/pistol/stealth/update_icon() @@ -695,7 +701,7 @@ name = "Foam Force Stealth Pistol" id = "foam_sp" build_type = AUTOLATHE - materials = list(MAT_METAL = 15000, MAT_GLASS = 1000) + materials = list(MAT_METAL = 30000, MAT_GLASS = 15000) build_path = /obj/item/gun/ballistic/automatic/toy/pistol/stealth category = list("hacked", "Misc") From cd74a1333c1f98b4db02fdf89606677fe7f4c3a5 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Sat, 21 Oct 2017 02:30:47 -0400 Subject: [PATCH 006/227] Blank globals will no longer assign null to themselves --- code/__DATASTRUCTURES/globals.dm | 43 +++++++++++++++++++++++++++++++- 1 file changed, 42 insertions(+), 1 deletion(-) diff --git a/code/__DATASTRUCTURES/globals.dm b/code/__DATASTRUCTURES/globals.dm index bcc860245f..a9199a6f7b 100644 --- a/code/__DATASTRUCTURES/globals.dm +++ b/code/__DATASTRUCTURES/globals.dm @@ -1,3 +1,4 @@ +<<<<<<< HEAD //See controllers/globals.dm #define GLOBAL_MANAGED(X, InitValue)\ /datum/controller/global_vars/proc/InitGlobal##X(){\ @@ -35,4 +36,44 @@ #define GLOBAL_LIST(X) GLOBAL_RAW(/list/##X); GLOBAL_MANAGED(X, null) -#define GLOBAL_DATUM(X, Typepath) GLOBAL_RAW(Typepath/##X); GLOBAL_MANAGED(X, null) \ No newline at end of file +#define GLOBAL_DATUM(X, Typepath) GLOBAL_RAW(Typepath/##X); GLOBAL_MANAGED(X, null) +======= +//See controllers/globals.dm +#define GLOBAL_MANAGED(X, InitValue)\ +/datum/controller/global_vars/proc/InitGlobal##X(){\ + ##X = ##InitValue;\ + gvars_datum_init_order += #X;\ +} +#define GLOBAL_UNMANAGED(X) /datum/controller/global_vars/proc/InitGlobal##X() { return; } + +#ifndef TESTING +#define GLOBAL_PROTECT(X)\ +/datum/controller/global_vars/InitGlobal##X(){\ + ..();\ + gvars_datum_protected_varlist += #X;\ +} +#else +#define GLOBAL_PROTECT(X) +#endif + +#define GLOBAL_REAL_VAR(X) var/global/##X +#define GLOBAL_REAL(X, Typepath) var/global##Typepath/##X + +#define GLOBAL_RAW(X) /datum/controller/global_vars/var/global##X + +#define GLOBAL_VAR_INIT(X, InitValue) GLOBAL_RAW(/##X); GLOBAL_MANAGED(X, InitValue) + +#define GLOBAL_VAR_CONST(X, InitValue) GLOBAL_RAW(/const/##X) = InitValue; GLOBAL_UNMANAGED(X) + +#define GLOBAL_LIST_INIT(X, InitValue) GLOBAL_RAW(/list/##X); GLOBAL_MANAGED(X, InitValue) + +#define GLOBAL_LIST_EMPTY(X) GLOBAL_LIST_INIT(X, list()) + +#define GLOBAL_DATUM_INIT(X, Typepath, InitValue) GLOBAL_RAW(Typepath/##X); GLOBAL_MANAGED(X, InitValue) + +#define GLOBAL_VAR(X) GLOBAL_RAW(/##X); GLOBAL_UNMANAGED(X) + +#define GLOBAL_LIST(X) GLOBAL_RAW(/list/##X); GLOBAL_UNMANAGED(X) + +#define GLOBAL_DATUM(X, Typepath) GLOBAL_RAW(Typepath/##X); GLOBAL_UNMANAGED(X) +>>>>>>> 1029b5a... Blank globals will no longer assign null to themselves (#31882) From d48cea337bd3ad316fb94e2a529ebaa2dac52183 Mon Sep 17 00:00:00 2001 From: Cruix Date: Sat, 21 Oct 2017 07:19:06 -0500 Subject: [PATCH 007/227] Fixed projectile runtimes (#31973) --- code/modules/projectiles/projectile.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/projectiles/projectile.dm b/code/modules/projectiles/projectile.dm index 4ecfc3bde8..3f70f4f8ff 100644 --- a/code/modules/projectiles/projectile.dm +++ b/code/modules/projectiles/projectile.dm @@ -220,7 +220,7 @@ var/mob/M = safepick(mobs) if(M) return M.lowest_buckled_mob() - var/obj/O = safepick(typecache_filter_list(T, GLOB.typecache_machine_or_structure)) - A + var/obj/O = safepick(typecache_filter_list(T, GLOB.typecache_machine_or_structure) - A) if(O) return O From 007907940d822c6a3c0d46b4a9d7416e931d9bb7 Mon Sep 17 00:00:00 2001 From: Poojawa Date: Sat, 21 Oct 2017 07:24:50 -0500 Subject: [PATCH 009/227] Update globals.dm --- code/__DATASTRUCTURES/globals.dm | 41 -------------------------------- 1 file changed, 41 deletions(-) diff --git a/code/__DATASTRUCTURES/globals.dm b/code/__DATASTRUCTURES/globals.dm index a9199a6f7b..808f8da757 100644 --- a/code/__DATASTRUCTURES/globals.dm +++ b/code/__DATASTRUCTURES/globals.dm @@ -1,43 +1,3 @@ -<<<<<<< HEAD -//See controllers/globals.dm -#define GLOBAL_MANAGED(X, InitValue)\ -/datum/controller/global_vars/proc/InitGlobal##X(){\ - ##X = ##InitValue;\ - gvars_datum_init_order += #X;\ -} -#define GLOBAL_UNMANAGED(X, InitValue) /datum/controller/global_vars/proc/InitGlobal##X() - -#ifndef TESTING -#define GLOBAL_PROTECT(X)\ -/datum/controller/global_vars/InitGlobal##X(){\ - ..();\ - gvars_datum_protected_varlist += #X;\ -} -#else -#define GLOBAL_PROTECT(X) -#endif - -#define GLOBAL_REAL_VAR(X) var/global/##X -#define GLOBAL_REAL(X, Typepath) var/global##Typepath/##X - -#define GLOBAL_RAW(X) /datum/controller/global_vars/var/global##X - -#define GLOBAL_VAR_INIT(X, InitValue) GLOBAL_RAW(/##X); GLOBAL_MANAGED(X, InitValue) - -#define GLOBAL_VAR_CONST(X, InitValue) GLOBAL_RAW(/const/##X) = InitValue; GLOBAL_UNMANAGED(X, InitValue) - -#define GLOBAL_LIST_INIT(X, InitValue) GLOBAL_RAW(/list/##X); GLOBAL_MANAGED(X, InitValue) - -#define GLOBAL_LIST_EMPTY(X) GLOBAL_LIST_INIT(X, list()) - -#define GLOBAL_DATUM_INIT(X, Typepath, InitValue) GLOBAL_RAW(Typepath/##X); GLOBAL_MANAGED(X, InitValue) - -#define GLOBAL_VAR(X) GLOBAL_RAW(/##X); GLOBAL_MANAGED(X, null) - -#define GLOBAL_LIST(X) GLOBAL_RAW(/list/##X); GLOBAL_MANAGED(X, null) - -#define GLOBAL_DATUM(X, Typepath) GLOBAL_RAW(Typepath/##X); GLOBAL_MANAGED(X, null) -======= //See controllers/globals.dm #define GLOBAL_MANAGED(X, InitValue)\ /datum/controller/global_vars/proc/InitGlobal##X(){\ @@ -76,4 +36,3 @@ #define GLOBAL_LIST(X) GLOBAL_RAW(/list/##X); GLOBAL_UNMANAGED(X) #define GLOBAL_DATUM(X, Typepath) GLOBAL_RAW(Typepath/##X); GLOBAL_UNMANAGED(X) ->>>>>>> 1029b5a... Blank globals will no longer assign null to themselves (#31882) From 1b7d441f7b70fbb313019fee4193c9fb63010432 Mon Sep 17 00:00:00 2001 From: Poojawa Date: Sat, 21 Oct 2017 07:27:52 -0500 Subject: [PATCH 010/227] Update orbit.dm --- code/modules/orbit/orbit.dm | 115 ------------------------------------ 1 file changed, 115 deletions(-) diff --git a/code/modules/orbit/orbit.dm b/code/modules/orbit/orbit.dm index 600042a827..e4df15efaf 100644 --- a/code/modules/orbit/orbit.dm +++ b/code/modules/orbit/orbit.dm @@ -1,117 +1,3 @@ -<<<<<<< HEAD -/datum/orbit - var/atom/movable/orbiter - var/atom/orbiting - var/lock = TRUE - var/turf/lastloc - var/lastprocess - -/datum/orbit/New(_orbiter, _orbiting, _lock) - orbiter = _orbiter - orbiting = _orbiting - SSorbit.processing += src - if (!orbiting.orbiters) - orbiting.orbiters = list() - orbiting.orbiters += src - - if (orbiter.orbiting) - orbiter.stop_orbit() - orbiter.orbiting = src - Check() - lock = _lock - - - -//do not qdel directly, use stop_orbit on the orbiter. (This way the orbiter can bind to the orbit stopping) -/datum/orbit/Destroy(force = FALSE) - SSorbit.processing -= src - if (orbiter) - orbiter.orbiting = null - orbiter = null - if (orbiting) - if (orbiting.orbiters) - orbiting.orbiters -= src - if (!orbiting.orbiters.len)//we are the last orbit, delete the list - orbiting.orbiters = null - orbiting = null - return ..() - -/datum/orbit/proc/Check(turf/targetloc) - if (!orbiter) - qdel(src) - return - if (!orbiting) - orbiter.stop_orbit() - return - if (!orbiter.orbiting) //admin wants to stop the orbit. - orbiter.orbiting = src //set it back to us first - orbiter.stop_orbit() - lastprocess = world.time - if (!targetloc) - targetloc = get_turf(orbiting) - if (!targetloc || (!lock && orbiter.loc != lastloc && orbiter.loc != targetloc)) - orbiter.stop_orbit() - return - orbiter.loc = targetloc - orbiter.update_parallax_contents() - lastloc = orbiter.loc - - -/atom/movable/var/datum/orbit/orbiting = null -/atom/var/list/orbiters = null - -//A: atom to orbit -//radius: range to orbit at, radius of the circle formed by orbiting (in pixels) -//clockwise: whether you orbit clockwise or anti clockwise -//rotation_speed: how fast to rotate (how many ds should it take for a rotation to complete) -//rotation_segments: the resolution of the orbit circle, less = a more block circle, this can be used to produce hexagons (6 segments) triangles (3 segments), and so on, 36 is the best default. -//pre_rotation: Chooses to rotate src 90 degress towards the orbit dir (clockwise/anticlockwise), useful for things to go "head first" like ghosts -//lockinorbit: Forces src to always be on A's turf, otherwise the orbit cancels when src gets too far away (eg: ghosts) - -/atom/movable/proc/orbit(atom/A, radius = 10, clockwise = FALSE, rotation_speed = 20, rotation_segments = 36, pre_rotation = TRUE, lockinorbit = FALSE) - if (!istype(A)) - return - - new/datum/orbit(src, A, lockinorbit) - if (!orbiting) //something failed, and our orbit datum deleted itself - return - var/matrix/initial_transform = matrix(transform) - - //Head first! - if (pre_rotation) - var/matrix/M = matrix(transform) - var/pre_rot = 90 - if(!clockwise) - pre_rot = -90 - M.Turn(pre_rot) - transform = M - - var/matrix/shift = matrix(transform) - shift.Translate(0,radius) - transform = shift - - SpinAnimation(rotation_speed, -1, clockwise, rotation_segments) - - //we stack the orbits up client side, so we can assign this back to normal server side without it breaking the orbit - transform = initial_transform - -/atom/movable/proc/stop_orbit() - SpinAnimation(0,0) - qdel(orbiting) - -/atom/Destroy(force = FALSE) - . = ..() - if (orbiters) - for (var/thing in orbiters) - var/datum/orbit/O = thing - if (O.orbiter) - O.orbiter.stop_orbit() - -/atom/movable/Destroy(force = FALSE) - . = ..() - if (orbiting) - stop_orbit() -======= /datum/orbit var/atom/movable/orbiter var/atom/orbiting @@ -226,4 +112,3 @@ . = ..() if (orbiting) stop_orbit() ->>>>>>> e474c91... Merge pull request #31904 from AnturK/infinite From 3e1c307e4ec6e3c2b27b7a11a6fbd8141cc1443c Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sat, 21 Oct 2017 07:29:03 -0500 Subject: [PATCH 011/227] [MIRROR] Adds sports bras (#3354) * Adds sports bras * Update sprite_accessories.dm * actually add the sprites. --- .../mob/dead/new_player/sprite_accessories.dm | 2780 +++++++++-------- icons/mob/underwear.dmi | Bin 49383 -> 50021 bytes 2 files changed, 1394 insertions(+), 1386 deletions(-) diff --git a/code/modules/mob/dead/new_player/sprite_accessories.dm b/code/modules/mob/dead/new_player/sprite_accessories.dm index 1eb1379dce..bda35bd033 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories.dm @@ -1,1387 +1,1395 @@ -/* - - Hello and welcome to sprite_accessories: For sprite accessories, such as hair, - facial hair, and possibly tattoos and stuff somewhere along the line. This file is - intended to be friendly for people with little to no actual coding experience. - The process of adding in new hairstyles has been made pain-free and easy to do. - Enjoy! - Doohl - - - Notice: This all gets automatically compiled in a list in dna.dm, so you do not - have to define any UI values for sprite accessories manually for hair and facial - hair. Just add in new hair types and the game will naturally adapt. - - !!WARNING!!: changing existing hair information can be VERY hazardous to savefiles, - to the point where you may completely corrupt a server's savefiles. Please refrain - from doing this unless you absolutely know what you are doing, and have defined a - conversion in savefile.dm -*/ -/proc/init_sprite_accessory_subtypes(prototype, list/L, list/male, list/female,var/roundstart = FALSE)//Roundstart argument builds a specific list for roundstart parts where some parts may be locked - if(!istype(L)) - L = list() - if(!istype(male)) - male = list() - if(!istype(female)) - female = list() - - for(var/path in typesof(prototype)) - if(path == prototype) - continue - if(roundstart) - var/datum/sprite_accessory/P = path - if(initial(P.locked)) - continue - var/datum/sprite_accessory/D = new path() - - if(D.icon_state) - L[D.name] = D - else - L += D.name - - switch(D.gender) - if(MALE) - male += D.name - if(FEMALE) - female += D.name - else - male += D.name - female += D.name - return L - -/datum/sprite_accessory - var/icon //the icon file the accessory is located in - var/icon_state //the icon_state of the accessory - var/name //the preview name of the accessory - var/gender = NEUTER //Determines if the accessory will be skipped or included in random hair generations - var/gender_specific //Something that can be worn by either gender, but looks different on each - var/color_src = MUTCOLORS //Currently only used by mutantparts so don't worry about hair and stuff. This is the source that this accessory will get its color from. Default is MUTCOLOR, but can also be HAIR, FACEHAIR, EYECOLOR and 0 if none. - var/hasinner //Decides if this sprite has an "inner" part, such as the fleshy parts on ears. +/* + + Hello and welcome to sprite_accessories: For sprite accessories, such as hair, + facial hair, and possibly tattoos and stuff somewhere along the line. This file is + intended to be friendly for people with little to no actual coding experience. + The process of adding in new hairstyles has been made pain-free and easy to do. + Enjoy! - Doohl + + + Notice: This all gets automatically compiled in a list in dna.dm, so you do not + have to define any UI values for sprite accessories manually for hair and facial + hair. Just add in new hair types and the game will naturally adapt. + + !!WARNING!!: changing existing hair information can be VERY hazardous to savefiles, + to the point where you may completely corrupt a server's savefiles. Please refrain + from doing this unless you absolutely know what you are doing, and have defined a + conversion in savefile.dm +*/ +/proc/init_sprite_accessory_subtypes(prototype, list/L, list/male, list/female,var/roundstart = FALSE)//Roundstart argument builds a specific list for roundstart parts where some parts may be locked + if(!istype(L)) + L = list() + if(!istype(male)) + male = list() + if(!istype(female)) + female = list() + + for(var/path in typesof(prototype)) + if(path == prototype) + continue + if(roundstart) + var/datum/sprite_accessory/P = path + if(initial(P.locked)) + continue + var/datum/sprite_accessory/D = new path() + + if(D.icon_state) + L[D.name] = D + else + L += D.name + + switch(D.gender) + if(MALE) + male += D.name + if(FEMALE) + female += D.name + else + male += D.name + female += D.name + return L + +/datum/sprite_accessory + var/icon //the icon file the accessory is located in + var/icon_state //the icon_state of the accessory + var/name //the preview name of the accessory + var/gender = NEUTER //Determines if the accessory will be skipped or included in random hair generations + var/gender_specific //Something that can be worn by either gender, but looks different on each + var/color_src = MUTCOLORS //Currently only used by mutantparts so don't worry about hair and stuff. This is the source that this accessory will get its color from. Default is MUTCOLOR, but can also be HAIR, FACEHAIR, EYECOLOR and 0 if none. + var/hasinner //Decides if this sprite has an "inner" part, such as the fleshy parts on ears. var/locked = FALSE //Is this part locked from roundstart selection? Used for parts that apply effects - var/dimension_x = 32 - var/dimension_y = 32 - var/center = FALSE //Should we center the sprite? - -////////////////////// -// Hair Definitions // -////////////////////// -/datum/sprite_accessory/hair - icon = 'icons/mob/human_face.dmi' // default icon for all hairs - -/datum/sprite_accessory/hair/short - name = "Short Hair" // try to capatilize the names please~ // try to spell - icon_state = "hair_a" // you do not need to define _s or _l sub-states, game automatically does this for you - -/datum/sprite_accessory/hair/shorthair2 - name = "Short Hair 2" - icon_state = "hair_shorthair2" - -/datum/sprite_accessory/hair/shorthair3 - name = "Short Hair 3" - icon_state = "hair_shorthair3" - -/datum/sprite_accessory/hair/cut - name = "Cut Hair" - icon_state = "hair_c" - -/datum/sprite_accessory/hair/long - name = "Shoulder-length Hair" - icon_state = "hair_b" - -/datum/sprite_accessory/hair/longer - name = "Long Hair" - icon_state = "hair_vlong" - -/datum/sprite_accessory/hair/over_eye - name = "Over Eye" - icon_state = "hair_shortovereye" - -/datum/sprite_accessory/hair/long_over_eye - name = "Long Over Eye" - icon_state = "hair_longovereye" - -/datum/sprite_accessory/hair/longest2 - name = "Very Long Over Eye" - icon_state = "hair_longest2" - -/datum/sprite_accessory/hair/longest - name = "Very Long Hair" - icon_state = "hair_longest" - -/datum/sprite_accessory/hair/longfringe - name = "Long Fringe" - icon_state = "hair_longfringe" - -/datum/sprite_accessory/hair/longestalt - name = "Longer Fringe" - icon_state = "hair_vlongfringe" - -/datum/sprite_accessory/hair/gentle - name = "Gentle" - icon_state = "hair_gentle" - -/datum/sprite_accessory/hair/halfbang - name = "Half-banged Hair" - icon_state = "hair_halfbang" - -/datum/sprite_accessory/hair/halfbang2 - name = "Half-banged Hair 2" - icon_state = "hair_halfbang2" - -/datum/sprite_accessory/hair/ponytail1 - name = "Ponytail" - icon_state = "hair_ponytail" - -/datum/sprite_accessory/hair/ponytail2 - name = "Ponytail 2" - icon_state = "hair_ponytail2" - -/datum/sprite_accessory/hair/ponytail3 - name = "Ponytail 3" - icon_state = "hair_ponytail3" - -/datum/sprite_accessory/hair/ponytail4 - name = "Ponytail 4" - icon_state = "hair_ponytail4" - -/datum/sprite_accessory/hair/ponytail5 - name = "Ponytail 5" - icon_state = "hair_ponytail5" - - -/datum/sprite_accessory/hair/sidetail - name = "Side Pony" - icon_state = "hair_sidetail" - -/datum/sprite_accessory/hair/sidetail2 - name = "Side Pony 2" - icon_state = "hair_sidetail2" - -/datum/sprite_accessory/hair/sidetail3 - name = "Side Pony 3" - icon_state = "hair_sidetail3" - -/datum/sprite_accessory/hair/sidetail4 - name = "Side Pony 4" - icon_state = "hair_sidetail4" - -/datum/sprite_accessory/hair/oneshoulder - name = "One Shoulder" - icon_state = "hair_oneshoulder" - -/datum/sprite_accessory/hair/tressshoulder - name = "Tress Shoulder" - icon_state = "hair_tressshoulder" - -/datum/sprite_accessory/hair/parted - name = "Parted" - icon_state = "hair_parted" - -/datum/sprite_accessory/hair/pompadour - name = "Pompadour" - icon_state = "hair_pompadour" - -/datum/sprite_accessory/hair/bigpompadour - name = "Big Pompadour" - icon_state = "hair_bigpompadour" - -/datum/sprite_accessory/hair/quiff - name = "Quiff" - icon_state = "hair_quiff" - -/datum/sprite_accessory/hair/bedhead - name = "Bedhead" - icon_state = "hair_bedhead" - -/datum/sprite_accessory/hair/bedhead2 - name = "Bedhead 2" - icon_state = "hair_bedheadv2" - -/datum/sprite_accessory/hair/bedhead3 - name = "Bedhead 3" - icon_state = "hair_bedheadv3" - -/datum/sprite_accessory/hair/messy - name = "Messy" - icon_state = "hair_messy" - -/datum/sprite_accessory/hair/beehive - name = "Beehive" - icon_state = "hair_beehive" - -/datum/sprite_accessory/hair/beehive2 - name = "Beehive 2" - icon_state = "hair_beehivev2" - -/datum/sprite_accessory/hair/bobcurl - name = "Bobcurl" - icon_state = "hair_bobcurl" - -/datum/sprite_accessory/hair/bob - name = "Bob" - icon_state = "hair_bobcut" - -/datum/sprite_accessory/hair/bowl - name = "Bowl" - icon_state = "hair_bowlcut" - -/datum/sprite_accessory/hair/buzz - name = "Buzzcut" - icon_state = "hair_buzzcut" - -/datum/sprite_accessory/hair/crew - name = "Crewcut" - icon_state = "hair_crewcut" - -/datum/sprite_accessory/hair/combover - name = "Combover" - icon_state = "hair_combover" - -/datum/sprite_accessory/hair/devillock - name = "Devil Lock" - icon_state = "hair_devilock" - -/datum/sprite_accessory/hair/dreadlocks - name = "Dreadlocks" - icon_state = "hair_dreads" - -/datum/sprite_accessory/hair/curls - name = "Curls" - icon_state = "hair_curls" - -/datum/sprite_accessory/hair/afro - name = "Afro" - icon_state = "hair_afro" - -/datum/sprite_accessory/hair/afro2 - name = "Afro 2" - icon_state = "hair_afro2" - -/datum/sprite_accessory/hair/afro_large - name = "Big Afro" - icon_state = "hair_bigafro" - -/datum/sprite_accessory/hair/sargeant - name = "Flat Top" - icon_state = "hair_sargeant" - -/datum/sprite_accessory/hair/emo - name = "Emo" - icon_state = "hair_emo" - -/datum/sprite_accessory/hair/longemo - name = "Long Emo" - icon_state = "hair_longemo" - -/datum/sprite_accessory/hair/fag - name = "Flow Hair" - icon_state = "hair_f" - -/datum/sprite_accessory/hair/feather - name = "Feather" - icon_state = "hair_feather" - -/datum/sprite_accessory/hair/hitop - name = "Hitop" - icon_state = "hair_hitop" - -/datum/sprite_accessory/hair/mohawk - name = "Mohawk" - icon_state = "hair_d" - -/datum/sprite_accessory/hair/reversemohawk - name = "Reverse Mohawk" - icon_state = "hair_reversemohawk" - -/datum/sprite_accessory/hair/jensen - name = "Jensen Hair" - icon_state = "hair_jensen" - -/datum/sprite_accessory/hair/gelled - name = "Gelled Back" - icon_state = "hair_gelled" - -/datum/sprite_accessory/hair/spiky - name = "Spiky" - icon_state = "hair_spikey" - -/datum/sprite_accessory/hair/spiky2 - name = "Spiky 2" - icon_state = "hair_spiky" - -/datum/sprite_accessory/hair/spiky3 - name = "Spiky 3" - icon_state = "hair_spiky2" - -/datum/sprite_accessory/hair/protagonist - name = "Slightly Long" - icon_state = "hair_protagonist" - -/datum/sprite_accessory/hair/kusangi - name = "Kusanagi Hair" - icon_state = "hair_kusanagi" - -/datum/sprite_accessory/hair/kagami - name = "Pigtails" - icon_state = "hair_kagami" - -/datum/sprite_accessory/hair/pigtail - name = "Pigtails 2" - icon_state = "hair_pigtails" - -/datum/sprite_accessory/hair/pigtail - name = "Pigtails 3" - icon_state = "hair_pigtails2" - -/datum/sprite_accessory/hair/himecut - name = "Hime Cut" - icon_state = "hair_himecut" - -/datum/sprite_accessory/hair/himecut2 - name = "Hime Cut 2" - icon_state = "hair_himecut2" - -/datum/sprite_accessory/hair/himeup - name = "Hime Updo" - icon_state = "hair_himeup" - -/datum/sprite_accessory/hair/antenna - name = "Ahoge" - icon_state = "hair_antenna" - -/datum/sprite_accessory/hair/front_braid - name = "Braided front" - icon_state = "hair_braidfront" - -/datum/sprite_accessory/hair/lowbraid - name = "Low Braid" - icon_state = "hair_hbraid" - -/datum/sprite_accessory/hair/not_floorlength_braid - name = "High Braid" - icon_state = "hair_braid2" - -/datum/sprite_accessory/hair/shortbraid - name = "Short Braid" - icon_state = "hair_shortbraid" - -/datum/sprite_accessory/hair/braid - name = "Floorlength Braid" - icon_state = "hair_braid" - -/datum/sprite_accessory/hair/odango - name = "Odango" - icon_state = "hair_odango" - -/datum/sprite_accessory/hair/ombre - name = "Ombre" - icon_state = "hair_ombre" - -/datum/sprite_accessory/hair/updo - name = "Updo" - icon_state = "hair_updo" - -/datum/sprite_accessory/hair/skinhead - name = "Skinhead" - icon_state = "hair_skinhead" - -/datum/sprite_accessory/hair/longbangs - name = "Long Bangs" - icon_state = "hair_lbangs" - -/datum/sprite_accessory/hair/balding - name = "Balding Hair" - icon_state = "hair_e" - -/datum/sprite_accessory/hair/bald - name = "Bald" - icon_state = null - -/datum/sprite_accessory/hair/parted - name = "Side Part" - icon_state = "hair_part" - -/datum/sprite_accessory/hair/braided - name = "Braided" - icon_state = "hair_braided" - -/datum/sprite_accessory/hair/bun - name = "Bun Head" - icon_state = "hair_bun" - -/datum/sprite_accessory/hair/bun2 - name = "Bun Head 2" - icon_state = "hair_bunhead2" - -/datum/sprite_accessory/hair/braidtail - name = "Braided Tail" - icon_state = "hair_braidtail" - -/datum/sprite_accessory/hair/bigflattop - name = "Big Flat Top" - icon_state = "hair_bigflattop" - -/datum/sprite_accessory/hair/drillhair - name = "Drill Hair" - icon_state = "hair_drillhair" - -/datum/sprite_accessory/hair/keanu - name = "Keanu Hair" - icon_state = "hair_keanu" - -/datum/sprite_accessory/hair/swept - name = "Swept Back Hair" - icon_state = "hair_swept" - -/datum/sprite_accessory/hair/swept2 - name = "Swept Back Hair 2" - icon_state = "hair_swept2" - -/datum/sprite_accessory/hair/business - name = "Business Hair" - icon_state = "hair_business" - -/datum/sprite_accessory/hair/business2 - name = "Business Hair 2" - icon_state = "hair_business2" - -/datum/sprite_accessory/hair/business3 - name = "Business Hair 3" - icon_state = "hair_business3" - -/datum/sprite_accessory/hair/business4 - name = "Business Hair 4" - icon_state = "hair_business4" - -/datum/sprite_accessory/hair/hedgehog - name = "Hedgehog Hair" - icon_state = "hair_hedgehog" - -/datum/sprite_accessory/hair/bob - name = "Bob Hair" - icon_state = "hair_bob" - -/datum/sprite_accessory/hair/bob2 - name = "Bob Hair 2" - icon_state = "hair_bob2" - -/datum/sprite_accessory/hair/boddicker - name = "Boddicker" - icon_state = "hair_boddicker" - -/datum/sprite_accessory/hair/long - name = "Long Hair 1" - icon_state = "hair_long" - -/datum/sprite_accessory/hair/long2 - name = "Long Hair 2" - icon_state = "hair_long2" - -/datum/sprite_accessory/hair/pixie - name = "Pixie Cut" - icon_state = "hair_pixie" - -/datum/sprite_accessory/hair/megaeyebrows - name = "Mega Eyebrows" - icon_state = "hair_megaeyebrows" - -/datum/sprite_accessory/hair/highponytail - name = "High Ponytail" - icon_state = "hair_highponytail" - -/datum/sprite_accessory/hair/longponytail - name = "Long Ponytail" - icon_state = "hair_longstraightponytail" - -/datum/sprite_accessory/hair/sidepartlongalt - name = "Long Side Part" - icon_state = "hair_longsidepart" - -/datum/sprite_accessory/hair/sidecut - name = "Sidecut" - icon_state = "hair_sidecut" - -/datum/sprite_accessory/hair/largebun - name = "Large Bun" - icon_state = "hair_largebun" - -///////////////////////////// -// Facial Hair Definitions // -///////////////////////////// -/datum/sprite_accessory/facial_hair - icon = 'icons/mob/human_face.dmi' - gender = MALE // barf (unless you're a dorf, dorfs dig chix w/ beards :P) - -/datum/sprite_accessory/facial_hair/shaved - name = "Shaved" - icon_state = null - gender = NEUTER - -/datum/sprite_accessory/facial_hair/watson - name = "Watson Mustache" - icon_state = "facial_watson" - -/datum/sprite_accessory/facial_hair/hogan - name = "Hulk Hogan Mustache" - icon_state = "facial_hogan" //-Neek - -/datum/sprite_accessory/facial_hair/vandyke - name = "Van Dyke Mustache" - icon_state = "facial_vandyke" - -/datum/sprite_accessory/facial_hair/chaplin - name = "Square Mustache" - icon_state = "facial_chaplin" - -/datum/sprite_accessory/facial_hair/selleck - name = "Selleck Mustache" - icon_state = "facial_selleck" - -/datum/sprite_accessory/facial_hair/neckbeard - name = "Neckbeard" - icon_state = "facial_neckbeard" - -/datum/sprite_accessory/facial_hair/fullbeard - name = "Full Beard" - icon_state = "facial_fullbeard" - -/datum/sprite_accessory/facial_hair/longbeard - name = "Long Beard" - icon_state = "facial_longbeard" - -/datum/sprite_accessory/facial_hair/vlongbeard - name = "Very Long Beard" - icon_state = "facial_wise" - -/datum/sprite_accessory/facial_hair/elvis - name = "Elvis Sideburns" - icon_state = "facial_elvis" - -/datum/sprite_accessory/facial_hair/abe - name = "Abraham Lincoln Beard" - icon_state = "facial_abe" - -/datum/sprite_accessory/facial_hair/chinstrap - name = "Chinstrap" - icon_state = "facial_chin" - -/datum/sprite_accessory/facial_hair/hip - name = "Hipster Beard" - icon_state = "facial_hip" - -/datum/sprite_accessory/facial_hair/gt - name = "Goatee" - icon_state = "facial_gt" - -/datum/sprite_accessory/facial_hair/jensen - name = "Jensen Beard" - icon_state = "facial_jensen" - -/datum/sprite_accessory/facial_hair/dwarf - name = "Dwarf Beard" - icon_state = "facial_dwarf" - -/datum/sprite_accessory/facial_hair/fiveoclock - name = "Five o Clock Shadow" - icon_state = "facial_fiveoclock" - -/datum/sprite_accessory/facial_hair/fu - name = "Fu Manchu" - icon_state = "facial_fumanchu" - -/datum/sprite_accessory/facial_hair/brokenman - name = "Broken Man" - icon_state = "facial_brokenman" - - -/////////////////////////// -// Underwear Definitions // -/////////////////////////// -/datum/sprite_accessory/underwear - icon = 'icons/mob/underwear.dmi' - -/datum/sprite_accessory/underwear/nude - name = "Nude" - icon_state = null - gender = NEUTER - -/datum/sprite_accessory/underwear/male_white - name = "Mens White" - icon_state = "male_white" - gender = MALE - -/datum/sprite_accessory/underwear/male_grey - name = "Mens Grey" - icon_state = "male_grey" - gender = MALE - -/datum/sprite_accessory/underwear/male_green - name = "Mens Green" - icon_state = "male_green" - gender = MALE - -/datum/sprite_accessory/underwear/male_blue - name = "Mens Blue" - icon_state = "male_blue" - gender = MALE - -/datum/sprite_accessory/underwear/male_black - name = "Mens Black" - icon_state = "male_black" - gender = MALE - -/datum/sprite_accessory/underwear/male_mankini - name = "Mankini" - icon_state = "male_mankini" - gender = MALE - -/datum/sprite_accessory/underwear/male_hearts - name = "Mens Hearts Boxer" - icon_state = "male_hearts" - gender = MALE - -/datum/sprite_accessory/underwear/male_blackalt - name = "Mens Black Boxer" - icon_state = "male_blackalt" - gender = MALE - -/datum/sprite_accessory/underwear/male_greyalt - name = "Mens Grey Boxer" - icon_state = "male_greyalt" - gender = MALE - -/datum/sprite_accessory/underwear/male_stripe - name = "Mens Striped Boxer" - icon_state = "male_stripe" - gender = MALE - -/datum/sprite_accessory/underwear/male_commie - name = "Mens Striped Commie Boxer" - icon_state = "male_commie" - gender = MALE - -/datum/sprite_accessory/underwear/male_uk - name = "Mens Striped UK Boxer" - icon_state = "male_uk" - gender = MALE - -/datum/sprite_accessory/underwear/male_usastripe - name = "Mens Striped Freedom Boxer" - icon_state = "male_assblastusa" - gender = MALE - -/datum/sprite_accessory/underwear/male_kinky - name = "Mens Kinky" - icon_state = "male_kinky" - gender = MALE - -/datum/sprite_accessory/underwear/male_red - name = "Mens Red" - icon_state = "male_red" - gender = MALE - -/datum/sprite_accessory/underwear/female_red - name = "Ladies Red" - icon_state = "female_red" - gender = FEMALE - -/datum/sprite_accessory/underwear/female_white - name = "Ladies White" - icon_state = "female_white" - gender = FEMALE - -/datum/sprite_accessory/underwear/female_yellow - name = "Ladies Yellow" - icon_state = "female_yellow" - gender = FEMALE - -/datum/sprite_accessory/underwear/female_blue - name = "Ladies Blue" - icon_state = "female_blue" - gender = FEMALE - -/datum/sprite_accessory/underwear/female_black - name = "Ladies Black" - icon_state = "female_black" - gender = FEMALE - -/datum/sprite_accessory/underwear/female_thong - name = "Ladies Thong" - icon_state = "female_thong" - gender = FEMALE - -/datum/sprite_accessory/underwear/female_babydoll - name = "Babydoll" - icon_state = "female_babydoll" - gender = FEMALE - -/datum/sprite_accessory/underwear/female_babyblue - name = "Ladies Baby-Blue" - icon_state = "female_babyblue" - gender = FEMALE - -/datum/sprite_accessory/underwear/female_green - name = "Ladies Green" - icon_state = "female_green" - gender = FEMALE - -/datum/sprite_accessory/underwear/female_pink - name = "Ladies Pink" - icon_state = "female_pink" - gender = FEMALE - -/datum/sprite_accessory/underwear/female_kinky - name = "Ladies Kinky" - icon_state = "female_kinky" - gender = FEMALE - -/datum/sprite_accessory/underwear/female_whitealt - name = "Ladies White Sport" - icon_state = "female_whitealt" - gender = FEMALE - -/datum/sprite_accessory/underwear/female_blackalt - name = "Ladies Black Sport" - icon_state = "female_blackalt" - gender = FEMALE - -/datum/sprite_accessory/underwear/female_white_neko - name = "Ladies White Neko" - icon_state = "female_neko_white" - gender = FEMALE - -/datum/sprite_accessory/underwear/female_black_neko - name = "Ladies Black Neko" - icon_state = "female_neko_black" - gender = FEMALE - -/datum/sprite_accessory/underwear/female_usastripe - name = "Ladies Freedom" - icon_state = "female_assblastusa" - gender = FEMALE - -/datum/sprite_accessory/underwear/female_uk - name = "Ladies UK" - icon_state = "female_uk" - gender = FEMALE - -/datum/sprite_accessory/underwear/female_commie - name = "Ladies Commie" - icon_state = "female_commie" - gender = FEMALE - -//////////////////////////// -// Undershirt Definitions // -//////////////////////////// -/datum/sprite_accessory/undershirt - icon = 'icons/mob/underwear.dmi' - -/datum/sprite_accessory/undershirt/nude - name = "Nude" - icon_state = null - gender = NEUTER - -/datum/sprite_accessory/undershirt/shirt_white - name = "White Shirt" - icon_state = "shirt_white" - gender = NEUTER - -/datum/sprite_accessory/undershirt/shirt_black - name = "Black Shirt" - icon_state = "shirt_black" - gender = NEUTER - -/datum/sprite_accessory/undershirt/shirt_grey - name = "Grey Shirt" - icon_state = "shirt_grey" - gender = NEUTER - -/datum/sprite_accessory/undershirt/tank_white - name = "White Tank Top" - icon_state = "tank_white" - gender = NEUTER - -/datum/sprite_accessory/undershirt/tank_black - name = "Black Tank Top" - icon_state = "tank_black" - gender = NEUTER - -/datum/sprite_accessory/undershirt/tank_grey - name = "Grey Tank Top" - icon_state = "tank_grey" - gender = NEUTER - -/datum/sprite_accessory/undershirt/female_midriff - name = "Midriff Tank Top" - icon_state = "tank_midriff" - gender = FEMALE - -/datum/sprite_accessory/undershirt/lover - name = "Lover Shirt" - icon_state = "lover" - gender = NEUTER - -/datum/sprite_accessory/undershirt/ian - name = "Blue Ian Shirt" - icon_state = "ian" - gender = NEUTER - -/datum/sprite_accessory/undershirt/uk - name = "UK Shirt" - icon_state = "uk" - gender = NEUTER - -/datum/sprite_accessory/undershirt/usa - name = "USA Shirt" - icon_state = "shirt_assblastusa" - gender = NEUTER - -/datum/sprite_accessory/undershirt/ilovent - name = "I Love NT Shirt" - icon_state = "ilovent" - gender = NEUTER - -/datum/sprite_accessory/undershirt/peace - name = "Peace Shirt" - icon_state = "peace" - gender = NEUTER - -/datum/sprite_accessory/undershirt/mondmondjaja - name = "Band Shirt" - icon_state = "band" - gender = NEUTER - -/datum/sprite_accessory/undershirt/pacman - name = "Pogoman Shirt" - icon_state = "pogoman" - gender = NEUTER - -/datum/sprite_accessory/undershirt/matroska - name = "Matroska Shirt" - icon_state = "matroska" - gender = NEUTER - -/datum/sprite_accessory/undershirt/whiteshortsleeve - name = "White Short-sleeved Shirt" - icon_state = "whiteshortsleeve" - gender = NEUTER - -/datum/sprite_accessory/undershirt/purpleshortsleeve - name = "Purple Short-sleeved Shirt" - icon_state = "purpleshortsleeve" - gender = NEUTER - -/datum/sprite_accessory/undershirt/blueshortsleeve - name = "Blue Short-sleeved Shirt" - icon_state = "blueshortsleeve" - gender = NEUTER - -/datum/sprite_accessory/undershirt/greenshortsleeve - name = "Green Short-sleeved Shirt" - icon_state = "greenshortsleeve" - gender = NEUTER - -/datum/sprite_accessory/undershirt/blackshortsleeve - name = "Black Short-sleeved Shirt" - icon_state = "blackshortsleeve" - gender = NEUTER - -/datum/sprite_accessory/undershirt/blueshirt - name = "Blue T-Shirt" - icon_state = "blueshirt" - gender = NEUTER - -/datum/sprite_accessory/undershirt/redshirt - name = "Red T-Shirt" - icon_state = "redshirt" - gender = NEUTER - -/datum/sprite_accessory/undershirt/yellowshirt - name = "Yellow T-Shirt" - icon_state = "yellowshirt" - gender = NEUTER - -/datum/sprite_accessory/undershirt/greenshirt - name = "Green T-Shirt" - icon_state = "greenshirt" - gender = NEUTER - -/datum/sprite_accessory/undershirt/bluepolo - name = "Blue Polo Shirt" - icon_state = "bluepolo" - gender = NEUTER - -/datum/sprite_accessory/undershirt/redpolo - name = "Red Polo Shirt" - icon_state = "redpolo" - gender = NEUTER - -/datum/sprite_accessory/undershirt/whitepolo - name = "White Polo Shirt" - icon_state = "whitepolo" - gender = NEUTER - -/datum/sprite_accessory/undershirt/grayyellowpolo - name = "Gray-Yellow Polo Shirt" - icon_state = "grayyellowpolo" - gender = NEUTER - -/datum/sprite_accessory/undershirt/redtop - name = "Red Top" - icon_state = "redtop" - gender = FEMALE - -/datum/sprite_accessory/undershirt/whitetop - name = "White Top" - icon_state = "whitetop" - gender = FEMALE - -/datum/sprite_accessory/undershirt/greenshirtsport - name = "Green Sports Shirt" - icon_state = "greenshirtsport" - gender = NEUTER - -/datum/sprite_accessory/undershirt/redshirtsport - name = "Red Sports Shirt" - icon_state = "redshirtsport" - gender = NEUTER - -/datum/sprite_accessory/undershirt/blueshirtsport - name = "Blue Sports Shirt" - icon_state = "blueshirtsport" - gender = NEUTER - -/datum/sprite_accessory/undershirt/ss13 - name = "SS13 Shirt" - icon_state = "shirt_ss13" - gender = NEUTER - -/datum/sprite_accessory/undershirt/tankfire - name = "Fire Tank Top" - icon_state = "tank_fire" - gender = NEUTER - -/datum/sprite_accessory/undershirt/question - name = "Question Shirt" - icon_state = "shirt_question" - gender = NEUTER - -/datum/sprite_accessory/undershirt/skull - name = "Skull Shirt" - icon_state = "shirt_skull" - gender = NEUTER - -/datum/sprite_accessory/undershirt/commie - name = "Commie Shirt" - icon_state = "shirt_commie" - gender = NEUTER - -/datum/sprite_accessory/undershirt/nano - name = "Nanotrasen Shirt" - icon_state = "shirt_nano" - gender = NEUTER - -/datum/sprite_accessory/undershirt/stripe - name = "Striped Shirt" - icon_state = "shirt_stripes" - gender = NEUTER - -/datum/sprite_accessory/undershirt/blueshirt - name = "Blue Shirt" - icon_state = "shirt_blue" - gender = NEUTER - -/datum/sprite_accessory/undershirt/redshirt - name = "Red Shirt" - icon_state = "shirt_red" - gender = NEUTER - -/datum/sprite_accessory/undershirt/tank_red - name = "Red Tank Top" - icon_state = "tank_red" - gender = NEUTER - -/datum/sprite_accessory/undershirt/greenshirt - name = "Green Shirt" - icon_state = "shirt_green" - gender = NEUTER - -/datum/sprite_accessory/undershirt/meat - name = "Meat Shirt" - icon_state = "shirt_meat" - gender = NEUTER - -/datum/sprite_accessory/undershirt/tiedye - name = "Tie-dye Shirt" - icon_state = "shirt_tiedye" - gender = NEUTER - -/datum/sprite_accessory/undershirt/redjersey - name = "Red Jersey" - icon_state = "shirt_redjersey" - gender = NEUTER - -/datum/sprite_accessory/undershirt/bluejersey - name = "Blue Jersey" - icon_state = "shirt_bluejersey" - gender = NEUTER - -/datum/sprite_accessory/undershirt/tankstripe - name = "Striped Tank Top" - icon_state = "tank_stripes" - gender = NEUTER - -/datum/sprite_accessory/undershirt/clownshirt - name = "Clown Shirt" - icon_state = "shirt_clown" - gender = NEUTER - -/datum/sprite_accessory/undershirt/alienshirt - name = "Alien Shirt" - icon_state = "shirt_alien" - gender = NEUTER - - - -/////////////////////// -// Socks Definitions // -/////////////////////// -/datum/sprite_accessory/socks - icon = 'icons/mob/underwear.dmi' - -/datum/sprite_accessory/socks/nude - name = "Nude" - icon_state = null - -/datum/sprite_accessory/socks/white_norm - name = "Normal White" - icon_state = "white_norm" - -/datum/sprite_accessory/socks/black_norm - name = "Normal Black" - icon_state = "black_norm" - -/datum/sprite_accessory/socks/white_short - name = "Short White" - icon_state = "white_short" - -/datum/sprite_accessory/socks/black_short - name = "Short Black" - icon_state = "black_short" - -/datum/sprite_accessory/socks/white_knee - name = "Knee-high White" - icon_state = "white_knee" - -/datum/sprite_accessory/socks/black_knee - name = "Knee-high Black" - icon_state = "black_knee" - -/datum/sprite_accessory/socks/thin_knee - name = "Knee-high Thin" - icon_state = "thin_knee" - -/datum/sprite_accessory/socks/striped_knee - name = "Knee-high Striped" - icon_state = "striped_knee" - -/datum/sprite_accessory/socks/rainbow_knee - name = "Knee-high Rainbow" - icon_state = "rainbow_knee" - -/datum/sprite_accessory/socks/white_thigh - name = "Thigh-high White" - icon_state = "white_thigh" - -/datum/sprite_accessory/socks/black_thigh - name = "Thigh-high Black" - icon_state = "black_thigh" - -/datum/sprite_accessory/socks/thin_thigh - name = "Thigh-high Thin" - icon_state = "thin_thigh" - -/datum/sprite_accessory/socks/striped_thigh - name = "Thigh-high Striped" - icon_state = "striped_thigh" - -/datum/sprite_accessory/socks/rainbow_thigh - name = "Thigh-high Rainbow" - icon_state = "rainbow_thigh" - -/datum/sprite_accessory/socks/usa_knee - name = "Knee-High Freedom Stripes" - icon_state = "assblastusa_knee" - -/datum/sprite_accessory/socks/usa_thigh - name = "Thigh-high Freedom Stripes" - icon_state = "assblastusa_thigh" - -/datum/sprite_accessory/socks/uk_knee - name = "Knee-High UK Stripes" - icon_state = "uk_knee" - -/datum/sprite_accessory/socks/uk_thigh - name = "Thigh-high UK Stripes" - icon_state = "uk_thigh" - -/datum/sprite_accessory/socks/commie_knee - name = "Knee-High Commie Stripes" - icon_state = "commie_knee" - -/datum/sprite_accessory/socks/commie_thigh - name = "Thigh-high Commie Stripes" - icon_state = "commie_thigh" - -/datum/sprite_accessory/socks/pantyhose - name = "Pantyhose" - icon_state = "pantyhose" - -//////////.////////////////// -// MutantParts Definitions // -///////////////////////////// - -/datum/sprite_accessory/body_markings - icon = 'icons/mob/mutant_bodyparts.dmi' - -/datum/sprite_accessory/body_markings/none - name = "None" - icon_state = "none" - -/datum/sprite_accessory/body_markings/dtiger - name = "Dark Tiger Body" - icon_state = "dtiger" - gender_specific = 1 - -/datum/sprite_accessory/body_markings/ltiger - name = "Light Tiger Body" - icon_state = "ltiger" - gender_specific = 1 - -/datum/sprite_accessory/body_markings/lbelly - name = "Light Belly" - icon_state = "lbelly" - gender_specific = 1 - -/datum/sprite_accessory/tails - icon = 'icons/mob/mutant_bodyparts.dmi' - -/datum/sprite_accessory/tails_animated - icon = 'icons/mob/mutant_bodyparts.dmi' - -/datum/sprite_accessory/tails/lizard/smooth - name = "Smooth" - icon_state = "smooth" - -/datum/sprite_accessory/tails_animated/lizard/smooth - name = "Smooth" - icon_state = "smooth" - -/datum/sprite_accessory/tails/lizard/dtiger - name = "Dark Tiger" - icon_state = "dtiger" - -/datum/sprite_accessory/tails_animated/lizard/dtiger - name = "Dark Tiger" - icon_state = "dtiger" - -/datum/sprite_accessory/tails/lizard/ltiger - name = "Light Tiger" - icon_state = "ltiger" - -/datum/sprite_accessory/tails_animated/lizard/ltiger - name = "Light Tiger" - icon_state = "ltiger" - -/datum/sprite_accessory/tails/lizard/spikes - name = "Spikes" - icon_state = "spikes" - -/datum/sprite_accessory/tails_animated/lizard/spikes - name = "Spikes" - icon_state = "spikes" - -/datum/sprite_accessory/tails/human/none - name = "None" - icon_state = "none" - -/datum/sprite_accessory/tails_animated/human/none - name = "None" - icon_state = "none" - -/datum/sprite_accessory/tails/human/cat - name = "Cat" - icon_state = "cat" - color_src = HAIR - -/datum/sprite_accessory/tails_animated/human/cat - name = "Cat" - icon_state = "cat" - color_src = HAIR - -/datum/sprite_accessory/snouts - icon = 'icons/mob/mutant_bodyparts.dmi' - -/datum/sprite_accessory/snouts/sharp - name = "Sharp" - icon_state = "sharp" - -/datum/sprite_accessory/snouts/round - name = "Round" - icon_state = "round" - -/datum/sprite_accessory/snouts/sharplight - name = "Sharp + Light" - icon_state = "sharplight" - -/datum/sprite_accessory/snouts/roundlight - name = "Round + Light" - icon_state = "roundlight" - -/datum/sprite_accessory/horns - icon = 'icons/mob/mutant_bodyparts.dmi' - -/datum/sprite_accessory/horns/none - name = "None" - icon_state = "none" - -/datum/sprite_accessory/horns/simple - name = "Simple" - icon_state = "simple" - -/datum/sprite_accessory/horns/short - name = "Short" - icon_state = "short" - -/datum/sprite_accessory/horns/curled - name = "Curled" - icon_state = "curled" - -/datum/sprite_accessory/horns/ram - name = "Ram" - icon_state = "ram" - -/datum/sprite_accessory/horns/angler - name = "Angeler" - icon_state = "angler" - -/datum/sprite_accessory/ears - icon = 'icons/mob/mutant_bodyparts.dmi' - -/datum/sprite_accessory/ears/none - name = "None" - icon_state = "none" - -/datum/sprite_accessory/ears/cat - name = "Cat" - icon_state = "cat" - hasinner = 1 - color_src = HAIR - -/datum/sprite_accessory/wings/none - name = "None" - icon_state = "none" - -/datum/sprite_accessory/wings_open - icon = 'icons/mob/wings.dmi' - -/datum/sprite_accessory/wings_open/angel - name = "Angel" - icon_state = "angel" - color_src = 0 - dimension_x = 46 - center = TRUE - dimension_y = 34 - -/datum/sprite_accessory/wings - icon = 'icons/mob/wings.dmi' - -/datum/sprite_accessory/wings/angel - name = "Angel" - icon_state = "angel" - color_src = 0 - dimension_x = 46 - center = TRUE - dimension_y = 34 - locked = TRUE - -/datum/sprite_accessory/frills - icon = 'icons/mob/mutant_bodyparts.dmi' - -/datum/sprite_accessory/frills/none - name = "None" - icon_state = "none" - -/datum/sprite_accessory/frills/simple - name = "Simple" - icon_state = "simple" - -/datum/sprite_accessory/frills/short - name = "Short" - icon_state = "short" - -/datum/sprite_accessory/frills/aquatic - name = "Aquatic" - icon_state = "aqua" - -/datum/sprite_accessory/spines - icon = 'icons/mob/mutant_bodyparts.dmi' - -/datum/sprite_accessory/spines_animated - icon = 'icons/mob/mutant_bodyparts.dmi' - -/datum/sprite_accessory/spines/none - name = "None" - icon_state = "none" - -/datum/sprite_accessory/spines_animated/none - name = "None" - icon_state = "none" - -/datum/sprite_accessory/spines/short - name = "Short" - icon_state = "short" - -/datum/sprite_accessory/spines_animated/short - name = "Short" - icon_state = "short" - -/datum/sprite_accessory/spines/shortmeme - name = "Short + Membrane" - icon_state = "shortmeme" - -/datum/sprite_accessory/spines_animated/shortmeme - name = "Short + Membrane" - icon_state = "shortmeme" - -/datum/sprite_accessory/spines/long - name = "Long" - icon_state = "long" - -/datum/sprite_accessory/spines_animated/long - name = "Long" - icon_state = "long" - -/datum/sprite_accessory/spines/longmeme - name = "Long + Membrane" - icon_state = "longmeme" - -/datum/sprite_accessory/spines_animated/longmeme - name = "Long + Membrane" - icon_state = "longmeme" - -/datum/sprite_accessory/spines/aqautic - name = "Aquatic" - icon_state = "aqua" - -/datum/sprite_accessory/spines_animated/aqautic - name = "Aquatic" - icon_state = "aqua" - -/datum/sprite_accessory/legs //legs are a special case, they aren't actually sprite_accessories but are updated with them. - icon = null //These datums exist for selecting legs on preference, and little else - -/datum/sprite_accessory/legs/none - name = "Normal Legs" - -/datum/sprite_accessory/legs/digitigrade_lizard - name = "Digitigrade Legs" + var/dimension_x = 32 + var/dimension_y = 32 + var/center = FALSE //Should we center the sprite? + +////////////////////// +// Hair Definitions // +////////////////////// +/datum/sprite_accessory/hair + icon = 'icons/mob/human_face.dmi' // default icon for all hairs + +/datum/sprite_accessory/hair/short + name = "Short Hair" // try to capatilize the names please~ // try to spell + icon_state = "hair_a" // you do not need to define _s or _l sub-states, game automatically does this for you + +/datum/sprite_accessory/hair/shorthair2 + name = "Short Hair 2" + icon_state = "hair_shorthair2" + +/datum/sprite_accessory/hair/shorthair3 + name = "Short Hair 3" + icon_state = "hair_shorthair3" + +/datum/sprite_accessory/hair/cut + name = "Cut Hair" + icon_state = "hair_c" + +/datum/sprite_accessory/hair/long + name = "Shoulder-length Hair" + icon_state = "hair_b" + +/datum/sprite_accessory/hair/longer + name = "Long Hair" + icon_state = "hair_vlong" + +/datum/sprite_accessory/hair/over_eye + name = "Over Eye" + icon_state = "hair_shortovereye" + +/datum/sprite_accessory/hair/long_over_eye + name = "Long Over Eye" + icon_state = "hair_longovereye" + +/datum/sprite_accessory/hair/longest2 + name = "Very Long Over Eye" + icon_state = "hair_longest2" + +/datum/sprite_accessory/hair/longest + name = "Very Long Hair" + icon_state = "hair_longest" + +/datum/sprite_accessory/hair/longfringe + name = "Long Fringe" + icon_state = "hair_longfringe" + +/datum/sprite_accessory/hair/longestalt + name = "Longer Fringe" + icon_state = "hair_vlongfringe" + +/datum/sprite_accessory/hair/gentle + name = "Gentle" + icon_state = "hair_gentle" + +/datum/sprite_accessory/hair/halfbang + name = "Half-banged Hair" + icon_state = "hair_halfbang" + +/datum/sprite_accessory/hair/halfbang2 + name = "Half-banged Hair 2" + icon_state = "hair_halfbang2" + +/datum/sprite_accessory/hair/ponytail1 + name = "Ponytail" + icon_state = "hair_ponytail" + +/datum/sprite_accessory/hair/ponytail2 + name = "Ponytail 2" + icon_state = "hair_ponytail2" + +/datum/sprite_accessory/hair/ponytail3 + name = "Ponytail 3" + icon_state = "hair_ponytail3" + +/datum/sprite_accessory/hair/ponytail4 + name = "Ponytail 4" + icon_state = "hair_ponytail4" + +/datum/sprite_accessory/hair/ponytail5 + name = "Ponytail 5" + icon_state = "hair_ponytail5" + + +/datum/sprite_accessory/hair/sidetail + name = "Side Pony" + icon_state = "hair_sidetail" + +/datum/sprite_accessory/hair/sidetail2 + name = "Side Pony 2" + icon_state = "hair_sidetail2" + +/datum/sprite_accessory/hair/sidetail3 + name = "Side Pony 3" + icon_state = "hair_sidetail3" + +/datum/sprite_accessory/hair/sidetail4 + name = "Side Pony 4" + icon_state = "hair_sidetail4" + +/datum/sprite_accessory/hair/oneshoulder + name = "One Shoulder" + icon_state = "hair_oneshoulder" + +/datum/sprite_accessory/hair/tressshoulder + name = "Tress Shoulder" + icon_state = "hair_tressshoulder" + +/datum/sprite_accessory/hair/parted + name = "Parted" + icon_state = "hair_parted" + +/datum/sprite_accessory/hair/pompadour + name = "Pompadour" + icon_state = "hair_pompadour" + +/datum/sprite_accessory/hair/bigpompadour + name = "Big Pompadour" + icon_state = "hair_bigpompadour" + +/datum/sprite_accessory/hair/quiff + name = "Quiff" + icon_state = "hair_quiff" + +/datum/sprite_accessory/hair/bedhead + name = "Bedhead" + icon_state = "hair_bedhead" + +/datum/sprite_accessory/hair/bedhead2 + name = "Bedhead 2" + icon_state = "hair_bedheadv2" + +/datum/sprite_accessory/hair/bedhead3 + name = "Bedhead 3" + icon_state = "hair_bedheadv3" + +/datum/sprite_accessory/hair/messy + name = "Messy" + icon_state = "hair_messy" + +/datum/sprite_accessory/hair/beehive + name = "Beehive" + icon_state = "hair_beehive" + +/datum/sprite_accessory/hair/beehive2 + name = "Beehive 2" + icon_state = "hair_beehivev2" + +/datum/sprite_accessory/hair/bobcurl + name = "Bobcurl" + icon_state = "hair_bobcurl" + +/datum/sprite_accessory/hair/bob + name = "Bob" + icon_state = "hair_bobcut" + +/datum/sprite_accessory/hair/bowl + name = "Bowl" + icon_state = "hair_bowlcut" + +/datum/sprite_accessory/hair/buzz + name = "Buzzcut" + icon_state = "hair_buzzcut" + +/datum/sprite_accessory/hair/crew + name = "Crewcut" + icon_state = "hair_crewcut" + +/datum/sprite_accessory/hair/combover + name = "Combover" + icon_state = "hair_combover" + +/datum/sprite_accessory/hair/devillock + name = "Devil Lock" + icon_state = "hair_devilock" + +/datum/sprite_accessory/hair/dreadlocks + name = "Dreadlocks" + icon_state = "hair_dreads" + +/datum/sprite_accessory/hair/curls + name = "Curls" + icon_state = "hair_curls" + +/datum/sprite_accessory/hair/afro + name = "Afro" + icon_state = "hair_afro" + +/datum/sprite_accessory/hair/afro2 + name = "Afro 2" + icon_state = "hair_afro2" + +/datum/sprite_accessory/hair/afro_large + name = "Big Afro" + icon_state = "hair_bigafro" + +/datum/sprite_accessory/hair/sargeant + name = "Flat Top" + icon_state = "hair_sargeant" + +/datum/sprite_accessory/hair/emo + name = "Emo" + icon_state = "hair_emo" + +/datum/sprite_accessory/hair/longemo + name = "Long Emo" + icon_state = "hair_longemo" + +/datum/sprite_accessory/hair/fag + name = "Flow Hair" + icon_state = "hair_f" + +/datum/sprite_accessory/hair/feather + name = "Feather" + icon_state = "hair_feather" + +/datum/sprite_accessory/hair/hitop + name = "Hitop" + icon_state = "hair_hitop" + +/datum/sprite_accessory/hair/mohawk + name = "Mohawk" + icon_state = "hair_d" + +/datum/sprite_accessory/hair/reversemohawk + name = "Reverse Mohawk" + icon_state = "hair_reversemohawk" + +/datum/sprite_accessory/hair/jensen + name = "Jensen Hair" + icon_state = "hair_jensen" + +/datum/sprite_accessory/hair/gelled + name = "Gelled Back" + icon_state = "hair_gelled" + +/datum/sprite_accessory/hair/spiky + name = "Spiky" + icon_state = "hair_spikey" + +/datum/sprite_accessory/hair/spiky2 + name = "Spiky 2" + icon_state = "hair_spiky" + +/datum/sprite_accessory/hair/spiky3 + name = "Spiky 3" + icon_state = "hair_spiky2" + +/datum/sprite_accessory/hair/protagonist + name = "Slightly Long" + icon_state = "hair_protagonist" + +/datum/sprite_accessory/hair/kusangi + name = "Kusanagi Hair" + icon_state = "hair_kusanagi" + +/datum/sprite_accessory/hair/kagami + name = "Pigtails" + icon_state = "hair_kagami" + +/datum/sprite_accessory/hair/pigtail + name = "Pigtails 2" + icon_state = "hair_pigtails" + +/datum/sprite_accessory/hair/pigtail + name = "Pigtails 3" + icon_state = "hair_pigtails2" + +/datum/sprite_accessory/hair/himecut + name = "Hime Cut" + icon_state = "hair_himecut" + +/datum/sprite_accessory/hair/himecut2 + name = "Hime Cut 2" + icon_state = "hair_himecut2" + +/datum/sprite_accessory/hair/himeup + name = "Hime Updo" + icon_state = "hair_himeup" + +/datum/sprite_accessory/hair/antenna + name = "Ahoge" + icon_state = "hair_antenna" + +/datum/sprite_accessory/hair/front_braid + name = "Braided front" + icon_state = "hair_braidfront" + +/datum/sprite_accessory/hair/lowbraid + name = "Low Braid" + icon_state = "hair_hbraid" + +/datum/sprite_accessory/hair/not_floorlength_braid + name = "High Braid" + icon_state = "hair_braid2" + +/datum/sprite_accessory/hair/shortbraid + name = "Short Braid" + icon_state = "hair_shortbraid" + +/datum/sprite_accessory/hair/braid + name = "Floorlength Braid" + icon_state = "hair_braid" + +/datum/sprite_accessory/hair/odango + name = "Odango" + icon_state = "hair_odango" + +/datum/sprite_accessory/hair/ombre + name = "Ombre" + icon_state = "hair_ombre" + +/datum/sprite_accessory/hair/updo + name = "Updo" + icon_state = "hair_updo" + +/datum/sprite_accessory/hair/skinhead + name = "Skinhead" + icon_state = "hair_skinhead" + +/datum/sprite_accessory/hair/longbangs + name = "Long Bangs" + icon_state = "hair_lbangs" + +/datum/sprite_accessory/hair/balding + name = "Balding Hair" + icon_state = "hair_e" + +/datum/sprite_accessory/hair/bald + name = "Bald" + icon_state = null + +/datum/sprite_accessory/hair/parted + name = "Side Part" + icon_state = "hair_part" + +/datum/sprite_accessory/hair/braided + name = "Braided" + icon_state = "hair_braided" + +/datum/sprite_accessory/hair/bun + name = "Bun Head" + icon_state = "hair_bun" + +/datum/sprite_accessory/hair/bun2 + name = "Bun Head 2" + icon_state = "hair_bunhead2" + +/datum/sprite_accessory/hair/braidtail + name = "Braided Tail" + icon_state = "hair_braidtail" + +/datum/sprite_accessory/hair/bigflattop + name = "Big Flat Top" + icon_state = "hair_bigflattop" + +/datum/sprite_accessory/hair/drillhair + name = "Drill Hair" + icon_state = "hair_drillhair" + +/datum/sprite_accessory/hair/keanu + name = "Keanu Hair" + icon_state = "hair_keanu" + +/datum/sprite_accessory/hair/swept + name = "Swept Back Hair" + icon_state = "hair_swept" + +/datum/sprite_accessory/hair/swept2 + name = "Swept Back Hair 2" + icon_state = "hair_swept2" + +/datum/sprite_accessory/hair/business + name = "Business Hair" + icon_state = "hair_business" + +/datum/sprite_accessory/hair/business2 + name = "Business Hair 2" + icon_state = "hair_business2" + +/datum/sprite_accessory/hair/business3 + name = "Business Hair 3" + icon_state = "hair_business3" + +/datum/sprite_accessory/hair/business4 + name = "Business Hair 4" + icon_state = "hair_business4" + +/datum/sprite_accessory/hair/hedgehog + name = "Hedgehog Hair" + icon_state = "hair_hedgehog" + +/datum/sprite_accessory/hair/bob + name = "Bob Hair" + icon_state = "hair_bob" + +/datum/sprite_accessory/hair/bob2 + name = "Bob Hair 2" + icon_state = "hair_bob2" + +/datum/sprite_accessory/hair/boddicker + name = "Boddicker" + icon_state = "hair_boddicker" + +/datum/sprite_accessory/hair/long + name = "Long Hair 1" + icon_state = "hair_long" + +/datum/sprite_accessory/hair/long2 + name = "Long Hair 2" + icon_state = "hair_long2" + +/datum/sprite_accessory/hair/pixie + name = "Pixie Cut" + icon_state = "hair_pixie" + +/datum/sprite_accessory/hair/megaeyebrows + name = "Mega Eyebrows" + icon_state = "hair_megaeyebrows" + +/datum/sprite_accessory/hair/highponytail + name = "High Ponytail" + icon_state = "hair_highponytail" + +/datum/sprite_accessory/hair/longponytail + name = "Long Ponytail" + icon_state = "hair_longstraightponytail" + +/datum/sprite_accessory/hair/sidepartlongalt + name = "Long Side Part" + icon_state = "hair_longsidepart" + +/datum/sprite_accessory/hair/sidecut + name = "Sidecut" + icon_state = "hair_sidecut" + +/datum/sprite_accessory/hair/largebun + name = "Large Bun" + icon_state = "hair_largebun" + +///////////////////////////// +// Facial Hair Definitions // +///////////////////////////// +/datum/sprite_accessory/facial_hair + icon = 'icons/mob/human_face.dmi' + gender = MALE // barf (unless you're a dorf, dorfs dig chix w/ beards :P) + +/datum/sprite_accessory/facial_hair/shaved + name = "Shaved" + icon_state = null + gender = NEUTER + +/datum/sprite_accessory/facial_hair/watson + name = "Watson Mustache" + icon_state = "facial_watson" + +/datum/sprite_accessory/facial_hair/hogan + name = "Hulk Hogan Mustache" + icon_state = "facial_hogan" //-Neek + +/datum/sprite_accessory/facial_hair/vandyke + name = "Van Dyke Mustache" + icon_state = "facial_vandyke" + +/datum/sprite_accessory/facial_hair/chaplin + name = "Square Mustache" + icon_state = "facial_chaplin" + +/datum/sprite_accessory/facial_hair/selleck + name = "Selleck Mustache" + icon_state = "facial_selleck" + +/datum/sprite_accessory/facial_hair/neckbeard + name = "Neckbeard" + icon_state = "facial_neckbeard" + +/datum/sprite_accessory/facial_hair/fullbeard + name = "Full Beard" + icon_state = "facial_fullbeard" + +/datum/sprite_accessory/facial_hair/longbeard + name = "Long Beard" + icon_state = "facial_longbeard" + +/datum/sprite_accessory/facial_hair/vlongbeard + name = "Very Long Beard" + icon_state = "facial_wise" + +/datum/sprite_accessory/facial_hair/elvis + name = "Elvis Sideburns" + icon_state = "facial_elvis" + +/datum/sprite_accessory/facial_hair/abe + name = "Abraham Lincoln Beard" + icon_state = "facial_abe" + +/datum/sprite_accessory/facial_hair/chinstrap + name = "Chinstrap" + icon_state = "facial_chin" + +/datum/sprite_accessory/facial_hair/hip + name = "Hipster Beard" + icon_state = "facial_hip" + +/datum/sprite_accessory/facial_hair/gt + name = "Goatee" + icon_state = "facial_gt" + +/datum/sprite_accessory/facial_hair/jensen + name = "Jensen Beard" + icon_state = "facial_jensen" + +/datum/sprite_accessory/facial_hair/dwarf + name = "Dwarf Beard" + icon_state = "facial_dwarf" + +/datum/sprite_accessory/facial_hair/fiveoclock + name = "Five o Clock Shadow" + icon_state = "facial_fiveoclock" + +/datum/sprite_accessory/facial_hair/fu + name = "Fu Manchu" + icon_state = "facial_fumanchu" + +/datum/sprite_accessory/facial_hair/brokenman + name = "Broken Man" + icon_state = "facial_brokenman" + + +/////////////////////////// +// Underwear Definitions // +/////////////////////////// +/datum/sprite_accessory/underwear + icon = 'icons/mob/underwear.dmi' + +/datum/sprite_accessory/underwear/nude + name = "Nude" + icon_state = null + gender = NEUTER + +/datum/sprite_accessory/underwear/male_white + name = "Mens White" + icon_state = "male_white" + gender = MALE + +/datum/sprite_accessory/underwear/male_grey + name = "Mens Grey" + icon_state = "male_grey" + gender = MALE + +/datum/sprite_accessory/underwear/male_green + name = "Mens Green" + icon_state = "male_green" + gender = MALE + +/datum/sprite_accessory/underwear/male_blue + name = "Mens Blue" + icon_state = "male_blue" + gender = MALE + +/datum/sprite_accessory/underwear/male_black + name = "Mens Black" + icon_state = "male_black" + gender = MALE + +/datum/sprite_accessory/underwear/male_mankini + name = "Mankini" + icon_state = "male_mankini" + gender = MALE + +/datum/sprite_accessory/underwear/male_hearts + name = "Mens Hearts Boxer" + icon_state = "male_hearts" + gender = MALE + +/datum/sprite_accessory/underwear/male_blackalt + name = "Mens Black Boxer" + icon_state = "male_blackalt" + gender = MALE + +/datum/sprite_accessory/underwear/male_greyalt + name = "Mens Grey Boxer" + icon_state = "male_greyalt" + gender = MALE + +/datum/sprite_accessory/underwear/male_stripe + name = "Mens Striped Boxer" + icon_state = "male_stripe" + gender = MALE + +/datum/sprite_accessory/underwear/male_commie + name = "Mens Striped Commie Boxer" + icon_state = "male_commie" + gender = MALE + +/datum/sprite_accessory/underwear/male_uk + name = "Mens Striped UK Boxer" + icon_state = "male_uk" + gender = MALE + +/datum/sprite_accessory/underwear/male_usastripe + name = "Mens Striped Freedom Boxer" + icon_state = "male_assblastusa" + gender = MALE + +/datum/sprite_accessory/underwear/male_kinky + name = "Mens Kinky" + icon_state = "male_kinky" + gender = MALE + +/datum/sprite_accessory/underwear/male_red + name = "Mens Red" + icon_state = "male_red" + gender = MALE + +/datum/sprite_accessory/underwear/female_red + name = "Ladies Red" + icon_state = "female_red" + gender = FEMALE + +/datum/sprite_accessory/underwear/female_white + name = "Ladies White" + icon_state = "female_white" + gender = FEMALE + +/datum/sprite_accessory/underwear/female_yellow + name = "Ladies Yellow" + icon_state = "female_yellow" + gender = FEMALE + +/datum/sprite_accessory/underwear/female_blue + name = "Ladies Blue" + icon_state = "female_blue" + gender = FEMALE + +/datum/sprite_accessory/underwear/female_black + name = "Ladies Black" + icon_state = "female_black" + gender = FEMALE + +/datum/sprite_accessory/underwear/female_thong + name = "Ladies Thong" + icon_state = "female_thong" + gender = FEMALE + +/datum/sprite_accessory/underwear/female_babydoll + name = "Babydoll" + icon_state = "female_babydoll" + gender = FEMALE + +/datum/sprite_accessory/underwear/female_babyblue + name = "Ladies Baby-Blue" + icon_state = "female_babyblue" + gender = FEMALE + +/datum/sprite_accessory/underwear/female_green + name = "Ladies Green" + icon_state = "female_green" + gender = FEMALE + +/datum/sprite_accessory/underwear/female_pink + name = "Ladies Pink" + icon_state = "female_pink" + gender = FEMALE + +/datum/sprite_accessory/underwear/female_kinky + name = "Ladies Kinky" + icon_state = "female_kinky" + gender = FEMALE + +/datum/sprite_accessory/underwear/female_whitealt + name = "Ladies White Sport" + icon_state = "female_whitealt" + gender = FEMALE + +/datum/sprite_accessory/underwear/female_blackalt + name = "Ladies Black Sport" + icon_state = "female_blackalt" + gender = FEMALE + +/datum/sprite_accessory/underwear/female_white_neko + name = "Ladies White Neko" + icon_state = "female_neko_white" + gender = FEMALE + +/datum/sprite_accessory/underwear/female_black_neko + name = "Ladies Black Neko" + icon_state = "female_neko_black" + gender = FEMALE + +/datum/sprite_accessory/underwear/female_usastripe + name = "Ladies Freedom" + icon_state = "female_assblastusa" + gender = FEMALE + +/datum/sprite_accessory/underwear/female_uk + name = "Ladies UK" + icon_state = "female_uk" + gender = FEMALE + +/datum/sprite_accessory/underwear/female_commie + name = "Ladies Commie" + icon_state = "female_commie" + gender = FEMALE + +//////////////////////////// +// Undershirt Definitions // +//////////////////////////// +/datum/sprite_accessory/undershirt + icon = 'icons/mob/underwear.dmi' + +/datum/sprite_accessory/undershirt/nude + name = "Nude" + icon_state = null + gender = NEUTER + +/datum/sprite_accessory/undershirt/shirt_white + name = "White Shirt" + icon_state = "shirt_white" + gender = NEUTER + +/datum/sprite_accessory/undershirt/shirt_black + name = "Black Shirt" + icon_state = "shirt_black" + gender = NEUTER + +/datum/sprite_accessory/undershirt/shirt_grey + name = "Grey Shirt" + icon_state = "shirt_grey" + gender = NEUTER + +/datum/sprite_accessory/undershirt/tank_white + name = "White Tank Top" + icon_state = "tank_white" + gender = NEUTER + +/datum/sprite_accessory/undershirt/tank_black + name = "Black Tank Top" + icon_state = "tank_black" + gender = NEUTER + +/datum/sprite_accessory/undershirt/tank_grey + name = "Grey Tank Top" + icon_state = "tank_grey" + gender = NEUTER + +/datum/sprite_accessory/undershirt/female_midriff + name = "Midriff Tank Top" + icon_state = "tank_midriff" + gender = FEMALE + +/datum/sprite_accessory/undershirt/lover + name = "Lover Shirt" + icon_state = "lover" + gender = NEUTER + +/datum/sprite_accessory/undershirt/ian + name = "Blue Ian Shirt" + icon_state = "ian" + gender = NEUTER + +/datum/sprite_accessory/undershirt/uk + name = "UK Shirt" + icon_state = "uk" + gender = NEUTER + +/datum/sprite_accessory/undershirt/usa + name = "USA Shirt" + icon_state = "shirt_assblastusa" + gender = NEUTER + +/datum/sprite_accessory/undershirt/ilovent + name = "I Love NT Shirt" + icon_state = "ilovent" + gender = NEUTER + +/datum/sprite_accessory/undershirt/peace + name = "Peace Shirt" + icon_state = "peace" + gender = NEUTER + +/datum/sprite_accessory/undershirt/mondmondjaja + name = "Band Shirt" + icon_state = "band" + gender = NEUTER + +/datum/sprite_accessory/undershirt/pacman + name = "Pogoman Shirt" + icon_state = "pogoman" + gender = NEUTER + +/datum/sprite_accessory/undershirt/matroska + name = "Matroska Shirt" + icon_state = "matroska" + gender = NEUTER + +/datum/sprite_accessory/undershirt/whiteshortsleeve + name = "White Short-sleeved Shirt" + icon_state = "whiteshortsleeve" + gender = NEUTER + +/datum/sprite_accessory/undershirt/purpleshortsleeve + name = "Purple Short-sleeved Shirt" + icon_state = "purpleshortsleeve" + gender = NEUTER + +/datum/sprite_accessory/undershirt/blueshortsleeve + name = "Blue Short-sleeved Shirt" + icon_state = "blueshortsleeve" + gender = NEUTER + +/datum/sprite_accessory/undershirt/greenshortsleeve + name = "Green Short-sleeved Shirt" + icon_state = "greenshortsleeve" + gender = NEUTER + +/datum/sprite_accessory/undershirt/blackshortsleeve + name = "Black Short-sleeved Shirt" + icon_state = "blackshortsleeve" + gender = NEUTER + +/datum/sprite_accessory/undershirt/blueshirt + name = "Blue T-Shirt" + icon_state = "blueshirt" + gender = NEUTER + +/datum/sprite_accessory/undershirt/redshirt + name = "Red T-Shirt" + icon_state = "redshirt" + gender = NEUTER + +/datum/sprite_accessory/undershirt/yellowshirt + name = "Yellow T-Shirt" + icon_state = "yellowshirt" + gender = NEUTER + +/datum/sprite_accessory/undershirt/greenshirt + name = "Green T-Shirt" + icon_state = "greenshirt" + gender = NEUTER + +/datum/sprite_accessory/undershirt/bluepolo + name = "Blue Polo Shirt" + icon_state = "bluepolo" + gender = NEUTER + +/datum/sprite_accessory/undershirt/redpolo + name = "Red Polo Shirt" + icon_state = "redpolo" + gender = NEUTER + +/datum/sprite_accessory/undershirt/whitepolo + name = "White Polo Shirt" + icon_state = "whitepolo" + gender = NEUTER + +/datum/sprite_accessory/undershirt/grayyellowpolo + name = "Gray-Yellow Polo Shirt" + icon_state = "grayyellowpolo" + gender = NEUTER + +/datum/sprite_accessory/undershirt/redtop + name = "Red Top" + icon_state = "redtop" + gender = FEMALE + +/datum/sprite_accessory/undershirt/whitetop + name = "White Top" + icon_state = "whitetop" + gender = FEMALE + +/datum/sprite_accessory/undershirt/greenshirtsport + name = "Green Sports Shirt" + icon_state = "greenshirtsport" + gender = NEUTER + +/datum/sprite_accessory/undershirt/redshirtsport + name = "Red Sports Shirt" + icon_state = "redshirtsport" + gender = NEUTER + +/datum/sprite_accessory/undershirt/blueshirtsport + name = "Blue Sports Shirt" + icon_state = "blueshirtsport" + gender = NEUTER + +/datum/sprite_accessory/undershirt/ss13 + name = "SS13 Shirt" + icon_state = "shirt_ss13" + gender = NEUTER + +/datum/sprite_accessory/undershirt/tankfire + name = "Fire Tank Top" + icon_state = "tank_fire" + gender = NEUTER + +/datum/sprite_accessory/undershirt/question + name = "Question Shirt" + icon_state = "shirt_question" + gender = NEUTER + +/datum/sprite_accessory/undershirt/skull + name = "Skull Shirt" + icon_state = "shirt_skull" + gender = NEUTER + +/datum/sprite_accessory/undershirt/commie + name = "Commie Shirt" + icon_state = "shirt_commie" + gender = NEUTER + +/datum/sprite_accessory/undershirt/nano + name = "Nanotrasen Shirt" + icon_state = "shirt_nano" + gender = NEUTER + +/datum/sprite_accessory/undershirt/stripe + name = "Striped Shirt" + icon_state = "shirt_stripes" + gender = NEUTER + +/datum/sprite_accessory/undershirt/blueshirt + name = "Blue Shirt" + icon_state = "shirt_blue" + gender = NEUTER + +/datum/sprite_accessory/undershirt/redshirt + name = "Red Shirt" + icon_state = "shirt_red" + gender = NEUTER + +/datum/sprite_accessory/undershirt/tank_red + name = "Red Tank Top" + icon_state = "tank_red" + gender = NEUTER + +/datum/sprite_accessory/undershirt/greenshirt + name = "Green Shirt" + icon_state = "shirt_green" + gender = NEUTER + +/datum/sprite_accessory/undershirt/meat + name = "Meat Shirt" + icon_state = "shirt_meat" + gender = NEUTER + +/datum/sprite_accessory/undershirt/tiedye + name = "Tie-dye Shirt" + icon_state = "shirt_tiedye" + gender = NEUTER + +/datum/sprite_accessory/undershirt/redjersey + name = "Red Jersey" + icon_state = "shirt_redjersey" + gender = NEUTER + +/datum/sprite_accessory/undershirt/bluejersey + name = "Blue Jersey" + icon_state = "shirt_bluejersey" + gender = NEUTER + +/datum/sprite_accessory/undershirt/tankstripe + name = "Striped Tank Top" + icon_state = "tank_stripes" + gender = NEUTER + +/datum/sprite_accessory/undershirt/clownshirt + name = "Clown Shirt" + icon_state = "shirt_clown" + gender = NEUTER + +/datum/sprite_accessory/undershirt/alienshirt + name = "Alien Shirt" + icon_state = "shirt_alien" + gender = NEUTER + +/datum/sprite_accessory/undershirt/sports_bra + name = "Sports Bra" + icon_state = "sports_bra" + gender = NEUTER + +/datum/sprite_accessory/undershirt/sports_bra2 + name = "Alt Sports Bra" + icon_state = "sports_bra_alt" + gender = NEUTER + +/////////////////////// +// Socks Definitions // +/////////////////////// +/datum/sprite_accessory/socks + icon = 'icons/mob/underwear.dmi' + +/datum/sprite_accessory/socks/nude + name = "Nude" + icon_state = null + +/datum/sprite_accessory/socks/white_norm + name = "Normal White" + icon_state = "white_norm" + +/datum/sprite_accessory/socks/black_norm + name = "Normal Black" + icon_state = "black_norm" + +/datum/sprite_accessory/socks/white_short + name = "Short White" + icon_state = "white_short" + +/datum/sprite_accessory/socks/black_short + name = "Short Black" + icon_state = "black_short" + +/datum/sprite_accessory/socks/white_knee + name = "Knee-high White" + icon_state = "white_knee" + +/datum/sprite_accessory/socks/black_knee + name = "Knee-high Black" + icon_state = "black_knee" + +/datum/sprite_accessory/socks/thin_knee + name = "Knee-high Thin" + icon_state = "thin_knee" + +/datum/sprite_accessory/socks/striped_knee + name = "Knee-high Striped" + icon_state = "striped_knee" + +/datum/sprite_accessory/socks/rainbow_knee + name = "Knee-high Rainbow" + icon_state = "rainbow_knee" + +/datum/sprite_accessory/socks/white_thigh + name = "Thigh-high White" + icon_state = "white_thigh" + +/datum/sprite_accessory/socks/black_thigh + name = "Thigh-high Black" + icon_state = "black_thigh" + +/datum/sprite_accessory/socks/thin_thigh + name = "Thigh-high Thin" + icon_state = "thin_thigh" + +/datum/sprite_accessory/socks/striped_thigh + name = "Thigh-high Striped" + icon_state = "striped_thigh" + +/datum/sprite_accessory/socks/rainbow_thigh + name = "Thigh-high Rainbow" + icon_state = "rainbow_thigh" + +/datum/sprite_accessory/socks/usa_knee + name = "Knee-High Freedom Stripes" + icon_state = "assblastusa_knee" + +/datum/sprite_accessory/socks/usa_thigh + name = "Thigh-high Freedom Stripes" + icon_state = "assblastusa_thigh" + +/datum/sprite_accessory/socks/uk_knee + name = "Knee-High UK Stripes" + icon_state = "uk_knee" + +/datum/sprite_accessory/socks/uk_thigh + name = "Thigh-high UK Stripes" + icon_state = "uk_thigh" + +/datum/sprite_accessory/socks/commie_knee + name = "Knee-High Commie Stripes" + icon_state = "commie_knee" + +/datum/sprite_accessory/socks/commie_thigh + name = "Thigh-high Commie Stripes" + icon_state = "commie_thigh" + +/datum/sprite_accessory/socks/pantyhose + name = "Pantyhose" + icon_state = "pantyhose" + +//////////.////////////////// +// MutantParts Definitions // +///////////////////////////// + +/datum/sprite_accessory/body_markings + icon = 'icons/mob/mutant_bodyparts.dmi' + +/datum/sprite_accessory/body_markings/none + name = "None" + icon_state = "none" + +/datum/sprite_accessory/body_markings/dtiger + name = "Dark Tiger Body" + icon_state = "dtiger" + gender_specific = 1 + +/datum/sprite_accessory/body_markings/ltiger + name = "Light Tiger Body" + icon_state = "ltiger" + gender_specific = 1 + +/datum/sprite_accessory/body_markings/lbelly + name = "Light Belly" + icon_state = "lbelly" + gender_specific = 1 + +/datum/sprite_accessory/tails + icon = 'icons/mob/mutant_bodyparts.dmi' + +/datum/sprite_accessory/tails_animated + icon = 'icons/mob/mutant_bodyparts.dmi' + +/datum/sprite_accessory/tails/lizard/smooth + name = "Smooth" + icon_state = "smooth" + +/datum/sprite_accessory/tails_animated/lizard/smooth + name = "Smooth" + icon_state = "smooth" + +/datum/sprite_accessory/tails/lizard/dtiger + name = "Dark Tiger" + icon_state = "dtiger" + +/datum/sprite_accessory/tails_animated/lizard/dtiger + name = "Dark Tiger" + icon_state = "dtiger" + +/datum/sprite_accessory/tails/lizard/ltiger + name = "Light Tiger" + icon_state = "ltiger" + +/datum/sprite_accessory/tails_animated/lizard/ltiger + name = "Light Tiger" + icon_state = "ltiger" + +/datum/sprite_accessory/tails/lizard/spikes + name = "Spikes" + icon_state = "spikes" + +/datum/sprite_accessory/tails_animated/lizard/spikes + name = "Spikes" + icon_state = "spikes" + +/datum/sprite_accessory/tails/human/none + name = "None" + icon_state = "none" + +/datum/sprite_accessory/tails_animated/human/none + name = "None" + icon_state = "none" + +/datum/sprite_accessory/tails/human/cat + name = "Cat" + icon_state = "cat" + color_src = HAIR + +/datum/sprite_accessory/tails_animated/human/cat + name = "Cat" + icon_state = "cat" + color_src = HAIR + +/datum/sprite_accessory/snouts + icon = 'icons/mob/mutant_bodyparts.dmi' + +/datum/sprite_accessory/snouts/sharp + name = "Sharp" + icon_state = "sharp" + +/datum/sprite_accessory/snouts/round + name = "Round" + icon_state = "round" + +/datum/sprite_accessory/snouts/sharplight + name = "Sharp + Light" + icon_state = "sharplight" + +/datum/sprite_accessory/snouts/roundlight + name = "Round + Light" + icon_state = "roundlight" + +/datum/sprite_accessory/horns + icon = 'icons/mob/mutant_bodyparts.dmi' + +/datum/sprite_accessory/horns/none + name = "None" + icon_state = "none" + +/datum/sprite_accessory/horns/simple + name = "Simple" + icon_state = "simple" + +/datum/sprite_accessory/horns/short + name = "Short" + icon_state = "short" + +/datum/sprite_accessory/horns/curled + name = "Curled" + icon_state = "curled" + +/datum/sprite_accessory/horns/ram + name = "Ram" + icon_state = "ram" + +/datum/sprite_accessory/horns/angler + name = "Angeler" + icon_state = "angler" + +/datum/sprite_accessory/ears + icon = 'icons/mob/mutant_bodyparts.dmi' + +/datum/sprite_accessory/ears/none + name = "None" + icon_state = "none" + +/datum/sprite_accessory/ears/cat + name = "Cat" + icon_state = "cat" + hasinner = 1 + color_src = HAIR + +/datum/sprite_accessory/wings/none + name = "None" + icon_state = "none" + +/datum/sprite_accessory/wings_open + icon = 'icons/mob/wings.dmi' + +/datum/sprite_accessory/wings_open/angel + name = "Angel" + icon_state = "angel" + color_src = 0 + dimension_x = 46 + center = TRUE + dimension_y = 34 + +/datum/sprite_accessory/wings + icon = 'icons/mob/wings.dmi' + +/datum/sprite_accessory/wings/angel + name = "Angel" + icon_state = "angel" + color_src = 0 + dimension_x = 46 + center = TRUE + dimension_y = 34 + locked = TRUE + +/datum/sprite_accessory/frills + icon = 'icons/mob/mutant_bodyparts.dmi' + +/datum/sprite_accessory/frills/none + name = "None" + icon_state = "none" + +/datum/sprite_accessory/frills/simple + name = "Simple" + icon_state = "simple" + +/datum/sprite_accessory/frills/short + name = "Short" + icon_state = "short" + +/datum/sprite_accessory/frills/aquatic + name = "Aquatic" + icon_state = "aqua" + +/datum/sprite_accessory/spines + icon = 'icons/mob/mutant_bodyparts.dmi' + +/datum/sprite_accessory/spines_animated + icon = 'icons/mob/mutant_bodyparts.dmi' + +/datum/sprite_accessory/spines/none + name = "None" + icon_state = "none" + +/datum/sprite_accessory/spines_animated/none + name = "None" + icon_state = "none" + +/datum/sprite_accessory/spines/short + name = "Short" + icon_state = "short" + +/datum/sprite_accessory/spines_animated/short + name = "Short" + icon_state = "short" + +/datum/sprite_accessory/spines/shortmeme + name = "Short + Membrane" + icon_state = "shortmeme" + +/datum/sprite_accessory/spines_animated/shortmeme + name = "Short + Membrane" + icon_state = "shortmeme" + +/datum/sprite_accessory/spines/long + name = "Long" + icon_state = "long" + +/datum/sprite_accessory/spines_animated/long + name = "Long" + icon_state = "long" + +/datum/sprite_accessory/spines/longmeme + name = "Long + Membrane" + icon_state = "longmeme" + +/datum/sprite_accessory/spines_animated/longmeme + name = "Long + Membrane" + icon_state = "longmeme" + +/datum/sprite_accessory/spines/aqautic + name = "Aquatic" + icon_state = "aqua" + +/datum/sprite_accessory/spines_animated/aqautic + name = "Aquatic" + icon_state = "aqua" + +/datum/sprite_accessory/legs //legs are a special case, they aren't actually sprite_accessories but are updated with them. + icon = null //These datums exist for selecting legs on preference, and little else + +/datum/sprite_accessory/legs/none + name = "Normal Legs" + +/datum/sprite_accessory/legs/digitigrade_lizard + name = "Digitigrade Legs" diff --git a/icons/mob/underwear.dmi b/icons/mob/underwear.dmi index 8f60f70556ea19219b77e60b7a6469f2fda2b0c1..483883b94cd07a6cc1324bde050893d1d4bd6496 100644 GIT binary patch literal 50021 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%0D1M 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 VOsYbjhl86TFeMGelKW2s{~HIl8#Dj_ From 7d9162d6082e7154e92036df2166c18b34c02749 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Sat, 21 Oct 2017 14:27:00 -0400 Subject: [PATCH 012/227] Logs subsystem shutdowns (#31951) --- code/controllers/master.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/controllers/master.dm b/code/controllers/master.dm index 5607dde491..852437705b 100644 --- a/code/controllers/master.dm +++ b/code/controllers/master.dm @@ -86,8 +86,9 @@ GLOBAL_REAL(Master, /datum/controller/master) = new sortTim(subsystems, /proc/cmp_subsystem_init) reverseRange(subsystems) for(var/datum/controller/subsystem/ss in subsystems) - testing("Shutdown [ss.name] subsystem") + log_world("Shutting down [ss.name] subsystem...") ss.Shutdown() + log_world("Shutdown complete") // Returns 1 if we created a new mc, 0 if we couldn't due to a recent restart, // -1 if we encountered a runtime trying to recreate it @@ -595,4 +596,4 @@ GLOBAL_REAL(Master, /datum/controller/master) = new if (client_count < CONFIG_GET(number/mc_tick_rate/disable_high_pop_mc_mode_amount)) processing = CONFIG_GET(number/mc_tick_rate/base_mc_tick_rate) else if (client_count > CONFIG_GET(number/mc_tick_rate/high_pop_mc_mode_amount)) - processing = CONFIG_GET(number/mc_tick_rate/high_pop_mc_tick_rate) \ No newline at end of file + processing = CONFIG_GET(number/mc_tick_rate/high_pop_mc_tick_rate) From c42e1b17f49c5267bba020b639fd0b34f1ee2898 Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Sat, 21 Oct 2017 14:07:55 -0500 Subject: [PATCH 014/227] Blob fixes --- code/game/gamemodes/blob/blobs/core.dm | 4 +++ code/game/gamemodes/blob/overmind.dm | 48 ++++++++++++++++++++++++++ code/modules/admin/player_panel.dm | 5 +++ code/modules/events/blob.dm | 32 +++++++++++++++++ code/modules/mob/transform_procs.dm | 6 ++++ 5 files changed, 95 insertions(+) diff --git a/code/game/gamemodes/blob/blobs/core.dm b/code/game/gamemodes/blob/blobs/core.dm index 3099b6f3f8..91bc8a4f8a 100644 --- a/code/game/gamemodes/blob/blobs/core.dm +++ b/code/game/gamemodes/blob/blobs/core.dm @@ -24,8 +24,12 @@ if(overmind) update_icon() point_rate = new_rate + addtimer(CALLBACK(src, .proc/generate_announcement), 1800) . = ..() +/obj/structure/blob/core/proc/generate_announcement() + priority_announce("Confirmed outbreak of level 5 biohazard aboard [station_name()]. All personnel must contain the outbreak.", "Biohazard Alert", 'sound/ai/outbreak5.ogg') + /obj/structure/blob/core/scannerreport() return "Directs the blob's expansion, gradually expands, and sustains nearby blob spores and blobbernauts." diff --git a/code/game/gamemodes/blob/overmind.dm b/code/game/gamemodes/blob/overmind.dm index 9f8a44bed2..9b5585f7b1 100644 --- a/code/game/gamemodes/blob/overmind.dm +++ b/code/game/gamemodes/blob/overmind.dm @@ -63,8 +63,56 @@ place_blob_core(base_point_rate, 1) else qdel(src) +<<<<<<< HEAD ..() +======= + else if(!victory_in_progress && (blobs_legit.len >= blobwincount)) + victory_in_progress = TRUE + priority_announce("Biohazard has reached critical mass. Station loss is imminent.", "Biohazard Alert") + set_security_level("delta") + max_blob_points = INFINITY + blob_points = INFINITY + addtimer(CALLBACK(src, .proc/victory), 450) + ..() + + +/mob/camera/blob/proc/victory() + sound_to_playing_players('sound/machines/alarm.ogg') + sleep(100) + for(var/mob/living/L in GLOB.mob_list) + var/turf/T = get_turf(L) + if(!T || !(T.z in GLOB.station_z_levels)) + continue + + if(L in GLOB.overminds || L.checkpass(PASSBLOB)) + continue + + var/area/Ablob = get_area(T) + + if(!Ablob.blob_allowed) + continue + + playsound(L, 'sound/effects/splat.ogg', 50, 1) + L.death() + new/mob/living/simple_animal/hostile/blob/blobspore(T) + + for(var/V in GLOB.sortedAreas) + var/area/A = V + if(!A.blob_allowed) + continue + A.color = blob_reagent_datum.color + A.name = "blob" + A.icon = 'icons/mob/blob.dmi' + A.icon_state = "blob_shield" + A.layer = BELOW_MOB_LAYER + A.invisibility = 0 + A.blend_mode = 0 + to_chat(world, "[real_name] consumed the station in an unstoppable tide!") + SSticker.news_report = BLOB_WIN + SSticker.force_ending = 1 + +>>>>>>> 7034a22... Blob fixes (#31913) /mob/camera/blob/Destroy() for(var/BL in GLOB.blobs) var/obj/structure/blob/B = BL diff --git a/code/modules/admin/player_panel.dm b/code/modules/admin/player_panel.dm index f40b85f7d7..6909f15c3f 100644 --- a/code/modules/admin/player_panel.dm +++ b/code/modules/admin/player_panel.dm @@ -593,6 +593,7 @@ var/list/blob_minds = list() for(var/mob/camera/blob/B in GLOB.mob_list) blob_minds |= B.mind +<<<<<<< HEAD if(istype(SSticker.mode, /datum/game_mode/blob) || blob_minds.len) dat += "
Blob
Progress: [GLOB.blobs_legit.len]/[mode.blobwincount]
[M.real_name][M.client ? "" : " (No Client)"][M.stat == DEAD ? " (DEAD)" : ""]PMFLW
Progress: [M.blobs_legit.len]/[M.blobwincount]
[blob.name]([blob.key])Blob not found!PM
" @@ -601,6 +602,10 @@ blob_minds |= mode.blob_overminds dat += "" +======= + if(blob_minds.len) + dat += "
Blob
Progress: [GLOB.blobs_legit.len]/[mode.blobwincount]
" +>>>>>>> 7034a22... Blob fixes (#31913) for(var/datum/mind/blob in blob_minds) var/mob/M = blob.current if(M) diff --git a/code/modules/events/blob.dm b/code/modules/events/blob.dm index 42b54f3856..12971f2e35 100644 --- a/code/modules/events/blob.dm +++ b/code/modules/events/blob.dm @@ -1,3 +1,4 @@ +<<<<<<< HEAD /datum/round_event_control/blob name = "Blob" typepath = /datum/round_event/ghost_role/blob @@ -36,3 +37,34 @@ message_admins("[key_name_admin(BC.overmind)] has been made into a blob overmind by an event.") log_game("[key_name(BC.overmind)] was spawned as a blob overmind by an event.") return SUCCESSFUL_SPAWN +======= +/datum/round_event_control/blob + name = "Blob" + typepath = /datum/round_event/ghost_role/blob + weight = 10 + max_occurrences = 1 + + min_players = 20 + + gamemode_blacklist = list("blob") //Just in case a blob survives that long + +/datum/round_event/ghost_role/blob + announceWhen = -1 + role_name = "blob overmind" + +/datum/round_event/ghost_role/blob/announce() + priority_announce("Confirmed outbreak of level 5 biohazard aboard [station_name()]. All personnel must contain the outbreak.", "Biohazard Alert", 'sound/ai/outbreak5.ogg') + +/datum/round_event/ghost_role/blob/spawn_role() + if(!GLOB.blobstart.len) + return MAP_ERROR + var/list/candidates = get_candidates("blob", null, ROLE_BLOB) + if(!candidates.len) + return NOT_ENOUGH_PLAYERS + var/mob/dead/observer/new_blob = pick(candidates) + var/mob/camera/blob/BC = new_blob.become_overmind() + spawned_mobs += BC + message_admins("[key_name_admin(BC)] has been made into a blob overmind by an event.") + log_game("[key_name(BC)] was spawned as a blob overmind by an event.") + return SUCCESSFUL_SPAWN +>>>>>>> 7034a22... Blob fixes (#31913) diff --git a/code/modules/mob/transform_procs.dm b/code/modules/mob/transform_procs.dm index dc87736e5d..f8c262636b 100644 --- a/code/modules/mob/transform_procs.dm +++ b/code/modules/mob/transform_procs.dm @@ -462,12 +462,18 @@ . = new_slime qdel(src) +<<<<<<< HEAD /mob/proc/become_overmind(mode_made, starting_points = 60) var/mob/camera/blob/B = new /mob/camera/blob(loc, 0, mode_made, starting_points) if(mind) mind.transfer_to(B) else B.key = key +======= +/mob/proc/become_overmind(starting_points = 60) + var/mob/camera/blob/B = new /mob/camera/blob(loc, starting_points) + B.key = key +>>>>>>> 7034a22... Blob fixes (#31913) . = B qdel(src) From ea4fc92dae6038c8c2c1f4d8b9c50ddd29b83518 Mon Sep 17 00:00:00 2001 From: AnturK Date: Thu, 19 Oct 2017 21:59:10 +0200 Subject: [PATCH 015/227] Fixes wizard roundend with liches around --- code/game/gamemodes/game_mode.dm | 7 +++++++ code/game/gamemodes/wizard/wizard.dm | 7 ++++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/code/game/gamemodes/game_mode.dm b/code/game/gamemodes/game_mode.dm index 694255702a..128a794bc6 100644 --- a/code/game/gamemodes/game_mode.dm +++ b/code/game/gamemodes/game_mode.dm @@ -182,6 +182,10 @@ /datum/game_mode/process() return 0 +//For things that do not die easily +/datum/game_mode/proc/are_special_antags_dead() + return TRUE + /datum/game_mode/proc/check_finished(force_ending) //to be called by SSticker if(!SSticker.setup_done) @@ -218,6 +222,9 @@ living_antag_player = Player return 0 + if(!are_special_antags_dead()) + return FALSE + if(!continuous[config_tag] || force_ending) return 1 diff --git a/code/game/gamemodes/wizard/wizard.dm b/code/game/gamemodes/wizard/wizard.dm index 326889b872..304f80b470 100644 --- a/code/game/gamemodes/wizard/wizard.dm +++ b/code/game/gamemodes/wizard/wizard.dm @@ -42,7 +42,8 @@ man is a dangerous mutant with the ability to alter himself and the world around him by what he and his leaders believe to be magic. If this man attempts an attack on your station, \ his execution is highly encouraged, as is the preservation of his body for later study." -/datum/game_mode/wizard/check_finished() + +/datum/game_mode/wizard/are_special_antags_dead() for(var/datum/mind/wizard in wizards) if(isliving(wizard.current) && wizard.current.stat!=DEAD) return FALSE @@ -54,8 +55,8 @@ if(SSevents.wizardmode) //If summon events was active, turn it off SSevents.toggleWizardmode() SSevents.resetFrequency() - - return ..() + + return TRUE /datum/game_mode/wizard/declare_completion() if(finished) From 0a14bf3fd49c0f2daaaa0e6a6f3dcee82c8404fe Mon Sep 17 00:00:00 2001 From: ShizCalev Date: Sat, 21 Oct 2017 19:52:03 -0400 Subject: [PATCH 017/227] Adds sanity check to Narsie pickcultist proc (#31937) * Adds sanity check to Narsie pickcultist proc * claned up src * cleaned --- code/modules/power/singularity/narsie.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/power/singularity/narsie.dm b/code/modules/power/singularity/narsie.dm index b566d65f49..81dcd573f5 100644 --- a/code/modules/power/singularity/narsie.dm +++ b/code/modules/power/singularity/narsie.dm @@ -142,7 +142,7 @@ for(var/mob/living/carbon/food in GLOB.living_mob_list) //we don't care about constructs or cult-Ians or whatever. cult-monkeys are fair game i guess var/turf/pos = get_turf(food) - if(pos.z != src.z) + if(!pos || (pos.z != z)) continue if(iscultist(food)) @@ -163,7 +163,7 @@ if(!ghost.client) continue var/turf/pos = get_turf(ghost) - if(pos.z != src.z) + if(!pos || (pos.z != z)) continue cultists += ghost if(cultists.len) From e48fb05f06d2a0a267e4f71b46308935057b476f Mon Sep 17 00:00:00 2001 From: Kyle Spier-Swenson Date: Sat, 21 Oct 2017 16:51:29 -0700 Subject: [PATCH 019/227] Fixes quick_attack_loop stack overflow (#31958) Fixes quick_attack_loop stack overflow --- .../hostile/megafauna/blood_drunk_miner.dm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/code/modules/mob/living/simple_animal/hostile/megafauna/blood_drunk_miner.dm b/code/modules/mob/living/simple_animal/hostile/megafauna/blood_drunk_miner.dm index 14b313d815..03f466ddfd 100644 --- a/code/modules/mob/living/simple_animal/hostile/megafauna/blood_drunk_miner.dm +++ b/code/modules/mob/living/simple_animal/hostile/megafauna/blood_drunk_miner.dm @@ -159,18 +159,18 @@ Difficulty: Medium Shoot(target) changeNext_move(CLICK_CD_RANGE) +//I'm still of the belief that this entire proc needs to be wiped from existence. +// do not take my touching of it to be endorsement of it. ~mso /mob/living/simple_animal/hostile/megafauna/blood_drunk_miner/proc/quick_attack_loop() - if(next_move <= world.time) - stoplag(1) - .() //retry - return - sleep((next_move - world.time) * 1.5) + while(!QDELETED(target) && next_move <= world.time) //this is done this way because next_move can change to be sooner while we sleep. + stoplag(1) + sleep((next_move - world.time) * 1.5) //but don't ask me what the fuck this is about if(QDELETED(target)) return if(dashing || next_move > world.time || !Adjacent(target)) if(dashing && next_move <= world.time) next_move = world.time + 1 - .() //recurse + INVOKE_ASYNC(src, .proc/quick_attack_loop) //lets try that again. return AttackingTarget() From 1ee238218c505d184934bc5fe99cdbd2e723e671 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Sat, 21 Oct 2017 19:53:33 -0400 Subject: [PATCH 021/227] Merge pull request #31931 from vuonojenmustaturska/penfix It's a time to stop warning about paper bins eating pens --- code/modules/paperwork/paperbin.dm | 4 ---- 1 file changed, 4 deletions(-) diff --git a/code/modules/paperwork/paperbin.dm b/code/modules/paperwork/paperbin.dm index 55a0875b62..962802aa6d 100644 --- a/code/modules/paperwork/paperbin.dm +++ b/code/modules/paperwork/paperbin.dm @@ -25,10 +25,6 @@ P.loc = src bin_pen = P update_icon() - var/static/warned = FALSE - if(P.type == /obj/item/pen && !warned) - warning("one or more paperbins ate a pen duing initialize()") - warned = TRUE /obj/item/paper_bin/fire_act(exposed_temperature, exposed_volume) if(!total_paper) From 17d2ff88c56f0d76beddc384b9aed0c1499bea55 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Sat, 21 Oct 2017 19:52:57 -0400 Subject: [PATCH 023/227] Merge pull request #31935 from ShizCalev/shade-qdel-fix Fixes shades being sent back to the arrival shuttle when their stone is qdel'd --- code/game/gamemodes/wizard/soulstone.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/game/gamemodes/wizard/soulstone.dm b/code/game/gamemodes/wizard/soulstone.dm index 149c2ae912..b38ac384fb 100644 --- a/code/game/gamemodes/wizard/soulstone.dm +++ b/code/game/gamemodes/wizard/soulstone.dm @@ -44,6 +44,11 @@ if(spent) to_chat(user, "This shard is spent; it is now just a creepy rock.") +/obj/item/device/soulstone/Destroy() //Stops the shade from being qdel'd immediately and their ghost being sent back to the arrival shuttle. + for(var/mob/living/simple_animal/shade/A in src) + A.death() + return ..() + //////////////////////////////Capturing//////////////////////////////////////////////////////// /obj/item/device/soulstone/attack(mob/living/carbon/human/M, mob/living/user) From ff1a3e9f0a437460d74e1f368db7961ca186ba8a Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Sat, 21 Oct 2017 19:55:50 -0400 Subject: [PATCH 025/227] Safeguards GetAllContents and makes it throw a warning --- code/__DEFINES/misc.dm | 4 +++- code/__HELPERS/unsorted.dm | 19 +++++++++++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/code/__DEFINES/misc.dm b/code/__DEFINES/misc.dm index b83fc3dd39..66c12adc72 100644 --- a/code/__DEFINES/misc.dm +++ b/code/__DEFINES/misc.dm @@ -468,4 +468,6 @@ GLOBAL_LIST_INIT(ghost_others_options, list(GHOST_OTHERS_SIMPLE, GHOST_OTHERS_DE #define DUMMY_HUMAN_SLOT_MANIFEST "dummy_manifest_generation" #define PR_ANNOUNCEMENTS_PER_ROUND 5 //The number of unique PR announcements allowed per round - //This makes sure that a single person can only spam 3 reopens and 3 closes before being ignored \ No newline at end of file + //This makes sure that a single person can only spam 3 reopens and 3 closes before being ignored + +#define MAX_PROC_DEPTH 195 // 200 proc calls deep and shit breaks, this is a bit lower to give some safety room \ No newline at end of file diff --git a/code/__HELPERS/unsorted.dm b/code/__HELPERS/unsorted.dm index cae42d62e8..ff0693a839 100644 --- a/code/__HELPERS/unsorted.dm +++ b/code/__HELPERS/unsorted.dm @@ -503,12 +503,31 @@ Turf and target are separate in case you want to teleport some distance from a t var/y=arcsin(x/sqrt(1+x*x)) return y +<<<<<<< HEAD /atom/proc/GetAllContents(list/output=list()) . = output output += src for(var/i in 1 to contents.len) var/atom/thing = contents[i] thing.GetAllContents(output) +======= +/* +Recursively gets all contents of contents and returns them all in a list. + +recursive_depth is useful if you only want a turf and everything on it (recursive_depth=1) +Do not set recursive depth higher than MAX_PROC_DEPTH as byond breaks when that limit is reached. +*/ +/atom/proc/GetAllContents(list/output=list(), recursive_depth=MAX_PROC_DEPTH, _current_depth=0) + . = output + output += src + if(_current_depth == recursive_depth) + if(_current_depth == MAX_PROC_DEPTH) + WARNING("Get all contents reached the max recursive depth of [MAX_PROC_DEPTH]. More and we would break shit. Offending atom: [src]") + return + for(var/i in 1 to contents.len) + var/atom/thing = contents[i] + thing.GetAllContents(output, recursive_depth, ++_current_depth) +>>>>>>> 179cd9d... Merge pull request #31927 from ninjanomnom/recursive-depth //Step-towards method of determining whether one atom can see another. Similar to viewers() /proc/can_see(atom/source, atom/target, length=5) // I couldnt be arsed to do actual raycasting :I This is horribly inaccurate. From d0789ecaf9ce72e2cf7000005fb00e10f2fc1b44 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Sat, 21 Oct 2017 20:01:00 -0400 Subject: [PATCH 026/227] Splits clothing.dm in 7 other files --- code/modules/clothing/clothing.dm | 469 +----------------- .../clothing/ears/{ears.dm => _ears.dm} | 0 .../glasses/{glasses.dm => _glasses.dm} | 17 +- code/modules/clothing/gloves/_gloves.dm | 31 ++ code/modules/clothing/head/_head.dm | 30 ++ code/modules/clothing/masks/_masks.dm | 53 ++ .../clothing/neck/{neck.dm => _neck.dm} | 17 + code/modules/clothing/shoes/_shoes.dm | 65 +++ .../clothing/spacesuits/_spacesuits.dm | 45 ++ code/modules/clothing/suits/_suits.dm | 31 ++ code/modules/clothing/under/_under.dm | 156 ++++++ tgstation.dme | 30 +- 12 files changed, 474 insertions(+), 470 deletions(-) rename code/modules/clothing/ears/{ears.dm => _ears.dm} (100%) rename code/modules/clothing/glasses/{glasses.dm => _glasses.dm} (92%) create mode 100644 code/modules/clothing/gloves/_gloves.dm create mode 100644 code/modules/clothing/head/_head.dm create mode 100644 code/modules/clothing/masks/_masks.dm rename code/modules/clothing/neck/{neck.dm => _neck.dm} (91%) create mode 100644 code/modules/clothing/shoes/_shoes.dm create mode 100644 code/modules/clothing/spacesuits/_spacesuits.dm create mode 100644 code/modules/clothing/suits/_suits.dm create mode 100644 code/modules/clothing/under/_under.dm diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm index 02d3b8e094..58c568f8a6 100644 --- a/code/modules/clothing/clothing.dm +++ b/code/modules/clothing/clothing.dm @@ -180,23 +180,7 @@ damaged_clothes = 0 cut_overlay(damaged_clothes_icons[index], TRUE) -//Glasses -/obj/item/clothing/glasses - name = "glasses" - icon = 'icons/obj/clothing/glasses.dmi' - w_class = WEIGHT_CLASS_SMALL - flags_cover = GLASSESCOVERSEYES - slot_flags = SLOT_EYES - var/vision_flags = 0 - var/darkness_view = 2//Base human is 2 - var/invis_view = SEE_INVISIBLE_LIVING - var/invis_override = 0 //Override to allow glasses to set higher than normal see_invis - var/lighting_alpha - var/list/icon/current = list() //the current hud icons - var/vision_correction = 0 //does wearing these glasses correct some of our vision defects? - strip_delay = 20 - equip_delay_other = 25 - resistance_flags = 0 + /* SEE_SELF // can see self, no matter what SEE_MOBS // can see all mobs, no matter what @@ -207,455 +191,6 @@ SEE_PIXELS// if an object is located on an unlit area, but some of its pixels ar BLIND // can't see anything */ - -//Gloves -/obj/item/clothing/gloves - name = "gloves" - gender = PLURAL //Carn: for grammarically correct text-parsing - w_class = WEIGHT_CLASS_SMALL - icon = 'icons/obj/clothing/gloves.dmi' - siemens_coefficient = 0.5 - body_parts_covered = HANDS - slot_flags = SLOT_GLOVES - attack_verb = list("challenged") - var/transfer_prints = FALSE - strip_delay = 20 - equip_delay_other = 40 - - -/obj/item/clothing/gloves/worn_overlays(isinhands = FALSE) - . = list() - if(!isinhands) - if(damaged_clothes) - . += mutable_appearance('icons/effects/item_damage.dmi', "damagedgloves") - if(blood_DNA) - . += mutable_appearance('icons/effects/blood.dmi', "bloodyhands") - -/obj/item/clothing/gloves/update_clothes_damaged_state(damaging = TRUE) - ..() - if(ismob(loc)) - var/mob/M = loc - M.update_inv_gloves() - -// Called just before an attack_hand(), in mob/UnarmedAttack() -/obj/item/clothing/gloves/proc/Touch(atom/A, proximity) - return 0 // return 1 to cancel attack_hand() - -//Head -/obj/item/clothing/head - name = "head" - icon = 'icons/obj/clothing/hats.dmi' - icon_state = "top_hat" - item_state = "that" - body_parts_covered = HEAD - slot_flags = SLOT_HEAD - var/blockTracking = 0 //For AI tracking - var/can_toggle = null - dynamic_hair_suffix = "+generic" - -/obj/item/clothing/head/Initialize() - . = ..() - if(ishuman(loc) && dynamic_hair_suffix) - var/mob/living/carbon/human/H = loc - H.update_hair() - -/obj/item/clothing/head/worn_overlays(isinhands = FALSE) - . = list() - if(!isinhands) - if(damaged_clothes) - . += mutable_appearance('icons/effects/item_damage.dmi', "damagedhelmet") - if(blood_DNA) - . += mutable_appearance('icons/effects/blood.dmi', "helmetblood") - -/obj/item/clothing/head/update_clothes_damaged_state(damaging = TRUE) - ..() - if(ismob(loc)) - var/mob/M = loc - M.update_inv_head() - -//Neck -/obj/item/clothing/neck - name = "necklace" - icon = 'icons/obj/clothing/neck.dmi' - body_parts_covered = NECK - slot_flags = SLOT_NECK - strip_delay = 40 - equip_delay_other = 40 - -/obj/item/clothing/neck/worn_overlays(isinhands = FALSE) - . = list() - if(!isinhands) - if(body_parts_covered & HEAD) - if(damaged_clothes) - . += mutable_appearance('icons/effects/item_damage.dmi', "damagedmask") - if(blood_DNA) - . += mutable_appearance('icons/effects/blood.dmi', "maskblood") - - -//Mask -/obj/item/clothing/mask - name = "mask" - icon = 'icons/obj/clothing/masks.dmi' - body_parts_covered = HEAD - slot_flags = SLOT_MASK - strip_delay = 40 - equip_delay_other = 40 - var/mask_adjusted = 0 - var/adjusted_flags = null - - -/obj/item/clothing/mask/worn_overlays(isinhands = FALSE) - . = list() - if(!isinhands) - if(body_parts_covered & HEAD) - if(damaged_clothes) - . += mutable_appearance('icons/effects/item_damage.dmi', "damagedmask") - if(blood_DNA) - . += mutable_appearance('icons/effects/blood.dmi', "maskblood") - -/obj/item/clothing/mask/update_clothes_damaged_state(damaging = TRUE) - ..() - if(ismob(loc)) - var/mob/M = loc - M.update_inv_wear_mask() - -//Proc that moves gas/breath masks out of the way, disabling them and allowing pill/food consumption -/obj/item/clothing/mask/proc/adjustmask(mob/living/user) - if(user && user.incapacitated()) - return - mask_adjusted = !mask_adjusted - if(!mask_adjusted) - src.icon_state = initial(icon_state) - gas_transfer_coefficient = initial(gas_transfer_coefficient) - permeability_coefficient = initial(permeability_coefficient) - flags_1 |= visor_flags - flags_inv |= visor_flags_inv - flags_cover |= visor_flags_cover - to_chat(user, "You push \the [src] back into place.") - slot_flags = initial(slot_flags) - else - icon_state += "_up" - to_chat(user, "You push \the [src] out of the way.") - gas_transfer_coefficient = null - permeability_coefficient = null - flags_1 &= ~visor_flags - flags_inv &= ~visor_flags_inv - flags_cover &= ~visor_flags_cover - if(adjusted_flags) - slot_flags = adjusted_flags - if(user) - user.wear_mask_update(src, toggle_off = mask_adjusted) - user.update_action_buttons_icon() //when mask is adjusted out, we update all buttons icon so the user's potential internal tank correctly shows as off. - - - - -//Shoes -/obj/item/clothing/shoes - name = "shoes" - icon = 'icons/obj/clothing/shoes.dmi' - desc = "Comfortable-looking shoes." - gender = PLURAL //Carn: for grammarically correct text-parsing - var/chained = 0 - - body_parts_covered = FEET - slot_flags = SLOT_FEET - - permeability_coefficient = 0.5 - slowdown = SHOES_SLOWDOWN - var/blood_state = BLOOD_STATE_NOT_BLOODY - var/list/bloody_shoes = list(BLOOD_STATE_HUMAN = 0,BLOOD_STATE_XENO = 0, BLOOD_STATE_OIL = 0, BLOOD_STATE_NOT_BLOODY = 0) - var/offset = 0 - var/equipped_before_drop = FALSE - -/obj/item/clothing/shoes/worn_overlays(isinhands = FALSE) - . = list() - if(!isinhands) - var/bloody = 0 - if(blood_DNA) - bloody = 1 - else - bloody = bloody_shoes[BLOOD_STATE_HUMAN] - - if(damaged_clothes) - . += mutable_appearance('icons/effects/item_damage.dmi', "damagedshoe") - if(bloody) - . += mutable_appearance('icons/effects/blood.dmi', "shoeblood") - -/obj/item/clothing/shoes/equipped(mob/user, slot) - . = ..() - if(offset && slot_flags & slotdefine2slotbit(slot)) - user.pixel_y += offset - worn_y_dimension -= (offset * 2) - user.update_inv_shoes() - equipped_before_drop = TRUE - -/obj/item/clothing/shoes/proc/restore_offsets(mob/user) - equipped_before_drop = FALSE - user.pixel_y -= offset - worn_y_dimension = world.icon_size - -/obj/item/clothing/shoes/dropped(mob/user) - if(offset && equipped_before_drop) - restore_offsets(user) - . = ..() - -/obj/item/clothing/shoes/update_clothes_damaged_state(damaging = TRUE) - ..() - if(ismob(loc)) - var/mob/M = loc - M.update_inv_shoes() - -/obj/item/clothing/shoes/clean_blood() - ..() - bloody_shoes = list(BLOOD_STATE_HUMAN = 0,BLOOD_STATE_XENO = 0, BLOOD_STATE_OIL = 0, BLOOD_STATE_NOT_BLOODY = 0) - blood_state = BLOOD_STATE_NOT_BLOODY - if(ismob(loc)) - var/mob/M = loc - M.update_inv_shoes() - -/obj/item/proc/negates_gravity() - return 0 - -//Suit -/obj/item/clothing/suit - icon = 'icons/obj/clothing/suits.dmi' - name = "suit" - var/fire_resist = T0C+100 - allowed = list(/obj/item/tank/internals/emergency_oxygen) - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0, fire = 0, acid = 0) - slot_flags = SLOT_OCLOTHING - var/blood_overlay_type = "suit" - var/togglename = null - - -/obj/item/clothing/suit/worn_overlays(isinhands = FALSE) - . = list() - if(!isinhands) - if(damaged_clothes) - . += mutable_appearance('icons/effects/item_damage.dmi', "damaged[blood_overlay_type]") - if(blood_DNA) - . += mutable_appearance('icons/effects/blood.dmi', "[blood_overlay_type]blood") - var/mob/living/carbon/human/M = loc - if(ishuman(M) && M.w_uniform) - var/obj/item/clothing/under/U = M.w_uniform - if(istype(U) && U.attached_accessory) - var/obj/item/clothing/accessory/A = U.attached_accessory - if(A.above_suit) - . += U.accessory_overlay - -/obj/item/clothing/suit/update_clothes_damaged_state(damaging = TRUE) - ..() - if(ismob(loc)) - var/mob/M = loc - M.update_inv_wear_suit() - -//Spacesuit -//Note: Everything in modules/clothing/spacesuits should have the entire suit grouped together. -// Meaning the the suit is defined directly after the corrisponding helmet. Just like below! -/obj/item/clothing/head/helmet/space - name = "space helmet" - icon_state = "spaceold" - desc = "A special helmet with solar UV shielding to protect your eyes from harmful rays." - flags_1 = STOPSPRESSUREDMAGE_1 | THICKMATERIAL_1 - item_state = "spaceold" - permeability_coefficient = 0.01 - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 100, rad = 50, fire = 80, acid = 70) - flags_inv = HIDEMASK|HIDEEARS|HIDEEYES|HIDEFACE|HIDEHAIR|HIDEFACIALHAIR - dynamic_hair_suffix = "" - dynamic_fhair_suffix = "" - cold_protection = HEAD - min_cold_protection_temperature = SPACE_HELM_MIN_TEMP_PROTECT - heat_protection = HEAD - max_heat_protection_temperature = SPACE_HELM_MAX_TEMP_PROTECT - flash_protect = 2 - strip_delay = 50 - equip_delay_other = 50 - flags_cover = HEADCOVERSEYES | HEADCOVERSMOUTH - resistance_flags = 0 - dog_fashion = null - -/obj/item/clothing/suit/space - name = "space suit" - desc = "A suit that protects against low pressure environments. Has a big 13 on the back." - icon_state = "spaceold" - item_state = "s_suit" - w_class = WEIGHT_CLASS_BULKY - gas_transfer_coefficient = 0.01 - permeability_coefficient = 0.02 - flags_1 = STOPSPRESSUREDMAGE_1 | THICKMATERIAL_1 - body_parts_covered = CHEST|GROIN|LEGS|FEET|ARMS|HANDS - allowed = list(/obj/item/device/flashlight, /obj/item/tank/internals) - slowdown = 1 - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 100, rad = 50, fire = 80, acid = 70) - flags_inv = HIDEGLOVES|HIDESHOES|HIDEJUMPSUIT - cold_protection = CHEST | GROIN | LEGS | FEET | ARMS | HANDS - min_cold_protection_temperature = SPACE_SUIT_MIN_TEMP_PROTECT - heat_protection = CHEST|GROIN|LEGS|FEET|ARMS|HANDS - max_heat_protection_temperature = SPACE_SUIT_MAX_TEMP_PROTECT - strip_delay = 80 - equip_delay_other = 80 - resistance_flags = 0 - -//Under clothing - -/obj/item/clothing/under - icon = 'icons/obj/clothing/uniforms.dmi' - name = "under" - body_parts_covered = CHEST|GROIN|LEGS|ARMS - permeability_coefficient = 0.9 - slot_flags = SLOT_ICLOTHING - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0, fire = 0, acid = 0) - var/fitted = FEMALE_UNIFORM_FULL // For use in alternate clothing styles for women - var/has_sensor = HAS_SENSORS // For the crew computer - var/random_sensor = 1 - var/sensor_mode = NO_SENSORS - var/can_adjust = 1 - var/adjusted = NORMAL_STYLE - var/alt_covers_chest = 0 // for adjusted/rolled-down jumpsuits, 0 = exposes chest and arms, 1 = exposes arms only - var/obj/item/clothing/accessory/attached_accessory - var/mutable_appearance/accessory_overlay - var/mutantrace_variation = NO_MUTANTRACE_VARIATION //Are there special sprites for specific situations? Don't use this unless you need to. - -/obj/item/clothing/under/worn_overlays(isinhands = FALSE) - . = list() - if(!isinhands) - - if(damaged_clothes) - . += mutable_appearance('icons/effects/item_damage.dmi', "damageduniform") - if(blood_DNA) - . += mutable_appearance('icons/effects/blood.dmi', "uniformblood") - if(accessory_overlay) - . += accessory_overlay - -/obj/item/clothing/under/attackby(obj/item/I, mob/user, params) - if((has_sensor == BROKEN_SENSORS) && istype(I, /obj/item/stack/cable_coil)) - var/obj/item/stack/cable_coil/C = I - C.use(1) - has_sensor = HAS_SENSORS - to_chat(user,"You repair the suit sensors on [src] with [C].") - return 1 - if(!attach_accessory(I, user)) - return ..() - -/obj/item/clothing/under/update_clothes_damaged_state(damaging = TRUE) - ..() - if(ismob(loc)) - var/mob/M = loc - M.update_inv_w_uniform() - if(has_sensor > NO_SENSORS) - has_sensor = BROKEN_SENSORS - -/obj/item/clothing/under/New() - if(random_sensor) - //make the sensor mode favor higher levels, except coords. - sensor_mode = pick(SENSOR_OFF, SENSOR_LIVING, SENSOR_LIVING, SENSOR_VITALS, SENSOR_VITALS, SENSOR_VITALS, SENSOR_COORDS, SENSOR_COORDS) - adjusted = NORMAL_STYLE - ..() - -/obj/item/clothing/under/equipped(mob/user, slot) - ..() - if(adjusted) - adjusted = NORMAL_STYLE - fitted = initial(fitted) - if(!alt_covers_chest) - body_parts_covered |= CHEST - - if(mutantrace_variation && ishuman(user)) - var/mob/living/carbon/human/H = user - if(DIGITIGRADE in H.dna.species.species_traits) - adjusted = DIGITIGRADE_STYLE - H.update_inv_w_uniform() - - if(attached_accessory && slot != slot_hands && ishuman(user)) - var/mob/living/carbon/human/H = user - attached_accessory.on_uniform_equip(src, user) - if(attached_accessory.above_suit) - H.update_inv_wear_suit() - -/obj/item/clothing/under/dropped(mob/user) - if(attached_accessory) - attached_accessory.on_uniform_dropped(src, user) - if(ishuman(user)) - var/mob/living/carbon/human/H = user - if(attached_accessory.above_suit) - H.update_inv_wear_suit() - - ..() - -/obj/item/clothing/under/proc/attach_accessory(obj/item/I, mob/user, notifyAttach = 1) - . = FALSE - if(istype(I, /obj/item/clothing/accessory)) - var/obj/item/clothing/accessory/A = I - if(attached_accessory) - if(user) - to_chat(user, "[src] already has an accessory.") - return - else - if(user && !user.temporarilyRemoveItemFromInventory(I)) - return - if(!A.attach(src, user)) - return - - if(user && notifyAttach) - to_chat(user, "You attach [I] to [src].") - - var/accessory_color = attached_accessory.item_color - if(!accessory_color) - accessory_color = attached_accessory.icon_state - accessory_overlay = mutable_appearance('icons/mob/accessories.dmi', "[accessory_color]") - accessory_overlay.alpha = attached_accessory.alpha - accessory_overlay.color = attached_accessory.color - - if(ishuman(loc)) - var/mob/living/carbon/human/H = loc - H.update_inv_w_uniform() - H.update_inv_wear_suit() - - return TRUE - -/obj/item/clothing/under/proc/remove_accessory(mob/user) - if(!isliving(user)) - return - if(!can_use(user)) - return - - if(attached_accessory) - var/obj/item/clothing/accessory/A = attached_accessory - attached_accessory.detach(src, user) - if(user.put_in_hands(A)) - to_chat(user, "You detach [A] from [src].") - else - to_chat(user, "You detach [A] from [src] and it falls on the floor.") - - if(ishuman(loc)) - var/mob/living/carbon/human/H = loc - H.update_inv_w_uniform() - H.update_inv_wear_suit() - - -/obj/item/clothing/under/examine(mob/user) - ..() - if(can_adjust) - if(adjusted == ALT_STYLE) - to_chat(user, "Alt-click on [src] to wear it normally.") - else - to_chat(user, "Alt-click on [src] to wear it casually.") - if (has_sensor == BROKEN_SENSORS) - to_chat(user, "Its sensors appear to be shorted out.") - else if(has_sensor > NO_SENSORS) - switch(sensor_mode) - if(SENSOR_OFF) - to_chat(user, "Its sensors appear to be disabled.") - if(SENSOR_LIVING) - to_chat(user, "Its binary life sensors appear to be enabled.") - if(SENSOR_VITALS) - to_chat(user, "Its vital tracker appears to be enabled.") - if(SENSOR_COORDS) - to_chat(user, "Its vital tracker and tracking beacon appear to be enabled.") - if(attached_accessory) - to_chat(user, "\A [attached_accessory] is attached to it.") - /proc/generate_female_clothing(index,t_color,icon,type) var/icon/female_clothing_icon = icon("icon"=icon, "icon_state"=t_color) var/icon/female_s = icon("icon"='icons/mob/uniform.dmi', "icon_state"="[(type == FEMALE_UNIFORM_FULL) ? "female_full" : "female_top"]") @@ -799,4 +334,4 @@ BLIND // can't see anything Shreds.desc = "The sad remains of what used to be [name]." deconstruct(FALSE) else - ..() + ..() \ No newline at end of file diff --git a/code/modules/clothing/ears/ears.dm b/code/modules/clothing/ears/_ears.dm similarity index 100% rename from code/modules/clothing/ears/ears.dm rename to code/modules/clothing/ears/_ears.dm diff --git a/code/modules/clothing/glasses/glasses.dm b/code/modules/clothing/glasses/_glasses.dm similarity index 92% rename from code/modules/clothing/glasses/glasses.dm rename to code/modules/clothing/glasses/_glasses.dm index fb7abd7622..1263c07a91 100644 --- a/code/modules/clothing/glasses/glasses.dm +++ b/code/modules/clothing/glasses/_glasses.dm @@ -1,7 +1,22 @@ +//Glasses /obj/item/clothing/glasses name = "glasses" + icon = 'icons/obj/clothing/glasses.dmi' + w_class = WEIGHT_CLASS_SMALL + flags_cover = GLASSESCOVERSEYES + slot_flags = SLOT_EYES + strip_delay = 20 + equip_delay_other = 25 + resistance_flags = 0 materials = list(MAT_GLASS = 250) - var/glass_colour_type = null //colors your vision when worn + var/vision_flags = 0 + var/darkness_view = 2//Base human is 2 + var/invis_view = SEE_INVISIBLE_LIVING + var/invis_override = 0 //Override to allow glasses to set higher than normal see_invis + var/lighting_alpha + var/list/icon/current = list() //the current hud icons + var/vision_correction = 0 //does wearing these glasses correct some of our vision defects? + var/glass_colour_type //colors your vision when worn /obj/item/clothing/glasses/examine(mob/user) ..() diff --git a/code/modules/clothing/gloves/_gloves.dm b/code/modules/clothing/gloves/_gloves.dm new file mode 100644 index 0000000000..c230b14295 --- /dev/null +++ b/code/modules/clothing/gloves/_gloves.dm @@ -0,0 +1,31 @@ +/obj/item/clothing/gloves + name = "gloves" + gender = PLURAL //Carn: for grammarically correct text-parsing + w_class = WEIGHT_CLASS_SMALL + icon = 'icons/obj/clothing/gloves.dmi' + siemens_coefficient = 0.5 + body_parts_covered = HANDS + slot_flags = SLOT_GLOVES + attack_verb = list("challenged") + var/transfer_prints = FALSE + strip_delay = 20 + equip_delay_other = 40 + + +/obj/item/clothing/gloves/worn_overlays(isinhands = FALSE) + . = list() + if(!isinhands) + if(damaged_clothes) + . += mutable_appearance('icons/effects/item_damage.dmi', "damagedgloves") + if(blood_DNA) + . += mutable_appearance('icons/effects/blood.dmi', "bloodyhands") + +/obj/item/clothing/gloves/update_clothes_damaged_state(damaging = TRUE) + ..() + if(ismob(loc)) + var/mob/M = loc + M.update_inv_gloves() + +// Called just before an attack_hand(), in mob/UnarmedAttack() +/obj/item/clothing/gloves/proc/Touch(atom/A, proximity) + return 0 // return 1 to cancel attack_hand() \ No newline at end of file diff --git a/code/modules/clothing/head/_head.dm b/code/modules/clothing/head/_head.dm new file mode 100644 index 0000000000..8bc8f12dec --- /dev/null +++ b/code/modules/clothing/head/_head.dm @@ -0,0 +1,30 @@ +/obj/item/clothing/head + name = "head" + icon = 'icons/obj/clothing/hats.dmi' + icon_state = "top_hat" + item_state = "that" + body_parts_covered = HEAD + slot_flags = SLOT_HEAD + var/blockTracking = 0 //For AI tracking + var/can_toggle = null + dynamic_hair_suffix = "+generic" + +/obj/item/clothing/head/Initialize() + . = ..() + if(ishuman(loc) && dynamic_hair_suffix) + var/mob/living/carbon/human/H = loc + H.update_hair() + +/obj/item/clothing/head/worn_overlays(isinhands = FALSE) + . = list() + if(!isinhands) + if(damaged_clothes) + . += mutable_appearance('icons/effects/item_damage.dmi', "damagedhelmet") + if(blood_DNA) + . += mutable_appearance('icons/effects/blood.dmi', "helmetblood") + +/obj/item/clothing/head/update_clothes_damaged_state(damaging = TRUE) + ..() + if(ismob(loc)) + var/mob/M = loc + M.update_inv_head() \ No newline at end of file diff --git a/code/modules/clothing/masks/_masks.dm b/code/modules/clothing/masks/_masks.dm new file mode 100644 index 0000000000..eacfa3faea --- /dev/null +++ b/code/modules/clothing/masks/_masks.dm @@ -0,0 +1,53 @@ +/obj/item/clothing/mask + name = "mask" + icon = 'icons/obj/clothing/masks.dmi' + body_parts_covered = HEAD + slot_flags = SLOT_MASK + strip_delay = 40 + equip_delay_other = 40 + var/mask_adjusted = 0 + var/adjusted_flags = null + + +/obj/item/clothing/mask/worn_overlays(isinhands = FALSE) + . = list() + if(!isinhands) + if(body_parts_covered & HEAD) + if(damaged_clothes) + . += mutable_appearance('icons/effects/item_damage.dmi', "damagedmask") + if(blood_DNA) + . += mutable_appearance('icons/effects/blood.dmi', "maskblood") + +/obj/item/clothing/mask/update_clothes_damaged_state(damaging = TRUE) + ..() + if(ismob(loc)) + var/mob/M = loc + M.update_inv_wear_mask() + +//Proc that moves gas/breath masks out of the way, disabling them and allowing pill/food consumption +/obj/item/clothing/mask/proc/adjustmask(mob/living/user) + if(user && user.incapacitated()) + return + mask_adjusted = !mask_adjusted + if(!mask_adjusted) + src.icon_state = initial(icon_state) + gas_transfer_coefficient = initial(gas_transfer_coefficient) + permeability_coefficient = initial(permeability_coefficient) + flags_1 |= visor_flags + flags_inv |= visor_flags_inv + flags_cover |= visor_flags_cover + to_chat(user, "You push \the [src] back into place.") + slot_flags = initial(slot_flags) + else + icon_state += "_up" + to_chat(user, "You push \the [src] out of the way.") + gas_transfer_coefficient = null + permeability_coefficient = null + flags_1 &= ~visor_flags + flags_inv &= ~visor_flags_inv + flags_cover &= ~visor_flags_cover + if(adjusted_flags) + slot_flags = adjusted_flags + if(user) + user.wear_mask_update(src, toggle_off = mask_adjusted) + user.update_action_buttons_icon() //when mask is adjusted out, we update all buttons icon so the user's potential internal tank correctly shows as off. \ No newline at end of file diff --git a/code/modules/clothing/neck/neck.dm b/code/modules/clothing/neck/_neck.dm similarity index 91% rename from code/modules/clothing/neck/neck.dm rename to code/modules/clothing/neck/_neck.dm index af3049aefd..74e2f70c37 100644 --- a/code/modules/clothing/neck/neck.dm +++ b/code/modules/clothing/neck/_neck.dm @@ -1,3 +1,20 @@ +/obj/item/clothing/neck + name = "necklace" + icon = 'icons/obj/clothing/neck.dmi' + body_parts_covered = NECK + slot_flags = SLOT_NECK + strip_delay = 40 + equip_delay_other = 40 + +/obj/item/clothing/neck/worn_overlays(isinhands = FALSE) + . = list() + if(!isinhands) + if(body_parts_covered & HEAD) + if(damaged_clothes) + . += mutable_appearance('icons/effects/item_damage.dmi', "damagedmask") + if(blood_DNA) + . += mutable_appearance('icons/effects/blood.dmi', "maskblood") + /obj/item/clothing/neck/tie name = "tie" desc = "A neosilk clip-on tie." diff --git a/code/modules/clothing/shoes/_shoes.dm b/code/modules/clothing/shoes/_shoes.dm new file mode 100644 index 0000000000..d71827df95 --- /dev/null +++ b/code/modules/clothing/shoes/_shoes.dm @@ -0,0 +1,65 @@ +/obj/item/clothing/shoes + name = "shoes" + icon = 'icons/obj/clothing/shoes.dmi' + desc = "Comfortable-looking shoes." + gender = PLURAL //Carn: for grammarically correct text-parsing + var/chained = 0 + + body_parts_covered = FEET + slot_flags = SLOT_FEET + + permeability_coefficient = 0.5 + slowdown = SHOES_SLOWDOWN + var/blood_state = BLOOD_STATE_NOT_BLOODY + var/list/bloody_shoes = list(BLOOD_STATE_HUMAN = 0,BLOOD_STATE_XENO = 0, BLOOD_STATE_OIL = 0, BLOOD_STATE_NOT_BLOODY = 0) + var/offset = 0 + var/equipped_before_drop = FALSE + +/obj/item/clothing/shoes/worn_overlays(isinhands = FALSE) + . = list() + if(!isinhands) + var/bloody = 0 + if(blood_DNA) + bloody = 1 + else + bloody = bloody_shoes[BLOOD_STATE_HUMAN] + + if(damaged_clothes) + . += mutable_appearance('icons/effects/item_damage.dmi', "damagedshoe") + if(bloody) + . += mutable_appearance('icons/effects/blood.dmi', "shoeblood") + +/obj/item/clothing/shoes/equipped(mob/user, slot) + . = ..() + if(offset && slot_flags & slotdefine2slotbit(slot)) + user.pixel_y += offset + worn_y_dimension -= (offset * 2) + user.update_inv_shoes() + equipped_before_drop = TRUE + +/obj/item/clothing/shoes/proc/restore_offsets(mob/user) + equipped_before_drop = FALSE + user.pixel_y -= offset + worn_y_dimension = world.icon_size + +/obj/item/clothing/shoes/dropped(mob/user) + if(offset && equipped_before_drop) + restore_offsets(user) + . = ..() + +/obj/item/clothing/shoes/update_clothes_damaged_state(damaging = TRUE) + ..() + if(ismob(loc)) + var/mob/M = loc + M.update_inv_shoes() + +/obj/item/clothing/shoes/clean_blood() + ..() + bloody_shoes = list(BLOOD_STATE_HUMAN = 0,BLOOD_STATE_XENO = 0, BLOOD_STATE_OIL = 0, BLOOD_STATE_NOT_BLOODY = 0) + blood_state = BLOOD_STATE_NOT_BLOODY + if(ismob(loc)) + var/mob/M = loc + M.update_inv_shoes() + +/obj/item/proc/negates_gravity() + return 0 \ No newline at end of file diff --git a/code/modules/clothing/spacesuits/_spacesuits.dm b/code/modules/clothing/spacesuits/_spacesuits.dm new file mode 100644 index 0000000000..32caa3adf4 --- /dev/null +++ b/code/modules/clothing/spacesuits/_spacesuits.dm @@ -0,0 +1,45 @@ +//Note: Everything in modules/clothing/spacesuits should have the entire suit grouped together. +// Meaning the the suit is defined directly after the corrisponding helmet. Just like below! +/obj/item/clothing/head/helmet/space + name = "space helmet" + icon_state = "spaceold" + desc = "A special helmet with solar UV shielding to protect your eyes from harmful rays." + flags_1 = STOPSPRESSUREDMAGE_1 | THICKMATERIAL_1 + item_state = "spaceold" + permeability_coefficient = 0.01 + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 100, rad = 50, fire = 80, acid = 70) + flags_inv = HIDEMASK|HIDEEARS|HIDEEYES|HIDEFACE|HIDEHAIR|HIDEFACIALHAIR + dynamic_hair_suffix = "" + dynamic_fhair_suffix = "" + cold_protection = HEAD + min_cold_protection_temperature = SPACE_HELM_MIN_TEMP_PROTECT + heat_protection = HEAD + max_heat_protection_temperature = SPACE_HELM_MAX_TEMP_PROTECT + flash_protect = 2 + strip_delay = 50 + equip_delay_other = 50 + flags_cover = HEADCOVERSEYES | HEADCOVERSMOUTH + resistance_flags = 0 + dog_fashion = null + +/obj/item/clothing/suit/space + name = "space suit" + desc = "A suit that protects against low pressure environments. Has a big 13 on the back." + icon_state = "spaceold" + item_state = "s_suit" + w_class = WEIGHT_CLASS_BULKY + gas_transfer_coefficient = 0.01 + permeability_coefficient = 0.02 + flags_1 = STOPSPRESSUREDMAGE_1 | THICKMATERIAL_1 + body_parts_covered = CHEST|GROIN|LEGS|FEET|ARMS|HANDS + allowed = list(/obj/item/device/flashlight, /obj/item/tank/internals) + slowdown = 1 + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 100, rad = 50, fire = 80, acid = 70) + flags_inv = HIDEGLOVES|HIDESHOES|HIDEJUMPSUIT + cold_protection = CHEST | GROIN | LEGS | FEET | ARMS | HANDS + min_cold_protection_temperature = SPACE_SUIT_MIN_TEMP_PROTECT + heat_protection = CHEST|GROIN|LEGS|FEET|ARMS|HANDS + max_heat_protection_temperature = SPACE_SUIT_MAX_TEMP_PROTECT + strip_delay = 80 + equip_delay_other = 80 + resistance_flags = 0 \ No newline at end of file diff --git a/code/modules/clothing/suits/_suits.dm b/code/modules/clothing/suits/_suits.dm new file mode 100644 index 0000000000..e934b77f38 --- /dev/null +++ b/code/modules/clothing/suits/_suits.dm @@ -0,0 +1,31 @@ +/obj/item/clothing/suit + icon = 'icons/obj/clothing/suits.dmi' + name = "suit" + var/fire_resist = T0C+100 + allowed = list(/obj/item/tank/internals/emergency_oxygen) + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0, fire = 0, acid = 0) + slot_flags = SLOT_OCLOTHING + var/blood_overlay_type = "suit" + var/togglename = null + + +/obj/item/clothing/suit/worn_overlays(isinhands = FALSE) + . = list() + if(!isinhands) + if(damaged_clothes) + . += mutable_appearance('icons/effects/item_damage.dmi', "damaged[blood_overlay_type]") + if(blood_DNA) + . += mutable_appearance('icons/effects/blood.dmi', "[blood_overlay_type]blood") + var/mob/living/carbon/human/M = loc + if(ishuman(M) && M.w_uniform) + var/obj/item/clothing/under/U = M.w_uniform + if(istype(U) && U.attached_accessory) + var/obj/item/clothing/accessory/A = U.attached_accessory + if(A.above_suit) + . += U.accessory_overlay + +/obj/item/clothing/suit/update_clothes_damaged_state(damaging = TRUE) + ..() + if(ismob(loc)) + var/mob/M = loc + M.update_inv_wear_suit() \ No newline at end of file diff --git a/code/modules/clothing/under/_under.dm b/code/modules/clothing/under/_under.dm new file mode 100644 index 0000000000..33eeb03c7e --- /dev/null +++ b/code/modules/clothing/under/_under.dm @@ -0,0 +1,156 @@ +/obj/item/clothing/under + icon = 'icons/obj/clothing/uniforms.dmi' + name = "under" + body_parts_covered = CHEST|GROIN|LEGS|ARMS + permeability_coefficient = 0.9 + slot_flags = SLOT_ICLOTHING + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0, fire = 0, acid = 0) + var/fitted = FEMALE_UNIFORM_FULL // For use in alternate clothing styles for women + var/has_sensor = HAS_SENSORS // For the crew computer + var/random_sensor = 1 + var/sensor_mode = NO_SENSORS + var/can_adjust = 1 + var/adjusted = NORMAL_STYLE + var/alt_covers_chest = 0 // for adjusted/rolled-down jumpsuits, 0 = exposes chest and arms, 1 = exposes arms only + var/obj/item/clothing/accessory/attached_accessory + var/mutable_appearance/accessory_overlay + var/mutantrace_variation = NO_MUTANTRACE_VARIATION //Are there special sprites for specific situations? Don't use this unless you need to. + +/obj/item/clothing/under/worn_overlays(isinhands = FALSE) + . = list() + if(!isinhands) + + if(damaged_clothes) + . += mutable_appearance('icons/effects/item_damage.dmi', "damageduniform") + if(blood_DNA) + . += mutable_appearance('icons/effects/blood.dmi', "uniformblood") + if(accessory_overlay) + . += accessory_overlay + +/obj/item/clothing/under/attackby(obj/item/I, mob/user, params) + if((has_sensor == BROKEN_SENSORS) && istype(I, /obj/item/stack/cable_coil)) + var/obj/item/stack/cable_coil/C = I + C.use(1) + has_sensor = HAS_SENSORS + to_chat(user,"You repair the suit sensors on [src] with [C].") + return 1 + if(!attach_accessory(I, user)) + return ..() + +/obj/item/clothing/under/update_clothes_damaged_state(damaging = TRUE) + ..() + if(ismob(loc)) + var/mob/M = loc + M.update_inv_w_uniform() + if(has_sensor > NO_SENSORS) + has_sensor = BROKEN_SENSORS + +/obj/item/clothing/under/New() + if(random_sensor) + //make the sensor mode favor higher levels, except coords. + sensor_mode = pick(SENSOR_OFF, SENSOR_LIVING, SENSOR_LIVING, SENSOR_VITALS, SENSOR_VITALS, SENSOR_VITALS, SENSOR_COORDS, SENSOR_COORDS) + adjusted = NORMAL_STYLE + ..() + +/obj/item/clothing/under/equipped(mob/user, slot) + ..() + if(adjusted) + adjusted = NORMAL_STYLE + fitted = initial(fitted) + if(!alt_covers_chest) + body_parts_covered |= CHEST + + if(mutantrace_variation && ishuman(user)) + var/mob/living/carbon/human/H = user + if(DIGITIGRADE in H.dna.species.species_traits) + adjusted = DIGITIGRADE_STYLE + H.update_inv_w_uniform() + + if(attached_accessory && slot != slot_hands && ishuman(user)) + var/mob/living/carbon/human/H = user + attached_accessory.on_uniform_equip(src, user) + if(attached_accessory.above_suit) + H.update_inv_wear_suit() + +/obj/item/clothing/under/dropped(mob/user) + if(attached_accessory) + attached_accessory.on_uniform_dropped(src, user) + if(ishuman(user)) + var/mob/living/carbon/human/H = user + if(attached_accessory.above_suit) + H.update_inv_wear_suit() + + ..() + +/obj/item/clothing/under/proc/attach_accessory(obj/item/I, mob/user, notifyAttach = 1) + . = FALSE + if(istype(I, /obj/item/clothing/accessory)) + var/obj/item/clothing/accessory/A = I + if(attached_accessory) + if(user) + to_chat(user, "[src] already has an accessory.") + return + else + if(user && !user.temporarilyRemoveItemFromInventory(I)) + return + if(!A.attach(src, user)) + return + + if(user && notifyAttach) + to_chat(user, "You attach [I] to [src].") + + var/accessory_color = attached_accessory.item_color + if(!accessory_color) + accessory_color = attached_accessory.icon_state + accessory_overlay = mutable_appearance('icons/mob/accessories.dmi', "[accessory_color]") + accessory_overlay.alpha = attached_accessory.alpha + accessory_overlay.color = attached_accessory.color + + if(ishuman(loc)) + var/mob/living/carbon/human/H = loc + H.update_inv_w_uniform() + H.update_inv_wear_suit() + + return TRUE + +/obj/item/clothing/under/proc/remove_accessory(mob/user) + if(!isliving(user)) + return + if(!can_use(user)) + return + + if(attached_accessory) + var/obj/item/clothing/accessory/A = attached_accessory + attached_accessory.detach(src, user) + if(user.put_in_hands(A)) + to_chat(user, "You detach [A] from [src].") + else + to_chat(user, "You detach [A] from [src] and it falls on the floor.") + + if(ishuman(loc)) + var/mob/living/carbon/human/H = loc + H.update_inv_w_uniform() + H.update_inv_wear_suit() + + +/obj/item/clothing/under/examine(mob/user) + ..() + if(can_adjust) + if(adjusted == ALT_STYLE) + to_chat(user, "Alt-click on [src] to wear it normally.") + else + to_chat(user, "Alt-click on [src] to wear it casually.") + if (has_sensor == BROKEN_SENSORS) + to_chat(user, "Its sensors appear to be shorted out.") + else if(has_sensor > NO_SENSORS) + switch(sensor_mode) + if(SENSOR_OFF) + to_chat(user, "Its sensors appear to be disabled.") + if(SENSOR_LIVING) + to_chat(user, "Its binary life sensors appear to be enabled.") + if(SENSOR_VITALS) + to_chat(user, "Its vital tracker appears to be enabled.") + if(SENSOR_COORDS) + to_chat(user, "Its vital tracker and tracking beacon appear to be enabled.") + if(attached_accessory) + to_chat(user, "\A [attached_accessory] is attached to it.") \ No newline at end of file diff --git a/tgstation.dme b/tgstation.dme index 6c81456840..06341d7411 100755 --- a/tgstation.dme +++ b/tgstation.dme @@ -1262,15 +1262,23 @@ #include "code\modules\client\verbs\who.dm" #include "code\modules\clothing\chameleon.dm" #include "code\modules\clothing\clothing.dm" -#include "code\modules\clothing\ears\ears.dm" +#include "code\modules\clothing\ears\_ears.dm" +#include "code\modules\clothing\glasses\_glasses.dm" #include "code\modules\clothing\glasses\engine_goggles.dm" -#include "code\modules\clothing\glasses\glasses.dm" #include "code\modules\clothing\glasses\hud.dm" +<<<<<<< HEAD #include "code\modules\clothing\glasses\vg_glasses.dm" #include "code\modules\clothing\gloves\boxing.dm" #include "code\modules\clothing\gloves\color.dm" #include "code\modules\clothing\gloves\miscellaneous.dm" #include "code\modules\clothing\gloves\vg_gloves.dm" +======= +#include "code\modules\clothing\gloves\_gloves.dm" +#include "code\modules\clothing\gloves\boxing.dm" +#include "code\modules\clothing\gloves\color.dm" +#include "code\modules\clothing\gloves\miscellaneous.dm" +#include "code\modules\clothing\head\_head.dm" +>>>>>>> f910aa9... Merge pull request #31960 from lzimann/split #include "code\modules\clothing\head\beanie.dm" #include "code\modules\clothing\head\cit_hats.dm" #include "code\modules\clothing\head\collectable.dm" @@ -1280,29 +1288,46 @@ #include "code\modules\clothing\head\misc.dm" #include "code\modules\clothing\head\misc_special.dm" #include "code\modules\clothing\head\soft_caps.dm" +<<<<<<< HEAD #include "code\modules\clothing\head\vg_hats.dm" +======= +#include "code\modules\clothing\masks\_masks.dm" +>>>>>>> f910aa9... Merge pull request #31960 from lzimann/split #include "code\modules\clothing\masks\boxing.dm" #include "code\modules\clothing\masks\breath.dm" #include "code\modules\clothing\masks\gasmask.dm" #include "code\modules\clothing\masks\hailer.dm" #include "code\modules\clothing\masks\miscellaneous.dm" +<<<<<<< HEAD #include "code\modules\clothing\masks\vg_masks.dm" #include "code\modules\clothing\neck\neck.dm" +======= +#include "code\modules\clothing\neck\_neck.dm" +>>>>>>> f910aa9... Merge pull request #31960 from lzimann/split #include "code\modules\clothing\outfits\ert.dm" #include "code\modules\clothing\outfits\event.dm" #include "code\modules\clothing\outfits\standard.dm" +#include "code\modules\clothing\shoes\_shoes.dm" #include "code\modules\clothing\shoes\bananashoes.dm" #include "code\modules\clothing\shoes\colour.dm" #include "code\modules\clothing\shoes\magboots.dm" #include "code\modules\clothing\shoes\miscellaneous.dm" +<<<<<<< HEAD #include "code\modules\clothing\shoes\vg_shoes.dm" +======= +#include "code\modules\clothing\spacesuits\_spacesuits.dm" +>>>>>>> f910aa9... Merge pull request #31960 from lzimann/split #include "code\modules\clothing\spacesuits\chronosuit.dm" #include "code\modules\clothing\spacesuits\flightsuit.dm" #include "code\modules\clothing\spacesuits\hardsuit.dm" #include "code\modules\clothing\spacesuits\miscellaneous.dm" #include "code\modules\clothing\spacesuits\plasmamen.dm" #include "code\modules\clothing\spacesuits\syndi.dm" +<<<<<<< HEAD #include "code\modules\clothing\spacesuits\vg_spess.dm" +======= +#include "code\modules\clothing\suits\_suits.dm" +>>>>>>> f910aa9... Merge pull request #31960 from lzimann/split #include "code\modules\clothing\suits\armor.dm" #include "code\modules\clothing\suits\bio.dm" #include "code\modules\clothing\suits\cloaks.dm" @@ -1313,6 +1338,7 @@ #include "code\modules\clothing\suits\utility.dm" #include "code\modules\clothing\suits\vg_suits.dm" #include "code\modules\clothing\suits\wiz_robe.dm" +#include "code\modules\clothing\under\_under.dm" #include "code\modules\clothing\under\accessories.dm" #include "code\modules\clothing\under\color.dm" #include "code\modules\clothing\under\miscellaneous.dm" From 637273285dddb2493c4b7b53df7c4e1c0ba099b2 Mon Sep 17 00:00:00 2001 From: MoreRobustThanYou Date: Sat, 21 Oct 2017 21:15:21 -0400 Subject: [PATCH 027/227] Blood Brother now properly sets special role (#31964) * Blood Brother now properly sets special role * Update mob_helpers.dm * Update mob_helpers.dm * Update mob_helpers.dm --- code/datums/antagonists/brother.dm | 1 + code/modules/mob/mob_helpers.dm | 18 ++++++++++-------- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/code/datums/antagonists/brother.dm b/code/datums/antagonists/brother.dm index 77f611cf2c..6458e6da09 100644 --- a/code/datums/antagonists/brother.dm +++ b/code/datums/antagonists/brother.dm @@ -20,6 +20,7 @@ /datum/antagonist/brother/on_gain() SSticker.mode.brothers += owner owner.objectives += team.objectives + owner.special_role = special_role finalize_brother() return ..() diff --git a/code/modules/mob/mob_helpers.dm b/code/modules/mob/mob_helpers.dm index a605d5e479..af12b87eec 100644 --- a/code/modules/mob/mob_helpers.dm +++ b/code/modules/mob/mob_helpers.dm @@ -335,9 +335,9 @@ It's fairly easy to fix if dealing with single letters but not so much with comp /proc/is_special_character(mob/M) // returns 1 for special characters and 2 for heroes of gamemode //moved out of admins.dm because things other than admin procs were calling this. if(!SSticker.HasRoundStarted()) - return 0 + return FALSE if(!istype(M)) - return 0 + return FALSE if(issilicon(M)) if(iscyborg(M)) //For cyborgs, returns 1 if the cyborg has a law 0 and special_role. Returns 0 if the borg is merely slaved to an AI traitor. var/mob/living/silicon/robot/R = M @@ -346,13 +346,13 @@ It's fairly easy to fix if dealing with single letters but not so much with comp if(R.connected_ai) if(is_special_character(R.connected_ai) && R.connected_ai.laws && (R.connected_ai.laws.zeroth_borg == R.laws.zeroth || R.connected_ai.laws.zeroth == R.laws.zeroth)) return 0 //AI is the real traitor here, so the borg itself is not a traitor - return 1 //Slaved but also a traitor - return 1 //Unslaved, traitor + return TRUE//Slaved but also a traitor + return TRUE //Unslaved, traitor else if(isAI(M)) var/mob/living/silicon/ai/A = M if(A.laws && A.laws.zeroth && A.mind && A.mind.special_role) - return 1 - return 0 + return TRUE + return FALSE if(M.mind && M.mind.special_role)//If they have a mind and special role, they are some type of traitor or antagonist. switch(SSticker.mode.config_tag) if("revolution") @@ -379,8 +379,10 @@ It's fairly easy to fix if dealing with single letters but not so much with comp if("abductor") if(M.mind in SSticker.mode.abductors) return 2 - return 1 - return 0 + return TRUE + if(M.mind && LAZYLEN(M.mind.antag_datums)) //they have an antag datum! + return TRUE + return FALSE /mob/proc/reagent_check(datum/reagent/R) // utilized in the species code return 1 From 3b0da0a0f339b9399a6afcc244cb11ef60613917 Mon Sep 17 00:00:00 2001 From: Poojawa Date: Sat, 21 Oct 2017 22:16:01 -0500 Subject: [PATCH 029/227] Update tgstation.dme --- tgstation.dme | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/tgstation.dme b/tgstation.dme index 06341d7411..329610c32a 100755 --- a/tgstation.dme +++ b/tgstation.dme @@ -1266,19 +1266,16 @@ #include "code\modules\clothing\glasses\_glasses.dm" #include "code\modules\clothing\glasses\engine_goggles.dm" #include "code\modules\clothing\glasses\hud.dm" -<<<<<<< HEAD #include "code\modules\clothing\glasses\vg_glasses.dm" #include "code\modules\clothing\gloves\boxing.dm" #include "code\modules\clothing\gloves\color.dm" #include "code\modules\clothing\gloves\miscellaneous.dm" #include "code\modules\clothing\gloves\vg_gloves.dm" -======= #include "code\modules\clothing\gloves\_gloves.dm" #include "code\modules\clothing\gloves\boxing.dm" #include "code\modules\clothing\gloves\color.dm" #include "code\modules\clothing\gloves\miscellaneous.dm" #include "code\modules\clothing\head\_head.dm" ->>>>>>> f910aa9... Merge pull request #31960 from lzimann/split #include "code\modules\clothing\head\beanie.dm" #include "code\modules\clothing\head\cit_hats.dm" #include "code\modules\clothing\head\collectable.dm" @@ -1288,22 +1285,16 @@ #include "code\modules\clothing\head\misc.dm" #include "code\modules\clothing\head\misc_special.dm" #include "code\modules\clothing\head\soft_caps.dm" -<<<<<<< HEAD #include "code\modules\clothing\head\vg_hats.dm" -======= #include "code\modules\clothing\masks\_masks.dm" ->>>>>>> f910aa9... Merge pull request #31960 from lzimann/split #include "code\modules\clothing\masks\boxing.dm" #include "code\modules\clothing\masks\breath.dm" #include "code\modules\clothing\masks\gasmask.dm" #include "code\modules\clothing\masks\hailer.dm" #include "code\modules\clothing\masks\miscellaneous.dm" -<<<<<<< HEAD #include "code\modules\clothing\masks\vg_masks.dm" #include "code\modules\clothing\neck\neck.dm" -======= #include "code\modules\clothing\neck\_neck.dm" ->>>>>>> f910aa9... Merge pull request #31960 from lzimann/split #include "code\modules\clothing\outfits\ert.dm" #include "code\modules\clothing\outfits\event.dm" #include "code\modules\clothing\outfits\standard.dm" @@ -1312,22 +1303,16 @@ #include "code\modules\clothing\shoes\colour.dm" #include "code\modules\clothing\shoes\magboots.dm" #include "code\modules\clothing\shoes\miscellaneous.dm" -<<<<<<< HEAD #include "code\modules\clothing\shoes\vg_shoes.dm" -======= #include "code\modules\clothing\spacesuits\_spacesuits.dm" ->>>>>>> f910aa9... Merge pull request #31960 from lzimann/split #include "code\modules\clothing\spacesuits\chronosuit.dm" #include "code\modules\clothing\spacesuits\flightsuit.dm" #include "code\modules\clothing\spacesuits\hardsuit.dm" #include "code\modules\clothing\spacesuits\miscellaneous.dm" #include "code\modules\clothing\spacesuits\plasmamen.dm" #include "code\modules\clothing\spacesuits\syndi.dm" -<<<<<<< HEAD #include "code\modules\clothing\spacesuits\vg_spess.dm" -======= #include "code\modules\clothing\suits\_suits.dm" ->>>>>>> f910aa9... Merge pull request #31960 from lzimann/split #include "code\modules\clothing\suits\armor.dm" #include "code\modules\clothing\suits\bio.dm" #include "code\modules\clothing\suits\cloaks.dm" From 7eb2af06c3253f356e4701b10bd08bb94aabf930 Mon Sep 17 00:00:00 2001 From: Poojawa Date: Sat, 21 Oct 2017 22:18:19 -0500 Subject: [PATCH 030/227] fixes compile --- code/__HELPERS/unsorted.dm | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/code/__HELPERS/unsorted.dm b/code/__HELPERS/unsorted.dm index ff0693a839..75e912dee7 100644 --- a/code/__HELPERS/unsorted.dm +++ b/code/__HELPERS/unsorted.dm @@ -503,14 +503,6 @@ Turf and target are separate in case you want to teleport some distance from a t var/y=arcsin(x/sqrt(1+x*x)) return y -<<<<<<< HEAD -/atom/proc/GetAllContents(list/output=list()) - . = output - output += src - for(var/i in 1 to contents.len) - var/atom/thing = contents[i] - thing.GetAllContents(output) -======= /* Recursively gets all contents of contents and returns them all in a list. @@ -519,15 +511,14 @@ Do not set recursive depth higher than MAX_PROC_DEPTH as byond breaks when that */ /atom/proc/GetAllContents(list/output=list(), recursive_depth=MAX_PROC_DEPTH, _current_depth=0) . = output - output += src + output += src if(_current_depth == recursive_depth) if(_current_depth == MAX_PROC_DEPTH) WARNING("Get all contents reached the max recursive depth of [MAX_PROC_DEPTH]. More and we would break shit. Offending atom: [src]") return - for(var/i in 1 to contents.len) - var/atom/thing = contents[i] - thing.GetAllContents(output, recursive_depth, ++_current_depth) ->>>>>>> 179cd9d... Merge pull request #31927 from ninjanomnom/recursive-depth + for(var/i in 1 to contents.len) + var/atom/thing = contents[i] + thing.GetAllContents(output, recursive_depth, ++_current_depth) //Step-towards method of determining whether one atom can see another. Similar to viewers() /proc/can_see(atom/source, atom/target, length=5) // I couldnt be arsed to do actual raycasting :I This is horribly inaccurate. From 5cb53d91b870396f3d30a396fa8ad305313f82c6 Mon Sep 17 00:00:00 2001 From: Poojawa Date: Sat, 21 Oct 2017 22:20:09 -0500 Subject: [PATCH 031/227] Update game_options.txt --- config/game_options.txt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/config/game_options.txt b/config/game_options.txt index 841adf8dca..e835a4b1a6 100644 --- a/config/game_options.txt +++ b/config/game_options.txt @@ -85,11 +85,6 @@ PROBABILITY REVOLUTION 2 PROBABILITY CULT 2 PROBABILITY CHANGELING 2 PROBABILITY WIZARD 4 -<<<<<<< HEAD -PROBABILITY BLOB 2 -PROBABILITY RAGINMAGES 2 -======= ->>>>>>> be748e3... Disentangles blob from blob mode/removes blob mode (#31780) PROBABILITY MONKEY 0 PROBABILITY METEOR 0 PROBABILITY EXTENDED 0 From bc5c548e9be91214d83b65d617c822946a29f34b Mon Sep 17 00:00:00 2001 From: oranges Date: Sun, 22 Oct 2017 16:21:24 +1300 Subject: [PATCH 032/227] Merge pull request #31989 from ninjanomnom/radiation-borg-fix Fixes silicon mob contents becoming contaminated --- code/__HELPERS/radiation.dm | 9 ++++++++- code/datums/radiation_wave.dm | 7 ++++++- code/modules/mob/living/silicon/silicon.dm | 4 ++++ 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/code/__HELPERS/radiation.dm b/code/__HELPERS/radiation.dm index 189949b80b..7cd3a1bbeb 100644 --- a/code/__HELPERS/radiation.dm +++ b/code/__HELPERS/radiation.dm @@ -11,7 +11,14 @@ return for(var/i in 1 to location.contents.len) - var/static/list/ignored_things = typecacheof(list(/mob/dead, /obj/effect, /obj/docking_port, /turf, /atom/movable/lighting_object, /mob/camera)) + var/static/list/ignored_things = typecacheof(list( // These types will never have radiation applied to them or be looked inside of + /mob/dead, + /mob/camera, + /obj/effect, + /obj/docking_port, + /atom/movable/lighting_object + )) + var/atom/thing = location.contents[i] if(ignored_things[thing.type]) continue diff --git a/code/datums/radiation_wave.dm b/code/datums/radiation_wave.dm index 2432427f4a..5a02997b00 100644 --- a/code/datums/radiation_wave.dm +++ b/code/datums/radiation_wave.dm @@ -89,7 +89,12 @@ continue thing.rad_act(strength) - var/static/list/blacklisted = typecacheof(list(/turf, /mob, /obj/structure/cable, /obj/machinery/atmospherics)) + var/static/list/blacklisted = typecacheof(list( //These types will never be contaminated + /turf, + /mob, + /obj/structure/cable, + /obj/machinery/atmospherics + )) if(!can_contaminate || blacklisted[thing.type]) continue if(prob((strength-RAD_MINIMUM_CONTAMINATION) * RAD_CONTAMINATION_CHANCE_COEFFICIENT * min(1/(steps*range_modifier), 1))) // Only stronk rads get to have little baby rads diff --git a/code/modules/mob/living/silicon/silicon.dm b/code/modules/mob/living/silicon/silicon.dm index 46a62a1d50..527474a0f3 100644 --- a/code/modules/mob/living/silicon/silicon.dm +++ b/code/modules/mob/living/silicon/silicon.dm @@ -47,6 +47,10 @@ diag_hud_set_status() diag_hud_set_health() +/mob/living/silicon/ComponentInitialize() + . = ..() + AddComponent(/datum/component/rad_insulation, RAD_NO_INSULATION, TRUE, TRUE) + /mob/living/silicon/med_hud_set_health() return //we use a different hud From 04b3a1850213ef9519e55dacb04105a2f80ae4b8 Mon Sep 17 00:00:00 2001 From: Robustin Date: Sun, 22 Oct 2017 00:16:10 -0400 Subject: [PATCH 034/227] Biosuits now offer high Rad resistance (#31974) * Biosuit rad resistance buff * Buffed medical hardsuit rad resist --- code/modules/clothing/spacesuits/hardsuit.dm | 4 ++-- code/modules/clothing/suits/bio.dm | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/code/modules/clothing/spacesuits/hardsuit.dm b/code/modules/clothing/spacesuits/hardsuit.dm index a275aec4f5..a604eae015 100644 --- a/code/modules/clothing/spacesuits/hardsuit.dm +++ b/code/modules/clothing/spacesuits/hardsuit.dm @@ -394,7 +394,7 @@ item_state = "medical_helm" item_color = "medical" flash_protect = 0 - armor = list(melee = 30, bullet = 5, laser = 10, energy = 5, bomb = 10, bio = 100, rad = 50, fire = 75, acid = 75) + armor = list(melee = 30, bullet = 5, laser = 10, energy = 5, bomb = 10, bio = 100, rad = 75, fire = 75, acid = 75) scan_reagents = 1 /obj/item/clothing/suit/space/hardsuit/medical @@ -403,7 +403,7 @@ desc = "A special suit that protects against hazardous, low pressure environments. Built with lightweight materials for easier movement." item_state = "medical_hardsuit" allowed = list(/obj/item/device/flashlight, /obj/item/tank/internals, /obj/item/storage/firstaid, /obj/item/device/healthanalyzer, /obj/item/stack/medical) - armor = list(melee = 30, bullet = 5, laser = 10, energy = 5, bomb = 10, bio = 100, rad = 50, fire = 75, acid = 75) + armor = list(melee = 30, bullet = 5, laser = 10, energy = 5, bomb = 10, bio = 100, rad = 75, fire = 75, acid = 75) helmettype = /obj/item/clothing/head/helmet/space/hardsuit/medical //Research Director hardsuit diff --git a/code/modules/clothing/suits/bio.dm b/code/modules/clothing/suits/bio.dm index 1626340e49..11b60817ed 100644 --- a/code/modules/clothing/suits/bio.dm +++ b/code/modules/clothing/suits/bio.dm @@ -5,7 +5,7 @@ desc = "A hood that protects the head and face from biological comtaminants." permeability_coefficient = 0.01 flags_1 = THICKMATERIAL_1 - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 100, rad = 20, fire = 30, acid = 100) + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 100, rad = 80, fire = 30, acid = 100) flags_inv = HIDEMASK|HIDEEARS|HIDEEYES|HIDEHAIR|HIDEFACIALHAIR|HIDEFACE resistance_flags = ACID_PROOF flags_cover = HEADCOVERSEYES | HEADCOVERSMOUTH @@ -22,7 +22,7 @@ body_parts_covered = CHEST|GROIN|LEGS|FEET|ARMS|HANDS slowdown = 1 allowed = list(/obj/item/tank/internals/emergency_oxygen, /obj/item/pen, /obj/item/device/flashlight/pen, /obj/item/reagent_containers/dropper, /obj/item/reagent_containers/syringe, /obj/item/reagent_containers/hypospray) - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 100, rad = 20, fire = 30, acid = 100) + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 100, rad = 80, fire = 30, acid = 100) flags_inv = HIDEGLOVES|HIDESHOES|HIDEJUMPSUIT strip_delay = 70 equip_delay_other = 70 @@ -46,11 +46,11 @@ //Security biosuit, grey with red stripe across the chest /obj/item/clothing/head/bio_hood/security - armor = list(melee = 25, bullet = 15, laser = 25, energy = 10, bomb = 25, bio = 100, rad = 20, fire = 30, acid = 100) + armor = list(melee = 25, bullet = 15, laser = 25, energy = 10, bomb = 25, bio = 100, rad = 80, fire = 30, acid = 100) icon_state = "bio_security" /obj/item/clothing/suit/bio_suit/security - armor = list(melee = 25, bullet = 15, laser = 25, energy = 10, bomb = 25, bio = 100, rad = 20, fire = 30, acid = 100) + armor = list(melee = 25, bullet = 15, laser = 25, energy = 10, bomb = 25, bio = 100, rad = 80, fire = 30, acid = 100) icon_state = "bio_security" From faf0e0a10ab6531776dd2b01b4df55cdc8fc6e1f Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Sun, 22 Oct 2017 01:04:36 -0400 Subject: [PATCH 036/227] Adds admin override for false alarm event. --- code/modules/admin/topic.dm | 1 + code/modules/events/_event.dm | 4 +++ code/modules/events/false_alarm.dm | 55 ++++++++++++++++++++++++++++++ 3 files changed, 60 insertions(+) diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm index 7152a0f45f..73da8d9424 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -165,6 +165,7 @@ return var/datum/round_event_control/E = locate(href_list["forceevent"]) in SSevents.control if(E) + E.admin_setup(usr) var/datum/round_event/event = E.runEvent() if(event.announceWhen>0) event.processing = FALSE diff --git a/code/modules/events/_event.dm b/code/modules/events/_event.dm index c33bb463b3..8b2c85d4e3 100644 --- a/code/modules/events/_event.dm +++ b/code/modules/events/_event.dm @@ -99,6 +99,10 @@ return E +//Special admins setup +/datum/round_event_control/proc/admin_setup() + return + /datum/round_event //NOTE: Times are measured in master controller ticks! var/processing = TRUE var/datum/round_event_control/control diff --git a/code/modules/events/false_alarm.dm b/code/modules/events/false_alarm.dm index 3636c3e320..6ade6481fb 100644 --- a/code/modules/events/false_alarm.dm +++ b/code/modules/events/false_alarm.dm @@ -1,3 +1,4 @@ +<<<<<<< HEAD /datum/round_event_control/falsealarm name = "False Alarm" typepath = /datum/round_event/falsealarm @@ -26,6 +27,60 @@ /proc/gather_false_events(players_amt, gamemode) . = list() for(var/datum/round_event_control/E in SSevents.control) +======= +/datum/round_event_control/falsealarm + name = "False Alarm" + typepath = /datum/round_event/falsealarm + weight = 20 + max_occurrences = 5 + var/forced_type //Admin abuse + + +/datum/round_event_control/falsealarm/admin_setup() + if(!check_rights(R_FUN)) + return + + var/list/possible_types = list() + + for(var/datum/round_event_control/E in SSevents.control) + if(istype(E, /datum/round_event_control/falsealarm)) + continue + var/datum/round_event/event = E.typepath + if(initial(event.announceWhen) <= 0) + continue + possible_types += E + + forced_type = input(usr, "Select the scare.","False event") as null|anything in possible_types + +/datum/round_event_control/falsealarm/canSpawnEvent(players_amt, gamemode) + return ..() && length(gather_false_events()) + +/datum/round_event/falsealarm + announceWhen = 0 + endWhen = 1 + +/datum/round_event/falsealarm/announce() + var/players_amt = get_active_player_count(alive_check = 1, afk_check = 1, human_check = 1) + var/gamemode = SSticker.mode.config_tag + + var/events_list = gather_false_events(players_amt, gamemode) + var/datum/round_event_control/event_control + var/datum/round_event_control/falsealarm/C = control + if(C.forced_type) + event_control = C.forced_type + C.forced_type = null + else + event_control = pick(events_list) + if(event_control) + var/datum/round_event/Event = new event_control.typepath() + message_admins("False Alarm: [Event]") + Event.kill() //do not process this event - no starts, no ticks, no ends + Event.announce() //just announce it like it's happening + +/proc/gather_false_events(players_amt, gamemode) + . = list() + for(var/datum/round_event_control/E in SSevents.control) +>>>>>>> 789cff4... Merge pull request #31922 from AnturK/abuse if(istype(E, /datum/round_event_control/falsealarm)) continue if(!E.canSpawnEvent(players_amt, gamemode)) From 25b5bb3e442bdf3d68fe3262e59e235ecebd6edd Mon Sep 17 00:00:00 2001 From: Firecage Date: Sun, 22 Oct 2017 07:06:07 +0200 Subject: [PATCH 037/227] Code Consistency: luminosity --> light_range --- code/game/machinery/lightswitch.dm | 7 +++++++ code/game/objects/items/weaponry.dm | 2 +- code/modules/mining/lavaland/ash_flora.dm | 4 ++-- code/modules/mining/lavaland/necropolis_chests.dm | 2 +- code/modules/mob/living/simple_animal/bot/bot.dm | 2 +- code/modules/power/apc.dm | 1 - code/modules/power/singularity/containment_field.dm | 2 +- code/modules/power/singularity/singularity.dm | 4 ++-- 8 files changed, 15 insertions(+), 9 deletions(-) diff --git a/code/game/machinery/lightswitch.dm b/code/game/machinery/lightswitch.dm index 102be57f9b..45af0693ed 100644 --- a/code/game/machinery/lightswitch.dm +++ b/code/game/machinery/lightswitch.dm @@ -8,11 +8,18 @@ anchored = TRUE desc = "Make dark." var/on = TRUE +<<<<<<< HEAD var/area/area = null var/otherarea = null // luminosity = 1 /obj/machinery/light_switch/Initialize() +======= + var/area/area = null + var/otherarea = null + +/obj/machinery/light_switch/Initialize() +>>>>>>> afd8bb7... Code Consistency: luminosity --> light_range (#31355) . = ..() area = get_area(src) diff --git a/code/game/objects/items/weaponry.dm b/code/game/objects/items/weaponry.dm index 7959da84c2..90a0ec7f99 100644 --- a/code/game/objects/items/weaponry.dm +++ b/code/game/objects/items/weaponry.dm @@ -73,7 +73,7 @@ flags_1 = CONDUCT_1 | NODROP_1 | DROPDEL_1 slot_flags = null block_chance = 0 //RNG WON'T HELP YOU NOW, PANSY - luminosity = 3 + light_range = 3 attack_verb = list("brutalized", "eviscerated", "disemboweled", "hacked", "carved", "cleaved") //ONLY THE MOST VISCERAL ATTACK VERBS var/notches = 0 //HOW MANY PEOPLE HAVE BEEN SLAIN WITH THIS BLADE var/obj/item/disk/nuclear/nuke_disk //OUR STORED NUKE DISK diff --git a/code/modules/mining/lavaland/ash_flora.dm b/code/modules/mining/lavaland/ash_flora.dm index 26ba81ff1f..6d6587a73a 100644 --- a/code/modules/mining/lavaland/ash_flora.dm +++ b/code/modules/mining/lavaland/ash_flora.dm @@ -109,7 +109,7 @@ icon_state = "t_mushroom" name = "numerous mushrooms" desc = "A large number of mushrooms, some of which have long, fleshy stems. They're radiating light!" - luminosity = 1 + light_range = 1 harvested_name = "tiny mushrooms" harvested_desc = "A few tiny mushrooms around larger stumps. You can already see them growing back." harvest = /obj/item/reagent_containers/food/snacks/grown/ash_flora/mushroom_stem @@ -190,7 +190,7 @@ desc = "A long mushroom stem. It's slightly glowing." list_reagents = list("tinlux" = 2, "vitamin" = 1, "space_drugs" = 1) icon_state = "mushroom_stem" - luminosity = 1 + light_range = 1 seed = /obj/item/seeds/lavaland/ember /obj/item/reagent_containers/food/snacks/grown/ash_flora/cactus_fruit diff --git a/code/modules/mining/lavaland/necropolis_chests.dm b/code/modules/mining/lavaland/necropolis_chests.dm index fbcd418f4c..cd4a9d18dd 100644 --- a/code/modules/mining/lavaland/necropolis_chests.dm +++ b/code/modules/mining/lavaland/necropolis_chests.dm @@ -194,7 +194,7 @@ desc = "Happy to light your way." icon = 'icons/obj/lighting.dmi' icon_state = "orb" - luminosity = 7 + light_range = 7 layer = ABOVE_ALL_MOB_LAYER //Red/Blue Cubes diff --git a/code/modules/mob/living/simple_animal/bot/bot.dm b/code/modules/mob/living/simple_animal/bot/bot.dm index 98b1b46ed8..299fa25226 100644 --- a/code/modules/mob/living/simple_animal/bot/bot.dm +++ b/code/modules/mob/living/simple_animal/bot/bot.dm @@ -5,7 +5,7 @@ icon = 'icons/mob/aibots.dmi' layer = MOB_LAYER gender = NEUTER - luminosity = 3 + light_range = 3 stop_automated_movement = 1 wander = 0 healable = 0 diff --git a/code/modules/power/apc.dm b/code/modules/power/apc.dm index 3a40b1bfd5..cab682857a 100644 --- a/code/modules/power/apc.dm +++ b/code/modules/power/apc.dm @@ -78,7 +78,6 @@ powernet = 0 // set so that APCs aren't found as powernet nodes //Hackish, Horrible, was like this before I changed it :( var/malfhack = 0 //New var for my changes to AI malf. --NeoFite var/mob/living/silicon/ai/malfai = null //See above --NeoFite -// luminosity = 1 var/has_electronics = 0 // 0 - none, 1 - plugged in, 2 - secured by screwdriver var/overload = 1 //used for the Blackout malf module var/beenhit = 0 // used for counting how many times it has been hit, used for Aliens at the moment diff --git a/code/modules/power/singularity/containment_field.dm b/code/modules/power/singularity/containment_field.dm index f4d09167c8..c2610ebc44 100644 --- a/code/modules/power/singularity/containment_field.dm +++ b/code/modules/power/singularity/containment_field.dm @@ -9,7 +9,7 @@ density = FALSE resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | UNACIDABLE | ACID_PROOF use_power = NO_POWER_USE - luminosity = 4 + light_range = 4 layer = ABOVE_OBJ_LAYER var/obj/machinery/field/generator/FG1 = null var/obj/machinery/field/generator/FG2 = null diff --git a/code/modules/power/singularity/singularity.dm b/code/modules/power/singularity/singularity.dm index ce2cd90a49..681bb88c6b 100644 --- a/code/modules/power/singularity/singularity.dm +++ b/code/modules/power/singularity/singularity.dm @@ -8,7 +8,7 @@ anchored = TRUE density = TRUE layer = MASSIVE_OBJ_LAYER - luminosity = 6 + light_range = 6 appearance_flags = 0 var/current_size = 1 var/allowed_size = 1 @@ -278,7 +278,7 @@ desc = "[initial(desc)] It glows fiercely with inner fire." name = "supermatter-charged [initial(name)]" consumedSupermatter = 1 - luminosity = 10 + set_light(10) return From 26d6e9e67bf52ad0c255cf734e96edcd5ee6119e Mon Sep 17 00:00:00 2001 From: MoreRobustThanYou Date: Sun, 22 Oct 2017 01:16:50 -0400 Subject: [PATCH 038/227] Gets rids of spawns in airlock code (#31969) * Gets rids of spawns in airlock code * Update airlock.dm --- code/game/machinery/doors/airlock.dm | 94 +++++++++++++--------------- 1 file changed, 45 insertions(+), 49 deletions(-) diff --git a/code/game/machinery/doors/airlock.dm b/code/game/machinery/doors/airlock.dm index d1a99c7b5c..aac80cc1a0 100644 --- a/code/game/machinery/doors/airlock.dm +++ b/code/game/machinery/doors/airlock.dm @@ -246,14 +246,16 @@ note = null update_icon() +/obj/machinery/door/airlock/proc/unzap() //for addtimer + justzap = FALSE + /obj/machinery/door/airlock/bumpopen(mob/living/user) //Airlocks now zap you when you 'bump' them open when they're electrified. --NeoFite if(!issilicon(usr)) - if(src.isElectrified()) - if(!src.justzap) - if(src.shock(user, 100)) - src.justzap = TRUE - spawn (10) - justzap = FALSE + if(isElectrified()) + if(!justzap) + if(shock(user, 100)) + justzap = TRUE + addtimer(CALLBACK(src, .proc/unzap), 10) return else /*if(src.justzap)*/ return @@ -325,33 +327,34 @@ if(src.secondsMainPowerLost > 0) src.secondsMainPowerLost = 0 -/obj/machinery/door/airlock/proc/loseMainPower() - if(src.secondsMainPowerLost <= 0) - src.secondsMainPowerLost = 60 - if(src.secondsBackupPowerLost < 10) - src.secondsBackupPowerLost = 10 - if(!src.spawnPowerRestoreRunning) - spawnPowerRestoreRunning = TRUE - spawn(0) - var/cont = 1 - while (cont) - sleep(10) - if(QDELETED(src)) - return - cont = 0 - if(secondsMainPowerLost>0) - if(!wires.is_cut(WIRE_POWER1) && !wires.is_cut(WIRE_POWER2)) - secondsMainPowerLost -= 1 - updateDialog() - cont = 1 +/obj/machinery/door/airlock/proc/handlePowerRestore() + var/cont = TRUE + while (cont) + sleep(10) + if(QDELETED(src)) + return + cont = FALSE + if(secondsMainPowerLost>0) + if(!wires.is_cut(WIRE_POWER1) && !wires.is_cut(WIRE_POWER2)) + secondsMainPowerLost -= 1 + updateDialog() + cont = TRUE + if(secondsBackupPowerLost>0) + if(!wires.is_cut(WIRE_BACKUP1) && !wires.is_cut(WIRE_BACKUP2)) + secondsBackupPowerLost -= 1 + updateDialog() + cont = TRUE + spawnPowerRestoreRunning = FALSE + updateDialog() - if(secondsBackupPowerLost>0) - if(!wires.is_cut(WIRE_BACKUP1) && !wires.is_cut(WIRE_BACKUP2)) - secondsBackupPowerLost -= 1 - updateDialog() - cont = 1 - spawnPowerRestoreRunning = FALSE - updateDialog() +/obj/machinery/door/airlock/proc/loseMainPower() + if(secondsMainPowerLost <= 0) + secondsMainPowerLost = 60 + if(secondsBackupPowerLost < 10) + secondsBackupPowerLost = 10 + if(!spawnPowerRestoreRunning) + spawnPowerRestoreRunning = TRUE + INVOKE_ASYNC(src, .proc/handlePowerRestore) /obj/machinery/door/airlock/proc/loseBackupPower() if(src.secondsBackupPowerLost < 60) @@ -792,6 +795,13 @@ ..() return +/obj/machinery/door/airlock/proc/electrified_loop() + while (secondsElectrified > 0) + secondsElectrified-- + if(secondsElectrified <= 0) + set_electrified(NOT_ELECTRIFIED) + updateUsrDialog() + sleep(10) /obj/machinery/door/airlock/Topic(href, href_list, var/nowindow = 0) // If you add an if(..()) check you must first remove the var/nowindow parameter. @@ -936,13 +946,7 @@ shockedby += "\[[time_stamp()]\][usr](ckey:[usr.ckey])" add_logs(usr, src, "electrified") set_electrified(30) - spawn(10) - while (secondsElectrified > 0) - secondsElectrified-- - if(secondsElectrified <= 0) - set_electrified(NOT_ELECTRIFIED) - updateUsrDialog() - sleep(10) + addtimer(CALLBACK(src, .proc/electrified_loop), 10) if(6) //electrify door indefinitely if(wires.is_cut(WIRE_SHOCK)) @@ -1266,19 +1270,11 @@ if(!beingcrowbarred) //being fireaxe'd var/obj/item/twohanded/fireaxe/F = I if(F.wielded) - spawn(0) - if(density) - open(2) - else - close(2) + INVOKE_ASYNC(src, (density ? .proc/open : .proc/close), 2) else to_chat(user, "You need to be wielding the fire axe to do that!") else - spawn(0) - if(density) - open(2) - else - close(2) + INVOKE_ASYNC(src, (density ? .proc/open : .proc/close), 2) if(istype(I, /obj/item/crowbar/power)) if(isElectrified()) From dadc96ef9895a33b4f52a01bc33d78c5c886f626 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sun, 22 Oct 2017 10:50:58 -0500 Subject: [PATCH 040/227] Update overmind.dm --- code/game/gamemodes/blob/overmind.dm | 5 ----- 1 file changed, 5 deletions(-) diff --git a/code/game/gamemodes/blob/overmind.dm b/code/game/gamemodes/blob/overmind.dm index 9b5585f7b1..3199cc369a 100644 --- a/code/game/gamemodes/blob/overmind.dm +++ b/code/game/gamemodes/blob/overmind.dm @@ -63,10 +63,6 @@ place_blob_core(base_point_rate, 1) else qdel(src) -<<<<<<< HEAD - ..() - -======= else if(!victory_in_progress && (blobs_legit.len >= blobwincount)) victory_in_progress = TRUE priority_announce("Biohazard has reached critical mass. Station loss is imminent.", "Biohazard Alert") @@ -112,7 +108,6 @@ SSticker.news_report = BLOB_WIN SSticker.force_ending = 1 ->>>>>>> 7034a22... Blob fixes (#31913) /mob/camera/blob/Destroy() for(var/BL in GLOB.blobs) var/obj/structure/blob/B = BL From 529eaa6aca2b8760623133f08d8c29ac34ba1a93 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sun, 22 Oct 2017 10:51:11 -0500 Subject: [PATCH 041/227] Update player_panel.dm --- code/modules/admin/player_panel.dm | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/code/modules/admin/player_panel.dm b/code/modules/admin/player_panel.dm index 6909f15c3f..1a931bc291 100644 --- a/code/modules/admin/player_panel.dm +++ b/code/modules/admin/player_panel.dm @@ -593,19 +593,8 @@ var/list/blob_minds = list() for(var/mob/camera/blob/B in GLOB.mob_list) blob_minds |= B.mind -<<<<<<< HEAD - - if(istype(SSticker.mode, /datum/game_mode/blob) || blob_minds.len) - dat += "
Blob
" - if(istype(SSticker.mode, /datum/game_mode/blob)) - var/datum/game_mode/blob/mode = SSticker.mode - blob_minds |= mode.blob_overminds - dat += "" - -======= if(blob_minds.len) dat += "
Blob
Progress: [GLOB.blobs_legit.len]/[mode.blobwincount]
" ->>>>>>> 7034a22... Blob fixes (#31913) for(var/datum/mind/blob in blob_minds) var/mob/M = blob.current if(M) From 03690f9d673dbd0d735039654f90ec349d6d0681 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sun, 22 Oct 2017 10:51:21 -0500 Subject: [PATCH 042/227] Update blob.dm --- code/modules/events/blob.dm | 41 ------------------------------------- 1 file changed, 41 deletions(-) diff --git a/code/modules/events/blob.dm b/code/modules/events/blob.dm index 12971f2e35..49eb46194d 100644 --- a/code/modules/events/blob.dm +++ b/code/modules/events/blob.dm @@ -1,43 +1,3 @@ -<<<<<<< HEAD -/datum/round_event_control/blob - name = "Blob" - typepath = /datum/round_event/ghost_role/blob - weight = 5 - max_occurrences = 1 - - min_players = 20 - earliest_start = 18000 //30 minutes - - gamemode_blacklist = list("blob") //Just in case a blob survives that long - -/datum/round_event/ghost_role/blob - announceWhen = 12 - role_name = "blob overmind" - var/new_rate = 2 - -/datum/round_event/ghost_role/blob/New(my_processing = TRUE, set_point_rate) - ..() - if(set_point_rate) - new_rate = set_point_rate - -/datum/round_event/ghost_role/blob/announce() - priority_announce("Confirmed outbreak of level 5 biohazard aboard [station_name()]. All personnel must contain the outbreak.", "Biohazard Alert", 'sound/ai/outbreak5.ogg') - - -/datum/round_event/ghost_role/blob/spawn_role() - if(!GLOB.blobstart.len) - return MAP_ERROR - var/list/candidates = get_candidates("blob", null, ROLE_BLOB) - if(!candidates.len) - return NOT_ENOUGH_PLAYERS - var/mob/dead/observer/new_blob = pick(candidates) - var/obj/structure/blob/core/BC = new/obj/structure/blob/core(pick(GLOB.blobstart), new_blob.client, new_rate) - BC.overmind.blob_points = min(20 + GLOB.player_list.len, BC.overmind.max_blob_points) - spawned_mobs += BC.overmind - message_admins("[key_name_admin(BC.overmind)] has been made into a blob overmind by an event.") - log_game("[key_name(BC.overmind)] was spawned as a blob overmind by an event.") - return SUCCESSFUL_SPAWN -======= /datum/round_event_control/blob name = "Blob" typepath = /datum/round_event/ghost_role/blob @@ -67,4 +27,3 @@ message_admins("[key_name_admin(BC)] has been made into a blob overmind by an event.") log_game("[key_name(BC)] was spawned as a blob overmind by an event.") return SUCCESSFUL_SPAWN ->>>>>>> 7034a22... Blob fixes (#31913) From 513dfc7821afae26bc85324b72817e45046a2970 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sun, 22 Oct 2017 10:51:36 -0500 Subject: [PATCH 043/227] Update transform_procs.dm --- code/modules/mob/transform_procs.dm | 9 --------- 1 file changed, 9 deletions(-) diff --git a/code/modules/mob/transform_procs.dm b/code/modules/mob/transform_procs.dm index f8c262636b..b934572e4f 100644 --- a/code/modules/mob/transform_procs.dm +++ b/code/modules/mob/transform_procs.dm @@ -462,18 +462,9 @@ . = new_slime qdel(src) -<<<<<<< HEAD -/mob/proc/become_overmind(mode_made, starting_points = 60) - var/mob/camera/blob/B = new /mob/camera/blob(loc, 0, mode_made, starting_points) - if(mind) - mind.transfer_to(B) - else - B.key = key -======= /mob/proc/become_overmind(starting_points = 60) var/mob/camera/blob/B = new /mob/camera/blob(loc, starting_points) B.key = key ->>>>>>> 7034a22... Blob fixes (#31913) . = B qdel(src) From 5d20c88a5cb2f5deeb2493b9c1184189a8ac1f1e Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sun, 22 Oct 2017 10:55:42 -0500 Subject: [PATCH 044/227] Update false_alarm.dm --- code/modules/events/false_alarm.dm | 47 +++++------------------------- 1 file changed, 8 insertions(+), 39 deletions(-) diff --git a/code/modules/events/false_alarm.dm b/code/modules/events/false_alarm.dm index 6ade6481fb..83e37dd528 100644 --- a/code/modules/events/false_alarm.dm +++ b/code/modules/events/false_alarm.dm @@ -1,33 +1,3 @@ -<<<<<<< HEAD -/datum/round_event_control/falsealarm - name = "False Alarm" - typepath = /datum/round_event/falsealarm - weight = 20 - max_occurrences = 5 - -/datum/round_event_control/falsealarm/canSpawnEvent(players_amt, gamemode) - return ..() && length(gather_false_events()) - -/datum/round_event/falsealarm - announceWhen = 0 - endWhen = 1 - -/datum/round_event/falsealarm/announce() - var/players_amt = get_active_player_count(alive_check = 1, afk_check = 1, human_check = 1) - var/gamemode = SSticker.mode.config_tag - - var/events_list = gather_false_events(players_amt, gamemode) - var/datum/round_event_control/event_control = pick(events_list) - if(event_control) - var/datum/round_event/Event = new event_control.typepath() - message_admins("False Alarm: [Event]") - Event.kill() //do not process this event - no starts, no ticks, no ends - Event.announce() //just announce it like it's happening - -/proc/gather_false_events(players_amt, gamemode) - . = list() - for(var/datum/round_event_control/E in SSevents.control) -======= /datum/round_event_control/falsealarm name = "False Alarm" typepath = /datum/round_event/falsealarm @@ -80,13 +50,12 @@ /proc/gather_false_events(players_amt, gamemode) . = list() for(var/datum/round_event_control/E in SSevents.control) ->>>>>>> 789cff4... Merge pull request #31922 from AnturK/abuse if(istype(E, /datum/round_event_control/falsealarm)) - continue - if(!E.canSpawnEvent(players_amt, gamemode)) - continue - - var/datum/round_event/event = E.typepath - if(initial(event.announceWhen) <= 0) - continue - . += E + continue + if(!E.canSpawnEvent(players_amt, gamemode)) + continue + + var/datum/round_event/event = E.typepath + if(initial(event.announceWhen) <= 0) + continue + . += E From 8b4c183a263712e41e39f7316781eadec0047ce7 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sun, 22 Oct 2017 10:55:52 -0500 Subject: [PATCH 045/227] Update lightswitch.dm --- code/game/machinery/lightswitch.dm | 134 ++++++++++++++--------------- 1 file changed, 63 insertions(+), 71 deletions(-) diff --git a/code/game/machinery/lightswitch.dm b/code/game/machinery/lightswitch.dm index 45af0693ed..edf9a3035d 100644 --- a/code/game/machinery/lightswitch.dm +++ b/code/game/machinery/lightswitch.dm @@ -1,79 +1,71 @@ -// the light switch -// can have multiple per area -// can also operate on non-loc area through "otherarea" var -/obj/machinery/light_switch - name = "light switch" - icon = 'icons/obj/power.dmi' - icon_state = "light1" +// the light switch +// can have multiple per area +// can also operate on non-loc area through "otherarea" var +/obj/machinery/light_switch + name = "light switch" + icon = 'icons/obj/power.dmi' + icon_state = "light1" anchored = TRUE desc = "Make dark." var/on = TRUE -<<<<<<< HEAD - var/area/area = null - var/otherarea = null - // luminosity = 1 - -/obj/machinery/light_switch/Initialize() -======= var/area/area = null var/otherarea = null /obj/machinery/light_switch/Initialize() ->>>>>>> afd8bb7... Code Consistency: luminosity --> light_range (#31355) . = ..() - area = get_area(src) - - if(otherarea) - area = locate(text2path("/area/[otherarea]")) - - if(!name) - name = "light switch ([area.name])" - - on = area.lightswitch - updateicon() - -/obj/machinery/light_switch/proc/updateicon() - if(stat & NOPOWER) - icon_state = "light-p" - else - if(on) - icon_state = "light1" - else - icon_state = "light0" - -/obj/machinery/light_switch/examine(mob/user) - ..() - to_chat(user, "It is [on? "on" : "off"].") - - -/obj/machinery/light_switch/attack_paw(mob/user) - src.attack_hand(user) - -/obj/machinery/light_switch/attack_hand(mob/user) - - on = !on - - for(var/area/A in area.related) - A.lightswitch = on - A.updateicon() - - for(var/obj/machinery/light_switch/L in A) - L.on = on - L.updateicon() - - area.power_change() - -/obj/machinery/light_switch/power_change() - - if(!otherarea) - if(powered(LIGHT)) - stat &= ~NOPOWER - else - stat |= NOPOWER - - updateicon() - -/obj/machinery/light_switch/emp_act(severity) - if(!(stat & (BROKEN|NOPOWER))) - power_change() - ..() + area = get_area(src) + + if(otherarea) + area = locate(text2path("/area/[otherarea]")) + + if(!name) + name = "light switch ([area.name])" + + on = area.lightswitch + updateicon() + +/obj/machinery/light_switch/proc/updateicon() + if(stat & NOPOWER) + icon_state = "light-p" + else + if(on) + icon_state = "light1" + else + icon_state = "light0" + +/obj/machinery/light_switch/examine(mob/user) + ..() + to_chat(user, "It is [on? "on" : "off"].") + + +/obj/machinery/light_switch/attack_paw(mob/user) + src.attack_hand(user) + +/obj/machinery/light_switch/attack_hand(mob/user) + + on = !on + + for(var/area/A in area.related) + A.lightswitch = on + A.updateicon() + + for(var/obj/machinery/light_switch/L in A) + L.on = on + L.updateicon() + + area.power_change() + +/obj/machinery/light_switch/power_change() + + if(!otherarea) + if(powered(LIGHT)) + stat &= ~NOPOWER + else + stat |= NOPOWER + + updateicon() + +/obj/machinery/light_switch/emp_act(severity) + if(!(stat & (BROKEN|NOPOWER))) + power_change() + ..() From 1cc89b55e8f0b53d71f27fc1be5b21fd8d75d909 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 22 Oct 2017 11:18:37 -0500 Subject: [PATCH 046/227] Automatic changelog generation for PR #3529 [ci skip] --- html/changelogs/AutoChangeLog-pr-3529.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3529.yml diff --git a/html/changelogs/AutoChangeLog-pr-3529.yml b/html/changelogs/AutoChangeLog-pr-3529.yml new file mode 100644 index 0000000000..02a915824f --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3529.yml @@ -0,0 +1,7 @@ +author: "Toriate" +delete-after: True +changes: + - balance: "OP foam stuff now cost slightly more to build from autolathes" + - balance: "OP foam stuff now turned into total memes instead of practical weapons, all burst firing foam guns have at least 60 spread. Stealth pistol also has 60 spread." + - balance: "Foam X9 and Mag Rifle now requires two hands to fire" + - bugfix: "Foam Force X9 and Mag Rifle now has its correct weight class of NOT FITTING IN FUCKING BACKPACKS" From f450abcaab91cac82365e8b421e7038e1fff1134 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 22 Oct 2017 11:26:02 -0500 Subject: [PATCH 047/227] Automatic changelog generation for PR #3546 [ci skip] --- html/changelogs/AutoChangeLog-pr-3546.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3546.yml diff --git a/html/changelogs/AutoChangeLog-pr-3546.yml b/html/changelogs/AutoChangeLog-pr-3546.yml new file mode 100644 index 0000000000..3ce8ca350c --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3546.yml @@ -0,0 +1,4 @@ +author: "More Robust Than You" +delete-after: True +changes: + - bugfix: "Blood Brother now properly shows up in player panel" From 1794018ae162393acf3f07818bd89c35def0c370 Mon Sep 17 00:00:00 2001 From: vuonojenmustaturska Date: Sun, 22 Oct 2017 19:28:25 +0300 Subject: [PATCH 048/227] Removes mob.lastattacked and replaces lastattacker with a string --- code/_onclick/item_attack.dm | 4 +- code/controllers/subsystem/blackbox.dm | 8 +- .../miniantags/abduction/abduction_gear.dm | 5 +- code/game/objects/items/stunbaton.dm | 205 ++++++++++++++++++ code/game/objects/structures/manned_turret.dm | 4 +- code/modules/mob/mob_defines.dm | 5 + 6 files changed, 219 insertions(+), 12 deletions(-) diff --git a/code/_onclick/item_attack.dm b/code/_onclick/item_attack.dm index 4c0eeccf1d..de1dfdbf67 100644 --- a/code/_onclick/item_attack.dm +++ b/code/_onclick/item_attack.dm @@ -44,8 +44,8 @@ else if(hitsound) playsound(loc, hitsound, get_clamped_volume(), 1, -1) - user.lastattacked = M - M.lastattacker = user + M.lastattacker = user.real_name + M.lastattackerckey = user.ckey user.do_attack_animation(M) M.attacked_by(src, user) diff --git a/code/controllers/subsystem/blackbox.dm b/code/controllers/subsystem/blackbox.dm index 56238d5b85..fe7cf33070 100644 --- a/code/controllers/subsystem/blackbox.dm +++ b/code/controllers/subsystem/blackbox.dm @@ -191,12 +191,8 @@ SUBSYSTEM_DEF(blackbox) var/sqljob = sanitizeSQL(L.mind.assigned_role) var/sqlspecial = sanitizeSQL(L.mind.special_role) var/sqlpod = sanitizeSQL(placeofdeath.name) - var/laname - var/lakey - if(L.lastattacker && ismob(L.lastattacker)) - var/mob/LA = L.lastattacker - laname = sanitizeSQL(LA.real_name) - lakey = sanitizeSQL(LA.key) + var/laname = sanitizeSQL(L.lastattacker) + var/lakey = sanitizeSQL(L.lastattackerckey) var/sqlbrute = sanitizeSQL(L.getBruteLoss()) var/sqlfire = sanitizeSQL(L.getFireLoss()) var/sqlbrain = sanitizeSQL(L.getBrainLoss()) diff --git a/code/game/gamemodes/miniantags/abduction/abduction_gear.dm b/code/game/gamemodes/miniantags/abduction/abduction_gear.dm index e1c2f43c0f..3a7f99bc8a 100644 --- a/code/game/gamemodes/miniantags/abduction/abduction_gear.dm +++ b/code/game/gamemodes/miniantags/abduction/abduction_gear.dm @@ -417,8 +417,9 @@ Congratulations! You are now trained for invasive xenobiology research!"} toggle(user) /obj/item/abductor_baton/proc/StunAttack(mob/living/L,mob/living/user) - user.lastattacked = L - L.lastattacker = user + + L.lastattacker = user.real_name + L.lastattackerckey = user.ckey L.Knockdown(140) L.apply_effect(STUTTER, 7) diff --git a/code/game/objects/items/stunbaton.dm b/code/game/objects/items/stunbaton.dm index ef2af5381b..64a208301c 100644 --- a/code/game/objects/items/stunbaton.dm +++ b/code/game/objects/items/stunbaton.dm @@ -1,3 +1,4 @@ +<<<<<<< HEAD /obj/item/melee/baton name = "stunbaton" desc = "A stun baton for incapacitating people with." @@ -200,3 +201,207 @@ /obj/item/melee/baton/cattleprod/baton_stun() if(sparkler.activate()) ..() +======= +/obj/item/melee/baton + name = "stunbaton" + desc = "A stun baton for incapacitating people with." + icon_state = "stunbaton" + item_state = "baton" + lefthand_file = 'icons/mob/inhands/equipment/security_lefthand.dmi' + righthand_file = 'icons/mob/inhands/equipment/security_righthand.dmi' + slot_flags = SLOT_BELT + force = 10 + throwforce = 7 + w_class = WEIGHT_CLASS_NORMAL + origin_tech = "combat=2" + attack_verb = list("beaten") + armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 50, bio = 0, rad = 0, fire = 80, acid = 80) + + var/stunforce = 140 + var/status = 0 + var/obj/item/stock_parts/cell/high/cell + var/hitcost = 1000 + var/throw_hit_chance = 35 + +/obj/item/melee/baton/get_cell() + return cell + +/obj/item/melee/baton/suicide_act(mob/user) + user.visible_message("[user] is putting the live [name] in [user.p_their()] mouth! It looks like [user.p_theyre()] trying to commit suicide!") + return (FIRELOSS) + +/obj/item/melee/baton/Initialize() + . = ..() + update_icon() + +/obj/item/melee/baton/throw_impact(atom/hit_atom) + ..() + //Only mob/living types have stun handling + if(status && prob(throw_hit_chance) && iscarbon(hit_atom)) + baton_stun(hit_atom) + +/obj/item/melee/baton/loaded/Initialize() //this one starts with a cell pre-installed. + cell = new(src) + update_icon() + . = ..() + +/obj/item/melee/baton/proc/deductcharge(chrgdeductamt) + if(cell) + //Note this value returned is significant, as it will determine + //if a stun is applied or not + . = cell.use(chrgdeductamt) + if(status && cell.charge < hitcost) + //we're below minimum, turn off + status = 0 + update_icon() + playsound(loc, "sparks", 75, 1, -1) + + +/obj/item/melee/baton/update_icon() + if(status) + icon_state = "[initial(name)]_active" + else if(!cell) + icon_state = "[initial(name)]_nocell" + else + icon_state = "[initial(name)]" + +/obj/item/melee/baton/examine(mob/user) + ..() + if(cell) + to_chat(user, "The baton is [round(cell.percent())]% charged.") + else + to_chat(user, "The baton does not have a power source installed.") + +/obj/item/melee/baton/attackby(obj/item/W, mob/user, params) + if(istype(W, /obj/item/stock_parts/cell)) + var/obj/item/stock_parts/cell/C = W + if(cell) + to_chat(user, "[src] already has a cell.") + else + if(C.maxcharge < hitcost) + to_chat(user, "[src] requires a higher capacity cell.") + return + if(!user.transferItemToLoc(W, src)) + return + cell = W + to_chat(user, "You install a cell in [src].") + update_icon() + + else if(istype(W, /obj/item/screwdriver)) + if(cell) + cell.update_icon() + cell.forceMove(get_turf(src)) + cell = null + to_chat(user, "You remove the cell from [src].") + status = 0 + update_icon() + else + return ..() + +/obj/item/melee/baton/attack_self(mob/user) + if(cell && cell.charge > hitcost) + status = !status + to_chat(user, "[src] is now [status ? "on" : "off"].") + playsound(loc, "sparks", 75, 1, -1) + else + status = 0 + if(!cell) + to_chat(user, "[src] does not have a power source!") + else + to_chat(user, "[src] is out of charge.") + update_icon() + add_fingerprint(user) + +/obj/item/melee/baton/attack(mob/M, mob/living/carbon/human/user) + if(status && user.disabilities & CLUMSY && prob(50)) + user.visible_message("[user] accidentally hits themself with [src]!", \ + "You accidentally hit yourself with [src]!") + user.Knockdown(stunforce*3) + deductcharge(hitcost) + return + + if(iscyborg(M)) + ..() + return + + + if(ishuman(M)) + var/mob/living/carbon/human/L = M + if(check_martial_counter(L, user)) + return + + if(user.a_intent != INTENT_HARM) + if(status) + if(baton_stun(M, user)) + user.do_attack_animation(M) + return + else + M.visible_message("[user] has prodded [M] with [src]. Luckily it was off.", \ + "[user] has prodded you with [src]. Luckily it was off") + else + if(status) + baton_stun(M, user) + ..() + + +/obj/item/melee/baton/proc/baton_stun(mob/living/L, mob/user) + if(ishuman(L)) + var/mob/living/carbon/human/H = L + if(H.check_shields(src, 0, "[user]'s [name]", MELEE_ATTACK)) //No message; check_shields() handles that + playsound(L, 'sound/weapons/genhit.ogg', 50, 1) + return 0 + if(iscyborg(loc)) + var/mob/living/silicon/robot/R = loc + if(!R || !R.cell || !R.cell.use(hitcost)) + return 0 + else + if(!deductcharge(hitcost)) + return 0 + + L.Knockdown(stunforce) + L.apply_effect(STUTTER, stunforce) + if(user) + L.lastattacker = user.real_name + L.lastattackerckey = user.ckey + L.visible_message("[user] has stunned [L] with [src]!", \ + "[user] has stunned you with [src]!") + add_logs(user, L, "stunned") + + playsound(loc, 'sound/weapons/egloves.ogg', 50, 1, -1) + + if(ishuman(L)) + var/mob/living/carbon/human/H = L + H.forcesay(GLOB.hit_appends) + + + return 1 + +/obj/item/melee/baton/emp_act(severity) + deductcharge(1000 / severity) + ..() + +//Makeshift stun baton. Replacement for stun gloves. +/obj/item/melee/baton/cattleprod + name = "stunprod" + desc = "An improvised stun baton." + icon_state = "stunprod_nocell" + item_state = "prod" + lefthand_file = 'icons/mob/inhands/weapons/melee_lefthand.dmi' + righthand_file = 'icons/mob/inhands/weapons/melee_righthand.dmi' + w_class = WEIGHT_CLASS_BULKY + force = 3 + throwforce = 5 + stunforce = 100 + hitcost = 2000 + throw_hit_chance = 10 + slot_flags = SLOT_BACK + var/obj/item/device/assembly/igniter/sparkler = 0 + +/obj/item/melee/baton/cattleprod/Initialize() + . = ..() + sparkler = new (src) + +/obj/item/melee/baton/cattleprod/baton_stun() + if(sparkler.activate()) + ..() +>>>>>>> 032c864... Removes mob.lastattacked and replaces lastattacker with a string (#31981) diff --git a/code/game/objects/structures/manned_turret.dm b/code/game/objects/structures/manned_turret.dm index 70176ede53..669abb792a 100644 --- a/code/game/objects/structures/manned_turret.dm +++ b/code/game/objects/structures/manned_turret.dm @@ -201,8 +201,8 @@ O.attacked_by(src, user) /obj/item/gun_control/attack(mob/living/M, mob/living/user) - user.lastattacked = M - M.lastattacker = user + M.lastattacker = user.real_name + M.lastattackerckey = user.ckey M.attacked_by(src, user) add_fingerprint(user) diff --git a/code/modules/mob/mob_defines.dm b/code/modules/mob/mob_defines.dm index 6becdb3ddd..ee54d9a9ac 100644 --- a/code/modules/mob/mob_defines.dm +++ b/code/modules/mob/mob_defines.dm @@ -27,8 +27,13 @@ var/damageoverlaytemp = 0 var/computer_id = null var/lastattacker = null +<<<<<<< HEAD var/lastattacked = null var/list/logging = list(INDIVIDUAL_ATTACK_LOG, INDIVIDUAL_SAY_LOG, INDIVIDUAL_EMOTE_LOG, INDIVIDUAL_OOC_LOG, INDIVIDUAL_LOOC_LOG) +======= + var/lastattackerckey = null + var/list/logging = list(INDIVIDUAL_ATTACK_LOG, INDIVIDUAL_SAY_LOG, INDIVIDUAL_EMOTE_LOG, INDIVIDUAL_OOC_LOG) +>>>>>>> 032c864... Removes mob.lastattacked and replaces lastattacker with a string (#31981) var/obj/machinery/machine = null var/other_mobs = null var/disabilities = 0 //Carbon From 88133e6f60eb78c08f075b741158ca70eddc2550 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Fri, 20 Oct 2017 08:58:26 -0400 Subject: [PATCH 049/227] Removes an empty New() --- code/controllers/subsystem.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/controllers/subsystem.dm b/code/controllers/subsystem.dm index e160c132b9..4937a3499b 100644 --- a/code/controllers/subsystem.dm +++ b/code/controllers/subsystem.dm @@ -34,8 +34,7 @@ var/static/list/failure_strikes //How many times we suspect a subsystem type has crashed the MC, 3 strikes and you're out! //Do not override -/datum/controller/subsystem/New() - return +///datum/controller/subsystem/New() // Used to initialize the subsystem BEFORE the map has loaded // Called AFTER Recover if that is called From 404740d784c5f467c332e48b13657ca160229cdf Mon Sep 17 00:00:00 2001 From: Armhulen Date: Sun, 22 Oct 2017 11:54:42 -0700 Subject: [PATCH 051/227] Adds spiders to the shapeshift menu! (#31896) * >gondolas * :( --- code/modules/spells/spell_types/shapeshift.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/spells/spell_types/shapeshift.dm b/code/modules/spells/spell_types/shapeshift.dm index 63c840a9b0..c32c45c86a 100644 --- a/code/modules/spells/spell_types/shapeshift.dm +++ b/code/modules/spells/spell_types/shapeshift.dm @@ -18,6 +18,7 @@ /mob/living/simple_animal/pet/dog/corgi,\ /mob/living/simple_animal/hostile/carp/ranged/chaos,\ /mob/living/simple_animal/bot/ed209,\ + /mob/living/simple_animal/hostile/poison/giant_spider/hunter/viper,\ /mob/living/simple_animal/hostile/construct/armored) /obj/effect/proc_holder/spell/targeted/shapeshift/cast(list/targets,mob/user = usr) From d2719c03f76305fd2ac60590881cc245158e78f5 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 22 Oct 2017 15:39:37 -0500 Subject: [PATCH 053/227] Automatic changelog generation for PR #3492 [ci skip] --- html/changelogs/AutoChangeLog-pr-3492.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3492.yml diff --git a/html/changelogs/AutoChangeLog-pr-3492.yml b/html/changelogs/AutoChangeLog-pr-3492.yml new file mode 100644 index 0000000000..bcae1670b8 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3492.yml @@ -0,0 +1,9 @@ +author: "Kor" +delete-after: True +changes: + - rscadd: "Blob is now a side antagonist." + - rscadd: "Event and admin blobs will now be able to choose their spawn location." + - rscadd: "Blob can now win in any mode by gaining enough tiles to reach Critical Mass." + - rscadd: "Blobs that have Critical Mass have unlimited points, and a minute after achieving critical mass, they will spread to every tile on station, killing anyone still on board and ending the round." + - rscadd: "Using an analyzer on a blob will now reveal its progress towards Critical Mass." + - rscadd: "The blob event is now more common." From 0faee43f9537b7a8995451858509b19da0c34e80 Mon Sep 17 00:00:00 2001 From: AnturK Date: Mon, 23 Oct 2017 00:44:43 +0200 Subject: [PATCH 054/227] Cleans up datum traitor minimally. (#31978) * Removes the /custom traitor subtype nonsense. Fixes borged/ai'zed traitors getting law 0. * Not needed anymore --- code/__DEFINES/antagonists.dm | 6 -- code/datums/antagonists/datum_traitor.dm | 65 ++++----------------- code/datums/antagonists/internal_affairs.dm | 29 +-------- code/datums/mind.dm | 5 +- code/game/gamemodes/traitor/traitor.dm | 6 +- code/modules/admin/secrets.dm | 9 ++- code/modules/mob/transform_procs.dm | 2 - 7 files changed, 24 insertions(+), 98 deletions(-) diff --git a/code/__DEFINES/antagonists.dm b/code/__DEFINES/antagonists.dm index 8ac155f20b..17b6e60158 100644 --- a/code/__DEFINES/antagonists.dm +++ b/code/__DEFINES/antagonists.dm @@ -7,16 +7,10 @@ #define ANTAG_DATUM_NINJA_FRIENDLY /datum/antagonist/ninja/friendly #define ANTAG_DATUM_NINJA_RANDOM /datum/antagonist/ninja/randomAllegiance/ #define ANTAG_DATUM_TRAITOR /datum/antagonist/traitor -#define ANTAG_DATUM_TRAITOR_CUSTOM /datum/antagonist/traitor/custom #define ANTAG_DATUM_TRAITOR_HUMAN /datum/antagonist/traitor/human -#define ANTAG_DATUM_TRAITOR_HUMAN_CUSTOM /datum/antagonist/traitor/human/custom #define ANTAG_DATUM_TRAITOR_AI /datum/antagonist/traitor/AI -#define ANTAG_DATUM_TRAITOR_AI_CUSTOM /datum/antagonist/traitor/AI/custom #define ANTAG_DATUM_IAA /datum/antagonist/traitor/internal_affairs -#define ANTAG_DATUM_IAA_CUSTOM /datum/antagonist/traitor/internal_affairs/custom #define ANTAG_DATUM_IAA_HUMAN /datum/antagonist/traitor/human/internal_affairs -#define ANTAG_DATUM_IAA_HUMAN_CUSTOM /datum/antagonist/traitor/human/internal_affairs/custom -#define ANTAG_DATUM_IAA_AI_CUSTOM /datum/antagonist/traitor/AI/internal_affairs/custom #define ANTAG_DATUM_IAA_AI /datum/antagonist/traitor/AI/internal_affairs #define ANTAG_DATUM_BROTHER /datum/antagonist/brother #define ANTAG_DATUM_ABDUCTOR /datum/antagonist/abductor diff --git a/code/datums/antagonists/datum_traitor.dm b/code/datums/antagonists/datum_traitor.dm index a32e849705..d386c79c25 100644 --- a/code/datums/antagonists/datum_traitor.dm +++ b/code/datums/antagonists/datum_traitor.dm @@ -1,8 +1,7 @@ /datum/antagonist/traitor name = "Traitor" job_rank = ROLE_TRAITOR - var/should_specialise = TRUE //do we split into AI and human - var/base_datum_custom = ANTAG_DATUM_TRAITOR_CUSTOM //used for body transfer + var/should_specialise = FALSE //do we split into AI and human, set to true on inital assignment only var/ai_datum = ANTAG_DATUM_TRAITOR_AI var/human_datum = ANTAG_DATUM_TRAITOR_HUMAN var/special_role = "traitor" @@ -11,71 +10,24 @@ var/should_give_codewords = TRUE var/list/objectives_given = list() -/datum/antagonist/traitor/proc/transfer_important_variables(datum/antagonist/traitor/other) - other.silent = silent - other.employer = employer - other.special_role = special_role - other.objectives_given = objectives_given - -/datum/antagonist/traitor/custom - ai_datum = ANTAG_DATUM_TRAITOR_AI_CUSTOM - human_datum = ANTAG_DATUM_TRAITOR_HUMAN_CUSTOM - /datum/antagonist/traitor/human - should_specialise = FALSE var/should_equip = TRUE -/datum/antagonist/traitor/human/custom - silent = TRUE - should_give_codewords = FALSE - give_objectives = FALSE - should_equip = FALSE //Duplicating TCs is dangerous - /datum/antagonist/traitor/AI - should_specialise = FALSE - -/datum/antagonist/traitor/AI/custom - silent = TRUE - should_give_codewords = FALSE - give_objectives = FALSE - - -/datum/antagonist/traitor/on_body_transfer(mob/living/old_body, mob/living/new_body) - // human <-> silicon only - if(old_body && issilicon(new_body) ^ issilicon(old_body)) - silent = TRUE - owner.add_antag_datum(base_datum_custom) - for(var/datum/antagonist/traitor/new_datum in owner.antag_datums) - if(new_datum == src) - continue - transfer_important_variables(new_datum) - break - on_removal() - else - ..() - -/datum/antagonist/traitor/human/custom //used to give custom objectives - silent = TRUE - give_objectives = FALSE - should_give_codewords = FALSE - -/datum/antagonist/traitor/AI/custom //used to give custom objectives - silent = TRUE - give_objectives = FALSE - should_give_codewords = FALSE /datum/antagonist/traitor/proc/specialise() silent = TRUE - if(owner.current&&isAI(owner.current)) + if(owner.current && isAI(owner.current)) owner.add_antag_datum(ai_datum) - else owner.add_antag_datum(human_datum) + else + owner.add_antag_datum(human_datum) on_removal() /datum/antagonist/traitor/on_gain() if(should_specialise) specialise() return - SSticker.mode.traitors+=owner + SSticker.mode.traitors += owner owner.special_role = special_role if(give_objectives) forge_traitor_objectives() @@ -85,7 +37,7 @@ /datum/antagonist/traitor/apply_innate_effects() if(owner.assigned_role == "Clown") var/mob/living/carbon/human/traitor_mob = owner.current - if(traitor_mob&&istype(traitor_mob)) + if(traitor_mob && istype(traitor_mob)) if(!silent) to_chat(traitor_mob, "Your training has allowed you to overcome your clownish nature, allowing you to wield weapons without harming yourself.") traitor_mob.dna.remove_mutation(CLOWNMUT) @@ -93,7 +45,7 @@ /datum/antagonist/traitor/remove_innate_effects() if(owner.assigned_role == "Clown") var/mob/living/carbon/human/traitor_mob = owner.current - if(traitor_mob&&istype(traitor_mob)) + if(traitor_mob && istype(traitor_mob)) traitor_mob.dna.add_mutation(CLOWNMUT) /datum/antagonist/traitor/on_removal() @@ -249,6 +201,7 @@ yandere_two.update_explanation_text() // normally called in find_target() add_objective(yandere_two) .=2 + /datum/antagonist/traitor/greet() to_chat(owner.current, "You are the [owner.special_role].") owner.announce_objectives() @@ -297,6 +250,8 @@ killer.add_malf_picker() /datum/antagonist/traitor/proc/equip(var/silent = FALSE) + return + /datum/antagonist/traitor/human/equip(var/silent = FALSE) owner.equip_traitor(employer, silent) diff --git a/code/datums/antagonists/internal_affairs.dm b/code/datums/antagonists/internal_affairs.dm index a07984262e..b06d8ea068 100644 --- a/code/datums/antagonists/internal_affairs.dm +++ b/code/datums/antagonists/internal_affairs.dm @@ -5,7 +5,6 @@ #define TRAITOR_AGENT_ROLE "Syndicate External Affairs Agent" /datum/antagonist/traitor/internal_affairs - base_datum_custom = ANTAG_DATUM_IAA_CUSTOM human_datum = ANTAG_DATUM_IAA_HUMAN ai_datum = ANTAG_DATUM_IAA_AI @@ -15,7 +14,6 @@ name = "Internal Affairs Agent" employer = "Nanotrasen" special_role = "internal affairs agent" - base_datum_custom = ANTAG_DATUM_IAA_CUSTOM var/syndicate = FALSE var/last_man_standing = FALSE var/list/datum/mind/targets_stolen @@ -29,47 +27,24 @@ name = "Internal Affairs Agent" employer = "Nanotrasen" special_role = "internal affairs agent" - base_datum_custom = ANTAG_DATUM_IAA_CUSTOM var/syndicate = FALSE var/last_man_standing = FALSE var/list/datum/mind/targets_stolen -/datum/antagonist/traitor/human/internal_affairs/custom - silent = TRUE - should_give_codewords = FALSE - give_objectives = FALSE - should_equip = FALSE //Duplicating TCs is dangerous - -/datum/antagonist/traitor/human/internal_affairs/transfer_important_variables(datum/antagonist/traitor/human/internal_affairs/other) - ..(other) - other.syndicate = syndicate - other.last_man_standing = last_man_standing - other.targets_stolen = targets_stolen - -/datum/antagonist/traitor/AI/internal_affairs/transfer_important_variables(datum/antagonist/traitor/human/internal_affairs/other) - ..(other) - other.syndicate = syndicate - other.last_man_standing = last_man_standing - other.targets_stolen = targets_stolen - /datum/antagonist/traitor/human/internal_affairs/proc/give_pinpointer() if(owner && owner.current) owner.current.apply_status_effect(/datum/status_effect/agent_pinpointer) /datum/antagonist/traitor/human/internal_affairs/apply_innate_effects() .=..() //in case the base is used in future - if(owner&&owner.current) + if(owner && owner.current) give_pinpointer(owner.current) /datum/antagonist/traitor/human/internal_affairs/remove_innate_effects() .=..() - if(owner&&owner.current) + if(owner && owner.current) owner.current.remove_status_effect(/datum/status_effect/agent_pinpointer) -/datum/antagonist/traitor/internal_affairs/custom - ai_datum = ANTAG_DATUM_IAA_AI_CUSTOM - human_datum = ANTAG_DATUM_IAA_HUMAN_CUSTOM - /datum/antagonist/traitor/human/internal_affairs/on_gain() START_PROCESSING(SSprocessing, src) .=..() diff --git a/code/datums/mind.dm b/code/datums/mind.dm index 6efcd18324..4036aaaf45 100644 --- a/code/datums/mind.dm +++ b/code/datums/mind.dm @@ -1357,8 +1357,9 @@ /datum/mind/proc/make_Traitor() if(!(has_antag_datum(ANTAG_DATUM_TRAITOR))) - var/datum/antagonist/traitor/traitordatum = add_antag_datum(ANTAG_DATUM_TRAITOR) - return traitordatum + var/datum/antagonist/traitor/T = new(src) + T.should_specialise = TRUE + add_antag_datum(T) /datum/mind/proc/make_Nuke(turf/spawnloc, nuke_code, leader=0, telecrystals = TRUE) diff --git a/code/game/gamemodes/traitor/traitor.dm b/code/game/gamemodes/traitor/traitor.dm index 258b7ab59f..43582b99a3 100644 --- a/code/game/gamemodes/traitor/traitor.dm +++ b/code/game/gamemodes/traitor/traitor.dm @@ -60,7 +60,9 @@ /datum/game_mode/traitor/post_setup() for(var/datum/mind/traitor in pre_traitors) - addtimer(CALLBACK(traitor, /datum/mind.proc/add_antag_datum, antag_datum), rand(10,100)) + var/datum/antagonist/traitor/new_antag = new antag_datum(traitor) + new_antag.should_specialise = TRUE + addtimer(CALLBACK(traitor, /datum/mind.proc/add_antag_datum, new_antag), rand(10,100)) if(!exchange_blue) exchange_blue = -1 //Block latejoiners from getting exchange objectives ..() @@ -79,6 +81,8 @@ add_latejoin_traitor(character.mind) /datum/game_mode/traitor/proc/add_latejoin_traitor(datum/mind/character) + var/datum/antagonist/traitor/new_antag = new antag_datum(character) + new_antag.should_specialise = TRUE character.add_antag_datum(antag_datum) diff --git a/code/modules/admin/secrets.dm b/code/modules/admin/secrets.dm index 171e943aa0..5e1a8300c4 100644 --- a/code/modules/admin/secrets.dm +++ b/code/modules/admin/secrets.dm @@ -340,14 +340,13 @@ continue if(is_special_character(H)) continue - H.mind.add_antag_datum(ANTAG_DATUM_TRAITOR_CUSTOM) - var/datum/antagonist/traitor/traitordatum = H.mind.has_antag_datum(ANTAG_DATUM_TRAITOR) //original datum self deletes + var/datum/antagonist/traitor/human/T = new(H.mind) + T.give_objectives = FALSE var/datum/objective/new_objective = new new_objective.owner = H new_objective.explanation_text = objective - traitordatum.add_objective(new_objective) - traitordatum.equip(FALSE) - traitordatum.greet() + T.add_objective(new_objective) + H.mind.add_antag_datum(T) message_admins("[key_name_admin(usr)] used everyone is a traitor secret. Objective is [objective]") log_admin("[key_name(usr)] used everyone is a traitor secret. Objective is [objective]") diff --git a/code/modules/mob/transform_procs.dm b/code/modules/mob/transform_procs.dm index 592d19e0b1..3bc2a225f0 100644 --- a/code/modules/mob/transform_procs.dm +++ b/code/modules/mob/transform_procs.dm @@ -376,8 +376,6 @@ if(!transfer_after) mind.active = FALSE mind.transfer_to(R) - if(mind.special_role) - R.mind.store_memory("In case you look at this after being borged, the objectives are only here until I find a way to make them not show up for you, as I can't simply delete them without screwing up round-end reporting. --NeoFite") else if(transfer_after) R.key = key From 5504b4c1e285b5903733c0ec5d682d92050bab47 Mon Sep 17 00:00:00 2001 From: MoreRobustThanYou Date: Sun, 22 Oct 2017 18:49:47 -0400 Subject: [PATCH 056/227] Fixes champrojector camera bug (#31948) --- code/game/objects/items/devices/chameleonproj.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/objects/items/devices/chameleonproj.dm b/code/game/objects/items/devices/chameleonproj.dm index 5541d33284..65b584a878 100644 --- a/code/game/objects/items/devices/chameleonproj.dm +++ b/code/game/objects/items/devices/chameleonproj.dm @@ -67,6 +67,7 @@ C.activate(usr, saved_appearance, src) to_chat(usr, "You activate \the [src].") new /obj/effect/temp_visual/emp/pulse(get_turf(src)) + usr.cancel_camera() /obj/item/device/chameleon/proc/disrupt(delete_dummy = 1) if(active_dummy) From 082a713848ad4e91c784bcc42d125ba5874edac5 Mon Sep 17 00:00:00 2001 From: YPOQ <30683121+YPOQ@users.noreply.github.com> Date: Sun, 22 Oct 2017 16:52:51 -0600 Subject: [PATCH 058/227] Composting plants/pills transfers all reagents (#31923) --- code/modules/hydroponics/hydroponics.dm | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/code/modules/hydroponics/hydroponics.dm b/code/modules/hydroponics/hydroponics.dm index 5dd9627c2d..c774e4574a 100644 --- a/code/modules/hydroponics/hydroponics.dm +++ b/code/modules/hydroponics/hydroponics.dm @@ -693,10 +693,13 @@ var/target = myseed ? myseed.plantname : src var/visi_msg = "" var/irrigate = 0 //How am I supposed to irrigate pill contents? + var/transfer_amount if(istype(reagent_source, /obj/item/reagent_containers/food/snacks) || istype(reagent_source, /obj/item/reagent_containers/pill)) visi_msg="[user] composts [reagent_source], spreading it through [target]" + transfer_amount = reagent_source.reagents.total_volume else + transfer_amount = reagent_source.amount_per_transfer_from_this if(istype(reagent_source, /obj/item/reagent_containers/syringe/)) var/obj/item/reagent_containers/syringe/syr = reagent_source visi_msg="[user] injects [target] with [syr]" @@ -706,14 +709,14 @@ visi_msg="[user] sprays [target] with [reagent_source]" playsound(loc, 'sound/effects/spray3.ogg', 50, 1, -6) irrigate = 1 - else if(reagent_source.amount_per_transfer_from_this) // Droppers, cans, beakers, what have you. + else if(transfer_amount) // Droppers, cans, beakers, what have you. visi_msg="[user] uses [reagent_source] on [target]" irrigate = 1 // Beakers, bottles, buckets, etc. Can't use is_open_container though. if(istype(reagent_source, /obj/item/reagent_containers/glass/)) playsound(loc, 'sound/effects/slosh.ogg', 25, 1) - if(irrigate && reagent_source.amount_per_transfer_from_this > 30 && reagent_source.reagents.total_volume >= 30 && using_irrigation) + if(irrigate && transfer_amount > 30 && reagent_source.reagents.total_volume >= 30 && using_irrigation) trays = FindConnected() if (trays.len > 1) visi_msg += ", setting off the irrigation system" @@ -721,7 +724,7 @@ if(visi_msg) visible_message("[visi_msg].") - var/split = round(reagent_source.amount_per_transfer_from_this/trays.len) + var/split = round(transfer_amount/trays.len) for(var/obj/machinery/hydroponics/H in trays) //cause I don't want to feel like im juggling 15 tamagotchis and I can get to my real work of ripping flooring apart in hopes of validating my life choices of becoming a space-gardener From 5c0e88722eb724a8a8ae44c74d6c446a37cd2712 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Mon, 23 Oct 2017 00:38:20 -0400 Subject: [PATCH 060/227] Merge pull request #32017 from ACCount12/patch-1 Fixes a SET_CONFIG bug --- code/controllers/configuration/configuration.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/configuration/configuration.dm b/code/controllers/configuration/configuration.dm index 323571bf8c..278424ca79 100644 --- a/code/controllers/configuration/configuration.dm +++ b/code/controllers/configuration/configuration.dm @@ -147,7 +147,7 @@ GLOBAL_PROTECT(config_dir) E = entries_by_type[entry_type] if(!E) CRASH("Missing config entry for [entry_type]!") - return E.ValidateAndSet(new_val) + return E.ValidateAndSet("[new_val]") /datum/controller/configuration/proc/LoadModes() gamemode_cache = typecacheof(/datum/game_mode, TRUE) From 2c251f929fe1d932ba97d935e3bec629331e50df Mon Sep 17 00:00:00 2001 From: YPOQ <30683121+YPOQ@users.noreply.github.com> Date: Sun, 22 Oct 2017 23:08:53 -0600 Subject: [PATCH 062/227] Fixes being unable to merge full stacks (#31992) --- code/game/objects/items/stacks/stack.dm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/code/game/objects/items/stacks/stack.dm b/code/game/objects/items/stacks/stack.dm index 2b28b297c6..a0f4b2a928 100644 --- a/code/game/objects/items/stacks/stack.dm +++ b/code/game/objects/items/stacks/stack.dm @@ -245,6 +245,7 @@ S.copy_evidences(src) use(transfer, TRUE) S.add(transfer) + return transfer /obj/item/stack/Crossed(obj/o) if(istype(o, merge_type) && !o.throwing) @@ -297,10 +298,10 @@ /obj/item/stack/attackby(obj/item/W, mob/user, params) - if(istype(W, merge_type) && amount < max_amount) + if(istype(W, merge_type)) var/obj/item/stack/S = W - merge(S) - to_chat(user, "Your [S.name] stack now contains [S.get_amount()] [S.singular_name]\s.") + if(merge(S)) + to_chat(user, "Your [S.name] stack now contains [S.get_amount()] [S.singular_name]\s.") else . = ..() From 1eaaf665f9315abe93e8fdc3c2ed586b7c2207e2 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Mon, 23 Oct 2017 01:09:58 -0400 Subject: [PATCH 064/227] Renames 'Ready for Review' to 'Review Again' (#31995) --- tools/WebhookProcessor/github_webhook_processor.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/WebhookProcessor/github_webhook_processor.php b/tools/WebhookProcessor/github_webhook_processor.php index 29e381b704..40583d94c4 100644 --- a/tools/WebhookProcessor/github_webhook_processor.php +++ b/tools/WebhookProcessor/github_webhook_processor.php @@ -241,7 +241,7 @@ function tag_pr($payload, $opened) { function remove_ready_for_review($payload, $labels = null){ if($labels == null) $labels = get_labels($payload); - $index = array_search('Ready for Review', $labels); + $index = array_search('Review Again', $labels); if($index !== FALSE) unset($labels[$index]); $url = $payload['pull_request']['issue_url'] . '/labels'; @@ -258,7 +258,7 @@ function get_reviews($payload){ } function check_ready_for_review($payload, $labels = null){ - $r4rlabel = 'Ready for Review'; + $r4rlabel = 'Review Again'; $labels_which_should_not_be_ready = array('Do Not Merge', 'Work In Progress', 'Merge Conflict'); $has_label_already = false; $should_not_have_label = false; From 60e45814ab1973e364f22212679e6343669596be Mon Sep 17 00:00:00 2001 From: YPOQ <30683121+YPOQ@users.noreply.github.com> Date: Sun, 22 Oct 2017 23:09:40 -0600 Subject: [PATCH 066/227] Removes golem rune code --- code/modules/research/xenobiology/xenobiology.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/research/xenobiology/xenobiology.dm b/code/modules/research/xenobiology/xenobiology.dm index b98dafdac6..0407d941bf 100644 --- a/code/modules/research/xenobiology/xenobiology.dm +++ b/code/modules/research/xenobiology/xenobiology.dm @@ -474,6 +474,7 @@ resistance_flags = LAVA_PROOF | FIRE_PROOF | UNACIDABLE | ACID_PROOF flags_1 = ABSTRACT_1 | NODROP_1 +<<<<<<< HEAD /obj/effect/golemrune anchored = TRUE desc = "A strange rune used to create golems. It glows when spirits are nearby." @@ -542,6 +543,8 @@ log_admin("[key_name(G)] was made a golem by [key_name(user)].") qdel(src) +======= +>>>>>>> 67f87bb... Removes golem rune code (#31990) /obj/item/stack/tile/bluespace name = "bluespace floor tile" singular_name = "floor tile" From 727c05c34eb950869763b5b779fb0689c1e93444 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Mon, 23 Oct 2017 01:26:21 -0500 Subject: [PATCH 068/227] Update tgstation.dme --- tgstation.dme | 1 - 1 file changed, 1 deletion(-) diff --git a/tgstation.dme b/tgstation.dme index 329610c32a..53f9ed72c2 100755 --- a/tgstation.dme +++ b/tgstation.dme @@ -1293,7 +1293,6 @@ #include "code\modules\clothing\masks\hailer.dm" #include "code\modules\clothing\masks\miscellaneous.dm" #include "code\modules\clothing\masks\vg_masks.dm" -#include "code\modules\clothing\neck\neck.dm" #include "code\modules\clothing\neck\_neck.dm" #include "code\modules\clothing\outfits\ert.dm" #include "code\modules\clothing\outfits\event.dm" From d7ee78ec0d6bf0996a7b4fa6ba688f36b9554862 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Mon, 23 Oct 2017 01:27:54 -0500 Subject: [PATCH 069/227] Update xenobiology.dm --- .../research/xenobiology/xenobiology.dm | 73 +------------------ 1 file changed, 1 insertion(+), 72 deletions(-) diff --git a/code/modules/research/xenobiology/xenobiology.dm b/code/modules/research/xenobiology/xenobiology.dm index 0407d941bf..8093a9670a 100644 --- a/code/modules/research/xenobiology/xenobiology.dm +++ b/code/modules/research/xenobiology/xenobiology.dm @@ -473,78 +473,7 @@ desc = "A golem's head." resistance_flags = LAVA_PROOF | FIRE_PROOF | UNACIDABLE | ACID_PROOF flags_1 = ABSTRACT_1 | NODROP_1 - -<<<<<<< HEAD -/obj/effect/golemrune - anchored = TRUE - desc = "A strange rune used to create golems. It glows when spirits are nearby." - name = "rune" - icon = 'icons/obj/rune.dmi' - icon_state = "golem" - resistance_flags = LAVA_PROOF | FIRE_PROOF | UNACIDABLE | ACID_PROOF - layer = TURF_LAYER - -/obj/effect/golemrune/Initialize() - . = ..() - START_PROCESSING(SSobj, src) - notify_ghosts("Golem rune created in [get_area(src)].", 'sound/misc/server-ready.ogg', source = src) - -/obj/effect/golemrune/Destroy() - STOP_PROCESSING(SSobj, src) - return ..() - -/obj/effect/golemrune/process() - var/mob/dead/observer/ghost - for(var/mob/dead/observer/O in src.loc) - if(!O.client) - continue - if(O.mind && O.mind.current && O.mind.current.stat != DEAD) - continue - if (O.orbiting) - continue - ghost = O - break - if(ghost) - icon_state = "golem2" - else - icon_state = "golem" - -/obj/effect/golemrune/attack_hand(mob/living/user) - var/mob/dead/observer/ghost - for(var/mob/dead/observer/O in src.loc) - if(!O.client) - continue - if(O.mind && O.mind.current && O.mind.current.stat != DEAD) - continue - if (O.orbiting) - continue - ghost = O - break - if(!ghost) - to_chat(user, "The rune fizzles uselessly! There is no spirit nearby.") - return - var/mob/living/carbon/human/G = new /mob/living/carbon/human - G.set_species(/datum/species/golem/adamantine) - G.set_cloned_appearance() - G.real_name = G.dna.species.random_name() - G.name = G.real_name - G.dna.unique_enzymes = G.dna.generate_unique_enzymes() - G.dna.species.auto_equip(G) - G.loc = src.loc - G.key = ghost.key - to_chat(G, "You are an adamantine golem. You move slowly, but are highly resistant to heat and cold as well as blunt trauma. You are unable to wear clothes, but can still use most tools. \ - Serve [user], and assist [user.p_them()] in completing their goals at any cost.") - G.mind.store_memory("Serve [user.real_name], your creator.") - G.mind.assigned_role = "Servant Golem" - - G.mind.enslave_mind_to_creator(user) - - log_game("[key_name(G)] was made a golem by [key_name(user)].") - log_admin("[key_name(G)] was made a golem by [key_name(user)].") - qdel(src) - -======= ->>>>>>> 67f87bb... Removes golem rune code (#31990) + /obj/item/stack/tile/bluespace name = "bluespace floor tile" singular_name = "floor tile" From 3257ddb5a3bf6aec88f9cd801f2d2236f99b5f4e Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 23 Oct 2017 02:35:37 -0500 Subject: [PATCH 070/227] Automatic changelog generation for PR #3547 [ci skip] --- html/changelogs/AutoChangeLog-pr-3547.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3547.yml diff --git a/html/changelogs/AutoChangeLog-pr-3547.yml b/html/changelogs/AutoChangeLog-pr-3547.yml new file mode 100644 index 0000000000..402f30bd11 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3547.yml @@ -0,0 +1,4 @@ +author: "ninjanomnom" +delete-after: True +changes: + - bugfix: "Contents of silicon mobs are no longer considered for targets of radiation. This blocks them from being contaminated." From 0eb828c6036021197363c728e0f1d8e84adbc23f Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 23 Oct 2017 02:44:20 -0500 Subject: [PATCH 071/227] Automatic changelog generation for PR #3549 [ci skip] --- html/changelogs/AutoChangeLog-pr-3549.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3549.yml diff --git a/html/changelogs/AutoChangeLog-pr-3549.yml b/html/changelogs/AutoChangeLog-pr-3549.yml new file mode 100644 index 0000000000..0f14e8726a --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3549.yml @@ -0,0 +1,4 @@ +author: "Robustin" +delete-after: True +changes: + - balance: "Medical biosuits (and hardsuits) now offer heavy, but not complete, radiation resistance." From 9d52443c53b6c6434a79ab1fefc64515fb703b47 Mon Sep 17 00:00:00 2001 From: Michiyamenotehifunana <31995558+Michiyamenotehifunana@users.noreply.github.com> Date: Mon, 23 Oct 2017 19:29:46 +0800 Subject: [PATCH 072/227] Fixes #2946 Otusian, wolf, and skunk ears now show up on humans. Cat, Big ears now show up on mammals. --- .../new_player/sprite_accessories_Citadel.dm | 23 +++++++++++-------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/code/modules/mob/dead/new_player/sprite_accessories_Citadel.dm b/code/modules/mob/dead/new_player/sprite_accessories_Citadel.dm index 228c9fe6e7..9cc031af1b 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories_Citadel.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories_Citadel.dm @@ -39,7 +39,7 @@ name = "Bear" icon_state = "bear" icon = 'icons/mob/mam_bodyparts.dmi' - + /datum/sprite_accessory/tails/human/bear name = "Bear" icon_state = "bear" @@ -65,7 +65,7 @@ icon_state = "cow" icon = 'icons/mob/mam_bodyparts.dmi' gender_specific = 1 - + /datum/sprite_accessory/tails/human/cow name = "Cow" icon_state = "cow" @@ -175,21 +175,24 @@ name = "Otusian" icon_state = "otie" hasinner= 1 + icon = 'icons/mob/mam_bodyparts.dmi' /datum/sprite_accessory/tails/human/otie name = "Otusian" icon_state = "otie" + icon = 'icons/mob/mam_bodyparts.dmi' /datum/sprite_accessory/tails_animated/human/otie name = "Otusian" icon_state = "otie" + icon = 'icons/mob/mam_bodyparts.dmi' /datum/sprite_accessory/ears/human/rabbit name = "Rabbit" icon_state = "rabbit" hasinner= 1 icon = 'icons/mob/mam_bodyparts.dmi' - + /datum/sprite_accessory/tails/human/rabbit name = "Rabbit" icon_state = "rabbit" @@ -201,10 +204,11 @@ icon_state = "rabbit" color_src = 0 icon = 'icons/mob/mam_bodyparts.dmi' - + /datum/sprite_accessory/ears/human/skunk name = "skunk" icon_state = "skunk" + icon = 'icons/mob/mam_bodyparts.dmi' /datum/sprite_accessory/tails/human/skunk name = "skunk" @@ -248,6 +252,7 @@ name = "Wolf" icon_state = "wolf" hasinner = 1 + icon = 'icons/mob/mam_bodyparts.dmi' /datum/sprite_accessory/tails/human/wolf name = "Wolf" @@ -341,7 +346,7 @@ /datum/sprite_accessory/mam_ears/bear name = "Bear" icon_state = "bear" - + /datum/sprite_accessory/mam_tails/bear name = "Bear" icon_state = "bear" @@ -352,9 +357,9 @@ /datum/sprite_accessory/mam_ears/catbig name = "Cat, Big" - icon_state = "cat" + icon_state = "catbig" hasinner = 1 - + /datum/sprite_accessory/mam_tails/catbig name = "Cat, Big" icon_state = "catbig" @@ -367,7 +372,7 @@ name = "Cow" icon_state = "cow" gender_specific = 1 - + /datum/sprite_accessory/mam_tail/cow name = "Cow" icon_state = "cow" @@ -522,7 +527,7 @@ name = "Rabbit" icon_state = "rabbit" hasinner= 1 - + /datum/sprite_accessory/mam_tails/rabbit name = "Rabbit" icon_state = "rabbit" From 82f58c4ae2f848c6333154b4961318f061774593 Mon Sep 17 00:00:00 2001 From: kevinz000 Date: Mon, 23 Oct 2017 06:19:40 -0700 Subject: [PATCH 073/227] Update mecha_defense.dm (#31834) --- code/game/mecha/mecha_defense.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/game/mecha/mecha_defense.dm b/code/game/mecha/mecha_defense.dm index a75294c28f..590c19b504 100644 --- a/code/game/mecha/mecha_defense.dm +++ b/code/game/mecha/mecha_defense.dm @@ -25,6 +25,8 @@ /obj/mecha/run_obj_armor(damage_amount, damage_type, damage_flag = 0, attack_dir) . = ..() + if(!damage_amount) + return 0 var/booster_deflection_modifier = 1 var/booster_damage_modifier = 1 if(damage_flag == "bullet" || damage_flag == "laser" || damage_flag == "energy") From 1930e5cf84ee5061a44d7ec587dd5e2b14f05234 Mon Sep 17 00:00:00 2001 From: vuonojenmustaturska Date: Mon, 23 Oct 2017 16:21:57 +0300 Subject: [PATCH 075/227] Fixes grinders (#31885) * But you're still hungry * Update reagentgrinder.dm --- code/modules/reagents/chemistry/machinery/reagentgrinder.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/chemistry/machinery/reagentgrinder.dm b/code/modules/reagents/chemistry/machinery/reagentgrinder.dm index 8c84954ad6..a7bdab2d4b 100644 --- a/code/modules/reagents/chemistry/machinery/reagentgrinder.dm +++ b/code/modules/reagents/chemistry/machinery/reagentgrinder.dm @@ -285,7 +285,9 @@ updateUsrDialog() /obj/machinery/reagentgrinder/proc/get_allowed_by_obj(obj/item/O) - return blend_items[O.type] + for (var/i in blend_items) + if (istype(O, i)) + return blend_items[i] /obj/machinery/reagentgrinder/proc/get_allowed_juice_by_obj(obj/item/reagent_containers/food/snacks/O) for(var/i in juice_items) @@ -433,7 +435,7 @@ if (O.Uses > 0) beaker.reagents.add_reagent("slimejelly",min(20, space)) remove_object(O) - else if(istype(I, /obj/item/reagent_containers)) + if(istype(I, /obj/item/reagent_containers)) var/obj/item/reagent_containers/O = I var/amount = O.reagents.total_volume O.reagents.trans_to(beaker, amount) From c51edc3bcdd96248aea9a093a9d200d6594d815f Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Mon, 23 Oct 2017 09:24:41 -0400 Subject: [PATCH 077/227] Removes duplicate typecaches --- code/__HELPERS/AStar.dm | 2 +- code/_globalvars/lists/typecache.dm | 6 +++--- code/game/machinery/iv_drip.dm | 10 ++++++++++ code/game/turfs/simulated/dirtystation.dm | 2 +- code/modules/hydroponics/grown/towercap.dm | 16 ++++++++-------- .../mining/lavaland/necropolis_chests.dm | 6 +----- .../mob/living/carbon/human/human_defines.dm | 5 ++++- code/modules/mob/living/silicon/robot/robot.dm | 2 +- .../simple_animal/hostile/mecha_pilot.dm | 4 ++-- .../hostile/megafauna/colossus.dm | 7 +------ .../simple_animal/hostile/megafauna/swarmer.dm | 12 +----------- code/modules/mob/mob.dm | 3 +++ code/modules/mob/mob_defines.dm | 1 - .../mapGeneratorModules/helpers.dm | 4 ++-- code/modules/surgery/organs/tongue.dm | 18 ++++++++++-------- 15 files changed, 48 insertions(+), 50 deletions(-) diff --git a/code/__HELPERS/AStar.dm b/code/__HELPERS/AStar.dm index 1d165d2102..6be5fc2b16 100644 --- a/code/__HELPERS/AStar.dm +++ b/code/__HELPERS/AStar.dm @@ -154,7 +154,7 @@ Actual Adjacent procs : /turf/proc/reachableAdjacentTurfs(caller, ID, simulated_only) var/list/L = new() var/turf/T - var/static/space_type_cache = typecacheof(list(/turf/open/space)) + var/static/space_type_cache = typecacheof(/turf/open/space) for(var/dir in GLOB.cardinals) T = get_step(src,dir) diff --git a/code/_globalvars/lists/typecache.dm b/code/_globalvars/lists/typecache.dm index dfa99b6706..ad4564cf3b 100644 --- a/code/_globalvars/lists/typecache.dm +++ b/code/_globalvars/lists/typecache.dm @@ -3,9 +3,9 @@ //Note: typecache can only replace istype if you know for sure the thing is at least a datum. -GLOBAL_LIST_INIT(typecache_mob, typecacheof(list(/mob))) +GLOBAL_LIST_INIT(typecache_mob, typecacheof(/mob)) -GLOBAL_LIST_INIT(typecache_living, typecacheof(list(/mob/living))) +GLOBAL_LIST_INIT(typecache_living, typecacheof(/mob/living)) -GLOBAL_LIST_INIT(typecache_machine_or_structure, typecacheof(list(/obj/machinery))|typecacheof(list(/obj/structure))) +GLOBAL_LIST_INIT(typecache_machine_or_structure, typecacheof(list(/obj/machinery, /obj/structure))) diff --git a/code/game/machinery/iv_drip.dm b/code/game/machinery/iv_drip.dm index 23048caf67..2bf3fceb3a 100644 --- a/code/game/machinery/iv_drip.dm +++ b/code/game/machinery/iv_drip.dm @@ -10,15 +10,25 @@ var/mob/living/carbon/attached = null var/mode = IV_INJECTING var/obj/item/reagent_containers/beaker = null +<<<<<<< HEAD var/list/drip_containers = list(/obj/item/reagent_containers/blood, /obj/item/reagent_containers/food, /obj/item/reagent_containers/glass) +======= + var/static/list/drip_containers = typecacheof(list(/obj/item/reagent_containers/blood, + /obj/item/reagent_containers/food, + /obj/item/reagent_containers/glass)) +>>>>>>> 8e434b7... Removes duplicate typecaches (#31883) /obj/machinery/iv_drip/Initialize() . = ..() update_icon() +<<<<<<< HEAD drip_containers = typecacheof(drip_containers) +======= + +>>>>>>> 8e434b7... Removes duplicate typecaches (#31883) /obj/machinery/iv_drip/Destroy() attached = null QDEL_NULL(beaker) diff --git a/code/game/turfs/simulated/dirtystation.dm b/code/game/turfs/simulated/dirtystation.dm index cc3688d064..c411d4b6b1 100644 --- a/code/game/turfs/simulated/dirtystation.dm +++ b/code/game/turfs/simulated/dirtystation.dm @@ -72,7 +72,7 @@ return //Hangars and pods covered in oil. - var/static/list/oily_areas = typecacheof(list(/area/quartermaster)) + var/static/list/oily_areas = typecacheof(/area/quartermaster) if(is_type_in_typecache(A, oily_areas)) if(prob(25)) new /obj/effect/decal/cleanable/oil(src) diff --git a/code/modules/hydroponics/grown/towercap.dm b/code/modules/hydroponics/grown/towercap.dm index f11d6e0772..0d35c7cb6e 100644 --- a/code/modules/hydroponics/grown/towercap.dm +++ b/code/modules/hydroponics/grown/towercap.dm @@ -44,15 +44,11 @@ attack_verb = list("bashed", "battered", "bludgeoned", "whacked") var/plank_type = /obj/item/stack/sheet/mineral/wood var/plank_name = "wooden planks" - var/list/accepted = list(/obj/item/reagent_containers/food/snacks/grown/tobacco, + var/static/list/accepted = typecacheof(list(/obj/item/reagent_containers/food/snacks/grown/tobacco, /obj/item/reagent_containers/food/snacks/grown/tea, /obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris, /obj/item/reagent_containers/food/snacks/grown/ambrosia/deus, - /obj/item/reagent_containers/food/snacks/grown/wheat) - -/obj/item/grown/log/Initialize() - . = ..() - accepted = typecacheof(accepted) + /obj/item/reagent_containers/food/snacks/grown/wheat)) /obj/item/grown/log/attackby(obj/item/W, mob/user, params) if(W.sharpness) @@ -69,7 +65,7 @@ to_chat(user, "You add the newly-formed [plank_name] to the stack. It now contains [plank.amount] [plank_name].") qdel(src) - if(is_type_in_typecache(W,accepted)) + if(CheckAccepted(W)) var/obj/item/reagent_containers/food/snacks/grown/leaf = W if(leaf.dry) user.show_message("You wrap \the [W] around the log, turning it into a torch!") @@ -84,6 +80,9 @@ else return ..() +/obj/item/grown/log/proc/CheckAccepted(obj/item/I) + return is_type_in_typecache(I, accepted) + /obj/item/grown/log/tree seed = null name = "wood log" @@ -94,10 +93,11 @@ name = "steel-cap log" desc = "It's made of metal." icon_state = "steellogs" - accepted = list() plank_type = /obj/item/stack/rods plank_name = "rods" +/obj/item/grown/log/steel/CheckAccepted(obj/item/I) + return FALSE /////////BONFIRES////////// diff --git a/code/modules/mining/lavaland/necropolis_chests.dm b/code/modules/mining/lavaland/necropolis_chests.dm index cd4a9d18dd..4d3dc5db37 100644 --- a/code/modules/mining/lavaland/necropolis_chests.dm +++ b/code/modules/mining/lavaland/necropolis_chests.dm @@ -880,11 +880,7 @@ var/create_delay = 30 var/reset_cooldown = 50 var/timer = 0 - var/banned_turfs - -/obj/item/lava_staff/Initialize() - . = ..() - banned_turfs = typecacheof(list(/turf/open/space/transit, /turf/closed)) + var/static/list/banned_turfs = typecacheof(list(/turf/open/space/transit, /turf/closed)) /obj/item/lava_staff/afterattack(atom/target, mob/user, proximity_flag, click_parameters) ..() diff --git a/code/modules/mob/living/carbon/human/human_defines.dm b/code/modules/mob/living/carbon/human/human_defines.dm index 06ee810bc0..97bd22430b 100644 --- a/code/modules/mob/living/carbon/human/human_defines.dm +++ b/code/modules/mob/living/carbon/human/human_defines.dm @@ -45,6 +45,9 @@ var/datum/personal_crafting/handcrafting can_buckle = TRUE buckle_lying = FALSE - can_ride_typecache = list(/mob/living/carbon/human, /mob/living/simple_animal/slime, /mob/living/simple_animal/parrot) var/creamed = FALSE //to use with creampie overlays +<<<<<<< HEAD +======= + var/static/list/can_ride_typecache = typecacheof(list(/mob/living/carbon/human, /mob/living/simple_animal/slime, /mob/living/simple_animal/parrot)) +>>>>>>> 8e434b7... Removes duplicate typecaches (#31883) diff --git a/code/modules/mob/living/silicon/robot/robot.dm b/code/modules/mob/living/silicon/robot/robot.dm index 6e899269f3..96467be074 100644 --- a/code/modules/mob/living/silicon/robot/robot.dm +++ b/code/modules/mob/living/silicon/robot/robot.dm @@ -95,7 +95,7 @@ can_buckle = TRUE buckle_lying = FALSE - can_ride_typecache = list(/mob/living/carbon/human) + var/static/list/can_ride_typecache = typecacheof(/mob/living/carbon/human) /mob/living/silicon/robot/get_cell() return cell diff --git a/code/modules/mob/living/simple_animal/hostile/mecha_pilot.dm b/code/modules/mob/living/simple_animal/hostile/mecha_pilot.dm index 378b5d9b8e..f9868771ac 100644 --- a/code/modules/mob/living/simple_animal/hostile/mecha_pilot.dm +++ b/code/modules/mob/living/simple_animal/hostile/mecha_pilot.dm @@ -41,7 +41,7 @@ /mob/living/simple_animal/hostile/syndicate/mecha_pilot/no_mech/Initialize() . = ..() - wanted_objects = typecacheof(/obj/mecha/combat, ignore_root_path=TRUE) + wanted_objects = typecacheof(/obj/mecha/combat, TRUE) /mob/living/simple_animal/hostile/syndicate/mecha_pilot/nanotrasen //nanotrasen are syndies! no it's just a weird path. name = "Nanotrasen Mecha Pilot" @@ -101,7 +101,7 @@ targets_from = src //Find a new mecha - wanted_objects = typecacheof(/obj/mecha/combat, ignore_root_path=TRUE) + wanted_objects = typecacheof(/obj/mecha/combat, TRUE) var/search_aggressiveness = 2 for(var/obj/mecha/combat/C in range(vision_range,src)) if(is_valid_mecha(C)) diff --git a/code/modules/mob/living/simple_animal/hostile/megafauna/colossus.dm b/code/modules/mob/living/simple_animal/hostile/megafauna/colossus.dm index 4962851a71..7cf68dc401 100644 --- a/code/modules/mob/living/simple_animal/hostile/megafauna/colossus.dm +++ b/code/modules/mob/living/simple_animal/hostile/megafauna/colossus.dm @@ -663,12 +663,7 @@ Difficulty: Very Hard activation_method = ACTIVATE_TOUCH cooldown_add = 50 activation_sound = 'sound/magic/timeparadox2.ogg' - var/list/banned_items_typecache = list(/obj/item/storage, /obj/item/implant, /obj/item/implanter, /obj/item/disk/nuclear, /obj/item/projectile, /obj/item/spellbook) - -/obj/machinery/anomalous_crystal/refresher/Initialize() - . = ..() - banned_items_typecache = typecacheof(banned_items_typecache) - + var/static/list/banned_items_typecache = typecacheof(list(/obj/item/storage, /obj/item/implant, /obj/item/implanter, /obj/item/disk/nuclear, /obj/item/projectile, /obj/item/spellbook)) /obj/machinery/anomalous_crystal/refresher/ActivationReaction(mob/user, method) if(..()) diff --git a/code/modules/mob/living/simple_animal/hostile/megafauna/swarmer.dm b/code/modules/mob/living/simple_animal/hostile/megafauna/swarmer.dm index 10906114dd..4c803d6c00 100644 --- a/code/modules/mob/living/simple_animal/hostile/megafauna/swarmer.dm +++ b/code/modules/mob/living/simple_animal/hostile/megafauna/swarmer.dm @@ -172,16 +172,9 @@ GLOBAL_LIST_INIT(AISwarmerCapsByType, list(/mob/living/simple_animal/hostile/swa search_objects = 1 attack_all_objects = TRUE //attempt to nibble everything lose_patience_timeout = 150 - var/static/list/sharedWanted = list(/turf/closed/mineral, /turf/closed/wall) //eat rocks and walls + var/static/list/sharedWanted = typecacheof(list(/turf/closed/mineral, /turf/closed/wall)) //eat rocks and walls var/static/list/sharedIgnore = list() - -/mob/living/simple_animal/hostile/swarmer/ai/resource/Initialize() - . = ..() - sharedWanted = typecacheof(sharedWanted) - sharedIgnore = typecacheof(sharedIgnore) - - //This handles viable things to eat/attack //Place specific cases of AI derpiness here //Most can be left to the automatic Gain/LosePatience() system @@ -239,18 +232,15 @@ GLOBAL_LIST_INIT(AISwarmerCapsByType, list(/mob/living/simple_animal/hostile/swa //So swarmers can learn what is and isn't food /mob/living/simple_animal/hostile/swarmer/ai/resource/proc/add_type_to_wanted(typepath) - LAZYINITLIST(sharedWanted) if(!sharedWanted[typepath])// this and += is faster than |= sharedWanted += typecacheof(typepath) /mob/living/simple_animal/hostile/swarmer/ai/resource/proc/add_type_to_ignore(typepath) - LAZYINITLIST(sharedIgnore) if(!sharedIgnore[typepath]) sharedIgnore += typecacheof(typepath) - //RANGED SWARMER /mob/living/simple_animal/hostile/swarmer/ai/ranged_combat icon_state = "swarmer_ranged" diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index 0083e89b81..c1279ac089 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -26,8 +26,11 @@ else GLOB.living_mob_list += src prepare_huds() +<<<<<<< HEAD can_ride_typecache = typecacheof(can_ride_typecache) hook_vr("mob_new",list(src)) +======= +>>>>>>> 8e434b7... Removes duplicate typecaches (#31883) for(var/v in GLOB.active_alternate_appearances) if(!v) continue diff --git a/code/modules/mob/mob_defines.dm b/code/modules/mob/mob_defines.dm index 6becdb3ddd..b8ddb74496 100644 --- a/code/modules/mob/mob_defines.dm +++ b/code/modules/mob/mob_defines.dm @@ -140,7 +140,6 @@ var/list/observers = null //The list of people observing this mob. var/list/progressbars = null //for stacking do_after bars - var/list/can_ride_typecache = list() var/list/mousemove_intercept_objects diff --git a/code/modules/procedural_mapping/mapGeneratorModules/helpers.dm b/code/modules/procedural_mapping/mapGeneratorModules/helpers.dm index 6fdcccd43f..4f761412f7 100644 --- a/code/modules/procedural_mapping/mapGeneratorModules/helpers.dm +++ b/code/modules/procedural_mapping/mapGeneratorModules/helpers.dm @@ -32,7 +32,7 @@ /datum/mapGeneratorModule/bottomLayer/massdelete/no_delete_mobs/New() ..() - ignore_typecache = typecacheof(list(/mob)) + ignore_typecache = GLOB.typecache_mob /datum/mapGeneratorModule/bottomLayer/massdelete/leave_turfs deleteturfs = FALSE @@ -42,7 +42,7 @@ /datum/mapGeneratorModule/bottomLayer/massdelete/regeneration_delete/New() ..() - ignore_typecache = typecacheof(list(/mob)) + ignore_typecache = GLOB.typecache_mob //Only places atoms/turfs on area borders /datum/mapGeneratorModule/border diff --git a/code/modules/surgery/organs/tongue.dm b/code/modules/surgery/organs/tongue.dm index 5e67e73a8a..449e88dc58 100644 --- a/code/modules/surgery/organs/tongue.dm +++ b/code/modules/surgery/organs/tongue.dm @@ -8,10 +8,7 @@ var/list/languages_possible var/say_mod = null var/taste_sensitivity = 15 // lower is more sensitive. - -/obj/item/organ/tongue/Initialize(mapload) - . = ..() - languages_possible = typecacheof(list( + var/static/list/languages_possible_base = typecacheof(list( /datum/language/common, /datum/language/draconic, /datum/language/codespeak, @@ -21,6 +18,10 @@ /datum/language/ratvar )) +/obj/item/organ/tongue/Initialize(mapload) + . = ..() + languages_possible = languages_possible_base + /obj/item/organ/tongue/get_spans() return list() @@ -124,16 +125,17 @@ icon_state = "tonguexeno" say_mod = "hisses" taste_sensitivity = 10 // LIZARDS ARE ALIENS CONFIRMED - -/obj/item/organ/tongue/alien/Initialize(mapload) - . = ..() - languages_possible = typecacheof(list( + var/static/list/languages_possible_alien = typecacheof(list( /datum/language/xenocommon, /datum/language/common, /datum/language/draconic, /datum/language/ratvar, /datum/language/monkey)) +/obj/item/organ/tongue/alien/Initialize(mapload) + . = ..() + languages_possible = languages_possible_alien + /obj/item/organ/tongue/alien/TongueSpeech(var/message) playsound(owner, "hiss", 25, 1, 1) return message From 4cc53d68a2bdf0ceae5c36ce506e6d2e8f488b3a Mon Sep 17 00:00:00 2001 From: ShizCalev Date: Mon, 23 Oct 2017 09:38:00 -0400 Subject: [PATCH 078/227] Makes cleanbots clean up remains (#31876) * Makes cleanbots clean up remains * Gooooooooo * Acid_act --- code/modules/mob/living/simple_animal/bot/cleanbot.dm | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/simple_animal/bot/cleanbot.dm b/code/modules/mob/living/simple_animal/bot/cleanbot.dm index af4d8736b6..18c4dcd40c 100644 --- a/code/modules/mob/living/simple_animal/bot/cleanbot.dm +++ b/code/modules/mob/living/simple_animal/bot/cleanbot.dm @@ -124,6 +124,9 @@ if(!target) //Search for decals then. target = scan(/obj/effect/decal/cleanable) + + if(!target) //Checks for remains + target = scan(/obj/effect/decal/remains) if(!target && trash) //Then for trash. target = scan(/obj/item/trash) @@ -178,7 +181,8 @@ /obj/effect/decal/cleanable/ash, /obj/effect/decal/cleanable/greenglow, /obj/effect/decal/cleanable/dirt, - /obj/effect/decal/cleanable/deadcockroach + /obj/effect/decal/cleanable/deadcockroach, + /obj/effect/decal/remains ) if(blood) @@ -213,9 +217,9 @@ target = null mode = BOT_IDLE icon_state = "cleanbot[on]" - else if(istype(A, /obj/item)) + else if(istype(A, /obj/item) || istype(A, /obj/effect/decal/remains)) visible_message("[src] sprays hydrofluoric acid at [A]!") - playsound(src.loc, 'sound/effects/spray2.ogg', 50, 1, -6) + playsound(src, 'sound/effects/spray2.ogg', 50, 1, -6) A.acid_act(75, 10) else if(istype(A, /mob/living/simple_animal/cockroach) || istype(A, /mob/living/simple_animal/mouse)) var/mob/living/simple_animal/M = target From f4e0eab9938f9c6dc1e8ec8eed2067173443efa5 Mon Sep 17 00:00:00 2001 From: kevinz000 Date: Mon, 23 Oct 2017 06:58:31 -0700 Subject: [PATCH 080/227] fixes AIs being able to teleport the id card console inserted cards to their core (#32003) * Update card.dm * Update card.dm --- code/game/machinery/computer/card.dm | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/code/game/machinery/computer/card.dm b/code/game/machinery/computer/card.dm index fdc4428ae3..032b902fae 100644 --- a/code/game/machinery/computer/card.dm +++ b/code/game/machinery/computer/card.dm @@ -537,10 +537,13 @@ GLOBAL_VAR_INIT(time_last_changed_position, 0) /obj/machinery/computer/card/proc/eject_id_scan(mob/user) if(scan) scan.forceMove(drop_location()) - user.put_in_hands(scan) + if(!issilicon(user) && Adjacent(user)) + user.put_in_hands(scan) playsound(src, 'sound/machines/terminal_insert_disc.ogg', 50, 0) scan = null else //switching the ID with the one you're holding + if(issilicon(user) || !Adjacent(user)) + return var/obj/item/I = user.get_active_held_item() if(istype(I, /obj/item/card/id)) if(!user.transferItemToLoc(I,src)) @@ -555,12 +558,15 @@ GLOBAL_VAR_INIT(time_last_changed_position, 0) GLOB.data_core.manifest_modify(modify.registered_name, modify.assignment) modify.update_label() modify.forceMove(drop_location()) - user.put_in_hands(modify) + if(!issilicon(user) && Adjacent(user)) + user.put_in_hands(modify) playsound(src, 'sound/machines/terminal_insert_disc.ogg', 50, 0) modify = null region_access = null head_subordinates = null else //switching the ID with the one you're holding + if(issilicon(user) || !Adjacent(user)) + return var/obj/item/I = user.get_active_held_item() if(istype(I, /obj/item/card/id)) if (!user.transferItemToLoc(I,src)) From 796d61a2dc04521ca9afaa27b2beb91b96f5fe0a Mon Sep 17 00:00:00 2001 From: YPOQ <30683121+YPOQ@users.noreply.github.com> Date: Mon, 23 Oct 2017 08:00:11 -0600 Subject: [PATCH 082/227] Fixes get_turf_pixel returning null when called on turfs (#32000) --- code/__HELPERS/unsorted.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/__HELPERS/unsorted.dm b/code/__HELPERS/unsorted.dm index 75e912dee7..d94bfb4c5b 100644 --- a/code/__HELPERS/unsorted.dm +++ b/code/__HELPERS/unsorted.dm @@ -739,7 +739,7 @@ Do not set recursive depth higher than MAX_PROC_DEPTH as byond breaks when that */ -/proc/get_turf_pixel(atom/movable/AM) +/proc/get_turf_pixel(atom/AM) if(!istype(AM)) return From 930f6405b2a109952d4876c6ca4009e74d00203d Mon Sep 17 00:00:00 2001 From: deathride58 Date: Mon, 23 Oct 2017 12:47:38 -0400 Subject: [PATCH 084/227] Map syncs 1 - initial commit, hard sync with TG --- _maps/RandomRuins/SpaceRuins/TheDerelict.dmm | 2 - _maps/RandomRuins/SpaceRuins/deepstorage.dmm | 4 +- _maps/RandomZLevels/undergroundoutpost45.dmm | 4 +- _maps/map_files/BoxStation/BoxStation.dmm | 11788 ++-- .../map_files/Deltastation/DeltaStation2.dmm | 6956 +-- _maps/map_files/MetaStation/MetaStation.dmm | 5819 +- _maps/map_files/Mining/Lavaland.dmm | 120 +- _maps/map_files/OmegaStation/OmegaStation.dmm | 2588 +- _maps/map_files/PubbyStation/PubbyStation.dmm | 3018 +- _maps/map_files/debug/runtimestation.dmm | 112 +- _maps/map_files/generic/CentCom.dmm | 51074 ++++++++-------- _maps/shuttles/emergency_cere.dmm | 1 + _maps/shuttles/emergency_delta.dmm | 3 +- _maps/shuttles/emergency_meta.dmm | 1 + _maps/shuttles/emergency_pubby.dmm | 1 + _maps/shuttles/emergency_supermatter.dmm | 27 +- _maps/shuttles/whiteship_box.dmm | 6 +- _maps/shuttles/whiteship_cere.dmm | 1 + _maps/shuttles/whiteship_meta.dmm | 1481 +- 19 files changed, 30693 insertions(+), 52313 deletions(-) diff --git a/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm b/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm index a083ac48f6..cc960def1c 100644 --- a/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm +++ b/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm @@ -1691,7 +1691,6 @@ /obj/structure/grille/broken, /obj/effect/decal/remains/human{ desc = "This guy seemed to have died in terrible way! Half his remains are dust."; - icon_state = "remains"; name = "Syndicate agent remains" }, /turf/open/floor/plasteel/airless{ @@ -4665,7 +4664,6 @@ "oi" = ( /obj/effect/decal/remains/human{ desc = "This guy seemed to have died in terrible way! Half his remains are dust."; - icon_state = "remains"; name = "Syndicate agent remains" }, /turf/open/floor/plasteel/airless, diff --git a/_maps/RandomRuins/SpaceRuins/deepstorage.dmm b/_maps/RandomRuins/SpaceRuins/deepstorage.dmm index 7613265273..cfc78c0dbf 100644 --- a/_maps/RandomRuins/SpaceRuins/deepstorage.dmm +++ b/_maps/RandomRuins/SpaceRuins/deepstorage.dmm @@ -3305,7 +3305,7 @@ "ga" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 1; - filter_type = /datum/gas/oxygen; + filter_type = "o2"; on = 1 }, /turf/open/floor/plasteel/floorgrime{ @@ -3719,7 +3719,7 @@ "gO" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 1; - filter_type = /datum/gas/nitrous_oxide; + filter_type = "n2o"; on = 1 }, /turf/open/floor/plasteel/floorgrime{ diff --git a/_maps/RandomZLevels/undergroundoutpost45.dmm b/_maps/RandomZLevels/undergroundoutpost45.dmm index 347ef2f4f5..fedc7c820e 100644 --- a/_maps/RandomZLevels/undergroundoutpost45.dmm +++ b/_maps/RandomZLevels/undergroundoutpost45.dmm @@ -10975,7 +10975,7 @@ "um" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 4; - filter_type = /datum/gas/nitrogen; + filter_type = "n2"; on = 1 }, /turf/open/floor/plasteel/red/side{ @@ -11015,7 +11015,7 @@ "up" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 4; - filter_type = /datum/gas/oxygen; + filter_type = "o2"; on = 1 }, /turf/open/floor/plasteel/blue/side{ diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index 8c4b6da914..5b8b608781 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -38,27 +38,22 @@ /area/security/prison) "aaj" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/closed/wall/r_wall, /area/security/prison) "aak" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/security/prison) "aal" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -66,11 +61,9 @@ /area/security/prison) "aam" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -135,8 +128,6 @@ /area/security/prison) "aav" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/floorgrime, @@ -224,8 +215,6 @@ /area/security/prison) "aaL" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/window/reinforced{ @@ -258,8 +247,6 @@ /area/security/prison) "aaQ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/barber, @@ -307,8 +294,6 @@ "aaY" = ( /obj/structure/window/reinforced, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/barber, @@ -422,8 +407,7 @@ /area/crew_quarters/heads/hos) "abs" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/power/tracker, /turf/open/floor/plasteel/airless/solarpanel, @@ -508,8 +492,6 @@ /area/security/prison) "abE" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -653,48 +635,35 @@ /turf/open/floor/plasteel/floorgrime, /area/security/prison) "abN" = ( -/obj/machinery/door/poddoor/shutters{ - id = "armory"; - name = "Armoury Shutter" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, +/obj/structure/closet/secure_closet/lethalshots, +/turf/open/floor/plasteel/black, /area/ai_monitored/security/armory) "abO" = ( /turf/open/floor/plasteel/showroomfloor, /area/security/main) "abP" = ( /obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, /turf/open/floor/plasteel/showroomfloor, /area/security/main) "abQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/window/southleft{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "Armory"; - req_access_txt = "3" +/obj/structure/rack, +/obj/machinery/airalarm{ + pixel_y = 23 }, -/obj/effect/turf_decal/stripes/line{ +/obj/item/gun/energy/ionrifle, +/obj/item/gun/energy/temperature/security, +/obj/item/clothing/suit/armor/laserproof, +/turf/open/floor/plasteel/vault{ dir = 8 }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel/black, /area/ai_monitored/security/armory) "abR" = ( /obj/structure/closet/secure_closet/security/sec, /obj/machinery/light{ dir = 4 }, +/obj/effect/turf_decal/bot, /turf/open/floor/plasteel/showroomfloor, /area/security/main) "abS" = ( @@ -745,8 +714,7 @@ /area/crew_quarters/heads/hos) "abX" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/power/tracker, /turf/open/floor/plasteel/airless/solarpanel, @@ -757,8 +725,6 @@ /area/space) "abZ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/lattice/catwalk, @@ -814,8 +780,6 @@ /area/security/prison) "acg" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/poddoor/preopen{ @@ -837,13 +801,8 @@ /turf/open/floor/plasteel/freezer, /area/security/prison) "aci" = ( -/obj/machinery/door/poddoor/shutters{ - id = "armory"; - name = "Armoury Shutter" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, +/obj/vehicle/secway, +/turf/open/floor/plasteel/black, /area/ai_monitored/security/armory) "acj" = ( /obj/machinery/light{ @@ -862,9 +821,6 @@ /obj/effect/turf_decal/stripes/line{ dir = 9 }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) "acm" = ( @@ -875,14 +831,11 @@ pixel_x = 24 }, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) "acn" = ( @@ -902,6 +855,7 @@ /area/security/main) "acq" = ( /obj/effect/landmark/secequipment, +/obj/effect/turf_decal/bot, /turf/open/floor/plasteel/showroomfloor, /area/security/main) "acr" = ( @@ -943,8 +897,6 @@ /area/space) "acx" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/lattice/catwalk, @@ -1064,8 +1016,6 @@ /area/security/execution/transfer) "acJ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -1107,7 +1057,6 @@ dir = 1; layer = 2.9 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel{ dir = 2 }, @@ -1173,8 +1122,7 @@ /area/security/main) "acV" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/power/solar{ id = "auxsolareast"; @@ -1249,8 +1197,6 @@ /area/security/prison) "ade" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -1266,11 +1212,8 @@ /area/security/prison) "adg" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) "adh" = ( @@ -1279,9 +1222,7 @@ /turf/open/floor/carpet, /area/crew_quarters/heads/hos) "adi" = ( -/obj/structure/table, -/obj/item/storage/box/firingpins, -/obj/item/storage/box/firingpins, +/obj/machinery/flasher/portable, /turf/open/floor/plasteel/vault{ dir = 8 }, @@ -1307,11 +1248,6 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /turf/open/floor/plasteel{ dir = 2 }, @@ -1396,8 +1332,7 @@ /area/security/main) "ads" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/power/solar{ id = "auxsolareast"; @@ -1412,18 +1347,12 @@ /area/solar/starboard/fore) "adu" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/lattice/catwalk, @@ -1431,13 +1360,9 @@ /area/solar/port/fore) "adv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/lattice/catwalk, @@ -1445,7 +1370,6 @@ /area/solar/port/fore) "adw" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/lattice/catwalk, @@ -1453,8 +1377,7 @@ /area/solar/port/fore) "adx" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/lattice/catwalk, /turf/open/space, @@ -1465,18 +1388,12 @@ /area/solar/port/fore) "adz" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/lattice/catwalk, @@ -1484,13 +1401,9 @@ /area/solar/port/fore) "adA" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/lattice/catwalk, @@ -1572,8 +1485,6 @@ req_access_txt = "2" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -1596,8 +1507,6 @@ /area/security/brig) "adM" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/carpet, @@ -1610,8 +1519,7 @@ pixel_x = -24 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, @@ -1623,8 +1531,6 @@ /area/security/prison) "adP" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -1634,7 +1540,6 @@ /obj/effect/turf_decal/stripes/line{ dir = 2 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) "adR" = ( @@ -1642,13 +1547,9 @@ /area/security/main) "adS" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/lattice/catwalk, @@ -1656,18 +1557,12 @@ /area/solar/starboard/fore) "adT" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/lattice/catwalk, @@ -1679,7 +1574,6 @@ /area/solar/starboard/fore) "adV" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/lattice/catwalk, @@ -1687,18 +1581,12 @@ /area/solar/starboard/fore) "adW" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/lattice/catwalk, @@ -1706,21 +1594,16 @@ /area/solar/starboard/fore) "adX" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/fore) "adY" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/lattice/catwalk, @@ -1900,8 +1783,6 @@ /area/security/prison) "aep" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -1940,7 +1821,6 @@ pixel_x = 24 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/red/side{ @@ -1948,18 +1828,10 @@ }, /area/security/prison) "aes" = ( -/obj/structure/rack, -/obj/item/gun/energy/ionrifle, -/obj/item/gun/energy/temperature/security, -/obj/item/clothing/suit/armor/laserproof, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, +/obj/machinery/suit_storage_unit/security, /turf/open/floor/plasteel/red/side, /area/ai_monitored/security/armory) "aet" = ( @@ -1969,24 +1841,10 @@ /turf/open/floor/plasteel, /area/ai_monitored/security/armory) "aeu" = ( -/obj/structure/rack, -/obj/item/storage/box/teargas{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/flashbangs{ - pixel_x = 3; - pixel_y = -3 - }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, +/obj/machinery/suit_storage_unit/security, /turf/open/floor/plasteel/red/side, /area/ai_monitored/security/armory) "aev" = ( @@ -2014,8 +1872,6 @@ req_access_txt = "58" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -2116,8 +1972,6 @@ }, /obj/machinery/atmospherics/pipe/simple/general/hidden, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/black, @@ -2131,8 +1985,6 @@ "aeM" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side{ @@ -2144,8 +1996,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -2164,8 +2014,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -2178,8 +2026,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -2192,8 +2038,6 @@ "aeQ" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -2206,8 +2050,6 @@ /area/hallway/secondary/exit) "aeS" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -2217,22 +2059,16 @@ /area/security/prison) "aeT" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/security/prison) "aeU" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -2240,8 +2076,6 @@ /area/security/prison) "aeV" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -2279,8 +2113,7 @@ /area/security/warden) "aeX" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -2290,8 +2123,6 @@ /area/ai_monitored/security/armory) "aeY" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/window/southleft{ @@ -2306,16 +2137,14 @@ /area/ai_monitored/security/armory) "aeZ" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 }, /turf/open/floor/plating, /area/ai_monitored/security/armory) @@ -2393,8 +2222,6 @@ /area/security/main) "afj" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -2528,8 +2355,6 @@ dir = 9 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -2568,13 +2393,9 @@ /area/security/prison) "afC" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -2705,8 +2526,6 @@ /area/security/main) "afX" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/start/head_of_security, @@ -2813,8 +2632,6 @@ req_access_txt = "2" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -2860,21 +2677,15 @@ req_access_txt = "3" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -2956,8 +2767,6 @@ "agC" = ( /obj/machinery/holopad, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -2982,8 +2791,6 @@ "agF" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/sign/securearea{ @@ -3070,8 +2877,6 @@ /area/security/brig) "agP" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -3081,16 +2886,13 @@ /area/security/brig) "agQ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) "agR" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -3103,8 +2905,6 @@ /area/security/warden) "agT" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/showroomfloor, @@ -3119,16 +2919,13 @@ /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) "agW" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -3181,8 +2978,6 @@ /area/security/main) "ahf" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -3272,7 +3067,8 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/machinery/chem_master, +/obj/machinery/iv_drip, +/obj/item/reagent_containers/blood/empty, /turf/open/floor/plasteel/whitered/side{ dir = 5 }, @@ -3313,7 +3109,8 @@ name = "Station Intercom (General)"; pixel_y = 24 }, -/obj/machinery/chem_dispenser, +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop, /turf/open/floor/plasteel/whitered/side{ dir = 1 }, @@ -3349,33 +3146,24 @@ pixel_x = -24 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) "ahx" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) "ahy" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -3383,8 +3171,6 @@ /area/security/warden) "ahz" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -3398,8 +3184,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -3411,8 +3195,6 @@ /area/security/main) "ahB" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -3425,8 +3207,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, @@ -3450,18 +3230,12 @@ req_access_txt = "3" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -3471,8 +3245,6 @@ /area/security/warden) "ahF" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -3488,13 +3260,9 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -3508,8 +3276,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -3519,8 +3285,6 @@ /area/security/main) "ahI" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -3537,8 +3301,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -3551,13 +3313,9 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/chair, @@ -3567,8 +3325,6 @@ /area/security/main) "ahL" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -3578,8 +3334,6 @@ /area/security/main) "ahM" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -3587,8 +3341,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -3604,7 +3356,6 @@ pixel_x = 24 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -3624,8 +3375,6 @@ "ahQ" = ( /obj/structure/closet/secure_closet/warden, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/showroomfloor, @@ -3640,18 +3389,21 @@ pixel_y = 8; req_access_txt = "2" }, +/obj/machinery/button/door{ + id = "Secure Gate"; + name = "Cell Shutters"; + pixel_x = -27; + pixel_y = -2; + req_access_txt = "0" + }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) "ahS" = ( /obj/structure/table, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/showroomfloor, @@ -3710,8 +3462,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/vehicle/secway, -/obj/item/key/security, /turf/open/floor/plasteel/red/side{ dir = 10 }, @@ -3729,8 +3479,6 @@ /area/security/main) "aib" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment, @@ -3741,8 +3489,6 @@ /area/maintenance/fore/secondary) "aic" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -3774,8 +3520,6 @@ "aif" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -3821,8 +3565,6 @@ /area/security/warden) "aik" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -3912,16 +3654,12 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side, /area/security/main) "aiv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -3947,8 +3685,6 @@ /area/security/brig) "aix" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -3969,8 +3705,6 @@ /area/security/brig) "aiz" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -4027,8 +3761,7 @@ /area/security/brig) "aiI" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; @@ -4042,12 +3775,10 @@ "aiJ" = ( /obj/structure/table/reinforced, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/door/window/brigdoor{ dir = 1; @@ -4070,12 +3801,10 @@ /area/security/warden) "aiK" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/cable, /obj/effect/spawner/structure/window/reinforced, @@ -4083,12 +3812,10 @@ /area/security/warden) "aiL" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -4102,7 +3829,6 @@ /area/security/warden) "aiN" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -4168,8 +3894,6 @@ /area/security/courtroom) "aiZ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -4181,8 +3905,6 @@ /area/security/brig) "aja" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -4206,9 +3928,6 @@ /obj/structure/sign/goldenplaque{ pixel_y = 32 }, -/obj/machinery/light{ - dir = 1 - }, /turf/open/floor/plasteel/red/side{ dir = 1 }, @@ -4225,8 +3944,6 @@ /area/security/brig) "ajf" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -4236,8 +3953,6 @@ /area/security/brig) "ajg" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -4312,8 +4027,7 @@ /area/security/courtroom) "ajq" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/lattice/catwalk, /turf/open/space, @@ -4388,8 +4102,7 @@ pixel_y = 24 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -4400,8 +4113,6 @@ /area/security/brig) "ajz" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -4418,7 +4129,7 @@ }, /area/security/brig) "ajB" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, /turf/open/floor/plasteel, /area/security/brig) "ajC" = ( @@ -4430,8 +4141,6 @@ /area/ai_monitored/security/armory) "ajD" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -4448,7 +4157,7 @@ "ajF" = ( /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /turf/open/floor/plasteel/red/corner{ - dir = 8 + dir = 2 }, /area/security/brig) "ajG" = ( @@ -4485,15 +4194,13 @@ /turf/open/floor/plasteel, /area/security/brig) "ajK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /turf/open/floor/plasteel, /area/security/brig) "ajL" = ( @@ -4595,8 +4302,6 @@ req_access_txt = "10; 13" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -4633,8 +4338,6 @@ /area/security/processing) "akc" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -4644,8 +4347,6 @@ /area/security/processing) "akd" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -4653,8 +4354,6 @@ /area/security/processing) "ake" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -4666,8 +4365,6 @@ /area/security/brig) "akf" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -4683,8 +4380,6 @@ /area/security/brig) "akg" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/camera{ @@ -4698,13 +4393,9 @@ /area/security/brig) "akh" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -4714,13 +4405,9 @@ /area/security/brig) "aki" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -4733,8 +4420,6 @@ /area/security/brig) "akj" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -4743,21 +4428,16 @@ /turf/open/floor/plasteel/red/side, /area/security/brig) "akk" = ( -/obj/machinery/door_timer{ - id = "Cell 1"; - name = "Cell 1"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 }, /turf/open/floor/plasteel/red/corner{ dir = 2 }, /area/security/brig) "akl" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, /turf/open/floor/plasteel, /area/security/brig) @@ -4804,24 +4484,26 @@ dir = 4 }, /obj/machinery/door_timer{ - id = "Cell 4"; - name = "Cell 4"; + id = "Cell 3"; + name = "Cell 3"; pixel_y = -32 }, -/turf/open/floor/plasteel/red/corner, +/turf/open/floor/plasteel/red/side, /area/security/brig) "akr" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/red/side, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, /area/security/brig) "aks" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, -/turf/open/floor/plasteel/red/side, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/red/corner{ + dir = 8 + }, /area/security/brig) "akt" = ( /obj/machinery/light, @@ -4836,11 +4518,11 @@ /turf/open/floor/plasteel/red/side, /area/security/brig) "aku" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 }, /turf/open/floor/plasteel/red/side{ - dir = 6 + dir = 4 }, /area/security/brig) "akv" = ( @@ -4872,11 +4554,9 @@ }, /area/security/courtroom) "akz" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/hallway/primary/fore) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) "akA" = ( /obj/structure/chair{ dir = 8; @@ -4888,8 +4568,6 @@ /area/security/courtroom) "akB" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -4950,8 +4628,6 @@ /area/security/processing) "akK" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -4967,8 +4643,10 @@ /area/maintenance/fore) "akM" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "0-4" }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -4977,15 +4655,13 @@ /area/security/brig) "akN" = ( /obj/structure/cable{ - d2 = 8; - icon_state = "0-8" + icon_state = "0-4" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-8" }, -/obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/security/brig) "akO" = ( @@ -4994,21 +4670,16 @@ name = "Cell 1" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/red/side, /area/security/brig) "akP" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/spawner/structure/window/reinforced, @@ -5016,8 +4687,6 @@ /area/security/brig) "akQ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/closed/wall, @@ -5028,69 +4697,55 @@ name = "Cell 2" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side, /area/security/brig) "akS" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 4"; - name = "Cell 4" - }, /obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red/side, -/area/security/brig) -"akT" = ( -/obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/security/brig) +"akT" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 3"; + name = "Cell 3" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/red/side, +/area/security/brig) "akU" = ( /obj/machinery/door/airlock/glass_security{ name = "Brig Desk"; req_access_txt = "1" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/black, /area/security/brig) "akV" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/security/brig) "akW" = ( -/obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ cyclelinkeddir = 2; id_tag = "innerbrig"; @@ -5098,8 +4753,6 @@ req_access_txt = "63" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side{ @@ -5114,8 +4767,6 @@ req_access_txt = "63" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side{ @@ -5124,15 +4775,16 @@ /area/security/brig) "akY" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ icon_state = "1-8" }, -/turf/closed/wall/r_wall, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, /area/security/brig) "akZ" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -5145,8 +4797,6 @@ name = "Cell 4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -5188,16 +4838,13 @@ /area/security/brig) "alg" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/fore) "alh" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/external{ @@ -5270,8 +4917,6 @@ /area/security/processing) "als" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -5289,8 +4934,6 @@ /area/ai_monitored/nuke_storage) "alv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -5307,15 +4950,12 @@ /turf/open/floor/plasteel/floorgrime, /area/security/brig) "alw" = ( -/obj/item/device/radio/intercom{ - desc = "Talk through this. It looks like it has been modified to not broadcast."; - dir = 2; - name = "Prison Intercom (General)"; - pixel_x = -25; - pixel_y = -2; - prison_radio = 1 +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/floorgrime, /area/security/brig) "alx" = ( @@ -5344,8 +4984,6 @@ req_access_txt = "0" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/button/flasher{ @@ -5377,22 +5015,28 @@ /turf/open/floor/plasteel/black, /area/security/brig) "alC" = ( -/obj/item/twohanded/required/kirbyplants/random, /turf/open/floor/plasteel/red/side{ dir = 9 }, -/area/hallway/primary/fore) +/area/security/brig) "alD" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/security/courtroom) "alE" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel/red/side{ - dir = 5 +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 }, -/area/hallway/primary/fore) +/obj/machinery/flasher{ + id = "Cell 4"; + pixel_x = 28 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) "alF" = ( /obj/machinery/atmospherics/components/unary/tank/air{ dir = 2 @@ -5425,13 +5069,9 @@ "alK" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -5446,8 +5086,7 @@ pixel_x = -24 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, @@ -5466,8 +5105,7 @@ track = 0 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plating, /area/maintenance/solars/port/fore) @@ -5486,13 +5124,9 @@ /area/maintenance/solars/port/fore) "alT" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plating, @@ -5553,8 +5187,6 @@ /area/security/processing) "ame" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -5563,6 +5195,11 @@ /turf/open/floor/plasteel, /area/security/processing) "amf" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/structure/cable{ + icon_state = "1-2" + }, /obj/machinery/flasher{ id = "Cell 1"; pixel_x = -28 @@ -5577,8 +5214,11 @@ /turf/open/floor/plasteel/floorgrime, /area/security/brig) "amh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 +/obj/structure/bed, +/obj/item/bedsheet, +/obj/machinery/flasher{ + id = "Cell 2"; + pixel_x = -28 }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) @@ -5628,8 +5268,6 @@ req_access_txt = "63" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -5655,10 +5293,14 @@ /turf/open/floor/plasteel/black, /area/security/brig) "amo" = ( -/turf/open/floor/plasteel/red/side{ - dir = 9 +/obj/machinery/flasher{ + id = "brigentry"; + pixel_x = 28 }, -/area/hallway/primary/fore) +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/brig) "amp" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 4"; @@ -5667,11 +5309,18 @@ /turf/open/floor/plasteel/floorgrime, /area/security/brig) "amq" = ( -/obj/machinery/vending/snack/random, -/turf/open/floor/plasteel/red/side{ - dir = 4 +/obj/structure/bed, +/obj/item/bedsheet, +/obj/item/device/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + dir = 2; + name = "Prison Intercom (General)"; + pixel_x = 25; + pixel_y = -2; + prison_radio = 1 }, -/area/hallway/primary/fore) +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) "amr" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -5696,8 +5345,6 @@ /area/security/courtroom) "amv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/external{ @@ -5726,7 +5373,6 @@ /area/maintenance/solars/port/fore) "amz" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/terminal, @@ -5737,8 +5383,6 @@ /area/maintenance/solars/port/fore) "amA" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plating, @@ -5823,8 +5467,6 @@ req_access_txt = "2" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -5851,17 +5493,22 @@ /turf/open/floor/plasteel/showroomfloor, /area/security/warden) "amQ" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/plasteel/floorgrime, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "Secure Gate"; + name = "brig shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, /area/security/brig) "amR" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/door/poddoor/preopen{ @@ -5873,24 +5520,25 @@ /area/security/brig) "amS" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/closed/wall/r_wall, /area/security/brig) "amT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "briggate"; + name = "security shutters" }, -/obj/machinery/button/door{ - id = "seclobby"; - name = "Security Lobby Lockdown"; - pixel_x = -26; - pixel_y = 8; - req_access_txt = "2" +/obj/machinery/door/window/southleft{ + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" }, /turf/open/floor/plasteel/black, /area/security/brig) @@ -5900,17 +5548,25 @@ name = "security blast door" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/security/brig) "amV" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "briggate"; + name = "security shutters" + }, +/obj/machinery/door/window/southleft{ + base_state = "right"; + icon_state = "right"; + name = "Brig Desk"; + req_access_txt = "1" + }, /obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" + icon_state = "4-8" }, /turf/open/floor/plasteel/black, /area/security/brig) @@ -5927,10 +5583,17 @@ }, /area/security/brig) "amX" = ( -/turf/open/floor/plasteel/red/side{ - dir = 8 +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + cyclelinkeddir = 1; + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63" }, -/area/hallway/primary/fore) +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/brig) "amY" = ( /obj/structure/chair{ dir = 1 @@ -5959,8 +5622,6 @@ /area/maintenance/fore/secondary) "anc" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -5976,8 +5637,6 @@ /area/maintenance/fore/secondary) "ane" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -5987,8 +5646,7 @@ /area/maintenance/starboard/fore) "ang" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/power/apc{ dir = 8; @@ -6005,7 +5663,6 @@ /area/maintenance/solars/port/fore) "anh" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/smes, @@ -6013,13 +5670,9 @@ /area/maintenance/solars/port/fore) "ani" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, @@ -6121,8 +5774,6 @@ /area/security/processing) "anv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6172,22 +5823,22 @@ }, /area/hallway/primary/fore) "anB" = ( -/turf/open/floor/plasteel/red/side{ - dir = 5 +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 4 }, /area/hallway/primary/fore) "anC" = ( /obj/effect/spawner/structure/window, -/obj/machinery/door/poddoor/preopen{ - id = "seclobby"; - name = "security lobby blast door" - }, /turf/open/floor/plating, /area/security/courtroom) "anD" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -6231,8 +5882,6 @@ req_access_txt = "10" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -6297,30 +5946,27 @@ /turf/open/floor/plasteel, /area/security/processing) "anQ" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 32 + }, /obj/machinery/light{ dir = 1 }, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, +/turf/open/floor/plasteel, /area/hallway/primary/fore) "anR" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, +/turf/open/floor/plasteel, /area/hallway/primary/fore) "anS" = ( /obj/machinery/holopad, /turf/open/floor/plasteel, /area/hallway/primary/fore) "anT" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "seclobby"; - name = "security lobby blast door" - }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel, /area/hallway/primary/fore) "anU" = ( @@ -6328,10 +5974,6 @@ /obj/machinery/door/airlock/glass{ name = "Courtroom" }, -/obj/machinery/door/poddoor/preopen{ - id = "seclobby"; - name = "security lobby blast door" - }, /turf/open/floor/plasteel/black, /area/security/courtroom) "anV" = ( @@ -6412,13 +6054,9 @@ /area/maintenance/solars/starboard/fore) "aog" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plating, @@ -6430,8 +6068,7 @@ track = 0 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) @@ -6465,8 +6102,6 @@ /area/maintenance/port/fore) "aol" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -6525,8 +6160,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/red/side{ @@ -6535,8 +6168,6 @@ /area/security/processing) "aou" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/camera{ @@ -6597,20 +6228,15 @@ dir = 1; pixel_y = -24 }, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/red/side{ - dir = 10 +/turf/open/floor/plasteel/red/corner{ + dir = 2 }, /area/hallway/primary/fore) "aoC" = ( -/obj/structure/chair{ - dir = 1 +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/red/corner{ + dir = 2 }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel/red/side, /area/hallway/primary/fore) "aoD" = ( /obj/machinery/camera{ @@ -6621,22 +6247,21 @@ pixel_x = 5; pixel_y = -32 }, -/obj/machinery/light, -/obj/structure/chair{ - dir = 1 +/turf/open/floor/plasteel/red/corner{ + dir = 2 }, -/turf/open/floor/plasteel/red/side, /area/hallway/primary/fore) "aoE" = ( -/obj/structure/table, -/obj/machinery/chem_dispenser/drinks, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/bar, +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/red/corner{ + dir = 2 + }, /area/hallway/primary/fore) "aoF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/plasteel/red/side, +/obj/machinery/vending/snack/random, +/turf/open/floor/plasteel/red/corner{ + dir = 2 + }, /area/hallway/primary/fore) "aoG" = ( /obj/structure/table, @@ -6656,8 +6281,6 @@ /area/security/courtroom) "aoI" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -6674,7 +6297,6 @@ pixel_y = -24 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -6709,8 +6331,6 @@ /area/maintenance/fore/secondary) "aoM" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plating, @@ -6723,7 +6343,6 @@ /area/maintenance/solars/starboard/fore) "aoO" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/terminal, @@ -6805,8 +6424,6 @@ req_access_txt = "2" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -6861,9 +6478,6 @@ /area/maintenance/fore/secondary) "apm" = ( /obj/machinery/door/firedoor, -/obj/structure/sign/securearea{ - pixel_x = 32 - }, /turf/open/floor/plasteel/red/corner{ dir = 4 }, @@ -6873,7 +6487,9 @@ /turf/closed/wall, /area/maintenance/fore/secondary) "apo" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, /turf/closed/wall, /area/maintenance/fore/secondary) "app" = ( @@ -6896,8 +6512,7 @@ /area/maintenance/fore/secondary) "apr" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/power/apc{ dir = 1; @@ -6934,8 +6549,6 @@ /area/maintenance/fore/secondary) "apu" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -6952,8 +6565,6 @@ req_access_txt = "12" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -6994,21 +6605,16 @@ /area/maintenance/fore/secondary) "apz" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) "apA" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/power/apc{ dir = 8; @@ -7025,7 +6631,6 @@ dir = 1 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/smes, @@ -7112,8 +6717,6 @@ /area/security/processing) "apS" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -7196,13 +6799,12 @@ /turf/open/floor/plating, /area/maintenance/fore/secondary) "aqg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j1" - }, /turf/open/floor/plating, /area/maintenance/fore/secondary) "aqh" = ( @@ -7227,13 +6829,9 @@ /area/maintenance/fore/secondary) "aqj" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -7249,8 +6847,7 @@ pixel_y = -24 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -7263,13 +6860,9 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -7279,13 +6872,9 @@ /area/maintenance/fore/secondary) "aqm" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -7374,8 +6963,6 @@ /area/maintenance/starboard/fore) "aqw" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/engineering{ @@ -7500,8 +7087,7 @@ pixel_y = 26 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plating, /area/maintenance/port/fore) @@ -7532,8 +7118,7 @@ }, /obj/structure/cable, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plating, /area/maintenance/fore) @@ -7584,11 +7169,6 @@ /area/lawoffice) "arc" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) "ard" = ( @@ -7643,8 +7223,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/side{ @@ -7692,13 +7270,9 @@ /area/maintenance/starboard/fore) "arr" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plating, @@ -7711,8 +7285,7 @@ pixel_y = 24 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plating, /area/maintenance/starboard/fore) @@ -7796,8 +7369,6 @@ /area/maintenance/port/fore) "arH" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ @@ -7807,8 +7378,6 @@ /area/maintenance/port/fore) "arI" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ @@ -7818,13 +7387,9 @@ /area/maintenance/port/fore) "arJ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ @@ -7842,8 +7407,6 @@ /area/maintenance/port/fore) "arL" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ @@ -7959,8 +7522,6 @@ /area/crew_quarters/fitness) "asc" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -7976,8 +7537,6 @@ /area/crew_quarters/dorms) "ase" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -8004,8 +7563,6 @@ /area/crew_quarters/dorms) "ash" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance{ @@ -8018,13 +7575,9 @@ /area/maintenance/port/fore) "asi" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -8143,8 +7696,6 @@ /area/maintenance/starboard/fore) "asw" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -8213,8 +7764,6 @@ /area/construction/mining/aux_base) "asK" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -8242,8 +7791,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/neutral/side{ @@ -8291,8 +7838,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel, @@ -8458,8 +8003,6 @@ /area/maintenance/port/fore) "atr" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -8560,16 +8103,14 @@ "atG" = ( /obj/machinery/mech_bay_recharge_port, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plating, /area/maintenance/department/electrical) "atH" = ( /obj/machinery/computer/mech_bay_power_console, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/circuit, /area/maintenance/department/electrical) @@ -8598,8 +8139,6 @@ /area/maintenance/port/fore) "atN" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -8738,8 +8277,6 @@ /area/lawoffice) "auj" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -8764,13 +8301,9 @@ /area/crew_quarters/dorms) "aum" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -8785,8 +8318,6 @@ /area/crew_quarters/dorms) "auo" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -8821,8 +8352,6 @@ /area/crew_quarters/fitness) "aus" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -8925,16 +8454,12 @@ /area/maintenance/starboard/fore) "auE" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plating, /area/maintenance/starboard/fore) "auF" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -8944,16 +8469,12 @@ req_access_txt = "12" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/starboard/fore) "auH" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plating, @@ -8966,21 +8487,15 @@ /area/maintenance/department/electrical) "auK" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/department/electrical) "auL" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/floorgrime, @@ -8990,8 +8505,6 @@ pixel_x = 27 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/floorgrime, @@ -9036,8 +8549,6 @@ /area/crew_quarters/dorms) "auT" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -9144,8 +8655,7 @@ /area/crew_quarters/dorms) "avh" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/power/apc{ @@ -9164,8 +8674,7 @@ pixel_y = 24 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, @@ -9176,8 +8685,6 @@ pixel_x = -24 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/red/corner{ @@ -9239,8 +8746,6 @@ /area/construction/mining/aux_base) "avq" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -9258,8 +8763,6 @@ /area/security/detectives_office) "avs" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -9321,7 +8824,6 @@ "avB" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -9347,8 +8849,6 @@ id = "maint3" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -9396,8 +8896,7 @@ pixel_y = 24 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plating, /area/maintenance/department/electrical) @@ -9409,8 +8908,6 @@ /area/maintenance/department/electrical) "avN" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -9542,8 +9039,7 @@ pixel_y = 24 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -9552,16 +9048,12 @@ /area/maintenance/fore) "awe" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -9581,8 +9073,6 @@ /area/maintenance/fore) "awg" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -9596,16 +9086,12 @@ "awh" = ( /obj/effect/landmark/blobstart, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -9616,16 +9102,12 @@ /area/maintenance/fore) "awi" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -9636,8 +9118,6 @@ req_access_txt = "12" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -9659,8 +9139,6 @@ /area/hallway/primary/fore) "awl" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -9754,8 +9232,6 @@ /area/security/brig) "awx" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -9776,8 +9252,6 @@ /area/crew_quarters/fitness) "awA" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/holopad, @@ -9837,8 +9311,6 @@ req_access_txt = "0" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -9862,8 +9334,6 @@ /area/maintenance/starboard/fore) "awM" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -9873,32 +9343,24 @@ /area/maintenance/starboard/fore) "awN" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) "awO" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/department/electrical) "awP" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -9908,8 +9370,6 @@ /area/maintenance/department/electrical) "awQ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/engineering/abandoned{ @@ -9923,13 +9383,9 @@ /area/maintenance/department/electrical) "awR" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -9945,8 +9401,6 @@ /area/maintenance/department/electrical) "awT" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/holopad, @@ -10003,8 +9457,6 @@ /area/hallway/secondary/entry) "axa" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -10014,8 +9466,6 @@ /area/maintenance/department/electrical) "axb" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -10148,8 +9598,6 @@ pixel_y = -32 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -10159,8 +9607,6 @@ /area/maintenance/fore) "axs" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -10173,8 +9619,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -10188,10 +9632,11 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, +/obj/structure/cable{ + icon_state = "2-8" + }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -10203,13 +9648,9 @@ dir = 4 }, /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/scrubbers/hidden{ @@ -10219,13 +9660,9 @@ /area/maintenance/fore) "axw" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -10239,8 +9676,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -10362,8 +9797,6 @@ /area/crew_quarters/dorms) "axQ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment, @@ -10371,8 +9804,6 @@ /area/crew_quarters/fitness) "axR" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -10393,13 +9824,9 @@ /area/crew_quarters/fitness) "axT" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -10413,8 +9840,6 @@ /area/crew_quarters/fitness) "axV" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel, @@ -10463,13 +9888,9 @@ /area/crew_quarters/fitness) "ayc" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -10492,8 +9913,6 @@ /area/maintenance/starboard/fore) "ayg" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -10501,8 +9920,6 @@ /area/maintenance/starboard/fore) "ayh" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -10513,8 +9930,6 @@ /area/maintenance/port/fore) "ayi" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -10573,8 +9988,6 @@ pixel_x = 27 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -10612,8 +10025,6 @@ /area/ai_monitored/storage/eva) "ayw" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -10633,29 +10044,50 @@ /turf/closed/wall/r_wall, /area/maintenance/port/fore) "ayA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/barricade/wooden, -/obj/structure/grille, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) -"ayB" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/maintenance/bar/cafe) +/area/maintenance/fore) +"ayB" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/fore) "ayC" = ( -/turf/closed/wall, -/area/maintenance/bar/cafe) -"ayD" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar/cafe) +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/fore) +"ayD" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/fore) "ayE" = ( /turf/closed/wall/r_wall, /area/maintenance/fore) "ayF" = ( /obj/structure/cable, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -10667,8 +10099,6 @@ "ayH" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -10676,8 +10106,6 @@ /area/maintenance/fore) "ayI" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/sign/securearea{ @@ -10743,8 +10171,7 @@ pixel_y = 24 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) @@ -10769,8 +10196,7 @@ /area/ai_monitored/storage/eva) "ayS" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/sign/securearea{ pixel_y = 32 @@ -10860,8 +10286,6 @@ /area/crew_quarters/dorms) "azd" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/side{ @@ -10924,8 +10348,6 @@ /area/crew_quarters/fitness) "azl" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -10968,13 +10390,9 @@ /area/maintenance/starboard/fore) "azs" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -10985,21 +10403,18 @@ "azt" = ( /obj/machinery/power/terminal, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plating, /area/maintenance/department/electrical) "azu" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plating, /area/maintenance/department/electrical) "azv" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -11009,15 +10424,13 @@ pixel_y = -25 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plating, /area/maintenance/department/electrical) "azx" = ( /obj/machinery/power/terminal, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -11057,8 +10470,6 @@ /area/hallway/secondary/entry) "azD" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/arrival{ @@ -11067,8 +10478,6 @@ /area/hallway/secondary/entry) "azE" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -11086,30 +10495,15 @@ /turf/closed/wall, /area/maintenance/port/fore) "azH" = ( -/obj/machinery/power/apc{ - areastring = "/area/maintenance/bar/cafe"; - dir = 1; - name = "Abandoned Cafe APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/bar/cafe) -"azI" = ( +/obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair/stool/bar, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/bar/cafe) +/turf/open/space, +/area/space) +"azI" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/space, +/area/space) "azJ" = ( /obj/machinery/gateway{ dir = 9 @@ -11148,13 +10542,9 @@ /area/gateway) "azO" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -11164,8 +10554,6 @@ /area/maintenance/fore) "azQ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -11191,13 +10579,9 @@ req_access_txt = "18" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -11213,13 +10597,9 @@ /area/crew_quarters/dorms) "azU" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -11242,8 +10622,6 @@ req_access_txt = "0" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/freezer, @@ -11287,8 +10665,6 @@ /area/crew_quarters/dorms) "aAe" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -11316,14 +10692,12 @@ /area/crew_quarters/dorms) "aAj" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/power/apc{ - areastring = "/area/security/checkpoint/customs"; dir = 2; - name = "Customs APC"; + name = "Security Checkpoint APC"; + areastring = "/area/security/checkpoint/checkpoint2"; pixel_x = 1; pixel_y = -24 }, @@ -11333,8 +10707,6 @@ /area/maintenance/port/fore) "aAk" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -11348,8 +10720,6 @@ /area/crew_quarters/fitness) "aAl" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -11365,8 +10735,6 @@ pixel_y = -24 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -11380,8 +10748,6 @@ /area/crew_quarters/fitness) "aAn" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -11404,8 +10770,6 @@ /area/crew_quarters/fitness) "aAp" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -11448,8 +10812,6 @@ id = "maint2" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -11470,7 +10832,6 @@ pixel_y = 2 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -11484,8 +10845,7 @@ charge = 0 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plating, /area/maintenance/department/electrical) @@ -11494,11 +10854,9 @@ name = "backup power monitoring console" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable, @@ -11506,8 +10864,6 @@ /area/maintenance/department/electrical) "aAA" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/closed/wall, @@ -11517,7 +10873,6 @@ charge = 0 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -11576,8 +10931,6 @@ /area/hallway/secondary/entry) "aAJ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -11604,7 +10957,6 @@ pixel_y = -24 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -11614,13 +10966,9 @@ /area/maintenance/port/fore) "aAN" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -11644,8 +10992,6 @@ /area/hydroponics/garden) "aAR" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -11673,8 +11019,6 @@ /area/hydroponics/garden) "aAV" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/spawner/lootdrop/maintenance, @@ -11714,8 +11058,6 @@ /area/maintenance/port/fore) "aAZ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/freezer, @@ -11764,8 +11106,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -11783,8 +11123,7 @@ pixel_y = -1 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 @@ -11878,8 +11217,7 @@ "aBs" = ( /obj/structure/cable, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -11947,8 +11285,6 @@ req_access_txt = "12" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -11990,23 +11326,21 @@ /area/hallway/secondary/entry) "aBI" = ( /turf/closed/wall, -/area/security/checkpoint/customs) +/area/security/checkpoint/checkpoint2) "aBJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, -/area/security/checkpoint/customs) +/area/security/checkpoint/checkpoint2) "aBK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall, -/area/security/checkpoint/customs) +/area/security/checkpoint/checkpoint2) "aBL" = ( /obj/machinery/door/airlock/maintenance{ name = "Tool Storage Maintenance"; req_access_txt = "12" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -12032,13 +11366,9 @@ /area/ai_monitored/storage/eva) "aBP" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -12053,21 +11383,12 @@ /turf/closed/wall/r_wall, /area/storage/primary) "aBS" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/light_switch{ + pixel_y = 28 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/circuit, +/area/ai_monitored/nuke_storage) "aBT" = ( /obj/machinery/computer/bank_machine, /turf/open/floor/plasteel/vault{ @@ -12075,16 +11396,18 @@ }, /area/ai_monitored/nuke_storage) "aBU" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Vault APC"; + areastring = "/area/ai_monitored/nuke_storage"; + pixel_y = 25 + }, /obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + icon_state = "0-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/circuit, +/area/ai_monitored/nuke_storage) "aBV" = ( /obj/machinery/airalarm{ pixel_y = 23 @@ -12120,8 +11443,7 @@ "aBZ" = ( /obj/machinery/gateway, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plasteel/vault{ dir = 8 @@ -12135,8 +11457,6 @@ /area/ai_monitored/storage/eva) "aCb" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/item/pen{ @@ -12177,8 +11497,6 @@ /obj/effect/landmark/xeno_spawn, /obj/item/bikehorn/rubberducky, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/freezer, @@ -12193,8 +11511,6 @@ /area/crew_quarters/theatre) "aCg" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -12225,8 +11541,6 @@ /area/maintenance/starboard/fore) "aCl" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -12268,8 +11582,6 @@ network = list("SS13") }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/arrival{ @@ -12285,6 +11597,7 @@ pixel_x = -32 }, /obj/item/reagent_containers/food/snacks/baguette, +/obj/item/toy/dummy, /turf/open/floor/plasteel/white/side{ dir = 4 }, @@ -12298,11 +11611,9 @@ /turf/open/floor/plasteel/red/side{ dir = 1 }, -/area/security/checkpoint/customs) +/area/security/checkpoint/checkpoint2) "aCt" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -12343,8 +11654,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, @@ -12352,8 +11661,6 @@ "aCA" = ( /obj/structure/grille/broken, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/window{ @@ -12385,8 +11692,6 @@ id = "maint1" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -12429,8 +11734,6 @@ /area/maintenance/starboard/fore) "aCJ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -12451,7 +11754,7 @@ /turf/open/floor/plasteel/red/side{ dir = 9 }, -/area/security/checkpoint/customs) +/area/security/checkpoint/checkpoint2) "aCM" = ( /obj/structure/reagent_dispensers/fueltank, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -12536,12 +11839,12 @@ /turf/open/floor/plasteel/red/side{ dir = 1 }, -/area/security/checkpoint/customs) +/area/security/checkpoint/checkpoint2) "aCZ" = ( /turf/open/floor/plasteel/red/side{ dir = 5 }, -/area/security/checkpoint/customs) +/area/security/checkpoint/checkpoint2) "aDa" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 @@ -12574,11 +11877,9 @@ /turf/open/floor/plasteel/red/side{ dir = 1 }, -/area/security/checkpoint/customs) +/area/security/checkpoint/checkpoint2) "aDd" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -12598,7 +11899,7 @@ /turf/open/floor/plasteel/red/side{ dir = 1 }, -/area/security/checkpoint/customs) +/area/security/checkpoint/checkpoint2) "aDg" = ( /obj/machinery/biogenerator, /turf/open/floor/plasteel, @@ -12684,19 +11985,36 @@ /turf/open/floor/plasteel, /area/storage/primary) "aDr" = ( -/turf/closed/wall, -/area/crew_quarters/theatre/mime) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/circuit, +/area/ai_monitored/nuke_storage) "aDs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/theatre/mime) +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 1 + }, +/area/ai_monitored/nuke_storage) "aDt" = ( -/turf/closed/wall, -/area/crew_quarters/theatre/clown) +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/circuit, +/area/ai_monitored/nuke_storage) "aDv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/theatre/clown) +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 4 + }, +/area/ai_monitored/nuke_storage) "aDw" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -12706,8 +12024,6 @@ /area/gateway) "aDx" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/window{ @@ -12739,8 +12055,6 @@ /area/maintenance/fore) "aDA" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -12762,8 +12076,6 @@ /area/ai_monitored/storage/eva) "aDD" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -12850,8 +12162,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/freezer, @@ -12874,8 +12184,6 @@ "aDQ" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/freezer, @@ -12906,8 +12214,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/freezer, @@ -12915,8 +12221,6 @@ "aDT" = ( /obj/machinery/light/small, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/freezer, @@ -12926,8 +12230,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/freezer, @@ -12952,6 +12254,7 @@ /area/maintenance/starboard/fore) "aDY" = ( /obj/structure/chair/stool, +/obj/effect/landmark/start/mime, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -12961,8 +12264,6 @@ /area/crew_quarters/theatre) "aDZ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -12975,13 +12276,9 @@ /area/maintenance/starboard/fore) "aEa" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -13020,8 +12317,6 @@ /area/crew_quarters/theatre) "aEd" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -13029,13 +12324,9 @@ /area/maintenance/starboard/fore) "aEe" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -13045,8 +12336,6 @@ /area/maintenance/starboard/fore) "aEf" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -13065,7 +12354,6 @@ pixel_y = -24 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -13202,8 +12490,6 @@ /area/hallway/secondary/entry) "aEA" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/sortjunction{ @@ -13224,8 +12510,6 @@ /area/maintenance/starboard/fore) "aEC" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -13240,13 +12524,9 @@ /area/maintenance/starboard/fore) "aED" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -13262,7 +12542,7 @@ dir = 5 }, /turf/open/floor/plasteel, -/area/security/checkpoint/customs) +/area/security/checkpoint/checkpoint2) "aEF" = ( /obj/structure/table/glass, /obj/item/reagent_containers/food/snacks/grown/wheat, @@ -13281,31 +12561,31 @@ /turf/open/floor/plasteel/red/side{ dir = 8 }, -/area/security/checkpoint/customs) +/area/security/checkpoint/checkpoint2) "aEH" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, /turf/open/floor/plasteel, -/area/security/checkpoint/customs) +/area/security/checkpoint/checkpoint2) "aEI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel, -/area/security/checkpoint/customs) +/area/security/checkpoint/checkpoint2) "aEJ" = ( /turf/open/floor/plasteel/red/side{ dir = 4 }, -/area/security/checkpoint/customs) +/area/security/checkpoint/checkpoint2) "aEK" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/open/floor/plasteel, -/area/security/checkpoint/customs) +/area/security/checkpoint/checkpoint2) "aEL" = ( /obj/machinery/door/airlock{ name = "Garden"; @@ -13338,8 +12618,6 @@ /area/ai_monitored/nuke_storage) "aEO" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/circuit, @@ -13409,8 +12687,6 @@ /area/gateway) "aET" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -13580,8 +12856,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -13591,8 +12865,6 @@ /area/maintenance/starboard/fore) "aFs" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -13609,8 +12881,6 @@ /area/library) "aFv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -13693,10 +12963,10 @@ dir = 1 }, /turf/open/floor/plasteel/red/side, -/area/security/checkpoint/customs) +/area/security/checkpoint/checkpoint2) "aFI" = ( /obj/machinery/camera{ - c_tag = "Customs"; + c_tag = "Security Checkpoint"; dir = 1 }, /obj/machinery/airalarm{ @@ -13713,7 +12983,7 @@ /turf/open/floor/plasteel/red/side{ dir = 10 }, -/area/security/checkpoint/customs) +/area/security/checkpoint/checkpoint2) "aFJ" = ( /obj/machinery/atmospherics/pipe/simple/supplymain/hidden, /obj/effect/landmark/event_spawn, @@ -13730,7 +13000,7 @@ dir = 9 }, /turf/open/floor/plasteel/red/side, -/area/security/checkpoint/customs) +/area/security/checkpoint/checkpoint2) "aFL" = ( /obj/item/device/radio/off, /obj/item/crowbar, @@ -13739,7 +13009,7 @@ /turf/open/floor/plasteel/red/side{ dir = 6 }, -/area/security/checkpoint/customs) +/area/security/checkpoint/checkpoint2) "aFM" = ( /obj/machinery/recharger{ pixel_y = 4 @@ -13796,8 +13066,6 @@ /area/storage/primary) "aFR" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -13825,8 +13093,6 @@ "aFV" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/meter, @@ -13877,8 +13143,6 @@ /area/ai_monitored/nuke_storage) "aGc" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/camera/motion{ @@ -13893,8 +13157,6 @@ /area/ai_monitored/nuke_storage) "aGd" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/vault, @@ -14010,6 +13272,7 @@ /area/ai_monitored/storage/eva) "aGr" = ( /obj/structure/chair/stool, +/obj/effect/landmark/start/clown, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -14053,8 +13316,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, @@ -14062,8 +13323,6 @@ /area/maintenance/starboard/fore) "aGz" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -14071,8 +13330,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -14083,13 +13340,9 @@ /area/maintenance/starboard/fore) "aGA" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/sortjunction{ @@ -14104,8 +13357,6 @@ /area/maintenance/starboard/fore) "aGB" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/sortjunction{ @@ -14124,8 +13375,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -14138,6 +13387,9 @@ /obj/structure/mirror{ pixel_x = -28 }, +/obj/item/device/flashlight/lamp/bananalamp{ + pixel_y = 3 + }, /turf/open/floor/plasteel/redblue, /area/crew_quarters/theatre) "aGE" = ( @@ -14146,8 +13398,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -14180,13 +13430,9 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -14200,8 +13446,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -14214,8 +13458,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -14225,8 +13467,6 @@ /area/maintenance/starboard/fore) "aGL" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -14248,16 +13488,12 @@ /area/maintenance/starboard/fore) "aGN" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -14274,8 +13510,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -14287,8 +13521,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -14298,8 +13530,6 @@ /area/maintenance/starboard/fore) "aGS" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -14312,8 +13542,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -14375,7 +13603,7 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, -/area/security/checkpoint/customs) +/area/security/checkpoint/checkpoint2) "aHa" = ( /obj/machinery/door/firedoor, /obj/structure/table/reinforced, @@ -14436,8 +13664,6 @@ /area/chapel/office) "aHh" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -14457,8 +13683,6 @@ pixel_x = -20 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -14506,8 +13730,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/filingcabinet/chestdrawer, @@ -14553,7 +13775,7 @@ "aHy" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/security/checkpoint/customs) +/area/security/checkpoint/checkpoint2) "aHz" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plasteel/green/side{ @@ -14619,8 +13841,6 @@ req_access_txt = "53" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -14777,8 +13997,7 @@ dir = 4; pixel_x = -22 }, -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/bananalamp, +/obj/structure/closet/crate/wooden/toy, /turf/open/floor/plasteel/redblue, /area/crew_quarters/theatre) "aIa" = ( @@ -14869,8 +14088,6 @@ /area/maintenance/starboard/fore) "aIj" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/sortjunction{ @@ -14895,13 +14112,9 @@ /area/maintenance/starboard/fore) "aIl" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -14919,8 +14132,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -14936,7 +14147,6 @@ pixel_y = -24 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -14947,8 +14157,6 @@ "aIo" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -15223,8 +14431,6 @@ /area/storage/primary) "aJa" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -15241,16 +14447,13 @@ /area/storage/primary) "aJd" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/hallway/primary/port) "aJe" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -15500,7 +14703,6 @@ req_access_txt = "25" }, /obj/effect/turf_decal/delivery, -/obj/effect/landmark/blobstart, /turf/open/floor/plasteel, /area/crew_quarters/bar) "aJI" = ( @@ -15631,8 +14833,6 @@ /area/hallway/secondary/entry) "aJZ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -15652,12 +14852,10 @@ /area/storage/primary) "aKb" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -15672,8 +14870,6 @@ req_access_txt = "62" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -15696,8 +14892,7 @@ /area/chapel/main) "aKf" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/power/apc{ dir = 8; @@ -15706,8 +14901,6 @@ pixel_x = -24 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -15791,57 +14984,58 @@ /turf/open/floor/plating, /area/storage/primary) "aKt" = ( -/obj/machinery/door/airlock/freezer{ - boltDown = null; - boltUp = null; - doorClose = null; - doorDeni = null; - doorOpen = null; - name = "Mime's Office"; - noPower = null; - req_access_txt = "46" +/obj/structure/cable{ + icon_state = "0-4" }, -/turf/open/floor/plasteel/white/side{ - dir = 1 +/obj/structure/cable{ + icon_state = "0-8" }, -/area/crew_quarters/theatre/mime) -"aKu" = ( -/obj/effect/spawner/structure/window, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/crew_quarters/theatre/mime) +/area/hallway/primary/port) +"aKu" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/port) "aKv" = ( /obj/structure/cable, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/hallway/primary/port) "aKw" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, -/turf/open/floor/plating, -/area/maintenance/fore) +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/hallway/primary/port) "aKx" = ( -/obj/effect/spawner/structure/window, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/crew_quarters/theatre/clown) +/area/hallway/primary/port) "aKy" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance{ @@ -15966,13 +15160,6 @@ "aKQ" = ( /obj/machinery/reagentgrinder, /obj/structure/table/wood, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/light/small{ - dir = 8 - }, /turf/open/floor/wood, /area/crew_quarters/bar) "aKR" = ( @@ -16118,8 +15305,6 @@ /area/hallway/secondary/entry) "aLk" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -16128,7 +15313,16 @@ /turf/open/floor/plasteel, /area/hallway/primary/port) "aLl" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 32 + }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, /turf/open/floor/plasteel, /area/hallway/primary/port) "aLm" = ( @@ -16143,8 +15337,6 @@ "aLn" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -16158,8 +15350,6 @@ /area/chapel/office) "aLp" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -16259,8 +15449,7 @@ /area/hallway/primary/port) "aLG" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/power/apc{ name = "Port Hall APC"; @@ -16287,6 +15476,15 @@ /obj/machinery/light{ dir = 1 }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, /turf/open/floor/plasteel, /area/hallway/primary/port) "aLK" = ( @@ -16326,10 +15524,11 @@ /area/hallway/primary/central) "aLP" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, /turf/open/floor/plasteel, /area/hallway/primary/port) "aLQ" = ( @@ -16684,8 +15883,6 @@ /area/hallway/secondary/entry) "aMQ" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -16695,8 +15892,6 @@ /area/hallway/primary/port) "aMR" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -16715,8 +15910,6 @@ "aMU" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -16727,8 +15920,6 @@ /area/hallway/primary/port) "aMV" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -16803,37 +15994,27 @@ /area/hallway/primary/port) "aNk" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/hallway/primary/port) "aNl" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel, /area/hallway/primary/port) "aNm" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/hallway/primary/port) "aNo" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel, @@ -17043,13 +16224,9 @@ /area/library) "aNT" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -17170,8 +16347,6 @@ /area/hallway/secondary/entry) "aOi" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -17209,8 +16384,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -17265,8 +16438,6 @@ /area/hallway/primary/port) "aOt" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light, @@ -17280,8 +16451,6 @@ /area/hallway/primary/port) "aOv" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -17291,8 +16460,6 @@ /area/hallway/primary/port) "aOw" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -17300,8 +16467,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -17309,8 +16474,6 @@ /area/hallway/primary/port) "aOx" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -17320,13 +16483,9 @@ /area/hallway/primary/port) "aOy" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -17552,8 +16711,6 @@ /area/library) "aPc" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -17723,8 +16880,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -17757,8 +16912,6 @@ /area/storage/art) "aPI" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance{ @@ -17814,12 +16967,10 @@ /area/bridge) "aPS" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ @@ -17831,8 +16982,7 @@ /area/bridge) "aPT" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; @@ -17844,11 +16994,9 @@ /area/bridge) "aPU" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/status_display, @@ -17862,16 +17010,13 @@ /area/bridge) "aPV" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ @@ -17883,12 +17028,10 @@ /area/bridge) "aPW" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/status_display, /obj/effect/spawner/structure/window/reinforced, @@ -17901,7 +17044,6 @@ /area/bridge) "aPX" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -18160,8 +17302,6 @@ /area/maintenance/port) "aQM" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -18236,8 +17376,6 @@ /area/storage/art) "aRb" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -18260,8 +17398,6 @@ /area/hallway/secondary/entry) "aRe" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -18308,8 +17444,7 @@ name = "bridge power monitoring console" }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plasteel/yellow/side{ dir = 6 @@ -18339,8 +17474,6 @@ /area/bridge) "aRp" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/computer/shuttle/mining, @@ -18486,8 +17619,6 @@ "aRK" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/power/apc{ @@ -18547,8 +17678,6 @@ /area/chapel/main) "aRT" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/rack, @@ -18574,8 +17703,7 @@ pixel_x = -24 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/table, /obj/item/stack/sheet/glass{ @@ -18746,8 +17874,6 @@ /area/bridge) "aSw" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/yellow/corner{ @@ -18795,8 +17921,6 @@ "aSB" = ( /obj/structure/table/reinforced, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/blue/side{ @@ -18943,8 +18067,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -19099,8 +18221,6 @@ /area/maintenance/port) "aTv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -19186,10 +18306,6 @@ /obj/structure/table, /obj/item/storage/crayons, /obj/item/storage/crayons, -/obj/machinery/camera{ - c_tag = "Art Storage"; - dir = 1 - }, /turf/open/floor/plasteel, /area/storage/art) "aTH" = ( @@ -19274,8 +18390,6 @@ /area/bridge) "aTW" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -19290,8 +18404,6 @@ /area/bridge) "aTZ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/blue/corner{ @@ -19456,8 +18568,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -19586,16 +18696,12 @@ "aUS" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, /area/maintenance/port) "aUT" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plating, @@ -19676,8 +18782,7 @@ /area/bridge) "aVd" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -19720,8 +18825,7 @@ pixel_x = -24 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/camera{ c_tag = "Fore Primary Hallway"; @@ -19741,8 +18845,6 @@ /area/bridge) "aVj" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -19753,13 +18855,9 @@ "aVk" = ( /obj/machinery/holopad, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -19769,8 +18867,6 @@ /area/bridge) "aVl" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -19780,8 +18876,6 @@ /area/bridge) "aVm" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -19791,13 +18885,9 @@ /area/bridge) "aVn" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -19807,13 +18897,9 @@ /area/bridge) "aVo" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -19825,8 +18911,6 @@ "aVp" = ( /obj/item/device/radio/beacon, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -19836,8 +18920,6 @@ /area/bridge) "aVq" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -19865,8 +18947,6 @@ name = "Logistics Station" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -19944,8 +19024,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -20005,8 +19083,6 @@ /area/hydroponics) "aVL" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/sortjunction{ @@ -20205,8 +19281,6 @@ "aWk" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -20279,8 +19353,6 @@ dir = 6 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, @@ -20302,12 +19374,9 @@ dir = 4 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -20315,13 +19384,9 @@ "aWx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plating, @@ -20338,20 +19403,15 @@ pixel_y = 24 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/port) "aWA" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -20408,8 +19468,6 @@ /area/hallway/primary/central) "aWI" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -20423,12 +19481,10 @@ "aWJ" = ( /obj/structure/cable, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/door/airlock/glass_command{ cyclelinkeddir = 4; @@ -20439,8 +19495,6 @@ /area/bridge) "aWK" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -20448,8 +19502,6 @@ /area/bridge) "aWL" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_command{ @@ -20467,8 +19519,6 @@ /area/bridge) "aWN" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -20524,8 +19574,6 @@ /area/bridge) "aWS" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -20611,8 +19659,6 @@ /area/bridge) "aWZ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -20623,13 +19669,9 @@ /area/bridge) "aXa" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -20643,8 +19685,6 @@ /area/bridge) "aXb" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -20660,8 +19700,6 @@ /area/bridge) "aXc" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_command{ @@ -20676,8 +19714,6 @@ /area/bridge) "aXd" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -20690,16 +19726,13 @@ /area/hallway/primary/central) "aXe" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/cable, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/door/airlock/glass_command{ @@ -20720,8 +19753,6 @@ /area/hallway/primary/central) "aXg" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -20976,8 +20007,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -21056,21 +20085,15 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plating, /area/maintenance/port) "aYb" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -21128,8 +20151,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -21214,8 +20235,6 @@ /area/bridge) "aYs" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -21252,8 +20271,6 @@ /area/ai_monitored/turret_protected/ai_upload) "aYw" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -21307,8 +20324,6 @@ /area/bridge) "aYD" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -21490,8 +20505,6 @@ "aZc" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -21682,8 +20695,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -21700,8 +20711,6 @@ pixel_y = 28 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -21764,8 +20773,6 @@ req_access_txt = "19" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -21782,8 +20789,6 @@ /area/ai_monitored/turret_protected/ai_upload) "aZT" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -21808,8 +20813,6 @@ req_access_txt = "20" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -21861,8 +20864,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -21933,8 +20934,6 @@ /area/hydroponics) "bao" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/computer/security/telescreen/entertainment{ @@ -21960,8 +20959,6 @@ pixel_y = 32 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -22042,8 +21039,6 @@ /area/chapel/main) "baC" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -22056,8 +21051,7 @@ pixel_x = -25 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plasteel/escape{ dir = 8 @@ -22065,8 +21059,6 @@ /area/hallway/secondary/exit) "baE" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -22122,8 +21114,6 @@ "baM" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/power/apc{ @@ -22134,8 +21124,7 @@ pixel_y = 2 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plating, /area/maintenance/port) @@ -22171,8 +21160,6 @@ /area/quartermaster/storage) "baT" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -22284,8 +21271,6 @@ /area/bridge/meeting_room) "bbi" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -22375,7 +21360,6 @@ pixel_y = 24 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/wood, @@ -22385,13 +21369,9 @@ pixel_y = 32 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/carpet, @@ -22463,8 +21443,6 @@ /area/hallway/secondary/exit) "bbH" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -22478,29 +21456,22 @@ pixel_x = -24 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plating, /area/maintenance/port) "bbJ" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plating, /area/maintenance/port) "bbK" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -22612,8 +21583,6 @@ /area/bridge/meeting_room) "bcd" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -22631,8 +21600,6 @@ "bcf" = ( /obj/machinery/holopad, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -22660,8 +21627,6 @@ /area/hallway/primary/starboard) "bcj" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/junction{ @@ -22691,8 +21656,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/carpet, @@ -22788,8 +21751,6 @@ /area/hallway/secondary/exit) "bcA" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -22863,8 +21824,6 @@ /area/maintenance/port) "bcL" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/junction{ @@ -22928,8 +21887,9 @@ /turf/closed/wall, /area/quartermaster/storage) "bcU" = ( -/turf/open/floor/wood, -/area/maintenance/bar) +/obj/item/stack/tile/plasteel, +/turf/open/space, +/area/space/nearstation) "bcV" = ( /obj/machinery/airalarm{ dir = 8; @@ -22990,8 +21950,6 @@ /area/bridge/meeting_room) "bde" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -23012,8 +21970,6 @@ /area/ai_monitored/turret_protected/ai_upload) "bdg" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/circuit, @@ -23040,13 +21996,9 @@ "bdl" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -23055,8 +22007,6 @@ "bdm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -23109,8 +22059,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -23164,8 +22112,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -23183,8 +22129,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -23194,8 +22138,6 @@ /area/maintenance/port) "bdC" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/sortjunction{ @@ -23204,8 +22146,6 @@ sortType = 1 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -23218,8 +22158,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment, @@ -23294,8 +22232,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -23313,8 +22249,6 @@ /area/maintenance/disposal) "bdR" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -23334,8 +22268,7 @@ pixel_x = -24 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -23347,9 +22280,9 @@ /turf/open/floor/plasteel/floorgrime, /area/quartermaster/storage) "bdV" = ( -/obj/structure/chair/stool, -/turf/open/floor/wood, -/area/maintenance/bar) +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/airless, +/area/space/nearstation) "bdW" = ( /obj/item/clothing/gloves/color/rainbow, /obj/item/clothing/head/soft/rainbow, @@ -23373,8 +22306,6 @@ /area/bridge/meeting_room) "bdZ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -23495,8 +22426,6 @@ /area/maintenance/port) "bem" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/carpet, @@ -23574,8 +22503,6 @@ /area/hallway/primary/starboard) "bew" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -23583,8 +22510,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -23614,8 +22539,6 @@ /area/hallway/primary/starboard) "bez" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel, @@ -23634,16 +22557,12 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/hallway/primary/starboard) "beC" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel, @@ -23694,8 +22613,6 @@ "beJ" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -23868,8 +22785,7 @@ pixel_y = 24 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 @@ -23893,8 +22809,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -23938,12 +22852,9 @@ pixel_y = -24 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plating, @@ -24032,13 +22943,6 @@ pixel_y = 7 }, /obj/item/pen, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Captain's Desk"; - departmentType = 5; - name = "Captain RC"; - pixel_x = -30 - }, /turf/open/floor/wood, /area/crew_quarters/heads/captain) "bfz" = ( @@ -24067,8 +22971,6 @@ /area/crew_quarters/heads/captain) "bfD" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/wood, @@ -24115,8 +23017,6 @@ /area/medical/morgue) "bfM" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -24229,8 +23129,6 @@ "bge" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -24304,8 +23202,6 @@ "bgo" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/power/apc{ @@ -24315,8 +23211,7 @@ pixel_x = 26 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, @@ -24327,8 +23222,6 @@ /area/science/research) "bgq" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -24374,8 +23267,6 @@ /area/quartermaster/office) "bgw" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -24520,7 +23411,7 @@ dir = 4 }, /turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) +/area/engine/gravity_generator) "bgS" = ( /obj/machinery/requests_console{ announcementConsole = 1; @@ -24553,8 +23444,6 @@ /area/crew_quarters/heads/captain) "bgW" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/holopad, @@ -24587,8 +23476,7 @@ pixel_y = 24 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/smoke_machine, /turf/open/floor/plasteel/white, @@ -24711,8 +23599,7 @@ pixel_y = 24 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plasteel/black, /area/medical/morgue) @@ -24759,8 +23646,6 @@ dir = 10 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -24885,8 +23770,6 @@ req_access_txt = "12" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -24947,8 +23830,6 @@ /area/maintenance/port) "bhO" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -25083,9 +23964,6 @@ /area/bridge/meeting_room) "bif" = ( /obj/machinery/vending/cigarette, -/obj/machinery/light{ - dir = 4 - }, /turf/open/floor/wood, /area/bridge/meeting_room) "big" = ( @@ -25131,8 +24009,6 @@ /area/crew_quarters/heads/captain) "bin" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/white, @@ -25232,8 +24108,6 @@ /area/quartermaster/storage) "biB" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -25265,8 +24139,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel, @@ -25277,25 +24149,18 @@ dir = 2 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plating, /area/science/robotics/mechbay) "biH" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel, @@ -25303,16 +24168,12 @@ "biI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/circuit, /area/science/robotics/mechbay) "biJ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/circuit, @@ -25320,8 +24181,6 @@ "biK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -25442,8 +24301,6 @@ "biY" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -25511,8 +24368,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -25533,8 +24388,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -25544,8 +24397,6 @@ /area/maintenance/port) "bjk" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -25558,13 +24409,9 @@ /area/maintenance/port) "bjl" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -25634,8 +24481,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -25666,16 +24511,12 @@ dir = 9 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/quartermaster/sorting) "bjx" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -25684,13 +24525,16 @@ /turf/open/floor/plasteel, /area/hallway/primary/central) "bjy" = ( +/obj/machinery/camera{ + c_tag = "Gravity Generator Room"; + dir = 8; + network = list("SS13") + }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/ai_monitored/nuke_storage) +/turf/open/floor/plasteel/black, +/area/engine/gravity_generator) "bjz" = ( /turf/closed/wall/r_wall, /area/maintenance/central) @@ -25735,8 +24579,6 @@ /area/crew_quarters/heads/captain) "bjH" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/firealarm{ @@ -25747,24 +24589,18 @@ /area/crew_quarters/heads/captain) "bjI" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/wood, /area/crew_quarters/heads/captain) "bjJ" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/wood, /area/crew_quarters/heads/captain) "bjK" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, @@ -25776,8 +24612,6 @@ /area/medical/chemistry) "bjM" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -25801,7 +24635,6 @@ "bjP" = ( /obj/machinery/computer/mech_bay_power_console, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel, @@ -25960,8 +24793,6 @@ dir = 5 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -25997,8 +24828,6 @@ /area/science/robotics/lab) "bkp" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -26065,8 +24894,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -26145,8 +24972,6 @@ req_access_txt = "31" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -26171,8 +24996,6 @@ /area/quartermaster/storage) "bkK" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -26215,8 +25038,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -26229,8 +25050,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/small, @@ -26242,8 +25061,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light_switch{ @@ -26267,8 +25084,6 @@ req_access_txt = "12" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -26278,13 +25093,9 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -26296,8 +25107,6 @@ "bkV" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -26307,8 +25116,6 @@ /area/maintenance/fore/secondary) "bkW" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -26321,7 +25128,6 @@ pixel_x = 24 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -26329,13 +25135,9 @@ "bkY" = ( /obj/effect/landmark/blobstart, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plating, @@ -26351,8 +25153,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -26379,8 +25179,6 @@ req_access_txt = "20" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -26417,8 +25215,6 @@ req_access_txt = "6" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -26485,8 +25281,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/power/apc{ @@ -26496,8 +25290,7 @@ pixel_y = 24 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -26512,8 +25305,7 @@ pixel_x = -25 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plasteel/red/side{ dir = 8 @@ -26521,13 +25313,9 @@ /area/security/checkpoint/medical) "blq" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/sortjunction{ @@ -26565,20 +25353,15 @@ "blu" = ( /obj/machinery/computer/mech_bay_power_console, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plasteel, /area/science/robotics/mechbay) "blv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/holopad, @@ -26605,8 +25388,6 @@ pixel_x = -23 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -26614,8 +25395,6 @@ /area/science/robotics/lab) "blz" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -26770,18 +25549,9 @@ /area/maintenance/disposal) "blT" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) "blU" = ( @@ -26853,8 +25623,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -26866,8 +25634,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plating, @@ -26881,8 +25647,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plating, @@ -26907,8 +25671,6 @@ /area/quartermaster/storage) "bmh" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -26922,8 +25684,6 @@ /area/quartermaster/sorting) "bmj" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -26947,8 +25707,6 @@ /area/quartermaster/office) "bmm" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -26991,8 +25749,6 @@ req_access_txt = "57" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -27001,8 +25757,6 @@ /area/crew_quarters/heads/hop) "bmt" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/brown{ @@ -27014,15 +25768,13 @@ dir = 8 }, /turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) +/area/engine/gravity_generator) "bmv" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, -/turf/open/floor/plasteel/vault{ - dir = 1 - }, -/area/ai_monitored/nuke_storage) +/turf/open/floor/plasteel/black, +/area/engine/gravity_generator) "bmw" = ( /obj/machinery/light{ dir = 4 @@ -27080,8 +25832,6 @@ /area/crew_quarters/heads/captain) "bmD" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -27112,8 +25862,6 @@ req_access_txt = "31" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -27170,8 +25918,6 @@ /area/medical/medbay/central) "bmN" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -27185,8 +25931,6 @@ /area/security/checkpoint/medical) "bmP" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -27233,8 +25977,6 @@ req_access_txt = "6;5" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -27265,8 +26007,6 @@ "bna" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -27305,8 +26045,6 @@ /area/science/lab) "bnh" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/white, @@ -27352,8 +26090,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/stripes/corner{ @@ -27383,7 +26119,6 @@ pixel_x = 26 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/white, @@ -27460,8 +26195,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plating, @@ -27472,8 +26205,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, @@ -27495,8 +26226,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -27530,14 +26259,10 @@ "bnE" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -27598,8 +26323,6 @@ /area/quartermaster/sorting) "bnM" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -27666,8 +26389,6 @@ /area/crew_quarters/heads/hop) "bnS" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -27682,16 +26403,13 @@ pixel_x = -32 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/engine/gravity_generator) "bnU" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_engineering{ @@ -27703,12 +26421,10 @@ /area/engine/gravity_generator) "bnV" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -27721,11 +26437,9 @@ pixel_x = 32 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -27773,8 +26487,6 @@ /area/medical/chemistry) "boc" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -27849,8 +26561,6 @@ req_access_txt = "63" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -28007,8 +26717,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -28032,8 +26740,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -28129,8 +26835,6 @@ /area/quartermaster/office) "boV" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -28235,32 +26939,41 @@ "bpf" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/crew_quarters/heads/hop) "bpg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/obj/structure/chair/office/light, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) "bph" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) +/turf/open/floor/plasteel, +/area/engine/gravity_generator) "bpi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) "bpj" = ( /obj/structure/chair/comfy/brown{ dir = 4 @@ -28314,8 +27027,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/white, @@ -28389,8 +27100,6 @@ /area/medical/medbay/central) "bpx" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -28419,8 +27128,6 @@ "bpB" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -28439,8 +27146,6 @@ req_access_txt = "5; 33" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -28468,8 +27173,7 @@ pixel_y = 24 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plasteel/white, /area/medical/genetics) @@ -28533,8 +27237,6 @@ /area/medical/medbay/central) "bpP" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -28544,8 +27246,6 @@ /area/medical/medbay/central) "bpQ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -28708,8 +27408,6 @@ "bqk" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/heavy, @@ -28764,16 +27462,12 @@ /area/quartermaster/sorting) "bqq" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/carpet, /area/crew_quarters/heads/hop) "bqr" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -28802,8 +27496,7 @@ /area/hallway/primary/central) "bqx" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/door/poddoor/shutters/preopen{ id = "hop"; @@ -28836,8 +27529,6 @@ pixel_x = 24 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -28846,8 +27537,7 @@ /area/crew_quarters/heads/hop) "bqD" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/power/apc{ dir = 8; @@ -28869,26 +27559,19 @@ /area/engine/gravity_generator) "bqE" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + icon_state = "4-8" }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/hallway/primary/central) +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) "bqF" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "4-8" }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/hallway/primary/central) +/turf/open/floor/plasteel, +/area/engine/gravity_generator) "bqG" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable, @@ -28917,8 +27600,6 @@ pixel_x = -32 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -28943,8 +27624,6 @@ /area/hallway/primary/central) "bqO" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -28982,8 +27661,6 @@ /area/medical/medbay/central) "bqS" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -28996,8 +27673,6 @@ "bqT" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, @@ -29007,8 +27682,6 @@ /area/medical/medbay/central) "bqU" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/noticeboard{ @@ -29026,8 +27699,6 @@ /area/medical/medbay/central) "bqV" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -29039,8 +27710,6 @@ /area/medical/medbay/central) "bqW" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -29050,8 +27719,6 @@ /area/medical/medbay/central) "bqX" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -29061,8 +27728,6 @@ /area/medical/medbay/central) "bqY" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -29070,8 +27735,6 @@ /area/medical/medbay/central) "bqZ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/white, @@ -29106,21 +27769,15 @@ /area/medical/genetics) "brf" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) "brg" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment, @@ -29128,8 +27785,6 @@ /area/medical/medbay/central) "brh" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/whiteblue/corner{ @@ -29152,8 +27807,6 @@ /area/medical/medbay/central) "brk" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -29198,8 +27851,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -29268,8 +27919,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -29282,8 +27931,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -29308,8 +27955,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -29375,8 +28020,6 @@ "brF" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/sign/securearea{ @@ -29462,13 +28105,9 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -29478,13 +28117,9 @@ /area/science/explab) "brQ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/junction{ @@ -29499,8 +28134,6 @@ "brR" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, @@ -29517,8 +28150,7 @@ pixel_y = -32 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/cable, /obj/machinery/door/poddoor/shutters/preopen{ @@ -29538,8 +28170,6 @@ /area/medical/medbay/central) "brW" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/vending/cart, @@ -29569,14 +28199,10 @@ /area/medical/medbay/central) "brZ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -29589,21 +28215,20 @@ /turf/closed/wall/r_wall, /area/engine/gravity_generator) "bsb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, /turf/closed/wall/r_wall, -/area/security/checkpoint/checkpoint2) +/area/engine/gravity_generator) "bsc" = ( /turf/open/floor/plasteel, /area/engine/gravity_generator) "bsd" = ( -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/hallway/primary/central) +/turf/open/floor/plasteel, +/area/engine/gravity_generator) "bse" = ( /obj/machinery/power/terminal{ dir = 1 @@ -29614,15 +28239,11 @@ /turf/closed/wall/r_wall, /area/engine/gravity_generator) "bsf" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/hallway/primary/central) +/turf/open/floor/plasteel, +/area/engine/gravity_generator) "bsg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -29703,8 +28324,6 @@ pixel_x = 27 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -29777,8 +28396,6 @@ /area/medical/genetics) "bsv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -29794,16 +28411,12 @@ /area/science/robotics/lab) "bsx" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) "bsy" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -29831,8 +28444,6 @@ /area/science/research) "bsD" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -29842,8 +28453,6 @@ /area/science/research) "bsE" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/heavy, @@ -29858,8 +28467,6 @@ /area/science/explab) "bsF" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -29913,8 +28520,6 @@ /area/medical/genetics) "bsM" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -29972,8 +28577,6 @@ /area/maintenance/port/fore) "bsV" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -30108,8 +28711,6 @@ sortType = 12 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -30276,8 +28877,6 @@ /area/crew_quarters/heads/hop) "btE" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -30301,8 +28900,6 @@ /area/engine/gravity_generator) "btH" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/chair/stool, @@ -30317,15 +28914,12 @@ pixel_x = -24 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plasteel, /area/teleporter) "btJ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/bluespace_beacon, @@ -30334,16 +28928,12 @@ "btK" = ( /obj/machinery/holopad, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/teleporter) "btL" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -30355,29 +28945,21 @@ req_access_txt = "17" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/teleporter) "btN" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel, /area/teleporter) "btO" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment, @@ -30501,8 +29083,7 @@ pixel_y = -24 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/brown/corner{ @@ -30577,8 +29158,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -30593,8 +29172,6 @@ "bup" = ( /obj/machinery/light, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -30614,8 +29191,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -30625,8 +29200,6 @@ /area/medical/genetics) "bus" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -30639,8 +29212,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -30652,8 +29223,6 @@ "buu" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -30669,8 +29238,6 @@ /area/science/explab) "buw" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -30683,8 +29250,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -30699,18 +29264,12 @@ sortType = 23 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, @@ -30718,8 +29277,6 @@ /area/medical/genetics) "buz" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -30769,8 +29326,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -30791,8 +29346,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -30826,8 +29379,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -30858,46 +29409,50 @@ /turf/open/floor/plasteel, /area/crew_quarters/heads/hop) "buP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/checkpoint2) -"buQ" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/closed/wall, +/area/engine/gravity_generator) +"buQ" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"buR" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/checkpoint2) -"buR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/checkpoint2) +/turf/closed/wall, +/area/engine/gravity_generator) "buS" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Gravity Generator Foyer" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 }, /turf/open/floor/plasteel, -/area/security/checkpoint/checkpoint2) +/area/engine/gravity_generator) "buT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -30912,8 +29467,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/heavy, @@ -30956,8 +29509,6 @@ /area/teleporter) "bva" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/sign/securearea{ @@ -30973,13 +29524,9 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -30992,8 +29539,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light, @@ -31013,13 +29558,9 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -31042,8 +29583,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, @@ -31175,8 +29714,6 @@ "bvz" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -31211,8 +29748,6 @@ /area/security/checkpoint/science) "bvD" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -31267,8 +29802,6 @@ "bvI" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -31409,10 +29942,8 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, /turf/open/floor/plasteel, /area/hallway/primary/central) @@ -31428,13 +29959,9 @@ "bwc" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -31468,10 +29995,16 @@ }, /area/hallway/primary/central) "bwh" = ( +/obj/structure/sign/securearea{ + pixel_y = 32 + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, /turf/open/floor/plasteel, /area/hallway/primary/central) "bwi" = ( @@ -31502,8 +30035,6 @@ /area/crew_quarters/heads/hop) "bwl" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -31513,26 +30044,39 @@ /turf/open/floor/plasteel, /area/crew_quarters/heads/hop) "bwm" = ( -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/checkpoint2) -"bwn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/turf/closed/wall, +/area/engine/gravity_generator) +"bwn" = ( +/obj/structure/closet/radiation, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = -32 }, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/checkpoint2) +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) "bwo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall, /area/engine/gravity_generator) "bwp" = ( -/obj/structure/chair/office/dark, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/checkpoint2) +/obj/structure/closet/radiation, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) "bwq" = ( /obj/machinery/teleport/station, /turf/open/floor/plating, @@ -31553,8 +30097,6 @@ /area/teleporter) "bwu" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -31697,8 +30239,6 @@ /area/medical/genetics) "bwM" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -31750,8 +30290,6 @@ /area/crew_quarters/heads/hor) "bwS" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -31769,8 +30307,6 @@ req_access_txt = "41" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -31783,8 +30319,6 @@ /area/quartermaster/qm) "bwU" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -31799,8 +30333,6 @@ /area/quartermaster/qm) "bwV" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -31818,13 +30350,9 @@ dir = 4 }, /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/supply/hidden{ @@ -31834,13 +30362,9 @@ /area/quartermaster/miningdock) "bwX" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/sortjunction{ @@ -31893,8 +30417,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -31907,8 +30429,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -31922,8 +30442,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -32036,8 +30554,6 @@ /obj/machinery/meter, /obj/machinery/atmospherics/pipe/simple/general/visible, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, @@ -32075,8 +30591,6 @@ /area/quartermaster/miningdock) "bxA" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -32126,8 +30640,6 @@ /area/security/checkpoint/supply) "bxF" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -32147,83 +30659,36 @@ req_access_txt = "57" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/crew_quarters/heads/hop) "bxH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "vault"; - name = "vault shutters" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/security/checkpoint/checkpoint2) +/turf/closed/wall, +/area/engine/gravity_generator) "bxI" = ( -/obj/machinery/door/airlock/security{ - name = "Security Checkpoint"; - req_access = null; - req_access_txt = "1" +/obj/machinery/ai_status_display, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/checkpoint2) +/turf/closed/wall, +/area/engine/gravity_generator) "bxJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "vault"; - name = "vault shutters" +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/checkpoint/checkpoint2) +/turf/closed/wall, +/area/engine/gravity_generator) "bxK" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/item/paper, -/obj/machinery/door/window/westright{ - dir = 1; - name = "Security Checkpoint"; - req_access_txt = "1" +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "vault"; - name = "vault shutters" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) +/turf/closed/wall, +/area/engine/gravity_generator) "bxL" = ( /obj/machinery/camera{ c_tag = "Central Hallway South-East"; @@ -32236,7 +30701,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/red/side, -/area/security/checkpoint/customs) +/area/security/checkpoint/checkpoint2) "bxN" = ( /obj/structure/sink{ dir = 8; @@ -32256,8 +30721,6 @@ /area/medical/sleeper) "bxP" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -32304,8 +30767,6 @@ req_access_txt = "30" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -32402,8 +30863,6 @@ req_access_txt = "30" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -32417,8 +30876,6 @@ req_access_txt = "63" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -32559,8 +31016,7 @@ pixel_y = 24 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plasteel/brown{ dir = 1 @@ -32599,16 +31055,13 @@ pixel_y = 24 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plasteel, /area/quartermaster/miningdock) "byG" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -32702,8 +31155,6 @@ /area/hallway/primary/central) "byR" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -32731,11 +31182,6 @@ /area/security/checkpoint/supply) "byU" = ( /obj/machinery/light, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /turf/open/floor/plasteel, /area/hallway/primary/central) "byV" = ( @@ -32743,11 +31189,6 @@ pixel_x = 5; pixel_y = -32 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /turf/open/floor/plasteel, /area/hallway/primary/central) "byW" = ( @@ -32941,8 +31382,6 @@ dir = 10 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/black, @@ -32982,7 +31421,6 @@ pixel_y = 25 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/black, @@ -33009,8 +31447,6 @@ /area/science/research) "bzB" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -33130,16 +31566,12 @@ /area/quartermaster/qm) "bzQ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/quartermaster/qm) "bzR" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel, @@ -33155,8 +31587,6 @@ /obj/structure/chair/office/dark, /obj/effect/landmark/start/quartermaster, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -33195,8 +31625,6 @@ "bAa" = ( /obj/machinery/door/firedoor/heavy, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -33212,8 +31640,6 @@ /area/quartermaster/miningdock) "bAc" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -33242,8 +31668,6 @@ location = "QM" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -33259,11 +31683,6 @@ }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /turf/open/floor/plasteel, /area/hallway/primary/central) "bAh" = ( @@ -33301,8 +31720,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -33319,8 +31736,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -33333,8 +31748,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/power/apc{ @@ -33345,8 +31758,7 @@ pixel_y = 24 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -33419,8 +31831,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -33490,16 +31900,12 @@ /area/security/checkpoint/science) "bAF" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel, /area/security/checkpoint/science) "bAG" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel, @@ -33513,8 +31919,6 @@ /area/security/checkpoint/science) "bAI" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -33532,8 +31936,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -33547,13 +31949,9 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -33730,13 +32128,9 @@ /area/security/checkpoint/supply) "bBg" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel, @@ -33744,8 +32138,6 @@ "bBh" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/brown/corner{ @@ -33754,8 +32146,6 @@ /area/hallway/primary/central) "bBi" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -33766,8 +32156,6 @@ pixel_y = -22 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -33775,8 +32163,6 @@ "bBk" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/camera{ @@ -33787,15 +32173,8 @@ /area/hallway/primary/central) "bBl" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /turf/open/floor/plasteel, /area/hallway/primary/central) "bBm" = ( @@ -33855,11 +32234,6 @@ pixel_x = -32; pixel_y = -32 }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, /turf/open/floor/plasteel, /area/hallway/primary/central) "bBr" = ( @@ -33928,8 +32302,6 @@ /area/hallway/primary/central) "bBz" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -33939,8 +32311,6 @@ /area/hallway/primary/central) "bBA" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/junction{ @@ -33951,8 +32321,6 @@ /area/hallway/primary/central) "bBB" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -33978,14 +32346,10 @@ /area/science/research) "bBE" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/white, @@ -34266,8 +32630,6 @@ dir = 5 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plating, @@ -34278,8 +32640,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -34314,8 +32674,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -34358,8 +32716,6 @@ /area/janitor) "bCx" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -34377,8 +32733,6 @@ req_access_txt = "12" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -34682,8 +33036,6 @@ "bDm" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -34744,8 +33096,6 @@ "bDu" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -34799,8 +33149,7 @@ pixel_y = 24 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plating, /area/storage/tech) @@ -34819,7 +33168,6 @@ pixel_x = 26 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -34923,8 +33271,6 @@ /area/medical/medbay/central) "bDO" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, @@ -34945,8 +33291,6 @@ "bDQ" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plating, @@ -34976,8 +33320,6 @@ /area/crew_quarters/heads/cmo) "bDV" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/sortjunction{ @@ -34999,8 +33341,6 @@ /area/medical/sleeper) "bDY" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/xeno_spawn, @@ -35021,8 +33361,6 @@ /area/medical/sleeper) "bEb" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -35032,8 +33370,6 @@ /area/science/storage) "bEc" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/floorgrime, @@ -35060,8 +33396,6 @@ /area/medical/medbay/central) "bEf" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -35073,8 +33407,6 @@ /area/science/research) "bEg" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/research{ @@ -35160,8 +33492,7 @@ pixel_x = -25 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plasteel/white/side{ dir = 5 @@ -35170,8 +33501,6 @@ "bEr" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -35278,8 +33607,6 @@ /area/science/mixing) "bEE" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -35301,8 +33628,6 @@ /area/maintenance/starboard) "bEG" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -35319,8 +33644,6 @@ /area/science/mixing) "bEI" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -35337,8 +33660,6 @@ req_access_txt = "12" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -35369,8 +33690,6 @@ /area/science/mixing) "bEN" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -35402,13 +33721,9 @@ /area/quartermaster/miningdock) "bER" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -35422,8 +33737,6 @@ /area/maintenance/port/aft) "bET" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -35433,39 +33746,32 @@ /area/storage/tech) "bEU" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/storage/tech) "bEV" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/storage/tech) "bEW" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -35479,7 +33785,6 @@ /area/storage/tech) "bEY" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -35500,16 +33805,12 @@ /area/storage/tech) "bFb" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, /area/storage/tech) "bFc" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/blobstart, @@ -35531,8 +33832,6 @@ req_access_txt = "23" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -35551,8 +33850,6 @@ /area/janitor) "bFh" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -35570,8 +33867,6 @@ "bFj" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/scrubbers, @@ -35586,8 +33881,6 @@ /area/janitor) "bFl" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/power/apc{ @@ -35597,8 +33890,7 @@ pixel_x = -24 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plating, /area/maintenance/aft) @@ -35886,8 +34178,6 @@ req_one_access_txt = "8;12" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -36001,8 +34291,6 @@ "bGq" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -36010,8 +34298,7 @@ /area/maintenance/port/aft) "bGr" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/cable, /obj/effect/spawner/structure/window/reinforced, @@ -36023,8 +34310,6 @@ dir = 2 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -36077,8 +34362,6 @@ /obj/item/circuitboard/machine/destructive_analyzer, /obj/item/circuitboard/machine/protolathe, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/circuitboard/computer/aifixer, @@ -36142,8 +34425,6 @@ /area/janitor) "bGC" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/heavy, @@ -36170,8 +34451,6 @@ /area/janitor) "bGF" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -36181,13 +34460,9 @@ /area/science/mixing) "bGG" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -36199,21 +34474,15 @@ /area/science/mixing) "bGH" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, /area/maintenance/aft) "bGI" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment, @@ -36221,16 +34490,12 @@ /area/maintenance/aft) "bGJ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/aft) "bGK" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -36256,13 +34521,9 @@ /area/quartermaster/miningdock) "bGN" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -36272,8 +34533,6 @@ /area/hallway/primary/aft) "bGO" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -36290,8 +34549,6 @@ /area/hallway/primary/aft) "bGP" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -36413,8 +34670,7 @@ pixel_x = -25 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/camera{ c_tag = "Toxins Storage"; @@ -36450,8 +34706,6 @@ /area/storage/tech) "bHj" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -36501,8 +34755,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -36511,8 +34763,6 @@ "bHq" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -36655,8 +34905,6 @@ /area/storage/tech) "bHH" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -36667,16 +34915,12 @@ req_access_txt = "19;23" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/storage/tech) "bHJ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/xeno_spawn, @@ -36771,8 +35015,6 @@ /area/medical/medbay/central) "bHU" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/grille/broken, @@ -36786,8 +35028,7 @@ pixel_x = -24 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plating, /area/maintenance/aft) @@ -36805,8 +35046,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -36820,8 +35059,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold4w/scrubbers, @@ -36867,8 +35104,6 @@ /area/hallway/primary/aft) "bIf" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/doorButtons/access_button{ @@ -36893,13 +35128,9 @@ /area/medical/virology) "bIg" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/sortjunction{ @@ -36917,13 +35148,9 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -37065,8 +35292,6 @@ req_access_txt = "55" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -37079,13 +35304,9 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -37098,8 +35319,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -37179,8 +35398,6 @@ /area/science/research) "bIF" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, @@ -37232,8 +35449,6 @@ /area/medical/virology) "bIL" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -37244,8 +35459,6 @@ "bIM" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/sign/securearea{ @@ -37276,8 +35489,6 @@ /area/science/xenobiology) "bIQ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/holopad, @@ -37417,8 +35628,6 @@ /area/maintenance/port/aft) "bJg" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -37524,8 +35733,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance{ @@ -37546,8 +35753,6 @@ /area/science/research) "bJs" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -37560,8 +35765,6 @@ /area/maintenance/aft) "bJt" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -37578,13 +35781,9 @@ /area/construction) "bJv" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -37597,16 +35796,12 @@ /area/maintenance/aft) "bJw" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -37622,8 +35817,6 @@ /area/hallway/primary/central) "bJy" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -37688,24 +35881,20 @@ /area/medical/medbay/central) "bJH" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/shieldwallgen/xenobiologyaccess, /turf/open/floor/plating, /area/science/xenobiology) "bJI" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/door/poddoor/preopen{ id = "misclab"; @@ -37716,8 +35905,7 @@ /area/science/xenobiology) "bJJ" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/door/poddoor/preopen{ id = "misclab"; @@ -37729,12 +35917,10 @@ "bJK" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/door/poddoor/preopen{ id = "misclab"; @@ -37750,8 +35936,6 @@ req_access_txt = "55" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/poddoor/preopen{ @@ -37762,7 +35946,6 @@ /area/science/xenobiology) "bJM" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/door/poddoor/preopen{ @@ -37783,13 +35966,8 @@ /turf/open/floor/plasteel, /area/science/misc_lab) "bJP" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/soap/nanotrasen, -/turf/open/floor/plating, +/obj/machinery/vending/boozeomat, +/turf/open/floor/plasteel/bar, /area/maintenance/port/aft) "bJQ" = ( /obj/effect/spawner/structure/window/reinforced, @@ -37895,8 +36073,6 @@ /area/science/mixing) "bKb" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -38011,8 +36187,7 @@ /area/quartermaster/miningdock) "bKr" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/cable, /obj/effect/spawner/structure/window/reinforced, @@ -38020,11 +36195,9 @@ /area/storage/tech) "bKs" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable, @@ -38106,13 +36279,9 @@ /area/maintenance/aft) "bKD" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -38139,8 +36308,6 @@ /area/quartermaster/sorting) "bKG" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/sign/securearea{ @@ -38156,8 +36323,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -38172,8 +36337,6 @@ sortType = 11 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -38187,8 +36350,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -38199,7 +36360,6 @@ "bKK" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -38217,13 +36377,9 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -38294,8 +36450,7 @@ pixel_y = 24 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -38320,8 +36475,6 @@ /area/construction) "bKV" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -38335,8 +36488,6 @@ "bKW" = ( /obj/item/wrench, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -38353,8 +36504,6 @@ }, /obj/structure/table/reinforced, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/window/reinforced{ @@ -38402,8 +36551,6 @@ /area/science/xenobiology) "bLb" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -38448,8 +36595,6 @@ /area/science/xenobiology) "bLf" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -38572,8 +36717,6 @@ /area/maintenance/port/aft) "bLw" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -38657,7 +36800,6 @@ pixel_y = -24 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel, @@ -38703,8 +36845,6 @@ /area/engine/atmos) "bLO" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -38734,8 +36874,6 @@ "bLT" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -38781,8 +36919,6 @@ /area/medical/virology) "bLZ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -38798,8 +36934,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -38816,8 +36950,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -38830,13 +36962,9 @@ dir = 4 }, /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/scrubbers/hidden{ @@ -38846,14 +36974,10 @@ /area/maintenance/aft) "bMe" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/junction, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -38880,21 +37004,16 @@ pixel_x = -25 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plasteel/white, /area/science/xenobiology) "bMh" = ( /obj/structure/chair/stool, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/white, @@ -38910,8 +37029,6 @@ /area/maintenance/port/aft) "bMk" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/white, @@ -39094,13 +37211,9 @@ /area/shuttle/mining) "bMG" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel, @@ -39151,8 +37264,6 @@ /area/engine/atmos) "bMO" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -39275,8 +37386,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -39328,13 +37437,9 @@ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -39347,8 +37452,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -39556,8 +37659,6 @@ /area/quartermaster/office) "bNN" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -39781,8 +37882,6 @@ /area/medical/virology) "bOq" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/white, @@ -39991,8 +38090,7 @@ pixel_x = -24 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/newscaster{ pixel_y = 32 @@ -40100,8 +38198,6 @@ /area/engine/atmos) "bOZ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -40361,8 +38457,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/white, @@ -40494,9 +38588,8 @@ /turf/open/floor/plasteel, /area/tcommsat/computer) "bPR" = ( -/obj/item/shard, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, +/obj/effect/decal/cleanable/robot_debris/old, +/turf/open/floor/wood, /area/maintenance/port/aft) "bPS" = ( /turf/open/floor/wood, @@ -40511,7 +38604,13 @@ /turf/open/floor/plating, /area/maintenance/port/aft) "bPV" = ( -/obj/effect/decal/cleanable/blood/old, +/obj/machinery/door/airlock/maintenance{ + name = "Maint Bar Access"; + req_access_txt = "12" + }, +/obj/structure/barricade/wooden{ + name = "wooden barricade (CLOSED)" + }, /turf/open/floor/plating, /area/maintenance/port/aft) "bPW" = ( @@ -40568,8 +38667,6 @@ req_access_txt = "10" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/device/radio/off, @@ -40649,8 +38746,6 @@ /area/engine/atmos) "bQp" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -40813,8 +38908,6 @@ /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -40862,8 +38955,6 @@ "bQQ" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -40946,11 +39037,11 @@ /turf/open/floor/plating, /area/maintenance/starboard/aft) "bRc" = ( -/obj/machinery/door/airlock{ - id_tag = "MaintDorm1"; - name = "Maintenance Dorm 1" +/obj/structure/table/wood, +/obj/item/soap/nanotrasen, +/turf/open/floor/wood{ + icon_state = "wood-broken7" }, -/turf/open/floor/wood, /area/maintenance/port/aft) "bRd" = ( /obj/structure/table, @@ -40994,8 +39085,6 @@ /area/engine/break_room) "bRj" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -41005,8 +39094,6 @@ /area/engine/break_room) "bRk" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -41028,8 +39115,6 @@ req_access_txt = "63" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -41150,8 +39235,6 @@ dir = 6 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -41256,8 +39339,6 @@ /area/medical/virology) "bRP" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -41320,8 +39401,7 @@ dir = 4 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/door/poddoor/preopen{ id = "xenobio3"; @@ -41333,13 +39413,9 @@ "bRX" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/white, @@ -41348,8 +39424,6 @@ /obj/structure/window/reinforced, /obj/structure/table/reinforced, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/button/door{ @@ -41365,19 +39439,15 @@ /area/science/xenobiology) "bRZ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/white, /area/science/xenobiology) "bSa" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/door/poddoor/preopen{ @@ -41452,8 +39522,6 @@ /area/science/misc_lab) "bSl" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -41465,8 +39533,6 @@ /area/maintenance/starboard/aft) "bSm" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -41483,28 +39549,12 @@ /turf/open/floor/wood, /area/maintenance/port/aft) "bSo" = ( -/obj/machinery/button/door{ - id = "MaintDorm1"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - req_access_txt = "0"; - specialfunctions = 4 - }, +/obj/structure/chair/stool, /turf/open/floor/wood, /area/maintenance/port/aft) "bSp" = ( -/obj/machinery/button/door{ - id = "MaintDorm2"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - req_access_txt = "0"; - specialfunctions = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/obj/structure/grille/broken, +/turf/open/floor/plating, /area/maintenance/port/aft) "bSq" = ( /obj/structure/rack{ @@ -41552,8 +39602,6 @@ /area/construction) "bSw" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -41679,8 +39727,6 @@ "bSI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -41779,8 +39825,6 @@ /area/medical/virology) "bSV" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/firealarm{ @@ -41790,8 +39834,6 @@ /area/medical/virology) "bSW" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -41807,7 +39849,6 @@ pixel_y = 24 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/camera{ @@ -41844,8 +39885,6 @@ req_access_txt = "55" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/poddoor/preopen{ @@ -41857,8 +39896,6 @@ "bTc" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/white, @@ -41879,8 +39916,6 @@ /area/science/xenobiology) "bTe" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/window/northleft{ @@ -41908,8 +39943,6 @@ /area/science/misc_lab) "bTg" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -42009,8 +40042,6 @@ /area/science/misc_lab) "bTr" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -42023,31 +40054,33 @@ }, /area/maintenance/port/aft) "bTt" = ( -/obj/structure/closet/secure_closet/personal, /obj/machinery/atmospherics/pipe/simple/general/hidden{ dir = 4 }, -/turf/open/floor/wood, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, /area/maintenance/port/aft) "bTu" = ( -/obj/machinery/atmospherics/pipe/simple/general/hidden{ +/obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, -/turf/closed/wall, +/turf/open/floor/wood, /area/maintenance/port/aft) "bTv" = ( -/obj/structure/bed, -/obj/item/bedsheet, /obj/machinery/atmospherics/pipe/simple/general/hidden{ dir = 4 }, -/turf/open/floor/wood, +/turf/open/floor/plating, /area/maintenance/port/aft) "bTw" = ( -/obj/machinery/light/small, -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/manifold/general/hidden, -/turf/open/floor/wood, +/obj/machinery/door/airlock/maintenance/abandoned{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 4 + }, +/turf/open/floor/plating, /area/maintenance/port/aft) "bTx" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ @@ -42087,8 +40120,6 @@ /area/maintenance/port/aft) "bTD" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -42148,8 +40179,7 @@ pixel_y = 1 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/caution/corner{ @@ -42299,8 +40329,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -42310,8 +40338,7 @@ /area/science/xenobiology) "bUe" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/cable, /obj/machinery/door/poddoor/preopen{ @@ -42324,13 +40351,9 @@ "bUf" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/white, @@ -42397,8 +40420,6 @@ /area/hallway/primary/aft) "bUm" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -42437,20 +40458,13 @@ /area/space/nearstation) "bUs" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/port/aft) "bUt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, /obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + icon_state = "0-4" }, /turf/open/floor/plating, /area/maintenance/port/aft) @@ -42460,13 +40474,9 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -42476,14 +40486,9 @@ /area/maintenance/port/aft) "bUv" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, /turf/open/floor/plating, /area/maintenance/port/aft) "bUx" = ( @@ -42492,13 +40497,9 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -42513,8 +40514,6 @@ /area/tcommsat/computer) "bUz" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -42524,8 +40523,6 @@ /area/maintenance/port/aft) "bUA" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/power/apc{ @@ -42535,7 +40532,6 @@ pixel_y = 24 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -42551,7 +40547,6 @@ pixel_y = -24 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -42638,8 +40633,6 @@ /area/engine/atmos) "bUM" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, @@ -42719,16 +40712,12 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -42739,8 +40728,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -42783,8 +40770,6 @@ /area/hallway/primary/aft) "bVe" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -42853,8 +40838,6 @@ /area/science/misc_lab) "bVm" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -42878,8 +40861,6 @@ /area/engine/break_room) "bVp" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -42998,11 +40979,11 @@ /turf/open/floor/plating, /area/maintenance/port/aft) "bVG" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -31 +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 }, -/turf/open/floor/wood, -/area/maintenance/bar) +/turf/open/floor/plating, +/area/maintenance/port/aft) "bVI" = ( /turf/closed/wall/r_wall, /area/tcommsat/server) @@ -43087,8 +41068,6 @@ /area/engine/atmos) "bVV" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ @@ -43136,7 +41115,7 @@ "bWb" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 1; - filter_type = /datum/gas/nitrous_oxide; + filter_type = "n2o"; on = 1 }, /turf/open/floor/plasteel, @@ -43160,8 +41139,6 @@ /area/engine/atmos) "bWe" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -43214,8 +41191,7 @@ dir = 4 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/door/poddoor/preopen{ id = "xenobio2"; @@ -43228,8 +41204,6 @@ /obj/structure/window/reinforced, /obj/structure/table/reinforced, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/button/door{ @@ -43245,11 +41219,9 @@ /area/science/xenobiology) "bWn" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/door/poddoor/preopen{ @@ -43358,8 +41330,7 @@ pixel_y = 25 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) @@ -43376,16 +41347,13 @@ "bWI" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plating, /area/tcommsat/computer) "bWJ" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -43474,8 +41442,6 @@ network = list("SS13") }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, @@ -43599,8 +41565,6 @@ req_access_txt = "55" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/poddoor/preopen{ @@ -43611,8 +41575,6 @@ /area/science/xenobiology) "bXg" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/window/northleft{ @@ -43661,13 +41623,9 @@ location = "AftH" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -43687,8 +41645,6 @@ /area/science/misc_lab) "bXm" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -43698,8 +41654,6 @@ /area/hallway/primary/aft) "bXn" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -43711,8 +41665,6 @@ /area/hallway/primary/aft) "bXo" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment, @@ -43723,13 +41675,9 @@ /area/hallway/primary/aft) "bXp" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -43739,8 +41687,6 @@ /area/engine/break_room) "bXq" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -43798,8 +41744,6 @@ "bXu" = ( /obj/structure/grille, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -43842,8 +41786,6 @@ /area/tcommsat/server) "bXC" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/circuit/telecomms/mainframe, @@ -43861,8 +41803,7 @@ "bXF" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/cable, /turf/open/floor/plating, @@ -43872,13 +41813,9 @@ /area/tcommsat/computer) "bXH" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold4w/scrubbers, @@ -43886,8 +41823,6 @@ /area/engine/break_room) "bXI" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -44074,8 +42009,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -44089,8 +42022,7 @@ }, /obj/structure/cable, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/door/poddoor/preopen{ id = "xenobio2"; @@ -44158,8 +42090,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/yellow/side, @@ -44490,29 +42420,21 @@ /area/space/nearstation) "bZn" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) "bZo" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) "bZp" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/circuit/telecomms/mainframe, @@ -44520,15 +42442,12 @@ "bZq" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -44540,7 +42459,6 @@ "bZs" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable, @@ -44607,8 +42525,6 @@ req_access_txt = "12" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -44623,21 +42539,17 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /obj/structure/cable, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, /area/crew_quarters/heads/chief) "bZD" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ @@ -44647,7 +42559,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -44666,16 +42577,13 @@ pixel_x = -24 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plasteel, /area/engine/atmos) "bZG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel, @@ -44697,7 +42605,7 @@ "bZJ" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 1; - filter_type = /datum/gas/plasma; + filter_type = "plasma"; on = 1 }, /turf/open/floor/plasteel, @@ -44795,8 +42703,7 @@ dir = 4 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/door/poddoor/preopen{ id = "xenobio1"; @@ -44815,8 +42722,6 @@ req_access_txt = "55" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -44826,11 +42731,9 @@ /area/science/xenobiology) "bZX" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/door/poddoor/preopen{ @@ -44897,8 +42800,6 @@ /area/tcommsat/server) "cah" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/circuit/telecomms/mainframe, @@ -44908,8 +42809,7 @@ charge = 5e+006 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) @@ -44926,8 +42826,6 @@ req_access_txt = "61" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -44958,8 +42856,6 @@ /area/engine/break_room) "caq" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -44974,7 +42870,7 @@ dir = 5 }, /turf/closed/wall, -/area/maintenance/bar) +/area/maintenance/port/aft) "cas" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -44992,8 +42888,6 @@ /area/maintenance/port/aft) "cau" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -45029,8 +42923,6 @@ /area/maintenance/port/aft) "cay" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -45043,8 +42935,6 @@ /area/maintenance/port/aft) "caz" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -45066,8 +42956,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -45147,8 +43035,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -45163,13 +43049,9 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -45183,8 +43065,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -45195,8 +43075,6 @@ "caO" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -45242,8 +43120,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -45257,13 +43133,9 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -45274,8 +43146,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -45292,8 +43162,6 @@ req_access_txt = "55" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/poddoor/preopen{ @@ -45304,8 +43172,6 @@ /area/science/xenobiology) "caW" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/window/northleft{ @@ -45365,7 +43231,6 @@ pixel_x = 26 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -45383,8 +43248,6 @@ /area/maintenance/starboard/aft) "cbg" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -45439,8 +43302,7 @@ "cbm" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/cable, /turf/open/floor/plating, @@ -45455,11 +43317,9 @@ "cbo" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -45478,13 +43338,9 @@ dir = 1 }, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -45505,8 +43361,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -45539,8 +43393,7 @@ pixel_x = -24 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plasteel, /area/engine/break_room) @@ -45553,13 +43406,9 @@ /area/maintenance/starboard/aft) "cbw" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment, @@ -45577,8 +43426,6 @@ /area/maintenance/port/aft) "cby" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -45652,8 +43499,6 @@ /area/engine/atmos) "cbJ" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/yellow/visible{ @@ -45667,8 +43512,6 @@ /area/maintenance/aft) "cbL" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -45682,8 +43525,6 @@ "cbN" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -45702,8 +43543,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -45728,8 +43567,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light, @@ -45741,8 +43578,7 @@ "cbS" = ( /obj/structure/cable, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/door/poddoor/preopen{ id = "xenobio1"; @@ -45754,8 +43590,6 @@ "cbT" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/white, @@ -45783,8 +43617,6 @@ /area/science/misc_lab) "cbW" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -45820,8 +43652,7 @@ /area/science/misc_lab) "cca" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/power/solar{ id = "portsolar"; @@ -45831,7 +43662,6 @@ /area/solar/port/aft) "ccb" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/solar{ @@ -45842,13 +43672,9 @@ /area/solar/port/aft) "ccc" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/lattice/catwalk, @@ -45898,13 +43724,9 @@ /area/crew_quarters/heads/chief) "cck" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/vault{ @@ -45940,8 +43762,6 @@ /area/engine/engineering) "ccp" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -45954,8 +43774,6 @@ /area/maintenance/starboard/aft) "ccq" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -45968,13 +43786,9 @@ /area/maintenance/starboard/aft) "ccr" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -45993,8 +43807,6 @@ /area/engine/break_room) "cct" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -46006,8 +43818,6 @@ /area/maintenance/starboard/aft) "ccu" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -46102,8 +43912,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -46113,8 +43921,6 @@ /area/maintenance/aft) "ccJ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -46128,8 +43934,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -46143,8 +43947,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -46162,8 +43964,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -46177,8 +43977,6 @@ req_access_txt = "12" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -46203,8 +44001,6 @@ /area/science/misc_lab) "ccS" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -46235,18 +44031,12 @@ /area/maintenance/starboard/aft) "ccX" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/lattice/catwalk, @@ -46305,8 +44095,6 @@ sortType = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -46317,16 +44105,12 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/port/aft) "cdj" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -46335,8 +44119,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -46388,13 +44170,9 @@ /area/maintenance/starboard/aft) "cdr" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -46410,8 +44188,7 @@ pixel_x = -25 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/camera{ c_tag = "Aft Starboard Solar Access"; @@ -46440,8 +44217,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -46488,7 +44263,7 @@ "cdB" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 1; - filter_type = /datum/gas/carbon_dioxide; + filter_type = "co2"; on = 1 }, /turf/open/floor/plasteel, @@ -46512,8 +44287,6 @@ /area/engine/atmos) "cdE" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/yellow/visible{ @@ -46523,13 +44296,9 @@ /area/maintenance/aft) "cdF" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -46539,8 +44308,6 @@ /area/maintenance/aft) "cdG" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -46556,8 +44323,6 @@ /area/maintenance/aft) "cdI" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -46609,8 +44374,6 @@ "cdO" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -46639,14 +44402,10 @@ dir = 5 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -46671,8 +44430,7 @@ pixel_y = 1 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plating, /area/maintenance/port/aft) @@ -46773,8 +44531,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -46799,11 +44555,9 @@ /area/engine/engineering) "ceq" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -46832,8 +44586,6 @@ /obj/effect/spawner/structure/window, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -46883,8 +44635,6 @@ /area/engine/atmos) "ceC" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/yellow/visible, @@ -46892,8 +44642,6 @@ /area/maintenance/aft) "ceD" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -46974,8 +44722,6 @@ /area/science/misc_lab) "ceQ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -47059,8 +44805,7 @@ /area/crew_quarters/heads/chief) "cfc" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ @@ -47091,8 +44836,6 @@ pixel_x = 32 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -47100,8 +44843,6 @@ /area/maintenance/port/aft) "cfg" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -47116,7 +44857,7 @@ "cfi" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 2; - filter_type = /datum/gas/nitrogen; + filter_type = "n2"; on = 1 }, /turf/open/floor/plasteel, @@ -47126,8 +44867,6 @@ /area/maintenance/disposal/incinerator) "cfk" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -47204,8 +44943,6 @@ req_access_txt = "47" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -47241,8 +44978,6 @@ /area/science/xenobiology) "cfz" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/yellow/corner{ @@ -47262,8 +44997,6 @@ req_access_txt = "10" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -47309,8 +45042,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/scrubbers, @@ -47325,8 +45056,6 @@ pixel_y = 24 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -47368,7 +45097,7 @@ "cfR" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 4; - filter_type = /datum/gas/oxygen; + filter_type = "o2"; on = 1 }, /turf/open/floor/plasteel, @@ -47387,13 +45116,9 @@ /area/maintenance/disposal/incinerator) "cfW" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/yellow/visible, @@ -47412,8 +45137,6 @@ /area/maintenance/aft) "cfY" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -47437,7 +45160,6 @@ charge = 10000 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/effect/decal/cleanable/cobweb{ @@ -47452,8 +45174,6 @@ }, /obj/structure/disposalpipe/trunk, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -47527,8 +45247,6 @@ /area/science/xenobiology) "cgm" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -47549,8 +45267,6 @@ /area/science/xenobiology) "cgo" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -47558,8 +45274,6 @@ /area/maintenance/starboard/aft) "cgp" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -47582,8 +45296,6 @@ /area/maintenance/starboard/aft) "cgs" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -47613,18 +45325,12 @@ "cgv" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -47667,8 +45373,7 @@ /area/maintenance/solars/port/aft) "cgB" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/power/smes, /turf/open/floor/plating, @@ -47678,8 +45383,7 @@ dir = 4 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/light/small{ dir = 1 @@ -47708,16 +45412,12 @@ "cgF" = ( /obj/effect/spawner/lootdrop/maintenance, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/port/aft) "cgG" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance{ @@ -47783,12 +45483,10 @@ /area/engine/engineering) "cgS" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ @@ -47804,8 +45502,6 @@ req_access_txt = "32" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -47962,7 +45658,6 @@ pixel_x = 24 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/floorgrime, @@ -47970,8 +45665,6 @@ "chn" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/floorgrime, @@ -48032,8 +45725,6 @@ /area/science/xenobiology) "chv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -48050,8 +45741,6 @@ /area/maintenance/starboard/aft) "chx" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -48061,13 +45750,9 @@ /area/maintenance/starboard/aft) "chy" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -48085,8 +45770,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -48094,8 +45777,6 @@ "chA" = ( /obj/structure/reagent_dispensers/watertank, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -48108,8 +45789,6 @@ /area/maintenance/starboard/aft) "chB" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -48123,8 +45802,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/spawner/lootdrop/maintenance, @@ -48135,8 +45812,6 @@ /area/maintenance/starboard/aft) "chD" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -48150,13 +45825,9 @@ "chE" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, @@ -48164,8 +45835,6 @@ /area/engine/engineering) "chF" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -48178,8 +45847,6 @@ "chG" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -48193,8 +45860,6 @@ /area/maintenance/starboard/aft) "chI" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/lattice/catwalk, @@ -48203,14 +45868,12 @@ "chJ" = ( /obj/machinery/power/tracker, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plasteel/airless/solarpanel, /area/solar/port/aft) "chK" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/lattice/catwalk, @@ -48222,24 +45885,19 @@ /area/solar/port/aft) "chM" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/aft) "chN" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/solars/port/aft) "chO" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/external{ @@ -48252,34 +45910,24 @@ /area/maintenance/solars/port/aft) "chP" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plating, /area/maintenance/solars/port/aft) "chQ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plating, /area/maintenance/solars/port/aft) "chR" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plating, @@ -48290,24 +45938,18 @@ req_access_txt = "10" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/solars/port/aft) "chT" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plating, /area/maintenance/port/aft) "chV" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -48326,8 +45968,6 @@ /area/engine/engineering) "chX" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -48367,13 +46007,9 @@ pixel_y = 23 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel, @@ -48390,8 +46026,7 @@ pixel_y = 25 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plasteel, /area/engine/engineering) @@ -48405,8 +46040,6 @@ /obj/item/clothing/gloves/color/yellow, /obj/item/clothing/gloves/color/yellow, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/light{ @@ -48424,8 +46057,6 @@ pixel_y = 30 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -48435,8 +46066,6 @@ /area/engine/engineering) "cii" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -48456,8 +46085,7 @@ "cij" = ( /obj/machinery/modular_computer/console/preset/engineering, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plasteel/vault, /area/engine/engineering) @@ -48474,8 +46102,6 @@ /area/crew_quarters/heads/chief) "cin" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -48587,8 +46213,6 @@ /area/maintenance/disposal/incinerator) "ciE" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -48640,7 +46264,6 @@ }, /obj/structure/cable/yellow, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/camera{ @@ -48652,8 +46275,6 @@ /area/maintenance/disposal/incinerator) "ciN" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -48662,8 +46283,6 @@ /area/engine/engineering) "ciO" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -48674,8 +46293,7 @@ /area/engine/engineering) "ciP" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/lattice/catwalk, /turf/open/space, @@ -48754,8 +46372,6 @@ /area/engine/engineering) "cja" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel, @@ -48774,8 +46390,6 @@ /area/engine/engineering) "cjd" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -48787,16 +46401,12 @@ /area/engine/engineering) "cje" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/engine/engineering) "cjf" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/stripes/line{ @@ -48834,8 +46444,6 @@ /area/engine/engineering) "cji" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -48857,8 +46465,6 @@ pixel_x = 27 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -48894,8 +46500,9 @@ /turf/open/floor/plasteel, /area/engine/engineering) "cjn" = ( -/turf/closed/wall, -/area/maintenance/bar) +/obj/item/weldingtool, +/turf/open/floor/plating/airless, +/area/space/nearstation) "cjo" = ( /obj/structure/closet/toolcloset, /turf/open/floor/plasteel, @@ -48940,8 +46547,6 @@ /area/maintenance/disposal/incinerator) "cjv" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -49012,8 +46617,6 @@ req_access_txt = "10" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -49028,18 +46631,12 @@ /area/maintenance/solars/starboard/aft) "cjH" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/lattice/catwalk, @@ -49152,8 +46749,6 @@ pixel_x = 27 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -49256,8 +46851,6 @@ /area/maintenance/disposal/incinerator) "ckk" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/binary/valve{ @@ -49310,13 +46903,9 @@ /area/maintenance/starboard/aft) "cks" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -49330,14 +46919,12 @@ pixel_y = 3 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) "cku" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/smes, @@ -49351,16 +46938,12 @@ /area/maintenance/port/aft) "ckw" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/black, /area/engine/engine_smes) "ckx" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light{ @@ -49370,16 +46953,12 @@ /area/engine/engine_smes) "cky" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black, /area/engine/engine_smes) "ckz" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/black, @@ -49405,8 +46984,6 @@ /obj/item/stack/cable_coil, /obj/item/storage/box/lights/mixed, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -49442,8 +47019,6 @@ /area/engine/engineering) "ckH" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -49464,16 +47039,13 @@ /area/engine/engineering) "ckL" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/crew_quarters/heads/chief) "ckM" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment, @@ -49503,13 +47075,9 @@ req_access_txt = "56" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/neutral{ @@ -49672,8 +47240,6 @@ /area/maintenance/disposal/incinerator) "clj" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/floorgrime, @@ -49773,8 +47339,6 @@ /area/maintenance/starboard/aft) "clx" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, @@ -49793,7 +47357,6 @@ dir = 1 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/light/small{ @@ -49821,13 +47384,9 @@ /area/hallway/secondary/entry) "clC" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -49839,7 +47398,6 @@ /area/engine/engine_smes) "clE" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/smes/engineering, @@ -49849,21 +47407,16 @@ /area/engine/engine_smes) "clF" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, /area/engine/engine_smes) "clG" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/power/smes/engineering, /turf/open/floor/plasteel/vault{ @@ -49976,8 +47529,6 @@ req_access_txt = "32" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/engine, @@ -50020,8 +47571,6 @@ "cml" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/showroomfloor, @@ -50075,13 +47624,9 @@ /area/maintenance/starboard/aft) "cmv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plating, @@ -50093,8 +47638,7 @@ track = 0 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) @@ -50110,21 +47654,15 @@ /area/maintenance/solars/starboard/aft) "cmy" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, /area/engine/engine_smes) "cmz" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/black, @@ -50134,7 +47672,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plasteel/vault{ @@ -50146,7 +47683,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/vault{ @@ -50180,8 +47716,6 @@ pixel_x = -24 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/yellow/side{ @@ -50190,8 +47724,6 @@ /area/engine/engineering) "cmL" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/yellow/side{ @@ -50203,8 +47735,6 @@ pixel_y = 32 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/yellow/side{ @@ -50275,8 +47805,6 @@ /area/maintenance/disposal/incinerator) "cna" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/engine, @@ -50333,8 +47861,6 @@ /area/maintenance/solars/starboard/aft) "cnk" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/external{ @@ -50347,13 +47873,9 @@ /area/maintenance/solars/starboard/aft) "cnl" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/lattice/catwalk, @@ -50362,21 +47884,15 @@ "cnm" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, /area/engine/engine_smes) "cnn" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -50385,7 +47901,6 @@ /area/engine/engine_smes) "cno" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/smes/engineering, @@ -50395,13 +47910,9 @@ /area/engine/engine_smes) "cnp" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/camera{ @@ -50414,8 +47925,7 @@ /area/engine/engine_smes) "cnq" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/power/smes/engineering, /turf/open/floor/plasteel/vault{ @@ -50440,8 +47950,6 @@ network = list("SS13") }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/start/station_engineer, @@ -50459,8 +47967,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/stripes/corner{ @@ -50485,8 +47991,6 @@ /obj/item/stock_parts/cell/high/plus, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/twohanded/rcl/pre_loaded, @@ -50511,8 +48015,6 @@ req_access_txt = "32" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/engine, @@ -50556,8 +48058,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -50569,16 +48069,12 @@ /area/maintenance/starboard/aft) "cnK" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) "cnL" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/window/reinforced, @@ -50591,18 +48087,12 @@ req_access_txt = "32" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/black, @@ -50610,7 +48100,6 @@ "cnN" = ( /obj/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/terminal{ @@ -50620,16 +48109,11 @@ /area/engine/engine_smes) "cnO" = ( /obj/structure/window/reinforced, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + icon_state = "1-4" }, /turf/open/floor/plasteel/black, /area/engine/engine_smes) @@ -50639,18 +48123,12 @@ }, /obj/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, /turf/open/floor/plasteel/black, /area/engine/engine_smes) "cnQ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light{ @@ -50666,8 +48144,6 @@ /area/engine/engine_smes) "cnR" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -50678,8 +48154,6 @@ "cnS" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/camera{ @@ -50697,8 +48171,6 @@ /area/engine/engine_smes) "cnU" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/sign/securearea{ @@ -50714,8 +48186,6 @@ /area/engine/engineering) "cnX" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/extinguisher_cabinet{ @@ -50729,8 +48199,6 @@ /area/engine/engineering) "cnY" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/sign/nosmoking_2{ @@ -50743,8 +48211,6 @@ /area/engine/engineering) "cnZ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/airalarm{ @@ -50757,8 +48223,6 @@ /area/engine/engineering) "coa" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -50769,16 +48233,12 @@ /area/engine/engineering) "cob" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -50821,8 +48281,6 @@ on = 0 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/engine/vacuum, @@ -50849,8 +48307,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -50863,8 +48319,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/turf_decal/stripes/line{ @@ -50873,10 +48327,10 @@ /turf/open/floor/plasteel, /area/engine/engine_smes) "cox" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ +/obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel, @@ -50887,18 +48341,11 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ dir = 5 }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /turf/open/floor/plasteel, /area/engine/engine_smes) "coz" = ( @@ -50906,14 +48353,11 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/engine/engine_smes) "coA" = ( @@ -50921,8 +48365,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -50940,8 +48382,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -50954,8 +48394,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -50965,8 +48403,6 @@ /area/engine/engine_smes) "coH" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -50977,8 +48413,6 @@ "coJ" = ( /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -50991,8 +48425,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/spawner/structure/window/plasma/reinforced, @@ -51000,24 +48432,18 @@ /area/engine/engineering) "coL" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, /area/engine/engineering) "coM" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -51101,8 +48527,14 @@ /turf/open/space, /area/space) "cpg" = ( +/obj/item/grenade/barrier{ + pixel_x = 4 + }, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier{ + pixel_x = -4 + }, /obj/structure/table, -/obj/item/storage/lockbox/loyalty, /turf/open/floor/plasteel/vault{ dir = 8 }, @@ -51114,8 +48546,6 @@ /area/space/nearstation) "cpi" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/lattice/catwalk, @@ -51123,8 +48553,6 @@ /area/solar/starboard/aft) "cpj" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -51142,7 +48570,6 @@ /turf/open/floor/plasteel, /area/engine/engine_smes) "cpl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/engine/engine_smes) "cpm" = ( @@ -51156,26 +48583,11 @@ /obj/effect/turf_decal/stripes/line{ dir = 6 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, /turf/open/floor/plasteel, /area/engine/engine_smes) "cpn" = ( /obj/machinery/light, /obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, /turf/open/floor/plasteel, /area/engine/engine_smes) "cpo" = ( @@ -51233,8 +48645,6 @@ /area/engine/engineering) "cpu" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -51246,13 +48656,9 @@ /area/engine/engineering) "cpv" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/corner{ @@ -51262,8 +48668,6 @@ /area/engine/engineering) "cpx" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/engine, @@ -51273,22 +48677,17 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/engine, /area/engine/engineering) "cpA" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/chair/office/dark{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) "cpC" = ( @@ -51301,8 +48700,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/engine, @@ -51415,9 +48812,6 @@ /obj/effect/turf_decal/stripes/line{ dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, /turf/open/floor/plasteel, /area/engine/engine_smes) "cpT" = ( @@ -51433,8 +48827,12 @@ /turf/open/floor/plasteel, /area/engine/engine_smes) "cpU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, @@ -51463,8 +48861,6 @@ /area/engine/engineering) "cpY" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plating, @@ -51493,8 +48889,6 @@ /area/engine/engineering) "cqb" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/engine, @@ -51517,8 +48911,6 @@ "cqe" = ( /obj/effect/turf_decal/stripes/corner, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/green/visible{ @@ -51587,8 +48979,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/cyan/visible{ @@ -51686,8 +49076,6 @@ /area/engine/engineering) "cqy" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -51716,8 +49104,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/green/visible, @@ -51797,8 +49183,6 @@ /area/maintenance/port/aft) "cqM" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, @@ -51940,15 +49324,12 @@ /turf/open/floor/plating, /area/maintenance/port/aft) "crn" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/engine/engineering) "cro" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -51963,7 +49344,6 @@ /area/engine/engineering) "crq" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -51972,12 +49352,10 @@ "crr" = ( /obj/structure/cable, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -52047,13 +49425,9 @@ /area/engine/engineering) "crB" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/lattice/catwalk, @@ -52061,18 +49435,12 @@ /area/solar/starboard/aft) "crC" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/lattice/catwalk, @@ -52080,7 +49448,6 @@ /area/solar/starboard/aft) "crD" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/lattice/catwalk, @@ -52088,18 +49455,12 @@ /area/solar/starboard/aft) "crE" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/lattice/catwalk, @@ -52107,21 +49468,16 @@ /area/solar/starboard/aft) "crF" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/aft) "crG" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/lattice/catwalk, @@ -52393,8 +49749,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -52409,8 +49763,7 @@ /area/ai_monitored/turret_protected/aisat_interior) "csE" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/lattice/catwalk, /turf/open/space, @@ -52453,13 +49806,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - icon_state = "1-4"; - d1 = 1; - d2 = 4 + icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/green/visible{ @@ -52507,15 +49856,12 @@ /area/ai_monitored/turret_protected/aisat_interior) "csY" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable, @@ -52524,8 +49870,6 @@ /area/solar/starboard/aft) "csZ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/lattice/catwalk, @@ -52729,8 +50073,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/grimy, @@ -52741,8 +50083,7 @@ }, /obj/machinery/computer/monitor, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plasteel/vault{ dir = 8 @@ -52756,8 +50097,6 @@ /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/landmark/start/cyborg, @@ -52831,8 +50170,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/grimy, @@ -52840,13 +50177,9 @@ "ctT" = ( /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/grimy, @@ -52862,7 +50195,6 @@ dir = 4 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -52944,8 +50276,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "cue" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -52984,8 +50314,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "cul" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -53067,8 +50395,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "cuu" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -53211,8 +50537,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "cuG" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/holopad, @@ -53278,8 +50602,6 @@ /area/ai_monitored/turret_protected/aisat/service) "cuL" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -53295,8 +50617,7 @@ pixel_x = -27 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/portable_atmospherics/scrubber, /obj/effect/turf_decal/stripes/line{ @@ -53306,8 +50627,6 @@ /area/ai_monitored/turret_protected/aisat/atmos) "cuN" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -53317,8 +50636,6 @@ /area/ai_monitored/turret_protected/aisat/atmos) "cuO" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/ai_slipper{ @@ -53329,8 +50646,6 @@ /area/ai_monitored/turret_protected/aisat/atmos) "cuP" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -53340,8 +50655,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "cuQ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -53356,8 +50669,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "cuR" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -53368,18 +50679,12 @@ /area/ai_monitored/turret_protected/aisat_interior) "cuS" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/ai_slipper{ @@ -53391,8 +50696,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "cuT" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -53402,8 +50705,6 @@ /area/ai_monitored/turret_protected/aisat/service) "cuU" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -53418,24 +50719,18 @@ /area/ai_monitored/turret_protected/aisat_interior) "cuV" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black, /area/ai_monitored/turret_protected/aisat/service) "cuW" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/ai_slipper{ uses = 10 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/black, @@ -53448,7 +50743,6 @@ pixel_x = 27 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/port_gen/pacman, @@ -53511,8 +50805,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "cve" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -53553,8 +50845,6 @@ /area/ai_monitored/turret_protected/aisat/service) "cvi" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -53582,8 +50872,6 @@ /area/ai_monitored/turret_protected/aisat/hallway) "cvo" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -53603,8 +50891,6 @@ req_access_txt = "65" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -53667,8 +50953,6 @@ /area/ai_monitored/turret_protected/aisat/hallway) "cvz" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -53709,8 +50993,6 @@ /area/ai_monitored/turret_protected/aisat/hallway) "cvC" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -53752,8 +51034,6 @@ /area/ai_monitored/turret_protected/aisat/hallway) "cvI" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -53806,8 +51086,6 @@ pixel_x = -32 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -53849,8 +51127,6 @@ /area/ai_monitored/turret_protected/aisat/hallway) "cvT" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/holopad, @@ -53863,24 +51139,18 @@ req_access_txt = "65" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat/hallway) "cvV" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/aisat/hallway) "cvW" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plating, @@ -53919,8 +51189,6 @@ /area/ai_monitored/turret_protected/aisat/hallway) "cwc" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -53931,8 +51199,6 @@ /area/ai_monitored/turret_protected/aisat/hallway) "cwd" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -53953,8 +51219,6 @@ /area/ai_monitored/turret_protected/ai) "cwf" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -53997,8 +51261,6 @@ /area/ai_monitored/turret_protected/ai) "cwj" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -54034,8 +51296,6 @@ /area/ai_monitored/turret_protected/ai) "cwo" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -54065,8 +51325,6 @@ /area/ai_monitored/turret_protected/ai) "cwt" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -54079,8 +51337,6 @@ /area/ai_monitored/turret_protected/ai) "cwu" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/ai_slipper{ @@ -54100,8 +51356,6 @@ /area/ai_monitored/turret_protected/ai) "cww" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -54111,8 +51365,6 @@ /area/ai_monitored/turret_protected/ai) "cwx" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -54135,13 +51387,9 @@ /area/ai_monitored/turret_protected/ai) "cwA" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/holopad, @@ -54187,7 +51435,6 @@ dir = 4 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc/highcap/five_k{ @@ -54226,8 +51473,6 @@ /area/shuttle/escape) "cwH" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -54253,13 +51498,15 @@ /area/shuttle/escape) "cwM" = ( /obj/structure/rack, -/obj/item/storage/box/chemimp{ - pixel_x = 6 +/obj/item/storage/box/teargas{ + pixel_x = -3; + pixel_y = 3 }, -/obj/item/storage/box/trackimp{ - pixel_x = -3 +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/flashbangs{ + pixel_x = 3; + pixel_y = -3 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/vault{ dir = 8 }, @@ -54416,14 +51663,10 @@ /area/shuttle/escape) "cxk" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/showroomfloor, @@ -54624,8 +51867,6 @@ /area/shuttle/escape) "cxN" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/external{ @@ -54734,34 +51975,43 @@ /turf/closed/wall/mineral/titanium, /area/shuttle/abandoned) "cyd" = ( -/obj/machinery/door/airlock/titanium, /obj/docking_port/mobile{ + callTime = 250; dheight = 0; dir = 2; dwidth = 11; - height = 22; + height = 15; id = "whiteship"; launch_status = 0; - name = "NT Medical Ship"; + movement_force = list("KNOCKDOWN" = 0, "THROW" = 0); + name = "NT Recovery White-Ship"; port_direction = 8; preferred_direction = 4; roundstart_move = "whiteship_away"; - timid = null; - width = 35 + width = 28 + }, +/obj/machinery/door/airlock/titanium{ + name = "recovery shuttle external airlock" + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, /obj/docking_port/stationary{ dir = 2; dwidth = 11; height = 22; id = "whiteship_home"; - name = "SS13 Arrival Docking"; - turf_type = /turf/open/space; + name = "SS13: Auxiliary Dock, Station-Port"; width = 35 }, -/turf/open/floor/mineral/titanium, +/turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) "cye" = ( -/obj/machinery/door/airlock/titanium, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) "cyf" = ( @@ -54788,20 +52038,55 @@ /turf/open/floor/plating, /area/hallway/secondary/exit) "cyi" = ( -/turf/open/floor/mineral/titanium, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) "cyj" = ( -/obj/structure/table, -/obj/item/screwdriver, -/obj/structure/light_construct{ - dir = 1 +/obj/structure/closet/crate{ + name = "spare equipment crate" }, -/turf/open/floor/mineral/titanium, +/obj/item/grenade/chem_grenade/metalfoam, +/obj/item/relic, +/obj/item/device/t_scanner, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, /area/shuttle/abandoned) "cyk" = ( -/obj/structure/table, -/obj/item/device/radio/off, -/turf/open/floor/mineral/titanium, +/obj/structure/closet/crate/medical{ + name = "medical crate" + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/roller{ + pixel_y = 4 + }, +/obj/item/device/healthanalyzer, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/built{ + dir = 8 + }, +/turf/open/floor/plasteel, /area/shuttle/abandoned) "cyl" = ( /obj/machinery/door/airlock/external{ @@ -54819,8 +52104,21 @@ /turf/open/floor/plating/airless, /area/shuttle/abandoned) "cyn" = ( -/turf/open/floor/plating, -/turf/closed/wall/mineral/titanium/interior, +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/item/wrench, +/turf/open/floor/mineral/titanium, /area/shuttle/abandoned) "cyo" = ( /obj/structure/shuttle/engine/heater{ @@ -54874,14 +52172,24 @@ /turf/open/floor/plating, /area/shuttle/abandoned) "cyw" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/structure/table, +/obj/item/device/camera, /turf/open/floor/mineral/titanium, -/turf/closed/wall/mineral/titanium/interior, /area/shuttle/abandoned) "cyx" = ( -/obj/structure/rack, -/obj/item/clothing/suit/space/hardsuit/medical, -/obj/item/clothing/mask/breath, -/turf/open/floor/mineral/titanium, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/machinery/light/small/built{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) "cyy" = ( /obj/machinery/mass_driver{ @@ -54948,11 +52256,11 @@ /turf/open/floor/plating, /area/shuttle/abandoned) "cyI" = ( -/obj/item/stock_parts/cell{ - charge = 100; - maxcharge = 15000 +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/turf/open/floor/mineral/titanium, +/turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) "cyJ" = ( /obj/structure/rack, @@ -54965,8 +52273,6 @@ /area/shuttle/abandoned) "cyK" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/external{ @@ -54982,8 +52288,6 @@ req_access_txt = "12" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -55009,8 +52313,16 @@ /turf/open/floor/plating, /area/shuttle/supply) "cyO" = ( -/obj/structure/chair{ - dir = 1 +/obj/structure/table, +/obj/item/folder/blue, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/item/device/gps{ + gpstag = "NTREC1"; + pixel_x = -1; + pixel_y = 2 }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) @@ -55071,8 +52383,6 @@ /area/shuttle/supply) "cyU" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/external{ @@ -55121,11 +52431,16 @@ /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) "czb" = ( -/obj/structure/chair{ - dir = 4 +/obj/machinery/porta_turret/aux_base{ + always_up = 1; + desc = "A turret built with substandard parts and run down further with age. Still capable of delivering lethal lasers to the odd space carp, but not much else."; + dir = 4; + has_cover = 0; + icon_state = "standard_lethal"; + lethal_projectile = /obj/item/projectile/beam/weak; + name = "turret" }, -/obj/effect/decal/remains/human, -/turf/open/floor/mineral/titanium, +/turf/closed/wall/mineral/titanium, /area/shuttle/abandoned) "czc" = ( /obj/machinery/computer/shuttle/white_ship, @@ -55169,15 +52484,14 @@ /turf/open/floor/mineral/titanium/purple, /area/shuttle/abandoned) "czm" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/structure/window/reinforced{ - dir = 1 +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/obj/structure/window/reinforced{ - dir = 8 +/obj/machinery/light/small/built{ + dir = 4 }, -/turf/open/floor/mineral/titanium/purple, +/turf/open/floor/mineral/titanium, /area/shuttle/abandoned) "czn" = ( /obj/structure/frame/computer{ @@ -55194,7 +52508,17 @@ /turf/open/floor/plating/airless, /area/shuttle/supply) "czr" = ( -/obj/machinery/portable_atmospherics/scrubber, +/obj/structure/table, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/item/storage/box/monkeycubes{ + pixel_y = 4 + }, +/obj/item/storage/fancy/egg_box{ + pixel_y = 5 + }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) "czs" = ( @@ -55261,8 +52585,6 @@ dir = 6 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, @@ -55271,8 +52593,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -55347,8 +52667,6 @@ /area/maintenance/starboard/aft) "czR" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -55371,8 +52689,6 @@ dir = 5 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plating, @@ -55383,8 +52699,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -55397,8 +52711,6 @@ dir = 9 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plating, @@ -55408,8 +52720,6 @@ req_access_txt = "12" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -55492,21 +52802,15 @@ /area/crew_quarters/kitchen) "cAh" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, /area/maintenance/port/aft) "cAi" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plating, @@ -55516,13 +52820,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - icon_state = "1-4"; - d1 = 1; - d2 = 4 + icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/green/visible, @@ -55534,8 +52834,6 @@ /area/engine/supermatter) "cAo" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/turf_decal/stripes/corner{ @@ -55545,8 +52843,6 @@ /area/engine/engineering) "cAp" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/binary/pump{ @@ -55570,8 +52866,6 @@ /area/engine/engineering) "cAr" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/binary/pump{ @@ -55602,7 +52896,6 @@ /area/engine/engineering) "cAu" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/emitter/anchored{ @@ -55667,8 +52960,6 @@ /area/maintenance/disposal) "cAG" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/power/apc{ @@ -55678,7 +52969,6 @@ pixel_y = -24 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -55727,8 +53017,6 @@ req_access_txt = "1" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -55754,8 +53042,6 @@ req_access_txt = "16" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/circuit, @@ -55817,8 +53103,6 @@ /area/space) "cAV" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/showcase/cyborg/old{ @@ -55854,16 +53138,12 @@ /area/space) "cAY" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/closed/wall, /area/ai_monitored/turret_protected/ai) "cAZ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/black, @@ -55873,7 +53153,6 @@ charge = 5e+006 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/circuit, @@ -55937,8 +53216,6 @@ /obj/structure/table, /obj/item/folder/blue, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/event_spawn, @@ -56014,13 +53291,9 @@ /area/hallway/primary/central) "cBx" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -56064,13 +53337,9 @@ /area/quartermaster/miningdock) "cBC" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/landmark/event_spawn, @@ -56078,8 +53347,6 @@ /area/storage/tech) "cBD" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -56106,13 +53373,9 @@ "cBG" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/event_spawn, @@ -56120,8 +53383,6 @@ /area/science/xenobiology) "cBH" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/event_spawn, @@ -56165,8 +53426,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -56195,8 +53454,6 @@ /area/engine/engineering) "cBS" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -56223,8 +53480,6 @@ req_access_txt = "1" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -56280,9 +53535,9 @@ /turf/open/floor/plasteel/grimy, /area/chapel/office) "cCa" = ( -/obj/structure/table/wood/poker, -/turf/open/floor/wood, -/area/maintenance/bar) +/obj/item/clothing/head/hardhat, +/turf/open/floor/plating/airless, +/area/space/nearstation) "cCb" = ( /obj/structure/table, /obj/item/stack/cable_coil{ @@ -56344,16 +53599,12 @@ /area/security/detectives_office) "cCl" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plating, /area/maintenance/port) "cCm" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -56548,8 +53799,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -56564,13 +53813,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -56583,8 +53828,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/table/reinforced, @@ -56598,8 +53841,6 @@ /area/engine/engineering) "cDi" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -56617,8 +53858,6 @@ /area/engine/engineering) "cDj" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -56653,21 +53892,15 @@ /area/engine/engineering) "cDo" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel, /area/engine/engineering) "cDp" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/engine, @@ -56677,24 +53910,18 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/engine, /area/engine/engineering) "cDs" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/engine, @@ -56725,8 +53952,6 @@ /area/engine/engineering) "cDx" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/binary/pump{ @@ -56799,8 +54024,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/cyan/visible, @@ -56870,8 +54093,6 @@ /area/space/nearstation) "cDZ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/closet/radiation, @@ -56905,8 +54126,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/green/visible, @@ -56928,8 +54147,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/cyan/visible, @@ -56973,8 +54190,6 @@ /area/engine/engineering) "cEs" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/binary/pump{ @@ -56994,8 +54209,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -57008,8 +54221,6 @@ pixel_x = 23 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/engine, @@ -57020,7 +54231,6 @@ }, /obj/machinery/power/rad_collector/anchored, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/window/plasma/reinforced{ @@ -57046,7 +54256,6 @@ }, /obj/machinery/power/rad_collector/anchored, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/structure/window/plasma/reinforced{ @@ -57056,8 +54265,6 @@ /area/engine/supermatter) "cEz" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/engine, @@ -57072,8 +54279,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -57083,13 +54288,9 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/meter, @@ -57100,8 +54301,6 @@ /area/engine/engineering) "cEC" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/binary/pump{ @@ -57157,8 +54356,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/tank/internals/plasma, @@ -57175,8 +54372,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -57186,13 +54381,9 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/cyan/visible, @@ -57218,9 +54409,7 @@ dir = 4 }, /obj/structure/cable/yellow{ - icon_state = "1-4"; - d1 = 1; - d2 = 4 + icon_state = "1-4" }, /obj/machinery/atmospherics/components/binary/pump{ dir = 2; @@ -57235,7 +54424,6 @@ }, /obj/machinery/power/rad_collector/anchored, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/window/plasma/reinforced{ @@ -57249,7 +54437,6 @@ }, /obj/machinery/power/rad_collector/anchored, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/structure/window/plasma/reinforced{ @@ -57266,8 +54453,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -57277,8 +54462,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/components/binary/pump{ @@ -57456,8 +54639,6 @@ /area/engine/engineering) "cGe" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/orange/visible{ @@ -57468,14 +54649,12 @@ "cGf" = ( /obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ dir = 8; - filter_type = /datum/gas/nitrogen + filter_type = "n2" }, /turf/open/floor/engine, /area/engine/engineering) "cGg" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ @@ -57485,8 +54664,6 @@ /area/engine/engineering) "cGh" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/stripes/corner, @@ -57537,8 +54714,6 @@ /area/engine/engineering) "cGv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line, @@ -57590,8 +54765,6 @@ req_access_txt = "10" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/engine, @@ -57622,8 +54795,6 @@ /area/engine/engineering) "cGS" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -57635,7 +54806,9 @@ /turf/open/floor/plasteel/black, /area/engine/engineering) "cGU" = ( -/obj/structure/reflector/double/anchored, +/obj/structure/reflector/double/anchored{ + dir = 6 + }, /turf/open/floor/plasteel/black, /area/engine/engineering) "cGV" = ( @@ -57666,61 +54839,46 @@ /area/engine/engineering) "cHb" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plating, /area/engine/engineering) "cHc" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, /area/engine/engineering) "cHd" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plating, /area/engine/engineering) "cHe" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, /area/engine/engineering) "cHg" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, /area/engine/engineering) "cHj" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/power/emitter/anchored{ dir = 8; @@ -57734,8 +54892,6 @@ /area/engine/engineering) "cHn" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/light, @@ -57743,20 +54899,18 @@ /area/engine/engineering) "cHo" = ( /obj/structure/reflector/single/anchored{ - dir = 1 + dir = 9 }, /turf/open/floor/plating, /area/engine/engineering) "cHp" = ( /obj/structure/reflector/single/anchored{ - dir = 4 + dir = 5 }, /turf/open/floor/plating, /area/engine/engineering) "cHr" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/light, @@ -57768,8 +54922,6 @@ /area/engine/engineering) "cHD" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -57779,8 +54931,6 @@ sortType = 14 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, @@ -57794,8 +54944,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -57818,8 +54966,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -57835,8 +54981,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -57852,13 +54996,9 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -57874,8 +55014,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -57891,8 +55029,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -57910,8 +55046,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -57925,7 +55059,6 @@ dir = 2 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -57938,8 +55071,6 @@ /area/science/robotics/lab) "cHN" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/circuit, @@ -58196,20 +55327,32 @@ /turf/open/floor/mineral/titanium/blue, /area/shuttle/supply) "cLY" = ( -/obj/structure/light_construct/small, -/turf/open/floor/plating, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) "cLZ" = ( -/obj/structure/frame/computer{ - anchored = 1 +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -1; + pixel_y = 6 }, -/obj/machinery/light{ - dir = 1 +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) "cMa" = ( -/obj/structure/light_construct, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) "cMb" = ( @@ -58219,9 +55362,13 @@ /turf/open/floor/mineral/titanium/blue, /area/shuttle/supply) "cMc" = ( -/obj/structure/light_construct{ +/obj/structure/chair{ dir = 1 }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) "cMd" = ( @@ -58237,10 +55384,15 @@ /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) "cMf" = ( -/obj/structure/light_construct{ - dir = 8 +/obj/machinery/door/airlock/titanium{ + name = "medbay"; + welded = 0 }, -/turf/open/floor/mineral/titanium, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) "cMh" = ( /obj/structure/light_construct/small{ @@ -58294,7 +55446,6 @@ "cMI" = ( /obj/machinery/power/rad_collector/anchored, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/engine, @@ -58305,8 +55456,7 @@ /area/engine/supermatter) "cMQ" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/power/solar{ id = "starboardsolar"; @@ -58347,9 +55497,7 @@ pixel_y = 24 }, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plating, /area/maintenance/central) @@ -58358,8 +55506,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -58370,16 +55516,12 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/quartermaster/sorting) "cNR" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -58392,7 +55534,6 @@ pixel_x = 26 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -58402,23 +55543,17 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, /area/maintenance/starboard) "cNU" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, @@ -58430,8 +55565,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -58445,8 +55578,6 @@ req_one_access_txt = "8;12" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -58459,8 +55590,6 @@ /area/maintenance/starboard/aft) "cNZ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -58523,8 +55652,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -58546,8 +55673,6 @@ /area/security/courtroom) "cSE" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black/telecomms/mainframe, @@ -58564,8 +55689,6 @@ /area/engine/supermatter) "cSH" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/meter, @@ -58584,15 +55707,13 @@ "cSJ" = ( /obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ dir = 8; - filter_type = /datum/gas/freon; + filter_type = "freon"; name = "gas filter (freon)" }, /turf/open/floor/engine, /area/engine/engineering) "cSK" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ @@ -58641,8 +55762,6 @@ dir = 9 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, @@ -58653,8 +55772,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -58664,8 +55781,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel, @@ -58679,8 +55794,6 @@ "cSR" = ( /obj/effect/turf_decal/delivery, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/sign/nosmoking_2{ @@ -58696,8 +55809,6 @@ dir = 10 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -58779,8 +55890,6 @@ "cTc" = ( /obj/effect/spawner/structure/window, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -58792,8 +55901,6 @@ /area/engine/engineering) "cTe" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/yellow/side{ @@ -58802,8 +55909,6 @@ /area/engine/engineering) "cTf" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/requests_console{ @@ -58833,8 +55938,6 @@ /area/shuttle/mining) "cTD" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/power/apc{ @@ -58844,9 +55947,7 @@ pixel_x = -24 }, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plating, /area/maintenance/central/secondary) @@ -58874,8 +55975,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -58884,8 +55983,6 @@ "cTK" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -58893,13 +55990,9 @@ /area/maintenance/department/medical/morgue) "cTL" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/black, @@ -58912,7 +56005,6 @@ pixel_x = 26 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/black, @@ -58922,8 +56014,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -58934,8 +56024,6 @@ "cTS" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -58950,8 +56038,7 @@ /area/shuttle/abandoned) "cTX" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/shieldwallgen/xenobiologyaccess, /obj/structure/sign/poster/official/safety_eye_protection{ @@ -58984,2775 +56071,1742 @@ /turf/open/space/basic, /area/space) "Qlk" = ( -/obj/machinery/vending/kink, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 24; + id = "syndicate_nw"; + name = "northwest of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space/basic, +/area/space) "Qll" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 +/obj/machinery/door/airlock/titanium{ + name = "recovery shuttle external airlock" }, -/turf/open/floor/plating, -/area/maintenance/fore) +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) "Qlm" = ( -/obj/structure/chair/wood{ - dir = 4 +/obj/structure/toilet{ + pixel_y = 9 }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/area/maintenance/bar/cafe) +/obj/effect/decal/cleanable/greenglow{ + desc = "Looks like something's sprung a leak" + }, +/obj/machinery/light/small/built{ + dir = 8 + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) "Qln" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) "Qlo" = ( -/obj/structure/chair/wood{ - dir = 8 +/obj/structure/closet/wardrobe/mixed, +/obj/item/clothing/under/rank/centcom_officer{ + desc = "A badge on the arm indicates that it's meant to be worn by CentCom recovery teams. This one seems dusty and clearly hasn't been cleaned in some time."; + name = "\improper dusty old CentCom jumpsuit" }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" +/obj/item/clothing/under/rank/centcom_commander{ + desc = "A badge on the arm indicates that it's meant to be worn by CentCom recovery teams. This one seems dusty and clearly hasn't been cleaned in some time."; + name = "\improper dusty old CentCom jumpsuit" }, -/area/maintenance/bar/cafe) +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) "Qlp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) +/obj/structure/table, +/obj/item/storage/pill_bottle/dice{ + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) "Qlq" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) -"Qlr" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/bar/cafe) -"Qls" = ( -/obj/structure/table/wood, -/obj/machinery/chem_dispenser/drinks/beer, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) -"Qlt" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/bar/cafe) -"Qlu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) -"Qlv" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) -"Qlw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) -"Qlx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/chair/wood{ - dir = 8 - }, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) -"Qly" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/chair/stool/bar, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar/cafe) -"Qlz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/table/wood, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/bar/cafe) -"QlA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) -"QlB" = ( -/obj/structure/table/wood, -/obj/machinery/chem_dispenser/drinks, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) -"QlC" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) -"QlD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/table/wood, -/obj/machinery/light/small, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/bar/cafe) -"QlE" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - areastring = "/area/crew_quarters/theatre/mime"; - dir = 2; - name = "Mime's Office APC"; - pixel_x = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair/wood{ - dir = 8 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/bar/cafe) -"QlF" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) -"QlG" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - areastring = "/area/crew_quarters/theatre/mime"; - dir = 2; - name = "Clown's Office APC"; - pixel_x = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/bar/cafe) -"QlH" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/bar/cafe) -"QlI" = ( -/obj/structure/table/wood, -/obj/item/storage/box/drinkingglasses, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) -"QlJ" = ( -/turf/closed/wall, -/area/crew_quarters/theatre/mime) -"QlK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/crew_quarters/theatre/mime) -"QlL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/barricade/wooden, -/obj/structure/grille, -/turf/open/floor/wood, -/area/maintenance/fore) -"QlM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/crew_quarters/theatre/clown) -"QlN" = ( -/obj/machinery/vending/autodrobe, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/crew_quarters/theatre/mime) -"QlO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/crew_quarters/theatre/mime) -"QlP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/bed, -/obj/item/bedsheet/mime, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/crew_quarters/theatre/mime) -"QlQ" = ( -/obj/structure/closet/secure_closet/freezer/cream_pie, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/theatre/clown) -"QlR" = ( -/obj/structure/closet/crate/wooden/toy, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/theatre/clown) -"QlS" = ( -/obj/machinery/vending/autodrobe, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/theatre/clown) -"QlT" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, /obj/structure/table, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/customs) -"QlU" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/snacks/baguette, -/obj/item/toy/dummy, -/obj/structure/mirror{ - pixel_x = -28 +/obj/item/stack/sheet/metal{ + amount = 50 }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/crew_quarters/theatre/mime) -"QlV" = ( -/obj/effect/landmark/start/mime, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/crew_quarters/theatre/mime) -"QlW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Mime's Office"; - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/crew_quarters/theatre/mime) -"QlX" = ( -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Clown's Office"; - c_tag_order = 999; - dir = 4 - }, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/theatre/clown) -"QlY" = ( -/obj/effect/landmark/start/clown, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/theatre/clown) -"QlZ" = ( -/obj/structure/bed, -/obj/item/bedsheet/clown, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/theatre/clown) -"Qma" = ( -/obj/structure/table, -/obj/item/lipstick/random{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/lipstick/random{ - pixel_x = 2; +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000; pixel_y = 2 }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/turf/open/floor/plasteel/white/side{ - dir = 1 +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qlr" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/area/crew_quarters/theatre/mime) -"Qmb" = ( -/turf/open/floor/plasteel/white/side{ - dir = 1 +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qls" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/area/crew_quarters/theatre/mime) -"Qmc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white/side{ - dir = 1 +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qlt" = ( +/obj/structure/tank_dispenser/oxygen{ + layer = 2.7; + pixel_x = -1; + pixel_y = 2 }, -/area/crew_quarters/theatre/mime) -"Qmd" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/theatre/clown) -"Qme" = ( -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/theatre/clown) -"Qmf" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/obj/structure/window/reinforced{ +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qlu" = ( +/obj/structure/sign/vacuum{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/machinery/light/small/built{ dir = 8 }, -/obj/item/bikehorn, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/theatre/clown) -"Qmg" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/crew_quarters/theatre/mime) -"Qmh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/crew_quarters/theatre/mime) -"Qmi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/crew_quarters/theatre/mime) -"Qmj" = ( -/obj/structure/table, -/obj/item/device/flashlight/lamp/bananalamp, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -30 - }, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/theatre/clown) -"Qmk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/theatre/clown) -"Qml" = ( -/obj/structure/statue/bananium/clown, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/theatre/clown) -"Qmm" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/crew_quarters/theatre/clown) -"Qmn" = ( -/obj/machinery/door/airlock/clown{ - name = "Clown's Office"; - req_access_txt = "46" - }, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/theatre/clown) -"Qmo" = ( -/obj/machinery/door/airlock{ - name = "Bar Storage"; - req_access_txt = "25" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"Qmp" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"Qmq" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) -"Qmr" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"Qms" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/bridge/meeting_room) -"Qmt" = ( -/turf/open/floor/plating, -/area/maintenance/department/bridge) -"Qmu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/bridge) -"Qmv" = ( -/turf/open/floor/plating, -/area/maintenance/department/bridge) -"Qmw" = ( -/turf/open/floor/plating, -/area/maintenance/department/bridge) -"Qmx" = ( -/turf/open/floor/plating, -/area/maintenance/department/bridge) -"Qmy" = ( -/turf/open/floor/plating, -/area/maintenance/department/bridge) -"Qmz" = ( -/turf/open/floor/plating, -/area/maintenance/department/bridge) -"QmA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/bridge) -"QmB" = ( -/turf/open/floor/plating, -/area/maintenance/department/bridge) -"QmC" = ( -/obj/machinery/door/airlock/maintenance{ - name = "bridge maintenance access"; - req_access_txt = "20" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/captain) -"QmD" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/bridge) -"QmE" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/bridge) -"QmF" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/circuit, -/area/ai_monitored/nuke_storage) -"QmG" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Vault APC"; - areastring = "/area/ai_monitored/nuke_storage"; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/circuit, -/area/ai_monitored/nuke_storage) -"QmH" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"QmI" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"QmJ" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"QmK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"QmL" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"QmM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"QmN" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"QmO" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/hallway/primary/central) -"QmP" = ( -/turf/closed/wall/r_wall, -/area/security/checkpoint/checkpoint2) -"QmQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/hallway/primary/central) -"QmR" = ( -/obj/structure/closet/secure_closet/security, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - areastring = "/area/security/checkpoint/checkpoint2"; - dir = 8; - name = "Security Checkpoint APC"; - pixel_x = -24; - pixel_y = 0 - }, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/checkpoint/checkpoint2) -"QmS" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 30 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/checkpoint2) -"QmT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/checkpoint2) -"QmU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/checkpoint2) -"QmV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/checkpoint2) -"QmW" = ( -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = 30 - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/checkpoint2) -"QmX" = ( -/obj/machinery/computer/security, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/checkpoint/checkpoint2) -"QmY" = ( -/obj/structure/closet/wardrobe/red, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/checkpoint/checkpoint2) -"QmZ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/checkpoint2) -"Qna" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/checkpoint/checkpoint2) -"Qnb" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/camera{ - c_tag = "Security Checkpoint"; - dir = 1 - }, -/obj/machinery/button/door{ - desc = "A remote control switch for the vault shutters."; - id = "vault"; - name = "vault shutter control"; - normaldoorcontrol = 0; - pixel_x = 8; - pixel_y = -24; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/checkpoint/checkpoint2) -"Qnc" = ( -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/structure/table, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/checkpoint2) -"Qnd" = ( -/obj/item/device/radio/off, -/obj/item/crowbar, -/obj/item/device/assembly/flash/handheld, -/obj/structure/table, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/checkpoint/checkpoint2) -"Qne" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "vault"; - name = "vault shutters" - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/security/checkpoint/checkpoint2) -"Qnf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"Qng" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space) -"Qnh" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space) -"Qni" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space) -"Qnj" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space) -"Qnk" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space) -"Qnl" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space) -"Qnm" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space) -"Qnn" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space) -"Qno" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space) -"Qnp" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space) -"Qnq" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space) -"Qnr" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space) -"Qns" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"Qnt" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"Qnu" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"Qnv" = ( -/obj/machinery/door/airlock{ - id_tag = "MaintDorm2"; - name = "Maintenance Dorm 2" - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"Qnw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"Qnx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"Qny" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"Qnz" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"QnA" = ( -/obj/machinery/light/small, -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 5 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"QnB" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"QnC" = ( -/turf/closed/wall, -/area/maintenance/bar) -"QnD" = ( -/turf/closed/wall, -/area/maintenance/bar) -"QnE" = ( -/turf/closed/wall, -/area/maintenance/bar) -"QnF" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/maintenance/bar) -"QnG" = ( -/turf/closed/wall, -/area/maintenance/bar) -"QnH" = ( -/turf/closed/wall, -/area/maintenance/bar) -"QnI" = ( -/turf/closed/wall, -/area/maintenance/bar) -"QnJ" = ( -/turf/closed/wall, -/area/maintenance/bar) -"QnK" = ( -/turf/open/floor/wood, -/area/maintenance/bar) -"QnL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"QnM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"QnN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/bar) -"QnO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"QnP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance/abandoned{ - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/maintenance/bar) -"QnQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"QnR" = ( -/turf/closed/wall, -/area/maintenance/bar) -"QnS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"QnT" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"QnU" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"QnV" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"QnW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/bar) -"QnX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/bar) -"QnY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/bar) -"QnZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/bar) -"Qoa" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/bar) -"Qob" = ( -/turf/closed/wall, -/area/maintenance/bar) -"Qoc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qod" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/bar) -"Qoe" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qof" = ( -/obj/structure/table/wood, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/bar) -"Qog" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qoh" = ( -/obj/machinery/chem_dispenser/drinks/beer, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qoi" = ( -/turf/closed/wall, -/area/maintenance/bar) -"Qoj" = ( -/obj/item/restraints/handcuffs/fake, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/spawner/lootdrop/minor/kittyears_or_rabbitears, -/turf/open/floor/plating, -/area/maintenance/bar) -"Qok" = ( -/obj/item/shard, -/obj/item/wirecutters, -/obj/item/wallframe/camera, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/bar) -"Qol" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) -"Qom" = ( -/turf/closed/wall, -/area/maintenance/bar) -"Qon" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -30 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/bar) -"Qoo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qop" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"Qoq" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qor" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"Qos" = ( -/obj/machinery/vending/boozeomat, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qot" = ( -/turf/closed/wall, -/area/maintenance/bar) -"Qou" = ( +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"Qlv" = ( +/obj/item/storage/box/lights/mixed, +/obj/item/cigbutt, +/obj/structure/closet/crate{ + icon_state = "crateopen"; + name = "spare equipment crate"; + opened = 1 + }, +/obj/item/tank/internals/oxygen/red, +/obj/item/tank/internals/air, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; name = "2maintenance loot spawner" }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/shuttle/abandoned) +"Qlw" = ( +/obj/structure/closet/crate{ + name = "emergency supplies crate" + }, +/obj/item/storage/toolbox/emergency, +/obj/item/storage/toolbox/emergency, +/obj/item/device/flashlight/flare{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/device/flashlight/flare{ + pixel_x = -6; + pixel_y = -2 + }, /obj/item/crowbar, -/obj/item/device/electropack/shockcollar, -/turf/open/floor/plating, -/area/maintenance/bar) -"Qov" = ( +/obj/item/wrench, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/extinguisher, +/obj/item/extinguisher, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/shuttle/abandoned) +"Qlx" = ( +/obj/machinery/door/airlock/titanium{ + name = "bathroom" + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"Qly" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/effect/decal/remains/human{ + desc = "They look like human remains, and have clearly been gnawed at." + }, +/obj/item/gun/energy/laser/retro, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"Qlz" = ( /obj/structure/bed, -/obj/item/bedsheet/grey, -/obj/effect/decal/cleanable/semen{ - desc = "Blech."; - name = "dried semen" +/obj/item/bedsheet/centcom, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/obj/effect/spawner/lootdrop/costume, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/bar) -"Qow" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) -"Qox" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Incinerator Access"; - req_access_txt = "12" - }, -/obj/structure/barricade/wooden{ - name = "wooden barricade (CLOSED)" - }, -/turf/open/floor/plating, -/area/maintenance/bar) -"Qoy" = ( -/turf/open/floor/wood, -/area/maintenance/bar) -"Qoz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/bar) -"QoA" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"QoB" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/obj/machinery/light/small/built{ dir = 4 }, -/turf/open/floor/wood, -/area/maintenance/bar) -"QoC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QlA" = ( +/obj/structure/table, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/machinery/light/small/built{ dir = 8 }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QlB" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/turf/open/floor/wood, -/area/maintenance/bar) -"QoD" = ( -/obj/machinery/chem_dispenser/drinks, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/bar) -"QoE" = ( -/turf/closed/wall, -/area/maintenance/bar) -"QoF" = ( -/obj/item/lighter/greyscale, -/obj/effect/decal/cleanable/semen{ - desc = "Blech."; - name = "dried semen" +/obj/effect/decal/cleanable/oil, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"QlC" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/turf/open/floor/plating{ - icon_state = "panelscorched" +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"QlD" = ( +/obj/machinery/door/airlock/titanium{ + name = "E.V.A. equipment" }, -/area/maintenance/bar) -"QoG" = ( -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"QlE" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"QlF" = ( /obj/effect/decal/cleanable/blood/old, -/obj/item/device/assembly/signaler, -/turf/open/floor/plating, -/area/maintenance/bar) -"QoH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) -"QoI" = ( -/turf/closed/wall, -/area/maintenance/bar) -"QoJ" = ( -/obj/effect/spawner/lootdrop/keg, -/turf/open/floor/wood, -/area/maintenance/bar) -"QoK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/maintenance/bar) -"QoL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/maintenance/bar) -"QoM" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - areastring = "/area/maintenance/bar"; - dir = 2; - name = "Maintenance Bar APC"; - pixel_x = 1; - pixel_y = -24 +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" +/obj/effect/decal/remains/human{ + desc = "They look like human remains, and have clearly been gnawed at." }, -/area/maintenance/bar) -"QoN" = ( -/turf/closed/wall, -/area/maintenance/bar) -"QoO" = ( -/turf/closed/wall, -/area/maintenance/bar) -"QoP" = ( -/obj/structure/falsewall, -/turf/open/floor/plating, -/area/maintenance/bar) -"QoQ" = ( -/turf/closed/wall, -/area/maintenance/bar) -"QoR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) -"QoS" = ( -/turf/closed/wall, -/area/maintenance/bar) -"QoT" = ( -/turf/closed/wall, -/area/maintenance/bar) -"QoU" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - req_access_txt = "0" +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"QlG" = ( +/obj/machinery/door/airlock/titanium{ + name = "cargo bay" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/maintenance/bar) -"QoV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/maintenance/abandoned{ - req_access_txt = "0" - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/bar) -"QoW" = ( -/obj/structure/sign/poster/official/no_erp, -/turf/closed/wall, -/area/maintenance/bar) -"QoX" = ( -/turf/closed/wall, -/area/maintenance/bar) -"QoY" = ( -/obj/machinery/vending/clothing, -/turf/open/floor/wood, -/area/maintenance/bar) -"QoZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) -"Qpa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qpb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qpc" = ( -/obj/structure/chair/stool, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/bar) -"Qpd" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/bar) -"Qpe" = ( -/obj/machinery/vending/autodrobe, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qpf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) -"Qpg" = ( -/obj/structure/sign/poster/random{ - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"Qph" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qpi" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/bar) -"Qpj" = ( -/obj/structure/table/wood/poker, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"Qpk" = ( -/obj/structure/table/wood/poker, -/obj/item/storage/pill_bottle/dice, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qpl" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/bar) -"Qpm" = ( -/obj/structure/table/wood/bar, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qpn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) -"Qpo" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ +/obj/effect/turf_decal/delivery{ dir = 1 }, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qpp" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 +/turf/open/floor/plasteel{ + dir = 1 }, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qpq" = ( -/obj/structure/table/wood/poker, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/area/shuttle/abandoned) +"QlH" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/effect/turf_decal/delivery{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/shuttle/abandoned) +"QlI" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/effect/turf_decal/delivery{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/shuttle/abandoned) +"QlJ" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/effect/turf_decal/delivery{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/shuttle/abandoned) +"QlK" = ( +/obj/effect/decal/cleanable/robot_debris/old, +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/effect/turf_decal/delivery{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/shuttle/abandoned) +"QlL" = ( +/obj/machinery/shower{ dir = 4 }, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qpr" = ( -/obj/structure/table/wood/poker, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/obj/machinery/door/window/westright{ dir = 4 }, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qps" = ( -/obj/structure/table/wood/poker, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/item/soap/nanotrasen, +/obj/effect/decal/remains/human{ + desc = "They look like human remains, and have clearly been gnawed at." + }, +/obj/effect/decal/cleanable/blood/gibs/old, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QlM" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/machinery/light/small/built{ dir = 4 }, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qpt" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"QlN" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"QlO" = ( +/obj/structure/bed, +/obj/item/bedsheet/centcom, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QlP" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9; + pixel_y = 2 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/clothing/glasses/welding, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QlQ" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"QlR" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/machinery/light/small{ dir = 4 }, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qpu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QlS" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qpv" = ( -/obj/structure/table/wood/bar, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/shuttle/abandoned) +"QlT" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/effect/turf_decal/delivery{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/shuttle/abandoned) +"QlU" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/shuttle/abandoned) +"QlV" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/shuttle/abandoned) +"QlW" = ( +/obj/structure/sign/restroom, +/turf/closed/wall/mineral/titanium, +/area/shuttle/abandoned) +"QlX" = ( +/obj/machinery/door/airlock/titanium{ + name = "bathroom" + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"QlY" = ( +/obj/machinery/door/airlock/titanium{ + name = "dormitory" + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"QlZ" = ( +/obj/machinery/vending/boozeomat{ + icon_deny = "smartfridge"; + icon_state = "smartfridge"; + req_access_txt = "0"; + use_power = 0 + }, +/turf/closed/wall/mineral/titanium, +/area/shuttle/abandoned) +"Qma" = ( +/obj/machinery/door/airlock/titanium{ + name = "E.V.A. equipment" + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"Qmb" = ( +/obj/machinery/door/airlock/titanium{ + name = "recovery shuttle interior airlock" + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"Qmc" = ( +/obj/machinery/door/airlock/titanium{ + name = "recovery shuttle interior airlock" + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"Qmd" = ( +/obj/structure/sign/cargo, +/turf/closed/wall/mineral/titanium, +/area/shuttle/abandoned) +"Qme" = ( +/obj/machinery/door/airlock/titanium{ + name = "cargo bay" + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/effect/turf_decal/delivery{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/shuttle/abandoned) +"Qmf" = ( +/obj/machinery/porta_turret/centcom_shuttle/weak{ + dir = 4 + }, +/turf/closed/wall/mineral/titanium, +/area/shuttle/abandoned) +"Qmg" = ( +/obj/machinery/vending/cigarette{ + use_power = 0 + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qmh" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"Qmi" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"Qmj" = ( +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/machinery/light/built{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"Qmk" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"Qml" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"Qmm" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"Qmn" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/machinery/light/built{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"Qmo" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/item/folder/blue, +/obj/item/pen, /obj/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qmp" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/area/maintenance/bar) -"Qpw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) -"Qpx" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/bar) -"Qpy" = ( -/obj/structure/table/wood/poker, -/obj/item/coin/iron, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qpz" = ( -/obj/structure/table/wood/bar, -/obj/item/reagent_containers/spray/cleaner, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"QpA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) -"QpB" = ( -/obj/effect/spawner/lootdrop/keg, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"QpC" = ( -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"QpD" = ( -/obj/structure/chair/stool, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/bar) -"QpE" = ( -/obj/structure/chair/stool, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -35 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"QpF" = ( -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"QpG" = ( -/obj/machinery/vending/kink, -/turf/open/floor/wood, -/area/maintenance/bar) -"QpH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) -"QpI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"QpJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"QpK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"QpL" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; +/obj/item/storage/photo_album, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qmq" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/sign/vacuum{ pixel_x = -32 }, -/obj/structure/closet/radiation, -/obj/effect/turf_decal/stripes/line{ - dir = 8 +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"QpM" = ( -/obj/machinery/camera{ - c_tag = "Gravity Generator Foyer" - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 32 - }, -/obj/structure/closet/radiation, -/obj/effect/turf_decal/stripes/line{ +/obj/machinery/light/small/built{ dir = 4 }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"QpN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"Qmr" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qms" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"QpO" = ( -/turf/closed/wall, -/area/space) -"QpP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qmt" = ( +/obj/structure/chair, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qmu" = ( +/obj/structure/chair, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qmv" = ( +/obj/structure/chair, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"QpQ" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"QpR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qmw" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/obj/machinery/light{ - dir = 4 +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qmx" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"QpS" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qmy" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"QpT" = ( -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/space) -"QpU" = ( -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/space) -"QpV" = ( -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/space) -"QpW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qmz" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"QpX" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"QpY" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"QpZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"QmA" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"Qqa" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"Qqb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QmB" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"Qqc" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 20 +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QmC" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 +/obj/machinery/turretid{ + icon_state = "control_kill"; + lethal = 1; + locked = 0; + pixel_x = -28; + req_access = null }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"Qqd" = ( -/obj/machinery/power/terminal, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/cable, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"Qqe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QmD" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"Qqf" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"Qqg" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"Qqh" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"Qqi" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/item/paper/guides/jobs/engi/gravity_gen{ - layer = 3 - }, -/obj/structure/table, -/obj/item/pen/blue, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"Qqj" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"Qqk" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"Qql" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"Qqm" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Gravity Generator APC"; - areastring = "/area/engine/gravity_generator"; - pixel_x = -25; - pixel_y = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, /obj/structure/chair/office/light{ dir = 1 }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"Qqn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"QmE" = ( +/obj/machinery/door/airlock/titanium{ + name = "recovery shuttle external airlock" }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"Qqo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"Qqp" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"QmF" = ( +/obj/machinery/door/airlock/titanium{ + name = "recovery shuttle interior airlock" }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"Qqq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"Qqr" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 32 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engine/gravity_generator) -"Qqs" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"Qqt" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"Qqu" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"Qqv" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"Qqw" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"Qqx" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"Qqy" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"Qqz" = ( -/obj/effect/landmark/carpspawn, -/turf/open/space/basic, -/area/space) -"QqA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"QqB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/black, -/area/engine/gravity_generator) -"QqC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"QmG" = ( +/obj/structure/chair{ dir = 4 }, -/obj/machinery/camera{ - c_tag = "Gravity Generator Room"; - dir = 8; - network = list("SS13") +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/turf/open/floor/plasteel/black, -/area/engine/gravity_generator) -"QqD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"QqE" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"QqF" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"QqG" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"QqH" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"QqI" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"QqJ" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"QqK" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"QqL" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"QqM" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"QqN" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"QqO" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"QqP" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"QqQ" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"QqR" = ( -/obj/structure/grille, -/turf/open/space/basic, -/area/space) -"QqS" = ( -/obj/structure/grille, -/turf/open/space/basic, -/area/space) -"QqT" = ( -/obj/structure/grille, -/turf/open/space/basic, -/area/space) -"QqU" = ( -/obj/structure/grille, -/turf/open/space/basic, -/area/space) -"QqV" = ( -/obj/structure/grille, -/turf/open/space/basic, -/area/space) -"QqW" = ( -/obj/structure/grille, -/turf/open/space/basic, -/area/space) -"QqX" = ( -/obj/structure/grille, -/turf/open/space/basic, -/area/space) -"QqY" = ( -/obj/structure/grille, -/turf/open/space/basic, -/area/space) -"QqZ" = ( -/obj/structure/grille, -/turf/open/space/basic, -/area/space) -"Qra" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/bot{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"Qrb" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/bot{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"Qrc" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/bot{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"Qrd" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/bot{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"Qre" = ( +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QmH" = ( /obj/structure/table, -/obj/item/grenade/barrier{ - pixel_x = 4 +/obj/item/reagent_containers/food/drinks/shaker, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/obj/item/grenade/barrier, -/obj/item/grenade/barrier{ - pixel_x = -4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) -"Qrf" = ( -/obj/structure/rack, -/obj/item/gun/energy/e_gun/dragnet, -/obj/item/gun/energy/e_gun/dragnet, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) -"Qrg" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001; - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) -"Qrh" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/suit/armor/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/head/helmet/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/riot, -/obj/item/clothing/head/helmet/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/shield/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/shield/riot, -/obj/item/shield/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) -"Qri" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/camera/motion{ - c_tag = "Non-Lethal Armory Motion Sensor"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"Qrj" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"Qrk" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"Qrl" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"Qrm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"Qrn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"Qro" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"Qrp" = ( -/obj/machinery/door/poddoor/shutters{ - id = "lowsecarmory"; - name = "Non-Lethal Armoury Shutter" - }, -/obj/machinery/button/door{ - id = "lowsecarmory"; - name = "Non-Lethal Armory Shutters"; - pixel_y = 26; - req_access_txt = "3" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"Qrq" = ( -/obj/machinery/suit_storage_unit/security, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) -"Qrr" = ( -/obj/machinery/suit_storage_unit/security, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) -"Qrs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/tank_dispenser/oxygen, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) -"Qrt" = ( -/obj/machinery/suit_storage_unit/security, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) -"Qru" = ( -/obj/machinery/suit_storage_unit/security, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) -"Qrv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"Qrw" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"Qrx" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"Qry" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"Qrz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/camera/motion{ - c_tag = "Armory Motion Sensor"; - dir = 2; - name = "motion-sensitive security camera" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"QrA" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"QrB" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"QrC" = ( -/obj/structure/closet/secure_closet/lethalshots, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) -"QrD" = ( +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QmI" = ( /obj/structure/table, -/obj/item/storage/toolbox/drone, -/turf/open/floor/plasteel/vault{ +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QmJ" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QmK" = ( +/obj/structure/chair{ dir = 8 }, -/area/ai_monitored/security/armory) -"QrE" = ( -/obj/structure/falsewall, -/turf/open/floor/plating, -/area/security/execution/transfer) -"QrF" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QmL" = ( +/obj/machinery/door/airlock/titanium{ + name = "living quarters" }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"QrG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"QmM" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/obj/machinery/light/small{ - dir = 8 +/obj/item/roller{ + pixel_x = -3; + pixel_y = 7 }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"QrH" = ( -/obj/structure/sign/securearea{ - pixel_y = 32 +/obj/item/roller{ + pixel_x = 3; + pixel_y = 4 }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/table, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QmN" = ( +/obj/item/clothing/suit/bio_suit, +/obj/item/clothing/suit/bio_suit, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"QrI" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/head/bio_hood, +/obj/item/clothing/head/bio_hood, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/structure/table, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QmO" = ( +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/effect/decal/remains/human{ + desc = "They look like human remains, and have clearly been gnawed at." + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QmP" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/suit/armor/vest, +/obj/structure/table, +/obj/item/clothing/head/helmet/swat/nanotrasen, +/obj/item/clothing/head/helmet/swat/nanotrasen, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QmQ" = ( +/obj/item/storage/toolbox/emergency{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/emergency, +/obj/item/storage/toolbox/emergency{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/structure/table, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QmR" = ( +/obj/machinery/door/airlock/titanium{ + name = "bridge" + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"QmS" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/chair/comfy/black{ dir = 4 }, -/obj/structure/window/reinforced{ - dir = 1 +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/obj/structure/closet/secure_closet/brig{ - id = "highseccell"; - name = "High Security Cell Locker" +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QmT" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"QrJ" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/floorgrime, -/area/security/execution/transfer) -"QrK" = ( -/turf/open/floor/plasteel/floorgrime, -/area/security/execution/transfer) -"QrL" = ( -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" +/obj/machinery/computer/shuttle/white_ship, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QmU" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/turf/open/floor/plasteel/floorgrime, -/area/security/execution/transfer) -"QrM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"QrN" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/door_timer{ - id = "highseccell"; - name = "High Security Cell"; - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"QrO" = ( -/obj/effect/turf_decal/stripes/corner{ +/obj/structure/light_construct/small{ dir = 4 }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"QmV" = ( +/obj/machinery/vending/cola/random, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QmW" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/obj/machinery/door/window/brigdoor/security/cell{ - dir = 4; - id = "highseccell"; - name = "High Security Cell Interior" +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/obj/machinery/door/window/brigdoor/security/cell{ - dir = 8; - id = "highseccell"; - name = "High Security Cell Exterior" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/execution/transfer) -"QrP" = ( -/turf/open/floor/plasteel/floorgrime, -/area/security/execution/transfer) -"QrQ" = ( -/obj/structure/bed, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/turf/open/floor/plasteel/floorgrime, -/area/security/execution/transfer) -"QrR" = ( -/obj/machinery/flasher{ - id = "highseccell"; - pixel_x = 28 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/execution/transfer) -"QrS" = ( -/turf/open/floor/plasteel/floorgrime, -/area/security/execution/transfer) -"QrT" = ( -/turf/open/floor/plasteel/floorgrime, -/area/security/execution/transfer) -"QrU" = ( -/turf/open/floor/plasteel/floorgrime, -/area/security/execution/transfer) -"QrV" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"QrW" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"QrX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door_timer{ - id = "Cell 2"; - name = "Cell 2"; - pixel_y = -32 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/red/corner, -/area/security/brig) -"QrY" = ( -/obj/machinery/door_timer{ - id = "Cell 3"; - name = "Cell 3"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner, -/area/security/brig) -"QrZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/brig) -"Qsa" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 2"; - name = "Cell 2" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red/side, -/area/security/brig) -"Qsb" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 3"; - name = "Cell 3" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/red/side, -/area/security/brig) -"Qsc" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"Qsd" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"Qse" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"Qsf" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - desc = "Talk through this. It looks like it has been modified to not broadcast."; - dir = 2; - name = "Prison Intercom (General)"; - pixel_x = 25; - pixel_y = -2; - prison_radio = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"Qsg" = ( -/obj/machinery/flasher{ - id = "brigentry"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/structure/chair, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/hallway/primary/fore) -"Qsh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"Qsi" = ( -/obj/machinery/flasher{ - id = "Cell 2"; - pixel_x = -28 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"Qsj" = ( -/obj/machinery/flasher{ - id = "Cell 3"; - pixel_x = -28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"Qsk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/flasher{ - id = "Cell 4"; - pixel_x = 28 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"Qsl" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "briggate"; - name = "security shutters" - }, -/obj/machinery/door/window/eastright{ - name = "Brig Desk"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/black, -/area/security/brig) -"Qsm" = ( -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/hallway/primary/fore) -"Qsn" = ( -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/hallway/primary/fore) -"Qso" = ( -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/hallway/primary/fore) -"Qsp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/hallway/primary/fore) -"Qsq" = ( -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/hallway/primary/fore) -"Qsr" = ( -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/hallway/primary/fore) -"Qss" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/hallway/primary/fore) -"Qst" = ( -/obj/machinery/flasher{ - id = "brigentry"; - pixel_x = 28 - }, -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/hallway/primary/fore) -"Qsu" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "briggate"; - name = "security shutters" - }, -/obj/machinery/door/window/southleft{ - base_state = "right"; - icon_state = "right"; - name = "Brig Desk"; - req_access_txt = "1" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel/black, -/area/security/brig) -"Qsv" = ( -/obj/machinery/door/poddoor/preopen{ - id = "seclobby"; - name = "security blast door" - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/brig) -"Qsw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/hallway/primary/fore) -"Qsx" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/hallway/primary/fore) -"Qsy" = ( -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/hallway/primary/fore) -"Qsz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - cyclelinkeddir = 1; - id_tag = "outerbrig"; - name = "Security Lobby"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/hallway/primary/fore) -"QsA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/hallway/primary/fore) -"QsB" = ( -/turf/open/floor/plasteel/red/side, -/area/hallway/primary/fore) -"QsC" = ( -/turf/open/floor/plasteel/red/side, -/area/hallway/primary/fore) -"QsD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/hallway/primary/fore) -"QsE" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/hallway/primary/fore) -"QsF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - cyclelinkeddir = 1; - id_tag = "outerbrig"; - name = "Security Lobby"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel/red/side, -/area/hallway/primary/fore) -"QsG" = ( -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/hallway/primary/fore) -"QsH" = ( -/obj/machinery/flasher{ - id = "brigentry"; - pixel_x = 0; - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QmX" = ( /obj/structure/chair{ dir = 1 }, -/turf/open/floor/plasteel/red/side, -/area/hallway/primary/fore) -"QsI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QmY" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QmZ" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qna" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qnb" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qnc" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qnd" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/structure/chair/office/light, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"Qne" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/item/clothing/head/centhat{ + desc = "There's a gouge through the top where something has clawed clean through it. Whoever was wearing it probably doesn't need a hat any more."; + name = "\improper damaged CentCom hat" + }, +/obj/effect/decal/remains/human{ + desc = "They look like human remains, and have clearly been gnawed at." + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"Qnf" = ( +/obj/item/phone{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/structure/table, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qng" = ( +/obj/machinery/vending/snack/random, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qnh" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/machinery/light/built{ + dir = 2 + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"Qni" = ( +/obj/structure/sign/science{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"Qnj" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/machinery/light, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"Qnk" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/structure/table, +/obj/item/device/megaphone, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qnl" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/machinery/computer/camera_advanced/shuttle_docker/whiteship{ + station_lock_override = 1; + view_range = 15; + x_offset = -3; + y_offset = -7 + }, +/obj/machinery/light/built{ + dir = 2 + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qnm" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/item/device/mass_spectrometer, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qnn" = ( +/obj/structure/table, +/obj/item/device/radio/off{ + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qno" = ( +/obj/structure/sign/botany, +/turf/closed/wall/mineral/titanium, +/area/shuttle/abandoned) +"Qnp" = ( +/obj/machinery/door/airlock/titanium{ + name = "hydroponics" + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"Qnq" = ( +/obj/machinery/door/airlock/titanium{ + name = "kitchen" + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"Qnr" = ( +/obj/machinery/door/airlock/titanium{ + name = "laboratory" + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"Qns" = ( +/obj/structure/sign/bluecross_2, +/turf/closed/wall/mineral/titanium, +/area/shuttle/abandoned) +"Qnt" = ( +/obj/item/storage/bag/plants/portaseeder, +/obj/structure/table, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 13; + pixel_y = 5 + }, +/obj/item/reagent_containers/glass/bottle/nutrient/ez, +/obj/item/reagent_containers/glass/bottle/nutrient/ez, +/obj/item/reagent_containers/glass/bottle/nutrient/ez, +/obj/item/reagent_containers/glass/bottle/nutrient/rh{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qnu" = ( +/obj/machinery/biogenerator{ + idle_power_usage = 0; + use_power = 0 + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qnv" = ( +/obj/machinery/vending/hydroseeds{ + use_power = 0 + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/machinery/light/small/built{ + dir = 1 + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qnw" = ( +/obj/machinery/processor, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/machinery/light/small/built{ + dir = 1 + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qnx" = ( +/obj/structure/kitchenspike, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qny" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/storage/box/donkpockets, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qnz" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QnA" = ( +/obj/machinery/sleeper{ + dir = 4; + use_power = 0 + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QnB" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/blood/empty{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/random, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/effect/decal/cleanable/xenoblood, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QnC" = ( +/obj/structure/table/optable, +/obj/item/surgical_drapes, +/obj/item/storage/firstaid/regular, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/machinery/light/small/built{ + dir = 1 + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QnD" = ( +/obj/structure/table, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/clothing/suit/apron, +/obj/item/shovel/spade, +/obj/item/cultivator, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/item/wirecutters, +/obj/item/device/plant_analyzer, +/obj/item/reagent_containers/glass/bucket, +/obj/machinery/light/small/built{ + dir = 8 + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QnE" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"QnF" = ( +/obj/machinery/smartfridge{ + use_power = 0 + }, +/turf/closed/wall/mineral/titanium, +/area/shuttle/abandoned) +"QnG" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"QnH" = ( +/obj/effect/decal/cleanable/egg_smudge, +/obj/effect/decal/cleanable/flour, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"QnI" = ( +/obj/structure/table, +/obj/item/kitchen/rollingpin, +/obj/item/kitchen/knife, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/machinery/light/small/built{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/fore/secondary) -"QsJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QnJ" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" }, -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/maintenance/fore/secondary) -"QsK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/light/small{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QnK" = ( +/obj/structure/chair/office/light, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"QnL" = ( +/obj/machinery/vending/wallmed{ + name = "Emergency NanoMed"; + pixel_x = -28; + req_access_txt = "0"; + use_power = 0 + }, +/obj/machinery/iv_drip, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/machinery/light/small/built{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"QnM" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/effect/decal/cleanable/ash, +/obj/effect/decal/cleanable/xenoblood, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"QnN" = ( +/obj/effect/decal/cleanable/xenoblood, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/effect/decal/remains/xeno{ + desc = "A pile of remains that look vaguely humanoid. The skull is abnormally elongated, and there are burns through some of the other bones." + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"QnO" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/decal/cleanable/xenoblood, +/obj/effect/decal/cleanable/xenoblood/xgibs/limb, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"QnP" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QnQ" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QnR" = ( +/obj/machinery/hydroponics/constructable, +/obj/item/seeds/glowshroom, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QnS" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QnT" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QnU" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 5 + }, +/obj/item/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/obj/item/reagent_containers/dropper, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QnV" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/soymilk, +/obj/item/reagent_containers/food/condiment/soymilk, +/obj/item/reagent_containers/food/condiment/sugar, +/obj/item/reagent_containers/food/condiment/sugar, +/obj/item/reagent_containers/food/condiment/sugar, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QnW" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 5; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/beaker, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/syringe, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QnX" = ( +/obj/structure/table, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QnY" = ( +/obj/structure/table, +/obj/item/hand_labeler, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"QnZ" = ( +/obj/structure/table, +/obj/item/defibrillator, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qoa" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = 6 + }, +/obj/item/reagent_containers/glass/bottle/charcoal{ + pixel_x = -3 + }, +/obj/item/reagent_containers/syringe, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qob" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/item/clothing/suit/apron/surgical, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qoc" = ( +/obj/structure/table, +/obj/item/storage/backpack/duffelbag/med/surgery{ + pixel_y = 4 + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"Qod" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space/basic, +/area/space) +"Qoe" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space/basic, +/area/space) +"Qof" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/open/space/basic, +/area/space) +"Qog" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space/basic, +/area/space) +"Qoh" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/open/space/basic, +/area/space) +"Qoi" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"Qoj" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/open/space/basic, +/area/space) +"Qok" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space/basic, +/area/space) +"Qol" = ( +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/space) +"Qom" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space/basic, +/area/space) +"Qon" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space/basic, +/area/space) +"Qoo" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/open/space/basic, +/area/space) +"Qop" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space/basic, +/area/space) +"Qoq" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/open/space/basic, +/area/space) +"Qor" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/open/space/basic, +/area/space) +"Qos" = ( +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/space) +"Qot" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space/basic, +/area/space) +"Qou" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space/basic, +/area/space) (1,1,1) = {" aaa @@ -65492,11 +61546,11 @@ aaa aaa aaa aaa -cyc -cyc -cye -cyc -cyc +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -65749,11 +61803,11 @@ aaa aaa aaa aaa -cyc -cyw -cyi -cyw -cyc +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -66006,11 +62060,11 @@ aaa aaa aaa aaa -cyc -cyi -cyi -cyi -cyc +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -66263,11 +62317,11 @@ aaa aaa aaa aaa -cyc -cyi -cyi -cyi -cyc +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -66520,11 +62574,11 @@ aaa aaa aaa aaa -cyc -cyi -cyi -cyi -cyc +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -66777,11 +62831,11 @@ aaa aaa aaa aaa -cyc -cyi -cyi -cMa -cyc +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -67034,11 +63088,11 @@ aaa aaa aaa aaa -cyc -cyi -cyi -cyi -cyc +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -67288,14 +63342,14 @@ aaa aaa aaa aaa -aaa -aaa -aaa cyc -cyi -cyi -cyi cyc +Qll +cyc +cyc +aaa +aaa +aaa aaa aaa aaa @@ -67541,19 +63595,19 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cyc +cyf +cym +cym +cym +cyR +Qmq cyi -cyi -czd -cyc -aaa +QmU +cyR +cym +cym +cym +cyF aaa aaa aaa @@ -67797,21 +63851,21 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa cyc -cyw -cyi -cyw cyc -aaa -aaa +cyo +cyo +cyc +cyc +cyc +QmF +cyc +cyc +cyc +cyo +cyo +cyc +cyc aaa aaa aaa @@ -68054,21 +64108,21 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa cyc cyc -cye cyc cyc -aaa -aaa +cyc +Qmg +Qmr +cyi +QmV +Qng +cyc +cyc +cyc +cyc +cyc aaa aaa aaa @@ -68311,21 +64365,21 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa cyc -cyi +Qlm +cyc +QlL +QlW +QlC +QlC +QlC +QlC +QlC +cyc +Qnt +QnD +QnP cyc -aaa -aaa -aaa aaa aaa aaa @@ -68568,21 +64622,21 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cyc -cyc -cye -cyc -cyc -aaa -aaa +cyR +Qln +Qlx +QlM +QlX +Qmi +Qms +QmG +Qmw +QlC +Qno +Qnu +cyi +QnP +cyR aaa aaa aaa @@ -68825,21 +64879,21 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa cyc cyc -cyw +cyc +cyc +cyc +Qmj +Qmt +QmH +QmX +QlC +Qnp cyi -cyw -cyc -cyc -aaa +QlC +QnR +cyR aaa aaa aaa @@ -69082,27 +65136,27 @@ aaa aaa aaa aae +cyR +Qlo +Qly +QlN +QlY +Qmk +Qmt +QmI +QmX +Qnh cyc -cyf -cym -cym -cym -cyF -aaa -cyc -cyw -cyi -cyi -cyi -cyw +Qnv +QnE +QnP cyc aaa -cyf -cym -cym -cym -cyF -cyc +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -69340,24 +65394,18 @@ aaa aaa aaa cyc -cyc -cyo -cyo -cyo +Qlp +Qlz +QlO +QlZ +QlC +Qmt +QmJ +QmX +QlC cyc cyc -cyc -cMc -cyi -cyi -cyi -cMa -cyc -cyc -cyc -cyo -cyo -cyo +QnF cyc cyc aaa @@ -69463,6 +65511,12 @@ aaa aaa aaa aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (31,1,1) = {" aaa @@ -69596,26 +65650,26 @@ aaa aaa aaa aaa +cyc +cyc +cyc +cyc +cyc +QlC +Qmw +QmK +Qms +QlC +Qnq +QlC +QnG +QnT +cyc +aaa +aaa +aaa +aaa aaa -cyc -cyn -cyv -cyv -cyn -cyc -cyw -cyi -cyi -cyi -cyi -cyi -cyw -cyc -cyn -cyv -cyv -cyn -cyc aaa aaa aaa @@ -69853,25 +65907,25 @@ aaa aaa aaa aaa -aaa -aaa cyc +Qlq +QlA cyn -cyv -cLY cyc +cLY +QlC cyi -cyi -cyi -cyi -cyi +QlC +QlC +cyc +Qnw cyi czr -cyc -cMk -cyv -cyn -cyc +cyR +aaa +aaa +aaa +aaa aaa aaa aaa @@ -70110,24 +66164,24 @@ aaa aaa aaa aaf -aaa -aaa -aaa -cyc -cyc -cyH -cyc -cyc -cyc cyR -cza +Qlr +QlB +QlP +cyc +cyc +cyc +QmL +cyc +cyc +cyc +Qnx +QnH +QnU cyR -cyc -cyc -cyc -cyH -cyc -cyc +aaa +aaa +aaa aaa aaa aaa @@ -70367,24 +66421,24 @@ aaa aaa aaf aaf +cyR +Qlr +cyi +QlC +QlD +cyi +QlC +QlC +QlC +QlC +cyc +Qny +QnI +QnV +cyc aaa aaa aaa -cyc -cyc -cyi -cyi -cyi -cyi -cyi -cyi -cyi -cyi -cyi -cyi -cyi -cyc -cyc aaa aaa aaa @@ -70624,25 +66678,25 @@ aaf aaa aAC aaf +cyc +Qlt +QlC +QlR +cyc +QlC +Qms +QmM +Qms +QlC +cyc +cyc +cyc +cyc +cyc +aaa +aaa aaa aaa -cyc -cyc -cyw -cyI -cyi -cyi -cyi -cyi -cMd -cyi -cyi -cyi -cyi -cyi -cyc -cyc -cyc aaa aaa aaa @@ -70881,26 +66935,26 @@ awW asE arB aaf +cyc +cyc +QlD +cyc +cyc +Qmn +Qmw +QmN +Qmw +Qni +cyc +Qnz +QnJ +QnW +cyc +aaa +aaa +aaa +aaa aaa -cyc -cyc -cyw -cyi -cyi -cyi -cyi -cyc -cyc -cyc -cyc -cyc -cyc -cyi -cyi -cyc -cyc -cyc -cyc aaa aaa aaa @@ -71138,26 +67192,26 @@ ayk awW aAD awW -cyc -cyc -cyc -cyc -cyc -cyc -cyw +Qll +Qlu +QlC cyi -cyc -cyV -cyi -cMh -cyi -cye -cyi -cyi -cye -cyi -cyw -cyc +Qmb +QlC +Qmk +QmO +QlC +QlC +Qnr +QlC +QnK +QnX +cyR +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -71397,25 +67451,25 @@ auP cyt cyd cyi +QlF +cyx +Qmb cyi -cyx -cyx -cyw -cyc +QlC cMa -cyc -cyW cyi -cze +QlC +cyc +Qms czm +QnY cyc -cMc -cyi -cyc -cyi -czB -cyc -cyc +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -71653,26 +67707,26 @@ awW awW awW cyc -cyi -cyi -cyi -cyi -cyJ cyc -cyi -cye -cyi -cMe -cyi -czl +QlG cyc -cyi -cyi cyc -cyi -cyi -cyw +QlC +Qms +QmP +Qms +Qnj cyc +cyc +cyc +cyc +cyc +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -71911,24 +67965,18 @@ aAF awW cyc cyk -cyi -cyi -cyi -cyi -cyc -cyi -cyc -cyc -cyc -cyc -cyc -cyc -cyi -cyI -cyR -czA -cyi -cyi +QlH +QlS +Qmd +QlC +Qms +QmQ +Qmw +QlC +Qns +QnA +QnL +QnZ cyc aaa aaa @@ -72033,6 +68081,12 @@ aaa aaa aaa aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (41,1,1) = {" aaa @@ -72166,27 +68220,27 @@ ayl ayl aAE awW -cyc +cyR cyj +QlI +QlI +Qme +QlC +QlC cyi -cyi -cyi -cyi -cye -cyi -cyi -cyi +QlC +QlC cMf cyi -cyi -cyi -cyi -cyi +QnM +Qoa cyR -cyi -cyi -czC -cyc +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -72423,27 +68477,27 @@ ayl ayl bgi awW -cyc -cyi -cyi -cyi -cyi -cyi -cyc -cyw -cyi -cyi -cyi -cyi -cyi -cyi -cyi -czw cyR -cyi -cyi -cyi +Qlv +QlI +QlU cyc +cyc +cyc +QmR +cyc +cyc +cyc +QnB +QnN +Qob +cyR +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -72681,26 +68735,26 @@ azA bgh awW cyc -cyi -cyi -cyi -cyi +Qlw +QlK +QlV +cyc cyw +QmC +QlC +Qms +Qnk cyc +QnC +QnO +Qoc cyc -cyc -cyR -cza -cyR -cyc -cyc -cyc -cyc -cyc -cyi -cyi -cyi -cyc +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -72938,26 +68992,26 @@ awW awW awW cyc -cyi -cyi -cyi -cyw cyc -cyw -cyi -cyi -cyi -cyi -cyi -cyi -cyX -cyX -cyX +cyR cyc -cyi -cyi -cyw cyc +Qmo +QmD +QlC +Qnd +Qnl +cyc +cyc +cyR +cyc +cyc +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -73194,26 +69248,26 @@ ayl beL auP cyu -cye -cyi -cyq -cyi -cyc -cyw -cyi -cyi -cyi -cyi -cyi -cyi -cyi -cyi -cyi -cyi -cyw -cyw -czy -cyc +aaa +aaa +aaa +aaa +cyR +Qmp +QlC +QmS +Qne +Qnm +cyR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -73451,26 +69505,26 @@ ayk awW aAD awW -cyc -cyc -cyc -cyz -cyc +aaa +aaa +aaa +aaa +cyR cLZ cyO -cyi -cyi -cyi -cyi -cyi -cyi -cyi -cyi -czx -czn -cyc -cyc -cyc +QmT +Qnf +Qnn +cyR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -73710,23 +69764,23 @@ awW aaf aaa aaa -cyc -cyy -cyc -cTW -cyO -cyi -cyi -cyX -czb -cyX -cyi -cyi -cyi -cyi -cyw -cyc -cyc +aaa +aaa +Qmf +cyR +cyR +cyR +cyR +cyR +Qmf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -73965,24 +70019,24 @@ ayl beN arB aaf -aaf -aaf -cyc -cyA -cyc -cyw -cyP -cyi -cyi -cyY -czc -cyX -cyi -cyi -cyi -cyw -cyc -cyc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -74222,23 +70276,23 @@ ayl beM aAC aaf -aaf -aaf -aaf -aaf -cyc -cyc -cyc -cyR -cyR -cyR -cyR -cyR -cyR -cyR -cyc -cyc -cyc +aHr +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -75923,7 +71977,6 @@ aaa aaa aaa aaa -Qlj aaa aaa aaa @@ -75934,6 +71987,7 @@ aaa aaa aaa aaa +Qlk aaa aaa aaa @@ -75999,7 +72053,7 @@ auT aBI aDf aEK -QlT +aFM aHy ayl aKk @@ -77588,9 +73642,9 @@ aaa aaa aaa aaa -Qng aaa -aHr +aaa +aag aaa aaa aaa @@ -77845,9 +73899,9 @@ aaa aaa aaa aaa -Qng aaa -aHr +aaa +aag aaa aaa aaa @@ -78102,9 +74156,9 @@ aaa aaa aaa aaa -Qng aaa -aHr +aaa +aag aaa aaa aaa @@ -78359,9 +74413,9 @@ aaa aaa aaa aaa -Qng aaa -aHr +aaa +aag aaa aaa aaa @@ -78616,9 +74670,9 @@ aaa aaa aaa aaa -Qng aaa -aHr +aaa +aag aaa aaa aaa @@ -78873,9 +74927,9 @@ aaa aaa aaa aaa -Qng aaa -aHr +aaa +aag aaa aaa aaa @@ -79130,9 +75184,9 @@ aaa aaa aaa aaa -Qng aaa -aHr +aaa +aag aaa aoV bZm @@ -79387,9 +75441,9 @@ aaa aaa aaa aaa -Qng aaa -aHr +aaa +aag aaa aoV bVz @@ -79644,9 +75698,9 @@ aaa aaa aaa aaa -Qng aaa -aHr +aaa +aag aaa bVw bVz @@ -79901,9 +75955,9 @@ aaa aaa aaa aaa -Qng aaa -aHr +aaa +aag aaa apQ bVz @@ -80158,9 +76212,9 @@ aaa aaa aaa aaa -Qng -QmH -aHr +aaa +aaa +aag aaa apQ bVz @@ -80415,10 +76469,10 @@ aaa aaf aaf aaf -Qng -QmH -aaf -QmH +aaa +aaa +aag +aaa bVx caf aoV @@ -80672,11 +76726,11 @@ aaa aaa aaa bCq +bCq +bCq bLv bCq -bCq -bCq -bCq +aoV cbj aoV bVw @@ -80712,7 +76766,7 @@ aaa aaa aaa aaa -Qqz +aaa aaa aaa aaa @@ -80931,8 +76985,8 @@ aaa bCq bJP bCq -bTs -Qnz +bSn +bCq bCq cbj bLv @@ -81186,10 +77240,10 @@ cTg cTg aaa bCq -bHE -bCq -Qnw -QnA +bPS +bRd +bPS +bPS bCq cbk bLv @@ -81389,17 +77443,17 @@ alU ali ali atO -axo -alU -alU -alU -aBQ -aBQ -aBQ -aBQ -aBQ -aBQ -aBQ +axm +ayz +ayz +ayz +aBR +aBR +aBR +aBR +aBR +aBR +aBR aLJ aLE aOl @@ -81446,7 +77500,7 @@ bLv bPR bRc bSo -QnB +bTs bCq bVy bLv @@ -81648,16 +77702,16 @@ apQ avY axo ayB -Qlm -Qlr -QlC -QlJ -QlN -QlU -Qma -Qmg +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaa aKu -aLF +aLM aLF aOs aPG @@ -81700,9 +77754,9 @@ bLt bMF aaa bCq -bHE -bCq -bCq +bPS +bRf +bSo bTu bCq bVB @@ -81904,17 +77958,17 @@ aoV aoV avY axo -ayB -Qln -Qlu -QlD -QlK -QlO -QlV -Qmb -Qmh +ayA +aaf +aBa +aBa +aBa +aBa +aBa +aBa +aaf aKt -aLE +aLL bDe aOl aPF @@ -81957,9 +78011,9 @@ bLs cTg aaa bLv -bPU -bCq -bPS +bPT +bRe +bSo bTt bCq bVA @@ -82161,17 +78215,17 @@ apQ apQ avY axo -ayB -Qlo -Qlv -QlE +ayA +aaa +aBa +aBT aDs -QlP -QlW -Qmc -Qmi -aKu -aLE +aEN +aGb +aBa +aaa +aKt +aLN aLE aOl aPH @@ -82216,7 +78270,7 @@ aaa bCq bPV bCq -Qnw +bCq bTw bCq bVD @@ -82417,18 +78471,18 @@ aqQ aqQ aqQ avZ -axo +axp ayC azH -Qlw +aBb aBS -QlJ -QlJ -QlJ -QlJ -QlJ -QlJ -aLE +aDr +aEM +aGa +aHF +aJd +aKv +aLN aLE aOl aPF @@ -82471,10 +78525,10 @@ bGi aoV aoV bCq -bPW -Qnv +bPU +bHE bSp -QnB +bTv bCq bVC bWx @@ -82505,18 +78559,18 @@ cqK crl bLv aaa -abY -abY -abY -abY -abY -abY -abY -abY -abY aaa -abY -abY +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -82673,17 +78727,17 @@ aqR aGh aqR aqR -Qll -axq +awb +axo ayA -Qlp -Qlx -QlF -QlL -apS -apS -apS -apS +aaa +aBa +aBV +alu +aEM +aGd +aHG +aJe aKw aLP aMR @@ -82728,10 +78782,10 @@ bGi aoV aoV bCq -Qns +bPW bCq bCq -bTu +bTy bCq bVF bWA @@ -82762,19 +78816,19 @@ cAQ crm bLv aaa -abY -ctv -ctv -ctv -ctv -ctv -ctv -ctv -abY -aaf -ctv -abY -abY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -82930,19 +78984,19 @@ aqQ aqQ aqQ aqQ -avZ -axp +awa +axq ayD azI -Qly +aBc aBU aDt -aDt -aDt -aDt -aDt -aDt -aLE +aEO +aGc +aHF +aJd +aKb +aLN aMQ aNT aPI @@ -82986,7 +79040,7 @@ aoV aoV bCq bHE -bPU +bHE bSq bTx bCq @@ -83018,20 +79072,20 @@ cqv cqL bJe bLv -QmH -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaf -ctv -ctv -abY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -83189,17 +79243,17 @@ aaa aag avY axo -ayB -Qln -Qlz -QlG +ayA +aaa +aBa +aBW aDv -QlQ -QlX -Qmd -Qmj -Qmm -aLE +aEP +aGe +aBa +aaa +aKt +aLN aMS aOt aPK @@ -83245,20 +79299,20 @@ bCq bPY cOw bCq -QnC -QnC -QnC -QnC -QnC -Qox -QnC -QnC -QnC -QnC -QnC -QnC -QnC -QnC +bCq +bCq +bCq +bCq +bCq +bYy +bCq +bCq +bLv +bCq +bCq +bCq +bCq +bLv bUs bLv aaa @@ -83275,19 +79329,19 @@ bCq bCq bCq bCq -QmH -QmH -QmH -aaa -aaa -QmH aaa aaa aaa -QmH -aaf -aaf -aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -83446,17 +79500,17 @@ aaa aag avY axo -ayB -Qlr -QlA -QlH -QlM -QlR -QlY -Qme -Qmk -Qmn -aLE +ayA +aaf +aBa +aBa +aBa +aBa +aBa +aBa +aaf +aKt +aLN aMS aOi aLE @@ -83502,20 +79556,20 @@ bCq bPX bRg bRg -QnC -QnK +bCq +bHE bVG -Qoc -Qon -QnK -QoJ -QnC -QnK -Qpg -bVG -QnK -QpB -QnC +bHE +bHE +bHE +bLv +apQ +aoV +aoV +aoV +aoV +aoV +bLv bUs bLv aaa @@ -83530,20 +79584,20 @@ aaa aaa aaf aaf -QpO +cig +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa -QpZ -bij -bij -bij -bij -bij -bij -QqA -btG -btG aaa -QmH aaa aaa aaa @@ -83680,7 +79734,7 @@ aaa aaa aaa aaa -Qqz +aaa aaa aaa aaa @@ -83702,18 +79756,18 @@ aaa aaa aag avY -axo -ayB -Qls -QlB -QlI -aDt -QlS -QlZ -Qmf -Qml -Qmm -aLE +axs +ayF +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaa +aKx +aLN aMS aOi aLE @@ -83759,20 +79813,20 @@ bLv bQa bHE bHE -QnC -QnL -QnS -Qod -Qoo -Qoz -Qoo -QoU -Qoo -Qoo -Qpo -Qpl -QpC -QnC +bCq +bHE +bLv +bLv +bLv +bLv +bLv +aoV +aoV +aoV +aoV +aoV +apQ +bLv bUs bLv aaf @@ -83784,25 +79838,25 @@ cjJ cjJ cjJ cjJ -QpI -bij -bij +cjJ +cjJ +aaa crn -bij -Qqa -Qqi -Qqm -bnT -bkI -bgN -bgN -QqB -bgN -btG -QmH -aaT -abY -abY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -83937,7 +79991,7 @@ aaa aaa aaa aaa -aHr +aae aaa aaa aaa @@ -83959,17 +80013,17 @@ aaf arP avd avZ -axo -arP -arP -arP -arP -arP -arP -arP -arP -arP -arP +axr +ayE +ayE +ayE +ayE +ayE +ayE +ayE +ayE +ayE +ayE aLl aMT aOi @@ -84016,20 +80070,20 @@ bLv bPZ bHE bHE -QnF -QnM -QnT -Qoe -Qop -QoA -QoL -QoV -QoL -Qpi -Qpp -bdV -QnK -QnC +cTF +bHE +bLv +aoV +aoV +aoV +aoV +aoV +aoV +aoV +aoV +aoV +aoV +bLv bUs bLv aaa @@ -84042,24 +80096,24 @@ cnL cov cpj cpS -btG -QpL -QpP -btG -Qqb -bsc -Qqn -bnV -bgN -bih -big -bii -bgN -btG +cjJ +aaa +crn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa -aaT -ctv -abY aaa aaa aaa @@ -84273,20 +80327,20 @@ bLv bHE bHE bSs -QnC -QnN -QnU -Qof -Qoq -QnU -QnK -QoW -Qpc +bCq +bHE +bLv +aoV +aoV +aoV +bcU +apQ +aaH cCa -Qpq -cCa -QpD -QnC +aoV +aoV +aoV +bLv bUs bLv aaa @@ -84299,24 +80353,24 @@ cnN cox cpl cpU -btF -bsc -QpQ -btF -bsc -Qqj -Qqn -bnU -bgN -big -bgN -bkZ -bgN -btG -QmH -aaT -ctv -abY +cjJ +aaf +crn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -84530,20 +80584,20 @@ bCq bHE bRh bSr -QnC -QnO -QnV -Qog -Qor -QoC -QoM -QnC +bCq +bHE +bLv +apQ +apQ +aoV +aoV +aaH bdV -Qpj -Qpq -cCa -QpE -QnC +aaH +apQ +apQ +apQ +bLv bUs bLv aaf @@ -84556,24 +80610,24 @@ cnM cow cpk cpT -btG -QpM -QpR -btG -Qqc -bsc -Qqn -bnV -bgN -bii -big -bih -bgN -btG +cjJ +aaa +crn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa -aaT -ctv -abY aaa aaa aaa @@ -84708,11 +80762,11 @@ abc abc afu abc -abc -abc -abc -abc -QmH +aaa +aaa +aaa +aaa +aaa aaa akD akD @@ -84787,20 +80841,20 @@ bCq bOK bCq bCq -QnC -QnP -QnW -Qoh -Qos -QoD -QnC -QnC -bdV -Qpk -Qpq -Qpy -bdV -QnC +bCq +bHE +bLv +aoV +aoV +aoV +aoV +cjn +bSu +aaH +aoV +aoV +aoV +bLv bUs bLv aaa @@ -84812,25 +80866,25 @@ cnq cnP coz cpn -QpJ -QpK -QpK -QpS -QpK -Qqd -Qqk -Qqq -Qqr -bmw -bgN -bgN -QqC -bgN -btG +cjJ +cjJ +aaa +crn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa -aaT -ctv -abY aaa aaa aaa @@ -84964,13 +81018,13 @@ abc aea aeH aft -QrE -QrF -QrG -QrM abc -QmH -QmH +aaa +aaa +aaa +aaa +aaa +aaa aaa aiU aln @@ -85045,19 +81099,19 @@ bHE bLv aaa bLv -QnQ -QnW -QnC -QnC -QnC -QnC -QnK -QnK -bdV -Qpt -bdV -QpF -QnC +bHE +bLv +aoV +aoV +aoV +aoV +aoV +aaH +apQ +aoV +aoV +aoV +bLv bUs bLv aaa @@ -85072,22 +81126,22 @@ cpm cjJ aaf aaf -QpT +crn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa -Qqe -bgO -bgO -bgO -bgO -bgO -bgO -QqD -btG -btG -QmH aaT -ctv -abY +aaT +aaa aaa aaa aaa @@ -85223,10 +81277,10 @@ aeJ afw abc abc -QrH -QrN -abc -QmH +aaf +aaa +aaf +aaf aaf aaf aiU @@ -85302,19 +81356,19 @@ bHE bLv aaf bLv -QnQ -QnW -Qoj -Qou -QoF -QoP -QnK -Qpd -Qpl -Qpu -QnK -QnK -QnC +bUt +bLv +apQ +apQ +aoV +aoV +aoV +aaH +aoV +aoV +apQ +apQ +bLv bUs bLv aaf @@ -85329,22 +81383,22 @@ cjJ cjJ aaa aaa -QpT +crn aaf -aaa -aaa -aaa -QmH -aaa -aaa -QmH -QmH -QmH -aaa -aaa aaT +aaT +aaT +aaT +aaT +aaT +aaT +aaT +aaT +aaa +aaf ctv -abY +aaT +aaT aaa aaa aaa @@ -85479,11 +81533,11 @@ aeb aeI afv agf -afA -QrI -QrO -afA -aiV +abc +aaf +aaa +aaa +aiT aiT aiV akG @@ -85559,19 +81613,19 @@ bLv bCq aaa bLv -bUz -QnW -Qok -Qov -QoG -QnC -QoY -Qpe -Qpm -Qpv -Qpz -QpG -QnC +bUs +bLv +aoV +aoV +aoV +aoV +aoV +apQ +aoV +aoV +aoV +aoV +bCq bUs bCq aaa @@ -85586,22 +81640,22 @@ cpo cjJ aaa aaa -QpT +crn aaf -QmH -aaa -aaa -QmH -aaa -aaa -QmH -QmH -QmH -QmH -aaa aaT ctv -abY +ctv +ctv +ctv +ctv +ctv +ctv +aaT +aaa +aaf +ctv +ctv +aaT aaa aaa aaa @@ -85736,11 +81790,11 @@ aee aeL afy agh -afA -QrJ -QrP -QrS -aiV +abc +aaf +aaa +aaf +aiT ajs akb akI @@ -85817,17 +81871,17 @@ aaa aaa bTB bUv -Qoa -Qol -Qol -Qol -Qol -Qol -Qol -Qol -Qol -Qol -Qol +bES +bES +bES +bES +bGp +bGp +bGp +bGp +bES +bES +bES car bUs bCq @@ -85845,20 +81899,20 @@ aaf aaf cig aaf -QmH -aaa -aaa -QmH -aaa -aaa -QmH -aaa -QmH +aaT +aaT +aaT +aaT +aaT +aaT +aaT +aaT +aaT aaf -QmH -aaT -aaT -aaT +aaf +aaf +aaf +aaa aaa aaa aaa @@ -85993,11 +82047,11 @@ aed aeK afx agg -afA -QrK -QrQ -QrT -aiV +abc +aaf +aaa +aaa +aiU ajr aka akH @@ -86113,7 +82167,7 @@ aaa aaa aaa aaf -QmH +aaa aaa aaa aaa @@ -86251,10 +82305,10 @@ aeN afA afA afA -QrL -QrR -QrU -aiV +aaf +aaa +aaa +aiU aju akd akK @@ -86370,8 +82424,8 @@ aaa aaa aaa aaT -abY -abY +aaT +aaT aaa aaa aaa @@ -86628,7 +82682,7 @@ aaa aaa aaT ctv -abY +aaT aaa aaa aaa @@ -86885,7 +82939,7 @@ aaf aaf aaT ctv -abY +aaT aaa aaa aaa @@ -87033,7 +83087,7 @@ afL aez ahU aiX -anw +anz aov cCi air @@ -87142,7 +83196,7 @@ aaa aaa aaT ctv -abY +aaT aaa aaa aaa @@ -87290,7 +83344,7 @@ ajc afM afN aiX -anw +anz aov cCi aqX @@ -87399,7 +83453,7 @@ aaf aaf aaT ctv -abY +aaT aaa aaa aaa @@ -87547,7 +83601,7 @@ adL ahr aih aiX -anw +anz aov ape arT @@ -87656,7 +83710,7 @@ aaa aaa aaT ctv -abY +aaT aaa aaa aaa @@ -87913,7 +83967,7 @@ aaf aaf aaT ctv -abY +aaT aaa aaa aaa @@ -88057,11 +84111,11 @@ agj ajz aki akM -aly +alv amf amQ -aiX anw +anz aov cCi arT @@ -88170,7 +84224,7 @@ aaa aaa aaT ctv -abY +aaT aaa aaf aaa @@ -88314,11 +84368,11 @@ agj auj akl akO -Qsc -Qsh -amg -aiX +alx +alx +amR anw +anz aox cCi cCi @@ -88570,11 +84624,11 @@ aid agj aiZ akk -akQ -agj -agj -agj -aiX +akN +alw +amg +amR +anw anR aow apg @@ -88825,14 +84879,14 @@ ahP ahP aiF agj -ajD -akm -akP -aly -Qsi -amQ -aiX -anw +aja +ajG +akQ +agj +agj +amS +anx +anz aov aph aph @@ -89082,14 +85136,14 @@ ahD aiw aiO agj -aja -akl -Qsa -Qsd +ajD +akm +akP +aly amh -ami -aiX +amR anw +anz aov aph aob @@ -89124,9 +85178,9 @@ aZP bbh bcc bdd -Qmr -bfr bbX +bfr +bgM bif aZM aZM @@ -89141,7 +85195,7 @@ bmr bmr byQ aJq -bBi +aJq bCs bDy bFb @@ -89199,9 +85253,9 @@ ccw ccw ccw aaa -aaa -aaf -aaa +Qod +aaT +Qod aaa aaa aaa @@ -89340,13 +85394,13 @@ agP agP aiz ajg -QrX -akQ -agj -agj -agj -aiX +akl +akR +alx +alx +amR anw +anz aov aph aoc @@ -89383,7 +85437,7 @@ bbk bbk bbk bfs -Qms +aZM aZM aZM aaf @@ -89456,9 +85510,9 @@ csd ciZ ccw aaa -abY +aaT ctv -abY +aaT aaa aaa aaa @@ -89578,7 +85632,7 @@ aaa aaa aaf aaf -QqR +aaa aaf aai abi @@ -89600,10 +85654,10 @@ ajb ajF akN alw -Qsj -amQ -aiX +ami +amR anw +anz aov api ata @@ -89640,19 +85694,19 @@ bce bdf beb aYv -Qmt -QmD aaf aaf -QmH +aaf +aaf aaa -QmH aaa -QmP -QmP -QmP -QmP -QmP +aaa +aaa +aaf +aaa +aaa +aaa +aJn aXf aJq byU @@ -89853,14 +85907,14 @@ agn agR agn ajc -QrV -akv -Qsb -Qse -aww -amk -aiX -anQ +ajI +ako +akQ +agj +agj +amS +any +anz aov aph aqb @@ -89897,22 +85951,22 @@ aZR bbm bec bfu -Qmu -aBb -aBb +bgO +bgO +bgO bmu -aBb -aBb -QmK -aaa -QmP -QmR -QmY -Qnb -QmP +bgO +bgO +bgO +bgO +bsb +aaf +aaf +aaf +aJn aXf aJq -bBi +aJq bCs bFa bFa @@ -89970,9 +86024,9 @@ cAu cAu ccw aaa -abY +aaT ctv -abY +aaT aaa aaa aaa @@ -90092,17 +86146,17 @@ aaa aaa aaa aaf -QqS +aaa +aaf +aaf +aaT aaf aaZ -Qra -Qri -Qrq -aaZ +abm cpg -QrC acv adi +adi aaZ aeW agQ @@ -90111,13 +86165,13 @@ ahQ aiI aiH ajB -QrY -akQ -agj -agj -agj -aiX +akm +akP +aly +amj +amR anw +anz aov aph aph @@ -90154,22 +86208,22 @@ aZR aZR aZR bft -Qmt -aBa -aBT +bgN +bgN +bgN bmv -aEN -aGb +bkI +bnT bpg -aaa -QmP -QmS +bqD +bsa +bgO buP bwm bxH -aXf +byS aJq -Qnf +aMh bCs bCs bCs @@ -90229,7 +86283,7 @@ ccw aaf aaT ctv -abY +aaT aaa aaa aaa @@ -90349,17 +86403,17 @@ aaa aaa aaa aaf -QqT +aaa aaf +aaf +aaT +aaa aaZ -Qrb -Qrj -Qrr -aaZ +abH acl -cxA +ajC acL -QrD +adi aaZ agp agT @@ -90367,14 +86421,14 @@ ahx ahS aiK ajc -QrW -akm +ajI +akl akT -alf +aww alx -amQ -aiX +amR anw +anz aov apk anw @@ -90411,16 +86465,16 @@ bbm bdh bee bfv -Qmt -aBa -QmF -aEM -aEM -aGa +bgN +bih +big +bii +bgN +bnV bph bqF bsd -QmT +btG buQ bwn bxI @@ -90484,9 +86538,9 @@ csd cHo ccw aaa -abY +aaT ctv -abY +aaT aaa aaa aae @@ -90606,14 +86660,14 @@ aaa aaa aaa aaf -QqU +aaa aaf +aaf +abY +aaa aaZ -Qrc -Qrk -Qrs -aaZ -Qry +abn +ack adk adK cqG @@ -90625,12 +86679,12 @@ ahR aiJ ajc ajI -akl +akk akS -Qsf -Qsk -amp -aiX +alw +amk +amR +anw anS aoy apj @@ -90668,20 +86722,20 @@ bcf bdg bed bfv -Qmt -aBa -aBV -alu -aEM -aGd -aHG +bgN +big +bgN +bkZ +bgN +bnU +bph bqE -QmQ -QmU -QmZ -Qnc -Qne -aNr +bsc +btF +bph +bsc +btF +bvW bAf bBp aHP @@ -90741,9 +86795,9 @@ cGV ccw ccw aaa -abY +aaT ctv -abY +aaT aaa aaa aaa @@ -90863,14 +86917,14 @@ aaa aaa aaa aaf -QqV +aaa aaf +aaf +aaT +aaa aaZ -Qrd -Qrl -Qrt -aaZ -Qrz +abJ +ack acM adQ cwM @@ -90886,9 +86940,9 @@ akq akQ agj agj -agj -aiX -Qsy +amS +anx +anz aoz apm aqd @@ -90925,16 +86979,16 @@ bbm bdh bef bfv -Qmt -aBa -QmG -aEO -aEO -aGc -QmL -QmO +bgN +bii +big +bih +bgN +bnV +bph +bqF bsf -QmV +btG buS bwp bxK @@ -90998,9 +87052,9 @@ csd cHp ccw aaf -abY +aaT ctv -abY +aaT aaa aaa aaa @@ -91120,14 +87174,14 @@ aaa aaa aaa aaf -QqW +aaa aaf +aaf +aaT +aaa aaZ -Qre -Qrm -Qru -aaZ -QrA +abI +ack coS aet cxA @@ -91144,9 +87198,9 @@ akU alz aml amT -aiX -Qsz -QsF +anw +anz +aoz apl aqc aqc @@ -91182,20 +87236,20 @@ aZR aZR aZR bfw -Qmt -aBa -aBW +bgN +bgN +bgN bjy -aEP -aGe +bmw +bnW bpi -aaa -QmP -QmW +bqG +bse +bij buR -aFM +bwo bxJ -aNs +bwb aJq bBr bCv @@ -91255,9 +87309,9 @@ csd ciZ ccw aaf -aaS +aaT ctv -abY +aaT aaa aaa aaa @@ -91377,14 +87431,14 @@ aaa aaa aaa aaf -QqX +aaa aaf +aaf +abY +aaa aaZ -Qrf -Qrn -Qrv abQ -QrB +ack adj arc blT @@ -91401,9 +87455,9 @@ akV alB amn amV -Qsu -anB -QsG +anw +anz +aoz aod aqf ahT @@ -91439,19 +87493,19 @@ aZR bbm beh bfx -QmA -aBc -aBc +bij +bij +bij bgR -aBc -aBc -QmM -aaa -QmP -QmX -Qna -Qnd -QmP +bij +bij +bij +bij +bsg +aaf +aaf +aaf +aJn aJq aJq bBu @@ -91512,9 +87566,9 @@ cHj cHd ccw aaa -abY +aaT ctv -abY +aaT aaa aaa aaa @@ -91634,12 +87688,12 @@ aaa aaa aaa aaf -QqY +aaa aaf +aaf +abY +aaa aaZ -Qrg -ack -Qrw abN ack bkA @@ -91654,14 +87708,14 @@ aIF ajc ajI akp -amS +akQ alA -Qsl amm -Qsv +amU +anw anT -anT -aod +aoA +apn aqe arf arf @@ -91696,19 +87750,19 @@ bcg aZU beg aYB -Qmt -QmD aaf aaf -QmH +aaf +aaf aaa -QmH aaa -QmP -QmP -QmP -QmP -QmP +aaa +aaa +aaf +aaa +aaa +aaa +aJn aJq aJq bBt @@ -91891,12 +87945,12 @@ aaa aaa aaa aaf -QqZ +aaa +aaf +aaf +aaT aaf aaZ -Qrh -Qro -Qrx aci acm cpA @@ -91911,12 +87965,12 @@ agn aje ajJ akr -amS +akX +alC alC -Qsm -amX -amX amX +anz +anz aoB aod aqe @@ -91953,7 +88007,7 @@ bbp bbp bbp bfz -QmC +aZV aZV aZV aaf @@ -92026,9 +88080,9 @@ csd cHs ccw aaf -abY +aaT ctv -abY +aaT aaa aaa aaa @@ -92148,13 +88202,13 @@ aaa aaa aaf aaf -abY aaf +aaf +aaa +adR +abo aaZ aaZ -Qrp -avB -aaZ aaZ acT adl @@ -92167,16 +88221,16 @@ aii agn ajd ajI -QrZ +ahY akW -anw +aiG amo -amX -amX -QsA -QsH -QsI -QsK +amW +anz +anz +aoz +aod +aqe arf apY ate @@ -92210,7 +88264,7 @@ bch bdi bei bfy -bbw +bgS bik aZV aZV @@ -92283,9 +88337,9 @@ cHl ccw ccw aaf -abY aaT -abY +aaT +aaT aaa aaa aaa @@ -92407,10 +88461,10 @@ aaa aaa aaf aaf +aaa abp +abP aco -abO -abO acO abl abO @@ -92424,13 +88478,13 @@ ahZ adR aiQ ajI -ahY -akW -anA -Qsn -Qsq +akt +akQ +agj +agj +aiX anB -QsB +anz aoD aod aqe @@ -92664,6 +88718,7 @@ aaa aaa aaa aaf +aaa abo abO abO @@ -92671,7 +88726,6 @@ abO abO abO abO -abO afb abo afg @@ -92683,11 +88737,11 @@ ajf ajK aks akY -Qsg -Qso -Qsr -amo -QsC +alx +amp +aiX +anA +anz aoC aod aqe @@ -92921,13 +88975,13 @@ aaa aaa aaa aaf +aaa abp abO acq acq acq acq -acq aew afe afS @@ -92938,13 +88992,13 @@ aia aiP aiR ajB -akp -aiX +akv +ala akz -Qsp -Qss -Qsw -QsD +alf +aiX +anA +anz aoF apo aqh @@ -93178,9 +89232,9 @@ aaa aaf aaf aaf +aaf abo abO -abO acp acP acP @@ -93196,14 +89250,14 @@ adR aiG ajL aku -aiX +akZ alE amq -Qst -Qsx -QsE +aiX +anA +anz aoE -QsJ +aod aqg aun asf @@ -93310,7 +89364,7 @@ aaf aaa aaf ctv -abY +aaT aaa aaf aaa @@ -93435,8 +89489,8 @@ aaa aaa aaa aaa +aaf abp -abP abR abP abP @@ -93567,7 +89621,7 @@ aaf aaf aaf ctv -abY +aaT aaa aaf aaa @@ -93692,7 +89746,7 @@ aaf aaf aaf aaf -abp +aaf abq abq abq @@ -93824,7 +89878,7 @@ aaa ctv ctv ctv -abY +aaT aaa aaa aaa @@ -94006,7 +90060,7 @@ aYF aZV bbw bcn -Qmq +bbw ben bfE bgX @@ -94078,10 +90132,10 @@ aaa aaa aaa aaa -abY -abY -abY -abY +aaT +aaT +aaT +aaT aaa aaa aae @@ -94338,7 +90392,7 @@ aaa aaa aaa aaa -aaa +Qod aaa aaa aaa @@ -94595,7 +90649,7 @@ aae aaa aaa aaa -aaa +Qod aaa aaa aaa @@ -94852,7 +90906,7 @@ aaa aaa aaa aaa -aaa +Qof aaa aaa aaa @@ -95109,7 +91163,7 @@ aaa aaa aaa aaa -aaa +Qod aaa aaa aaa @@ -95283,7 +91337,7 @@ aCr aCr aJC bYP -bbx +aQg aJC aQg aJC @@ -95366,7 +91420,7 @@ aaa aaa aaa aaa -aaa +Qof aaa aaa aaa @@ -95623,7 +91677,7 @@ aaa aaa aaa aaa -aaa +Qoi aaa aaa aaa @@ -95880,7 +91934,7 @@ aaa aaa aaa aaa -aaa +Qof aaa aaa aaa @@ -96137,7 +92191,7 @@ aaa aaa aaa aaa -aaa +Qod aaa aaa aaa @@ -96394,7 +92448,7 @@ aaa aaa aaa aaa -aaa +Qol aaa aaa aaa @@ -96651,7 +92705,7 @@ aaa aaa aaa aaa -aaa +Qod aaa aaa aaa @@ -96908,7 +92962,7 @@ aaa aaa aaa aaa -aaa +Qod aaa aaa aaa @@ -97165,7 +93219,7 @@ aaa aaa aaa aaa -aaa +Qof aaa aaa aaa @@ -97422,7 +93476,7 @@ aaa aaa aaa aaa -aaa +Qod aaa aaa aaa @@ -97591,7 +93645,7 @@ aGI aId aJD aKP -aOL +aMx aNJ aQe aOL @@ -97679,7 +93733,7 @@ aaa aaa aaa aaa -aaa +Qof aaa aaa aaa @@ -97848,7 +93902,7 @@ aGH aIc aJC aKO -aQc +aMw aNI aMw aOK @@ -97936,7 +93990,7 @@ aaa aaa aaa aaa -aaa +Qof aaa aaa aaa @@ -98105,7 +94159,7 @@ aGJ aIe aJC aJC -Qmo +aJC aJC aJC aJC @@ -98193,7 +94247,7 @@ aaa aaa aaa aaa -aaa +Qol aaa aaa aaa @@ -98362,7 +94416,7 @@ aGJ aIe aJE aKQ -aKR +aLU aNu aJC aPw @@ -99133,9 +95187,9 @@ aGL aIe aJC aKS -aKR aMC aJC +aJC aJI aJI aSI @@ -99390,15 +95444,15 @@ aGL aIg aJH aKR -Qmp aMB aJC +aOP +aJI aRA aVz aVz aVz aVz -aVz aYJ aJI bbz @@ -100167,7 +96221,7 @@ aON aQk aRD aSM -aVD +aVG aVE aXm aVz @@ -100425,8 +96479,8 @@ aQj aRB aSL aTN +aVD cCq -aVz cAg bak bbz @@ -100682,9 +96736,9 @@ aJI aRG aSO aTO +aVG cCq aVz -aVz bak bbz aYV @@ -108105,8 +104159,8 @@ aaf aaf aaf aaf -alP -Qlk +aaf +aaf alP anf alP @@ -108362,8 +104416,8 @@ aaa aaa aaa aaa -alP -alP +aaa +aaf alP anf alP diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm index 44bf9a5f6b..db3d4ed886 100644 --- a/_maps/map_files/Deltastation/DeltaStation2.dmm +++ b/_maps/map_files/Deltastation/DeltaStation2.dmm @@ -44,16 +44,12 @@ "aag" = ( /obj/machinery/power/tracker, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plasteel/airless/solarpanel, /area/solar/starboard/fore) "aah" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/lattice/catwalk, @@ -61,8 +57,7 @@ /area/solar/starboard/fore) "aai" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/power/solar{ id = "forestarboard"; @@ -72,18 +67,12 @@ /area/solar/starboard/fore) "aaj" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/lattice/catwalk, @@ -91,7 +80,6 @@ /area/solar/starboard/fore) "aak" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/lattice/catwalk, @@ -99,26 +87,19 @@ /area/solar/starboard/fore) "aal" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/fore) "aam" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/lattice/catwalk, @@ -529,8 +510,6 @@ /area/maintenance/solars/starboard/fore) "abm" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/light/small{ @@ -544,7 +523,6 @@ "abn" = ( /obj/machinery/power/smes, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/turf_decal/stripes/line{ @@ -589,8 +567,6 @@ "abs" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -603,8 +579,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/yellow/side{ @@ -617,8 +591,6 @@ req_access_txt = "10" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -634,13 +606,9 @@ /area/maintenance/solars/starboard/fore) "abv" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -656,21 +624,16 @@ dir = 1 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) "abx" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/stripes/line{ @@ -680,8 +643,6 @@ /area/maintenance/solars/starboard/fore) "aby" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/external{ @@ -700,8 +661,6 @@ "abz" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -710,8 +669,6 @@ "abA" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/space, @@ -837,8 +794,6 @@ /area/construction/mining/aux_base) "abJ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -1058,8 +1013,6 @@ /area/construction/mining/aux_base) "ace" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -1110,8 +1063,6 @@ "acp" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -1190,8 +1141,6 @@ "acx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/yellow/side{ @@ -1335,8 +1284,6 @@ dir = 9 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -1444,8 +1391,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -1504,8 +1449,6 @@ "adk" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -1549,7 +1492,6 @@ dir = 8 }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -1567,15 +1509,11 @@ "adv" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/landmark/lightsout, /obj/machinery/holopad, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -1700,8 +1638,6 @@ /area/construction/mining/aux_base) "adR" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -1758,8 +1694,6 @@ /area/construction/mining/aux_base) "aef" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -1902,8 +1836,6 @@ /area/construction/mining/aux_base) "aeB" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -2049,8 +1981,6 @@ "aeS" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -2085,8 +2015,6 @@ /area/maintenance/starboard/fore) "aeZ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -2096,8 +2024,6 @@ "afa" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -2105,8 +2031,6 @@ "afb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/neutral/side{ @@ -2198,8 +2122,6 @@ /area/maintenance/starboard/fore) "afq" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/delivery, @@ -2280,8 +2202,6 @@ "afE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -2293,8 +2213,6 @@ "afF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance_hatch/abandoned{ @@ -2399,8 +2317,6 @@ "afU" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/bot, @@ -2524,7 +2440,6 @@ /area/hallway/secondary/entry) "agq" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -2547,8 +2462,6 @@ /area/hallway/secondary/entry) "agr" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, @@ -2635,8 +2548,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/side{ @@ -2745,8 +2656,6 @@ /area/hallway/secondary/entry) "agS" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -2857,8 +2766,6 @@ "ahg" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -2963,8 +2870,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -2985,7 +2890,6 @@ /area/security/checkpoint/customs) "ahC" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -3043,7 +2947,6 @@ /area/security/checkpoint/checkpoint2) "ahM" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -3238,8 +3141,6 @@ "aip" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -3255,8 +3156,6 @@ /area/security/checkpoint/customs) "air" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/photocopier, @@ -3296,8 +3195,6 @@ /area/security/checkpoint/checkpoint2) "aiw" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table/reinforced, @@ -3326,8 +3223,6 @@ /area/maintenance/starboard/fore) "aiz" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -3339,8 +3234,6 @@ /area/maintenance/starboard/fore) "aiA" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -3353,8 +3246,6 @@ "aiB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -3364,8 +3255,6 @@ /area/maintenance/starboard/fore) "aiC" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -3375,8 +3264,6 @@ /area/maintenance/starboard/fore) "aiD" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/neutral/side{ @@ -3464,9 +3351,7 @@ "aiV" = ( /obj/machinery/power/tracker, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plasteel/airless/solarpanel, /area/solar/port/fore) @@ -3554,8 +3439,6 @@ /area/security/vacantoffice) "ajl" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -3563,7 +3446,6 @@ /area/maintenance/port/fore) "ajm" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -3581,13 +3463,9 @@ /area/security/checkpoint/customs) "ajn" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/holopad, @@ -3702,13 +3580,9 @@ /area/security/checkpoint/checkpoint2) "ajz" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/holopad, @@ -3720,7 +3594,6 @@ /area/security/checkpoint/checkpoint2) "ajA" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -3743,8 +3616,6 @@ /area/maintenance/starboard/fore) "ajC" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -3784,15 +3655,15 @@ /area/maintenance/starboard/fore) "ajJ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) "ajK" = ( -/obj/structure/reflector/single/anchored, +/obj/structure/reflector/single/anchored{ + dir = 6 + }, /turf/open/floor/plasteel/vault{ dir = 8 }, @@ -3804,8 +3675,7 @@ /area/engine/atmospherics_engine) "ajM" = ( /obj/structure/reflector/box/anchored{ - dir = 4; - icon_state = "reflector_box" + dir = 4 }, /turf/open/floor/plasteel/vault{ dir = 5 @@ -3831,7 +3701,7 @@ /area/engine/atmospherics_engine) "ajP" = ( /obj/structure/reflector/single/anchored{ - dir = 8 + dir = 10 }, /turf/open/floor/plasteel/vault{ dir = 8 @@ -3902,7 +3772,6 @@ /area/crew_quarters/electronic_marketing_den) "akb" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plasteel/neutral/side{ @@ -3912,8 +3781,6 @@ /area/maintenance/port/fore) "akc" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -3972,8 +3839,6 @@ "akm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -3990,8 +3855,6 @@ /area/security/checkpoint/customs) "ako" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -4007,7 +3870,6 @@ "akq" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plating, @@ -4064,7 +3926,6 @@ "akz" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plating, @@ -4079,8 +3940,6 @@ /area/security/checkpoint/checkpoint2) "akB" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -4113,7 +3972,6 @@ /area/maintenance/starboard/fore) "akF" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -4156,14 +4014,16 @@ }, /area/engine/atmospherics_engine) "akQ" = ( -/obj/structure/reflector/double/anchored, +/obj/structure/reflector/double/anchored{ + dir = 6 + }, /turf/open/floor/plasteel/vault{ dir = 5 }, /area/engine/atmospherics_engine) "akR" = ( /obj/structure/reflector/double/anchored{ - dir = 1 + dir = 10 }, /turf/open/floor/plasteel/vault{ dir = 5 @@ -4224,8 +4084,6 @@ /area/crew_quarters/electronic_marketing_den) "alc" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -4260,8 +4118,6 @@ /area/security/vacantoffice) "alh" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -4271,8 +4127,6 @@ /area/security/vacantoffice) "ali" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -4287,8 +4141,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -4303,8 +4155,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -4320,13 +4170,9 @@ /area/security/vacantoffice) "all" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -4353,13 +4199,9 @@ /area/security/checkpoint/customs) "aln" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/chair/office/dark{ @@ -4369,8 +4211,6 @@ /area/security/checkpoint/customs) "alo" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/table/reinforced, @@ -4383,13 +4223,9 @@ "alp" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/door/window/brigdoor/southright{ @@ -4423,13 +4259,9 @@ "alu" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/turf_decal/stripes/line{ @@ -4439,8 +4271,6 @@ /area/security/checkpoint/checkpoint2) "alv" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/table/reinforced, @@ -4458,13 +4288,9 @@ /area/security/checkpoint/checkpoint2) "alw" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/chair/office/dark{ @@ -4492,8 +4318,6 @@ "alz" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/blobstart, @@ -4529,8 +4353,6 @@ /area/maintenance/starboard/fore) "alE" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/chair/stool/bar, @@ -4567,8 +4389,7 @@ /area/maintenance/disposal) "alO" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/power/solar{ id = "foreport"; @@ -4578,7 +4399,7 @@ /area/solar/port/fore) "alP" = ( /obj/structure/reflector/double/anchored{ - dir = 4 + dir = 6 }, /turf/open/floor/plasteel/vault{ dir = 5 @@ -4676,8 +4497,6 @@ /area/maintenance/port/fore) "amd" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -4699,8 +4518,6 @@ /area/security/vacantoffice) "amh" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -4720,8 +4537,6 @@ "amj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -4738,8 +4553,6 @@ /area/security/checkpoint/customs) "aml" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -4810,8 +4623,6 @@ /area/security/checkpoint/checkpoint2) "amw" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -4829,8 +4640,6 @@ "amy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/side{ @@ -4855,8 +4664,6 @@ /area/maintenance/starboard/fore) "amD" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -4978,18 +4785,12 @@ /area/maintenance/disposal) "amW" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/lattice/catwalk, @@ -4997,7 +4798,6 @@ /area/solar/port/fore) "amX" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/lattice/catwalk, @@ -5005,26 +4805,19 @@ /area/solar/port/fore) "amY" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) "amZ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/lattice/catwalk, @@ -5072,8 +4865,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/wood, @@ -5083,8 +4874,6 @@ /obj/item/folder/red, /obj/item/pen, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/wood, @@ -5094,8 +4883,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -5103,16 +4890,12 @@ /area/crew_quarters/electronic_marketing_den) "anj" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/wood, /area/crew_quarters/electronic_marketing_den) "ank" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/wood{ @@ -5129,8 +4912,6 @@ /area/crew_quarters/electronic_marketing_den) "anm" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -5218,8 +4999,6 @@ /area/security/checkpoint/customs) "any" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -5285,8 +5064,6 @@ /area/security/checkpoint/checkpoint2) "anG" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -5310,13 +5087,9 @@ /area/maintenance/starboard/fore) "anJ" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -5327,8 +5100,6 @@ /area/maintenance/starboard/fore) "anK" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -5341,8 +5112,6 @@ /area/maintenance/starboard/fore) "anL" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -5352,8 +5121,6 @@ /area/maintenance/starboard/fore) "anM" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -5365,8 +5132,6 @@ /area/maintenance/starboard/fore) "anN" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -5378,8 +5143,6 @@ /area/maintenance/starboard/fore) "anO" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/decal/cleanable/dirt, @@ -5485,7 +5248,7 @@ /area/solar/port/fore) "aoa" = ( /obj/structure/reflector/single/anchored{ - dir = 1 + dir = 9 }, /turf/open/floor/plasteel/vault{ dir = 8 @@ -5518,8 +5281,6 @@ /area/crew_quarters/electronic_marketing_den) "aoe" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/wood{ @@ -5562,8 +5323,6 @@ "aom" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -5571,8 +5330,6 @@ /area/maintenance/port/fore) "aon" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -5591,8 +5348,6 @@ /area/maintenance/port/fore) "aoo" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -5611,8 +5366,6 @@ /area/maintenance/starboard/fore) "aop" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/side{ @@ -5712,9 +5465,7 @@ /area/solar/port/fore) "aoH" = ( /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/power/emitter/anchored{ dir = 1; @@ -5775,8 +5526,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/barricade/wooden, @@ -5835,16 +5584,12 @@ /area/maintenance/port/fore) "aoU" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, /area/maintenance/port/fore) "aoV" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -5852,8 +5597,6 @@ "aoW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/side{ @@ -5862,8 +5605,6 @@ /area/maintenance/port/fore) "aoX" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/event_spawn, @@ -5874,8 +5615,6 @@ "aoY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -5883,13 +5622,9 @@ "aoZ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -5900,13 +5635,9 @@ /area/maintenance/port/fore) "apa" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -5914,13 +5645,9 @@ "apb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -6003,8 +5730,6 @@ "apl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -6144,8 +5869,7 @@ /area/maintenance/disposal) "apD" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plasteel/airless/solarpanel, /area/solar/port/fore) @@ -6174,8 +5898,6 @@ /area/engine/atmospherics_engine) "apH" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/decal/cleanable/dirt, @@ -6189,18 +5911,12 @@ /area/engine/atmospherics_engine) "apI" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/decal/cleanable/dirt, @@ -6214,8 +5930,6 @@ /area/engine/atmospherics_engine) "apJ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6312,8 +6026,6 @@ "apV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, @@ -6321,8 +6033,6 @@ "apW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/side{ @@ -6331,29 +6041,21 @@ /area/maintenance/port/fore) "apX" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/port/fore) "apY" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/side, /area/maintenance/port/fore) "apZ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6364,8 +6066,6 @@ "aqa" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -6375,8 +6075,6 @@ /area/maintenance/port/fore) "aqb" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6387,8 +6085,6 @@ "aqc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6399,8 +6095,6 @@ "aqd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6413,8 +6107,6 @@ /area/maintenance/port/fore) "aqe" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6425,13 +6117,9 @@ /area/maintenance/port/fore) "aqf" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -6439,8 +6127,6 @@ /area/maintenance/port/fore) "aqg" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6450,13 +6136,9 @@ /area/maintenance/port/fore) "aqh" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -6565,8 +6247,6 @@ /area/maintenance/port/fore) "aqt" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -6577,8 +6257,6 @@ /area/maintenance/port/fore) "aqu" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6596,8 +6274,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6616,8 +6292,6 @@ /area/maintenance/port/fore) "aqw" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -6633,8 +6307,6 @@ /area/hallway/secondary/entry) "aqx" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -6732,13 +6404,9 @@ /area/maintenance/starboard/fore) "aqG" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, @@ -6747,8 +6415,6 @@ "aqH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6760,13 +6426,9 @@ "aqI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -6777,8 +6439,6 @@ "aqJ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/neutral/side{ @@ -6929,8 +6589,7 @@ /area/maintenance/disposal) "aqX" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/lattice/catwalk, /turf/open/space, @@ -6970,8 +6629,6 @@ "arb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/orange/visible{ @@ -6981,8 +6638,6 @@ /area/engine/atmospherics_engine) "arc" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/trinary/filter/critical{ @@ -6993,8 +6648,6 @@ /area/engine/atmospherics_engine) "ard" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ @@ -7005,8 +6658,6 @@ "are" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -7019,8 +6670,6 @@ /area/engine/atmospherics_engine) "arf" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ @@ -7032,8 +6681,6 @@ /area/engine/atmospherics_engine) "arg" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ @@ -7043,8 +6690,6 @@ /area/engine/atmospherics_engine) "arh" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ @@ -7057,8 +6702,6 @@ "ari" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -7085,8 +6728,6 @@ "arl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -7116,8 +6757,6 @@ pixel_x = 24 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/bot, @@ -7125,8 +6764,6 @@ /area/engine/atmospherics_engine) "arp" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -7190,8 +6827,6 @@ /area/hallway/secondary/entry) "arx" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -7259,8 +6894,6 @@ "arF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -7290,8 +6923,6 @@ /area/maintenance/starboard/fore) "arI" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -7305,8 +6936,6 @@ "arJ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -7322,8 +6951,6 @@ "arK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -7337,8 +6964,6 @@ /area/maintenance/starboard/fore) "arL" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -7353,8 +6978,6 @@ /area/maintenance/starboard/fore) "arM" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -7368,8 +6991,6 @@ "arN" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -7382,8 +7003,6 @@ /area/maintenance/starboard/fore) "arO" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -7399,8 +7018,6 @@ "arP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -7416,13 +7033,9 @@ "arQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -7435,8 +7048,6 @@ /area/maintenance/starboard/fore) "arR" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -7462,8 +7073,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -7483,8 +7092,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -7498,8 +7105,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line, @@ -7512,8 +7117,6 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -7530,8 +7133,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/brown, @@ -7544,8 +7145,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/blood/splatter, @@ -7560,8 +7159,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/blood/splatter, @@ -7580,7 +7177,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/brown{ @@ -7740,8 +7336,6 @@ pixel_x = 32 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/delivery, @@ -7831,8 +7425,6 @@ /area/maintenance/port/fore) "asE" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -7886,7 +7478,6 @@ pixel_y = 24 }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/item/clothing/under/maid, @@ -7979,8 +7570,6 @@ name = "Auxiliary Restroom" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -8065,8 +7654,6 @@ "asX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance_hatch{ @@ -8161,8 +7748,6 @@ /area/engine/atmospherics_engine) "atk" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -8206,8 +7791,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/bot, @@ -8238,8 +7821,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/blobstart, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -8328,8 +7909,6 @@ /area/maintenance/port/fore) "atG" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -8373,8 +7952,6 @@ "atJ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -8471,8 +8048,6 @@ /area/crew_quarters/toilet/auxiliary) "atU" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/side{ @@ -8522,8 +8097,6 @@ "aub" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -8708,13 +8281,9 @@ /area/engine/atmospherics_engine) "auA" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -8724,8 +8293,6 @@ /area/engine/atmospherics_engine) "auB" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/poddoor/shutters/preopen{ @@ -8740,8 +8307,6 @@ /area/engine/supermatter) "auC" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/engine, @@ -8752,7 +8317,6 @@ dir = 6 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/window/plasma/reinforced{ @@ -8778,7 +8342,6 @@ dir = 10 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/structure/window/plasma/reinforced{ @@ -8788,21 +8351,17 @@ /area/engine/supermatter) "auH" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/camera{ c_tag = "Supermatter Chamber"; dir = 2; - network = list("Engine"); + network = list("Engine") }, /turf/open/floor/engine, /area/engine/supermatter) "auI" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/poddoor/shutters/preopen{ @@ -8816,8 +8375,6 @@ /area/engine/supermatter) "auJ" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -8842,8 +8399,6 @@ "auM" = ( /obj/item/twohanded/required/kirbyplants/random, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/bot, @@ -8856,8 +8411,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -8917,8 +8470,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -8951,8 +8502,6 @@ "avc" = ( /obj/machinery/holopad, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/bot, @@ -9003,7 +8552,6 @@ /area/crew_quarters/toilet/auxiliary) "avl" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/decal/cleanable/dirt, @@ -9021,8 +8569,6 @@ pixel_x = 24 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/decal/cleanable/dirt, @@ -9042,8 +8588,6 @@ /area/hallway/primary/fore) "avo" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -9053,8 +8597,6 @@ /area/hallway/primary/fore) "avp" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -9071,8 +8613,6 @@ "avq" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance_hatch{ @@ -9096,8 +8636,6 @@ "avr" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -9119,8 +8657,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/old, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -9278,7 +8814,6 @@ /area/quartermaster/storage) "avK" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -9301,13 +8836,9 @@ /area/engine/atmospherics_engine) "avO" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -9322,7 +8853,6 @@ dir = 8 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/window/plasma/reinforced{ @@ -9340,7 +8870,6 @@ dir = 4 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/structure/window/plasma/reinforced{ @@ -9350,8 +8879,6 @@ /area/engine/supermatter) "avS" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/poddoor/shutters/preopen{ @@ -9366,13 +8893,9 @@ /area/engine/supermatter) "avT" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -9466,8 +8989,6 @@ "awf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/whitepurple/side{ @@ -9480,8 +9001,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/whitegreen/side{ @@ -9540,8 +9059,6 @@ /area/hallway/primary/fore) "awn" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -9563,8 +9080,6 @@ "awp" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -9588,8 +9103,6 @@ "aws" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -9728,7 +9241,6 @@ "awK" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -9763,9 +9275,7 @@ "awP" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /turf/open/space, /area/solar/port/fore) @@ -9810,8 +9320,6 @@ /area/engine/atmospherics_engine) "awU" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/poddoor/shutters/preopen{ @@ -9825,18 +9333,12 @@ /area/engine/supermatter) "awV" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -9857,8 +9359,6 @@ network = list("SS13","Engine") }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/bot, @@ -9886,8 +9386,6 @@ "axb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -9907,8 +9405,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -10002,8 +9498,6 @@ /area/crew_quarters/toilet/auxiliary) "axl" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -10017,8 +9511,6 @@ /area/hallway/primary/fore) "axn" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -10033,8 +9525,6 @@ /area/quartermaster/warehouse) "axp" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -10145,7 +9635,6 @@ "axD" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -10153,11 +9642,9 @@ /area/quartermaster/storage) "axE" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -10166,11 +9653,9 @@ /area/quartermaster/storage) "axF" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -10202,8 +9687,6 @@ "axK" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/space, @@ -10229,8 +9712,6 @@ /area/engine/atmospherics_engine) "axO" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -10278,8 +9759,6 @@ /area/engine/supermatter) "axU" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -10313,8 +9792,6 @@ /area/engine/atmospherics_engine) "axX" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/bot, @@ -10417,8 +9894,6 @@ /area/hydroponics/garden/abandoned) "ayj" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -10430,8 +9905,6 @@ "ayk" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -10445,8 +9918,6 @@ "ayl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -10459,8 +9930,6 @@ /area/maintenance/port/fore) "aym" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -10474,8 +9943,6 @@ "ayn" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -10488,8 +9955,6 @@ /area/maintenance/port/fore) "ayo" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -10502,13 +9967,9 @@ /area/maintenance/port/fore) "ayp" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -10523,8 +9984,6 @@ "ayq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, @@ -10539,13 +9998,9 @@ "ayr" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -10650,8 +10105,6 @@ "ayB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -10668,8 +10121,6 @@ /area/quartermaster/warehouse) "ayE" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -10805,8 +10256,6 @@ id = "cargounload" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/poddoor{ @@ -10884,8 +10333,6 @@ /area/engine/atmospherics_engine) "azi" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -10917,8 +10364,6 @@ }, /obj/machinery/portable_atmospherics/scrubber, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/escape{ @@ -10939,8 +10384,6 @@ /area/hydroponics/garden/abandoned) "azp" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -10977,13 +10420,9 @@ /area/maintenance/port/fore) "azu" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, @@ -10994,8 +10433,6 @@ "azv" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -11006,8 +10443,6 @@ /area/maintenance/port/fore) "azw" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -11016,8 +10451,6 @@ "azx" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -11031,8 +10464,6 @@ "azy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -11049,8 +10480,6 @@ req_access_txt = "12" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -11066,8 +10495,6 @@ /area/maintenance/port/fore) "azA" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -11080,16 +10507,12 @@ /area/hallway/primary/fore) "azB" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -11106,8 +10529,6 @@ "azD" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -11123,8 +10544,6 @@ /obj/machinery/door/firedoor, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance_hatch{ @@ -11148,8 +10567,6 @@ "azF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -11167,13 +10584,9 @@ "azG" = ( /obj/effect/decal/cleanable/oil, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -11188,13 +10601,9 @@ "azH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -11208,8 +10617,6 @@ "azI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -11223,8 +10630,6 @@ "azJ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/bot, @@ -11232,8 +10637,6 @@ /area/quartermaster/warehouse) "azK" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -11243,8 +10646,6 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/spawner/lootdrop/maintenance{ @@ -11257,7 +10658,6 @@ "azM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -11346,8 +10746,6 @@ /area/quartermaster/storage) "azW" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -11439,8 +10837,6 @@ }, /obj/machinery/portable_atmospherics/pump, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/arrival{ @@ -11483,8 +10879,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -11537,8 +10931,6 @@ /area/hallway/secondary/service) "aAw" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance_hatch{ @@ -11590,8 +10982,6 @@ "aAC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -11723,7 +11113,6 @@ /area/quartermaster/storage) "aAT" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white, @@ -11770,8 +11159,6 @@ /area/engine/atmospherics_engine) "aAX" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/turf_decal/stripes/corner{ @@ -11784,8 +11171,6 @@ /area/engine/atmospherics_engine) "aAY" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -11798,8 +11183,6 @@ /area/engine/atmospherics_engine) "aAZ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/sign/fire{ @@ -11816,8 +11199,6 @@ /area/engine/atmospherics_engine) "aBa" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/button/door{ @@ -11839,8 +11220,6 @@ on = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -11850,8 +11229,6 @@ /area/engine/atmospherics_engine) "aBc" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/camera{ @@ -11867,8 +11244,6 @@ /area/engine/atmospherics_engine) "aBd" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -11886,8 +11261,6 @@ "aBe" = ( /obj/machinery/meter, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -11898,8 +11271,6 @@ /area/engine/atmospherics_engine) "aBf" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -11911,18 +11282,12 @@ /area/engine/atmospherics_engine) "aBg" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -11936,8 +11301,6 @@ /area/engine/atmospherics_engine) "aBh" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ @@ -11947,8 +11310,6 @@ /area/engine/atmospherics_engine) "aBi" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -11964,7 +11325,6 @@ pixel_x = 26 }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable, @@ -11974,16 +11334,12 @@ "aBk" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/hydrofloor, /area/hydroponics/garden/abandoned) "aBl" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/hydrofloor, @@ -11991,8 +11347,6 @@ "aBm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -12000,8 +11354,6 @@ /area/hydroponics/garden/abandoned) "aBn" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/hydrofloor, @@ -12009,8 +11361,6 @@ "aBo" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -12070,8 +11420,6 @@ /area/hallway/secondary/service) "aBv" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -12105,7 +11453,6 @@ dir = 1 }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plasteel/vault{ @@ -12226,7 +11573,6 @@ "aBJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -12242,13 +11588,9 @@ /area/hallway/primary/fore) "aBK" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment, @@ -12275,8 +11617,6 @@ /obj/machinery/door/firedoor, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/mining{ @@ -12341,7 +11681,6 @@ /area/security/prison) "aBV" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -12443,8 +11782,6 @@ /area/engine/atmospherics_engine) "aCk" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -12454,13 +11791,9 @@ /area/engine/atmospherics_engine) "aCl" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -12471,8 +11804,6 @@ "aCm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/stripes/corner, @@ -12553,8 +11884,6 @@ "aCv" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/delivery, @@ -12579,8 +11908,6 @@ /area/hydroponics/garden/abandoned) "aCy" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -12642,8 +11969,6 @@ /area/hallway/secondary/service) "aCG" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -12694,8 +12019,6 @@ /area/crew_quarters/bar) "aCJ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -12841,8 +12164,6 @@ /area/quartermaster/sorting) "aCX" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -13073,8 +12394,6 @@ id = "cargoload" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -13110,8 +12429,6 @@ /area/security/prison) "aDo" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/item/cultivator, @@ -13126,13 +12443,9 @@ pixel_y = 28 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/decal/cleanable/dirt, @@ -13148,8 +12461,6 @@ /area/security/prison) "aDq" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/item/reagent_containers/glass/bucket, @@ -13189,7 +12500,6 @@ "aDt" = ( /obj/machinery/power/smes, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/light/small{ @@ -13202,8 +12512,6 @@ /area/maintenance/solars/port/fore) "aDu" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/sign/directions/engineering{ @@ -13282,8 +12590,6 @@ dir = 10 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/vault, @@ -13296,7 +12602,6 @@ pixel_y = 32 }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/vault, @@ -13314,8 +12619,6 @@ "aDE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -13326,8 +12629,6 @@ /area/engine/atmospherics_engine) "aDF" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -13342,8 +12643,6 @@ }, /obj/machinery/light, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -13361,8 +12660,6 @@ pixel_y = -24 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -13373,8 +12670,6 @@ /area/engine/atmospherics_engine) "aDI" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -13388,13 +12683,9 @@ /area/engine/atmospherics_engine) "aDJ" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -13404,8 +12695,6 @@ /area/engine/atmospherics_engine) "aDK" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -13416,8 +12705,6 @@ /area/engine/atmospherics_engine) "aDL" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light_switch{ @@ -13431,8 +12718,6 @@ /area/engine/atmospherics_engine) "aDM" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/sign/electricshock{ @@ -13445,13 +12730,9 @@ /area/engine/atmospherics_engine) "aDN" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -13462,8 +12743,6 @@ /area/engine/atmospherics_engine) "aDO" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line, @@ -13506,8 +12785,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/barricade/wooden, @@ -13522,8 +12799,6 @@ "aDT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -13547,13 +12822,9 @@ /area/hallway/secondary/service) "aDV" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -13569,8 +12840,6 @@ "aDW" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock{ @@ -13593,8 +12862,6 @@ /area/crew_quarters/bar) "aDX" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -13609,8 +12876,6 @@ /area/crew_quarters/bar) "aDY" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -13695,8 +12960,6 @@ /area/quartermaster/sorting) "aEm" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -13720,7 +12983,6 @@ /area/quartermaster/sorting) "aEp" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -13825,11 +13087,9 @@ /area/quartermaster/storage) "aEA" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -13837,7 +13097,6 @@ /area/quartermaster/storage) "aEB" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/white, @@ -13868,7 +13127,6 @@ /area/shuttle/supply) "aEG" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -13877,8 +13135,6 @@ "aEH" = ( /obj/machinery/seed_extractor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -13886,8 +13142,6 @@ /area/security/prison) "aEI" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, @@ -13895,26 +13149,18 @@ /area/security/prison) "aEJ" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, /area/security/prison) "aEK" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -13923,8 +13169,6 @@ "aEL" = ( /obj/machinery/biogenerator, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -13932,7 +13176,6 @@ /area/security/prison) "aEM" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -13940,8 +13183,6 @@ /area/security/prison) "aEN" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/external{ @@ -13962,8 +13203,6 @@ "aEO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -13972,13 +13211,9 @@ /area/maintenance/solars/port/fore) "aEP" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -13993,7 +13228,6 @@ dir = 1 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/effect/landmark/blobstart, @@ -14001,13 +13235,9 @@ /area/maintenance/solars/port/fore) "aER" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -14029,8 +13259,6 @@ req_one_access_txt = "13; 24" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -14052,8 +13280,6 @@ /area/maintenance/disposal/incinerator) "aEU" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment, @@ -14068,8 +13294,6 @@ name = "Gas to Turbine" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -14083,8 +13307,6 @@ name = "Gas to Turbine" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -14095,8 +13317,6 @@ "aEX" = ( /obj/machinery/atmospherics/pipe/simple/general/visible, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -14107,13 +13327,9 @@ "aEY" = ( /obj/machinery/atmospherics/pipe/simple/general/visible, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -14127,7 +13343,6 @@ dir = 1 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/effect/decal/cleanable/dirt, @@ -14147,7 +13362,6 @@ pixel_y = 24 }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/decal/cleanable/oil, @@ -14174,8 +13388,6 @@ /obj/machinery/door/firedoor, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -14204,8 +13416,6 @@ "aFf" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -14229,17 +13439,12 @@ /area/engine/atmospherics_engine) "aFh" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -14249,13 +13454,9 @@ "aFi" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_atmos{ @@ -14274,7 +13475,6 @@ /area/engine/atmospherics_engine) "aFj" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/decal/cleanable/dirt, @@ -14291,8 +13491,6 @@ /area/maintenance/port/fore) "aFl" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -14303,8 +13501,6 @@ "aFm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -14316,13 +13512,9 @@ /area/maintenance/port/fore) "aFn" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -14381,8 +13573,6 @@ /area/hallway/secondary/service) "aFu" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light/small{ @@ -14468,8 +13658,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -14501,8 +13689,6 @@ /area/quartermaster/sorting) "aFJ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -14528,12 +13714,10 @@ /area/quartermaster/sorting) "aFM" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -14542,8 +13726,6 @@ "aFN" = ( /obj/machinery/computer/security, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red, @@ -14553,21 +13735,15 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/neutral, /area/security/checkpoint/supply) "aFP" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side{ @@ -14577,7 +13753,6 @@ "aFQ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -14651,8 +13826,6 @@ /area/security/prison) "aGb" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -14724,8 +13897,6 @@ /area/maintenance/disposal/incinerator) "aGk" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -14762,8 +13933,6 @@ name = "Mix to Turbine" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/decal/cleanable/dirt, @@ -14771,8 +13940,6 @@ /area/maintenance/disposal/incinerator) "aGq" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -14782,18 +13949,12 @@ /area/maintenance/disposal/incinerator) "aGr" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -14804,8 +13965,6 @@ /area/maintenance/disposal/incinerator) "aGs" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -14823,8 +13982,6 @@ req_access_txt = "24" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -14841,8 +13998,6 @@ "aGu" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -14855,8 +14010,6 @@ /area/engine/atmospherics_engine) "aGv" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -14889,8 +14042,6 @@ /area/engine/atmospherics_engine) "aGz" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -14919,8 +14070,6 @@ /area/engine/atmospherics_engine) "aGC" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -14940,8 +14089,6 @@ /obj/structure/cable, /obj/machinery/power/terminal, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/turf_decal/stripes/line, @@ -14953,7 +14100,6 @@ }, /obj/machinery/power/terminal, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/effect/turf_decal/stripes/line{ @@ -15033,8 +14179,6 @@ /area/hallway/secondary/service) "aGQ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -15170,8 +14314,6 @@ /area/quartermaster/sorting) "aHg" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -15209,8 +14351,6 @@ /area/security/checkpoint/supply) "aHk" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/holopad, @@ -15303,7 +14443,6 @@ /area/security/prison) "aHv" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -15315,18 +14454,12 @@ /area/security/prison) "aHw" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass{ @@ -15336,7 +14469,6 @@ /area/security/prison) "aHx" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -15382,8 +14514,6 @@ /area/maintenance/disposal/incinerator) "aHC" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -15503,8 +14633,6 @@ /area/engine/atmospherics_engine) "aHQ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -15544,8 +14672,6 @@ /area/engine/atmospherics_engine) "aHT" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/computer/monitor{ @@ -15559,7 +14685,6 @@ /area/engine/atmospherics_engine) "aHU" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/smes{ @@ -15567,7 +14692,6 @@ }, /obj/machinery/light/small, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/circuit/green, @@ -15580,7 +14704,6 @@ charge = 5e+006 }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/item/device/radio/intercom{ @@ -15594,8 +14717,6 @@ /area/crew_quarters/abandoned_gambling_den) "aHX" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -15660,8 +14781,6 @@ /area/hallway/secondary/service) "aIe" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/airalarm{ @@ -15712,8 +14831,6 @@ /area/quartermaster/sorting) "aIl" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -15737,7 +14854,6 @@ /area/quartermaster/sorting) "aIn" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/door_timer{ @@ -15758,13 +14874,9 @@ /area/security/checkpoint/supply) "aIo" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -15853,8 +14965,6 @@ /obj/structure/table, /obj/machinery/computer/libraryconsole/bookmanagement, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plating, @@ -15862,8 +14972,6 @@ "aIz" = ( /obj/structure/easel, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/computer/security/telescreen/entertainment{ @@ -15879,8 +14987,6 @@ /area/security/prison) "aIA" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -15890,8 +14996,6 @@ /area/security/prison) "aIB" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -15902,18 +15006,12 @@ /area/security/prison) "aIC" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/neutral/side{ @@ -15922,8 +15020,6 @@ /area/security/prison) "aID" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -15934,8 +15030,6 @@ /area/security/prison) "aIE" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -15946,8 +15040,6 @@ "aIF" = ( /obj/structure/table, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/paper_bin, @@ -15962,8 +15054,6 @@ /obj/structure/table, /obj/item/clipboard, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/toy/figure/syndie, @@ -15976,13 +15066,9 @@ /area/security/prison) "aIH" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/twohanded/required/kirbyplants/random, @@ -15992,8 +15078,6 @@ /area/security/prison) "aII" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/punching_bag, @@ -16096,8 +15180,6 @@ dir = 10 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -16171,8 +15253,6 @@ "aJc" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -16240,7 +15320,6 @@ /area/crew_quarters/abandoned_gambling_den) "aJn" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -16276,8 +15355,6 @@ /area/hallway/secondary/service) "aJs" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -16301,7 +15378,6 @@ /area/crew_quarters/bar/atrium) "aJv" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/light{ @@ -16392,7 +15468,6 @@ /area/quartermaster/sorting) "aJI" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -16400,18 +15475,12 @@ /area/security/checkpoint/supply) "aJJ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/door/window/brigdoor{ @@ -16423,7 +15492,6 @@ /area/security/checkpoint/supply) "aJK" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -16512,8 +15580,6 @@ "aJV" = ( /obj/structure/table, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/paper, @@ -16612,8 +15678,7 @@ pixel_y = -32 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/engine/vacuum, /area/maintenance/disposal/incinerator) @@ -16625,11 +15690,9 @@ comp_id = "incineratorturbine" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/effect/decal/cleanable/dirt, @@ -16643,8 +15706,6 @@ on = 0 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/engine/vacuum, @@ -16661,8 +15722,6 @@ req_access_txt = "12" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -16673,8 +15732,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -16692,8 +15749,6 @@ req_access_txt = "12" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -16701,8 +15756,6 @@ /area/maintenance/disposal/incinerator) "aKm" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -16714,8 +15767,6 @@ /area/maintenance/disposal/incinerator) "aKn" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -16831,8 +15882,6 @@ /area/engine/atmos) "aKA" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ @@ -16895,8 +15944,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/old, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -16917,7 +15964,6 @@ "aKN" = ( /obj/machinery/vending/autodrobe, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/light{ @@ -16967,8 +16013,6 @@ /area/crew_quarters/bar/atrium) "aKU" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -17020,7 +16064,6 @@ "aLc" = ( /obj/structure/table, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/item/stack/wrapping_paper{ @@ -17044,8 +16087,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/start/cargo_technician, @@ -17053,13 +16094,9 @@ /area/quartermaster/sorting) "aLe" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -17069,8 +16106,6 @@ /area/quartermaster/sorting) "aLf" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -17089,11 +16124,9 @@ /area/quartermaster/sorting) "aLh" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -17101,8 +16134,6 @@ /area/security/checkpoint/supply) "aLi" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/closet/secure_closet/brig{ @@ -17115,13 +16146,9 @@ /area/security/checkpoint/supply) "aLj" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/red/side{ @@ -17174,8 +16201,6 @@ /area/quartermaster/storage) "aLr" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/stripes/line, @@ -17183,8 +16208,6 @@ /area/quartermaster/storage) "aLs" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light, @@ -17198,8 +16221,6 @@ /area/quartermaster/storage) "aLt" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -17210,8 +16231,6 @@ "aLu" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -17219,8 +16238,6 @@ /area/quartermaster/storage) "aLv" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -17230,7 +16247,6 @@ /obj/structure/cable/white, /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -17278,8 +16294,6 @@ "aLC" = ( /obj/structure/table, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/toy/cards/deck, @@ -17580,8 +16594,6 @@ /area/engine/atmos) "aMg" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -17682,8 +16694,6 @@ "aMs" = ( /obj/structure/chair/stool/bar, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -17692,8 +16702,6 @@ "aMu" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -17714,8 +16722,6 @@ /area/crew_quarters/theatre) "aMx" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -17746,8 +16752,6 @@ /area/hallway/secondary/service) "aMB" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light/small{ @@ -17771,8 +16775,6 @@ /area/crew_quarters/bar/atrium) "aMD" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -17870,8 +16872,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -17920,8 +16920,6 @@ /area/quartermaster/sorting) "aMT" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -17955,21 +16953,15 @@ /area/security/checkpoint/supply) "aMX" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/red/side, /area/security/checkpoint/supply) "aMY" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/chair{ @@ -17981,12 +16973,10 @@ /area/security/checkpoint/supply) "aMZ" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -18012,8 +17002,6 @@ /area/quartermaster/storage) "aNd" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -18037,7 +17025,6 @@ /area/quartermaster/qm) "aNh" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -18045,11 +17032,9 @@ /area/quartermaster/qm) "aNi" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -18057,7 +17042,6 @@ /area/quartermaster/qm) "aNj" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -18065,27 +17049,22 @@ /area/quartermaster/qm) "aNk" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plating, /area/quartermaster/qm) "aNl" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -18193,7 +17172,6 @@ /area/security/prison) "aNz" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -18231,7 +17209,6 @@ /area/security/execution/education) "aNB" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -18380,8 +17357,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -18466,8 +17441,6 @@ /area/crew_quarters/abandoned_gambling_den) "aOb" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -18475,13 +17448,9 @@ /area/crew_quarters/abandoned_gambling_den) "aOc" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -18498,8 +17467,6 @@ /area/maintenance/port/fore) "aOd" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -18523,8 +17490,6 @@ /area/maintenance/port/fore) "aOe" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -18541,8 +17506,6 @@ "aOf" = ( /obj/machinery/holopad, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -18556,13 +17519,9 @@ /area/crew_quarters/theatre) "aOg" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -18575,8 +17534,6 @@ /area/crew_quarters/theatre) "aOh" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -18591,8 +17548,6 @@ /area/crew_quarters/theatre) "aOi" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -18608,8 +17563,6 @@ "aOj" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock{ @@ -18629,8 +17582,6 @@ /area/crew_quarters/theatre) "aOk" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -18642,18 +17593,12 @@ /area/hallway/secondary/service) "aOl" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, @@ -18663,8 +17608,6 @@ "aOm" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock{ @@ -18684,8 +17627,6 @@ /area/crew_quarters/bar/atrium) "aOn" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light_switch{ @@ -18701,8 +17642,6 @@ /area/crew_quarters/bar/atrium) "aOo" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -18715,8 +17654,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -18747,8 +17684,6 @@ /area/crew_quarters/bar/atrium) "aOt" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -18757,8 +17692,6 @@ "aOu" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_mining{ @@ -18795,7 +17728,6 @@ /area/security/checkpoint/supply) "aOy" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -18807,18 +17739,12 @@ "aOz" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/door/airlock/glass_security{ @@ -18839,7 +17765,6 @@ /area/security/checkpoint/supply) "aOA" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -18850,7 +17775,6 @@ /area/security/checkpoint/supply) "aOB" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -18904,8 +17828,6 @@ /area/quartermaster/storage) "aOH" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/brown{ @@ -18935,7 +17857,6 @@ /area/quartermaster/qm) "aOL" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -18984,8 +17905,6 @@ "aOP" = ( /obj/structure/bed, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/bedsheet/qm, @@ -19054,8 +17973,6 @@ name = "Cell 2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -19116,8 +18033,6 @@ /area/security/execution/education) "aOZ" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/table/reinforced, @@ -19161,13 +18076,9 @@ /area/security/execution/education) "aPa" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -19180,8 +18091,6 @@ /area/security/execution/education) "aPb" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/general/hidden, @@ -19194,14 +18103,10 @@ /area/security/execution/education) "aPc" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/closet/secure_closet/injection, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -19339,8 +18244,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/neutral, @@ -19350,8 +18253,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -19363,8 +18264,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, @@ -19479,8 +18378,6 @@ /area/crew_quarters/abandoned_gambling_den) "aPG" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -19494,8 +18391,6 @@ "aPH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -19509,8 +18404,6 @@ req_access_txt = "12" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/barricade/wooden, @@ -19527,13 +18420,9 @@ /area/crew_quarters/abandoned_gambling_den) "aPJ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -19606,8 +18495,6 @@ /area/hallway/secondary/service) "aPR" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/storage/pod{ @@ -19704,8 +18591,6 @@ /area/crew_quarters/bar/atrium) "aQc" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -19738,8 +18623,6 @@ /area/quartermaster/office) "aQf" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -19795,7 +18678,6 @@ pixel_y = 28 }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plasteel/brown{ @@ -19809,8 +18691,6 @@ /area/quartermaster/office) "aQl" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/brown{ @@ -19831,8 +18711,6 @@ /area/quartermaster/office) "aQn" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -19897,8 +18775,6 @@ /area/quartermaster/storage) "aQu" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -19956,8 +18832,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -20003,8 +18877,6 @@ /area/quartermaster/qm) "aQF" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -20086,8 +18958,6 @@ /area/security/prison) "aQN" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -20167,8 +19037,6 @@ /area/security/execution/education) "aQS" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/chair/office/dark{ @@ -20198,8 +19066,6 @@ /area/security/execution/education) "aQV" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/darkred/side{ @@ -20344,8 +19210,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, @@ -20455,8 +19319,6 @@ /area/crew_quarters/theatre) "aRA" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/twohanded/required/kirbyplants/random, @@ -20517,8 +19379,6 @@ /area/crew_quarters/bar/atrium) "aRJ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/sortjunction{ @@ -20568,8 +19428,6 @@ "aRO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -20582,8 +19440,6 @@ /area/quartermaster/office) "aRP" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -20596,8 +19452,6 @@ /area/quartermaster/office) "aRQ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -20610,8 +19464,6 @@ /area/quartermaster/office) "aRR" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -20621,8 +19473,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/neutral, @@ -20630,8 +19480,6 @@ "aRS" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -20641,16 +19489,12 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/neutral, /area/quartermaster/office) "aRT" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -20666,8 +19510,6 @@ "aRU" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/mining{ @@ -20691,13 +19533,9 @@ /area/quartermaster/storage) "aRV" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -20713,8 +19551,6 @@ /area/quartermaster/storage) "aRW" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -20728,8 +19564,6 @@ /area/quartermaster/storage) "aRX" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -20743,8 +19577,6 @@ "aRY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -20759,8 +19591,6 @@ "aRZ" = ( /obj/machinery/holopad, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/start/quartermaster, @@ -20773,8 +19603,6 @@ /area/quartermaster/storage) "aSa" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -20787,8 +19615,6 @@ /area/quartermaster/storage) "aSb" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -20802,8 +19628,6 @@ /area/quartermaster/storage) "aSc" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -20813,18 +19637,12 @@ /area/quartermaster/storage) "aSd" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -20836,8 +19654,6 @@ /area/quartermaster/storage) "aSe" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -20855,8 +19671,6 @@ /area/quartermaster/qm) "aSf" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/brown{ @@ -20865,16 +19679,12 @@ /area/quartermaster/qm) "aSg" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral, /area/quartermaster/qm) "aSh" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /mob/living/simple_animal/sloth/citrus, @@ -20883,13 +19693,9 @@ "aSi" = ( /obj/machinery/holopad, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/bot, @@ -20898,8 +19704,6 @@ "aSj" = ( /obj/structure/table/reinforced, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/folder/yellow, @@ -20911,13 +19715,9 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/landmark/start/quartermaster, @@ -20925,8 +19725,6 @@ /area/quartermaster/qm) "aSl" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/brown{ @@ -20935,8 +19733,6 @@ /area/quartermaster/qm) "aSm" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -20954,18 +19750,12 @@ /area/quartermaster/qm) "aSn" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/start/quartermaster, @@ -21038,8 +19828,6 @@ /area/security/prison) "aSv" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/side{ @@ -21094,8 +19882,6 @@ /area/security/execution/education) "aSA" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -21314,8 +20100,6 @@ "aTa" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, @@ -21379,7 +20163,6 @@ /area/engine/atmos) "aTh" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -21399,13 +20182,9 @@ /area/hallway/secondary/service) "aTi" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/newscaster{ @@ -21471,8 +20250,6 @@ /area/crew_quarters/bar/atrium) "aTr" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/sortjunction{ @@ -21616,8 +20393,6 @@ /area/quartermaster/storage) "aTI" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -21674,8 +20449,6 @@ /area/quartermaster/qm) "aTO" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -21724,8 +20497,6 @@ /area/quartermaster/qm) "aTS" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -21746,7 +20517,6 @@ /area/quartermaster/qm) "aTU" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -21754,7 +20524,6 @@ /area/quartermaster/qm) "aTV" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -21772,7 +20541,6 @@ /area/security/prison) "aTX" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -21803,8 +20571,6 @@ req_access_txt = "2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/floorgrime, @@ -21819,8 +20585,6 @@ /area/security/prison) "aUd" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -22009,8 +20773,6 @@ /area/engine/atmos) "aUy" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, @@ -22069,8 +20831,6 @@ /area/maintenance/port/fore) "aUE" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -22086,13 +20846,9 @@ /area/maintenance/port/fore) "aUF" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -22106,8 +20862,6 @@ /area/maintenance/port/fore) "aUG" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -22117,8 +20871,6 @@ /area/maintenance/port/fore) "aUH" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/sortjunction{ @@ -22134,18 +20886,12 @@ /area/maintenance/port/fore) "aUI" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -22159,8 +20905,6 @@ "aUJ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -22172,8 +20916,6 @@ "aUK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -22184,8 +20926,6 @@ "aUL" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -22196,8 +20936,6 @@ /area/maintenance/port/fore) "aUM" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance_hatch{ @@ -22217,8 +20955,6 @@ /area/hallway/secondary/service) "aUN" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -22231,13 +20967,9 @@ /area/hallway/secondary/service) "aUO" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/landmark/lightsout, @@ -22295,8 +21027,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -22440,8 +21170,6 @@ /area/quartermaster/storage) "aVl" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/storage/pod{ @@ -22508,8 +21236,6 @@ /area/quartermaster/qm) "aVs" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/brown, @@ -22526,11 +21252,9 @@ /area/quartermaster/qm) "aVu" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -22540,7 +21264,6 @@ "aVv" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -22549,8 +21272,6 @@ "aVw" = ( /obj/item/twohanded/required/kirbyplants/random, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/red/corner, @@ -22572,13 +21293,9 @@ /area/security/prison) "aVz" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -22586,26 +21303,18 @@ /area/security/prison) "aVA" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/red/corner, /area/security/prison) "aVB" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -22615,8 +21324,6 @@ /area/security/prison) "aVC" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -22626,8 +21333,6 @@ /area/security/prison) "aVD" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -22647,8 +21352,6 @@ pixel_y = 24 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -22661,8 +21364,6 @@ /area/security/prison) "aVF" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/computer/security/telescreen{ @@ -22677,13 +21378,9 @@ /area/security/prison) "aVG" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -22696,13 +21393,9 @@ /area/security/prison) "aVH" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -22724,13 +21417,9 @@ pixel_y = 24 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -22743,8 +21432,6 @@ /area/security/prison) "aVJ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -22759,13 +21446,9 @@ /area/security/prison) "aVK" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -22773,8 +21456,6 @@ /area/security/prison) "aVL" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -22797,8 +21478,6 @@ pixel_y = 24 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -22810,13 +21489,9 @@ /area/security/prison) "aVN" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -22826,13 +21501,9 @@ /area/security/prison) "aVO" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -22846,18 +21517,12 @@ /area/security/prison) "aVP" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/button/door{ @@ -22875,8 +21540,6 @@ /area/security/prison) "aVQ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -22889,13 +21552,9 @@ "aVR" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_security{ @@ -22912,8 +21571,6 @@ /area/security/prison) "aVS" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -22923,8 +21580,6 @@ /area/security/prison) "aVT" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/poddoor/preopen{ @@ -22937,8 +21592,6 @@ /area/security/prison) "aVU" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side{ @@ -22947,8 +21600,6 @@ /area/security/prison) "aVV" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plating, @@ -23116,8 +21767,6 @@ /area/engine/atmos) "aWr" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, @@ -23190,8 +21839,6 @@ /area/maintenance/port/fore) "aWA" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -23207,8 +21854,6 @@ /area/hydroponics) "aWD" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance_hatch{ @@ -23252,8 +21897,6 @@ /area/hallway/secondary/service) "aWH" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -23458,8 +22101,6 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/mining{ @@ -23481,16 +22122,13 @@ /area/quartermaster/qm) "aXj" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/white, @@ -23498,26 +22136,18 @@ /area/quartermaster/qm) "aXk" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel, /area/security/prison) "aXl" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -23534,8 +22164,6 @@ }, /obj/machinery/light, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -23547,13 +22175,9 @@ /area/security/prison) "aXn" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, @@ -23563,8 +22187,6 @@ /area/security/prison) "aXo" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -23623,8 +22245,6 @@ /area/security/prison) "aXu" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/lightsout, @@ -23664,8 +22284,6 @@ /area/security/prison) "aXx" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -23729,8 +22347,6 @@ /area/security/prison) "aXD" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -23905,8 +22521,6 @@ "aXV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, @@ -23977,8 +22591,6 @@ /area/hydroponics) "aYf" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -24047,8 +22659,6 @@ /area/hallway/secondary/service) "aYn" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -24166,8 +22776,6 @@ /area/hallway/primary/fore) "aYz" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -24291,8 +22899,6 @@ /area/quartermaster/miningoffice) "aYL" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -24338,7 +22944,6 @@ /area/quartermaster/miningoffice) "aYR" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white, @@ -24370,8 +22975,6 @@ req_access_txt = "1" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -24418,8 +23021,6 @@ "aZa" = ( /obj/structure/rack, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/restraints/handcuffs, @@ -24457,8 +23058,6 @@ name = "Prisoner Locker" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault, @@ -24483,8 +23082,6 @@ /area/security/prison) "aZg" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table, @@ -24646,8 +23243,6 @@ /area/maintenance/port/fore) "aZB" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -24667,8 +23262,6 @@ /area/hydroponics) "aZE" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -24683,8 +23276,6 @@ /area/hydroponics) "aZF" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -24701,8 +23292,6 @@ /area/hydroponics) "aZG" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -24714,13 +23303,9 @@ /area/hydroponics) "aZH" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -24732,8 +23317,6 @@ /area/hydroponics) "aZI" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -24745,8 +23328,6 @@ /area/hydroponics) "aZJ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -24758,8 +23339,6 @@ "aZK" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock{ @@ -24779,8 +23358,6 @@ /area/hallway/secondary/service) "aZL" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -24788,8 +23365,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/bot, @@ -24797,13 +23372,9 @@ /area/hallway/secondary/service) "aZM" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, @@ -24813,8 +23384,6 @@ "aZN" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock{ @@ -24834,8 +23403,6 @@ /area/crew_quarters/kitchen) "aZO" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -24847,8 +23414,6 @@ /area/crew_quarters/kitchen) "aZP" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -24858,8 +23423,6 @@ /area/crew_quarters/kitchen) "aZQ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/start/cook, @@ -24870,8 +23433,6 @@ /area/crew_quarters/kitchen) "aZR" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -25042,8 +23603,6 @@ /area/quartermaster/miningoffice) "bao" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -25081,7 +23640,6 @@ /area/quartermaster/miningoffice) "bau" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/white, @@ -25090,11 +23648,9 @@ /area/quartermaster/miningoffice) "bav" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -25102,11 +23658,9 @@ /area/quartermaster/miningoffice) "baw" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -25115,11 +23669,9 @@ /area/quartermaster/miningoffice) "bax" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -25165,8 +23717,6 @@ name = "Prison Blast door" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -25359,8 +23909,6 @@ "baX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -25451,8 +23999,6 @@ "bbi" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/delivery, @@ -25642,13 +24188,9 @@ /area/quartermaster/miningoffice) "bbK" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -25730,13 +24272,9 @@ /area/shuttle/mining) "bbX" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/sign/securearea{ @@ -25755,8 +24293,6 @@ /area/security/prison) "bbY" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -25776,8 +24312,6 @@ req_access_txt = "63" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -25792,8 +24326,6 @@ "bca" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_security{ @@ -25801,8 +24333,6 @@ req_access_txt = "63" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -25819,8 +24349,6 @@ /area/security/prison) "bcb" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -25834,8 +24362,6 @@ "bcc" = ( /obj/structure/closet/l3closet/security, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -26026,8 +24552,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -26094,8 +24618,6 @@ /area/crew_quarters/kitchen) "bcE" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/junction{ @@ -26243,8 +24765,6 @@ "bcV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -26376,8 +24896,6 @@ req_access_txt = "1" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -26391,7 +24909,6 @@ /area/security/brig) "bdk" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -26422,7 +24939,6 @@ /area/security/main) "bdn" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -26464,7 +24980,6 @@ pixel_y = 24 }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plasteel/caution{ @@ -26528,8 +25043,6 @@ /area/engine/atmos) "bdy" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, @@ -26682,8 +25195,6 @@ "bdQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/green/side{ @@ -26786,8 +25297,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -26900,8 +25409,6 @@ /area/quartermaster/miningoffice) "bep" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -26911,8 +25418,6 @@ /area/quartermaster/miningoffice) "beq" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -26924,8 +25429,6 @@ /area/quartermaster/miningoffice) "ber" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -26946,8 +25449,6 @@ /area/quartermaster/miningoffice) "bes" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -26959,8 +25460,6 @@ /area/quartermaster/miningoffice) "bet" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -26968,13 +25467,9 @@ /area/quartermaster/miningoffice) "beu" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -27021,7 +25516,6 @@ /area/quartermaster/miningoffice) "beB" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -27062,7 +25556,6 @@ /area/shuttle/mining) "beF" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -27103,7 +25596,6 @@ /area/security/brig) "beJ" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -27114,8 +25606,6 @@ /area/security/brig) "beK" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -27129,8 +25619,6 @@ "beL" = ( /obj/item/twohanded/required/kirbyplants/random, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -27156,13 +25644,9 @@ /area/security/main) "beO" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/red/side{ @@ -27171,8 +25655,6 @@ /area/security/main) "beP" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/airalarm{ @@ -27184,8 +25666,6 @@ /area/security/main) "beQ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light{ @@ -27205,8 +25685,6 @@ /area/security/main) "beR" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/newscaster/security_unit{ @@ -27218,8 +25696,6 @@ /area/security/main) "beS" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/item/twohanded/required/kirbyplants/random, @@ -27265,7 +25741,6 @@ /area/crew_quarters/heads/hos) "beX" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -27277,15 +25752,12 @@ /area/crew_quarters/heads/hos) "beY" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -27297,7 +25769,6 @@ /area/crew_quarters/heads/hos) "beZ" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -27403,8 +25874,6 @@ /area/engine/atmos) "bfk" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -27414,8 +25883,6 @@ /area/engine/atmos) "bfl" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -27423,8 +25890,6 @@ /area/engine/atmos) "bfm" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -27438,8 +25903,6 @@ /area/engine/atmos) "bfn" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -27454,13 +25917,9 @@ /obj/machinery/holopad, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -27475,8 +25934,6 @@ /area/engine/atmos) "bfp" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -27486,8 +25943,6 @@ /area/engine/atmos) "bfq" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, @@ -27630,8 +26085,6 @@ /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/bot, @@ -27771,8 +26224,6 @@ /area/hallway/primary/fore) "bfX" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/sortjunction{ @@ -27826,8 +26277,6 @@ "bge" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -27855,13 +26304,9 @@ /area/quartermaster/miningoffice) "bgi" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -27869,16 +26314,12 @@ /area/quartermaster/miningoffice) "bgj" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/purple/side, /area/quartermaster/miningoffice) "bgk" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/requests_console{ @@ -27896,8 +26337,6 @@ /area/quartermaster/miningoffice) "bgl" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/brown, @@ -27908,8 +26347,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/purple/side, @@ -27918,8 +26355,6 @@ /obj/structure/table/reinforced, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/folder/yellow, @@ -27930,15 +26365,12 @@ /area/quartermaster/miningoffice) "bgo" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -27946,7 +26378,6 @@ /area/quartermaster/miningoffice) "bgp" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/white, @@ -28064,12 +26495,10 @@ /area/shuttle/mining) "bgt" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -28078,8 +26507,6 @@ "bgu" = ( /obj/structure/table/glass, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/clothing/gloves/color/latex, @@ -28098,16 +26525,12 @@ /area/security/brig) "bgv" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/white, /area/security/brig) "bgw" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -28117,13 +26540,9 @@ /area/security/brig) "bgx" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/door/airlock/glass_medical{ @@ -28138,13 +26557,9 @@ /area/security/brig) "bgy" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -28156,13 +26571,9 @@ /area/security/brig) "bgz" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -28185,8 +26596,6 @@ /area/security/main) "bgC" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/red/corner, @@ -28243,8 +26652,6 @@ "bgL" = ( /obj/structure/table/wood, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/device/taperecorder{ @@ -28376,8 +26783,6 @@ "bhc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -28462,8 +26867,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -28559,8 +26962,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/side, @@ -28817,8 +27218,6 @@ "bib" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/loadingarea{ @@ -28828,7 +27227,6 @@ "bic" = ( /obj/structure/table, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/item/storage/firstaid/regular, @@ -28875,8 +27273,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -28976,21 +27372,15 @@ /area/security/brig) "bis" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/neutral, /area/security/brig) "bit" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -29001,7 +27391,6 @@ "biu" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -29018,8 +27407,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/start/security_officer, @@ -29055,7 +27442,6 @@ /area/security/main) "biC" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -29090,8 +27476,6 @@ /area/crew_quarters/heads/hos) "biF" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -29322,8 +27706,6 @@ /area/engine/atmos) "bjf" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -29414,8 +27796,6 @@ "bjp" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -29480,8 +27860,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -29539,8 +27917,6 @@ name = "Fore Primary Hallway" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -29622,8 +27998,6 @@ "bjL" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -29641,7 +28015,6 @@ /area/maintenance/starboard/fore) "bjM" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -29649,11 +28022,9 @@ /area/quartermaster/miningoffice) "bjN" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -29661,11 +28032,9 @@ /area/security/execution/transfer) "bjO" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -29673,11 +28042,9 @@ /area/security/execution/transfer) "bjP" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -29703,8 +28070,6 @@ /area/security/brig) "bjS" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -29735,7 +28100,6 @@ pixel_x = -26 }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -29751,13 +28115,9 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/landmark/start/security_officer, @@ -29837,7 +28197,6 @@ "bke" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -29870,8 +28229,6 @@ /obj/item/device/flashlight/lamp, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/grimy, @@ -29894,7 +28251,6 @@ /area/crew_quarters/heads/hos) "bkk" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced/tinted, @@ -29915,7 +28271,6 @@ /area/crew_quarters/heads/hos) "bkn" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -30060,8 +28415,6 @@ "bkD" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -30140,8 +28493,6 @@ dir = 9 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner{ @@ -30213,8 +28564,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -30297,8 +28646,6 @@ /area/hallway/primary/central) "bld" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -30311,7 +28658,6 @@ pixel_y = 24 }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plasteel/neutral/corner{ @@ -30320,8 +28666,6 @@ /area/hallway/primary/central) "ble" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -30338,8 +28682,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -30356,8 +28698,6 @@ "blg" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -30371,8 +28711,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -30402,8 +28740,6 @@ "blm" = ( /obj/structure/filingcabinet/chestdrawer, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/red/side{ @@ -30456,7 +28792,6 @@ /area/security/execution/transfer) "blr" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -30464,8 +28799,6 @@ /area/security/execution/transfer) "bls" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/lightsout, @@ -30479,8 +28812,6 @@ /area/security/main) "blu" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/red/side{ @@ -30518,8 +28849,6 @@ /area/security/main) "blz" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -30534,8 +28863,6 @@ /area/security/main) "blA" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -30547,18 +28874,12 @@ /area/security/main) "blB" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/door/airlock/command{ @@ -30575,13 +28896,9 @@ /area/crew_quarters/heads/hos) "blC" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -30592,8 +28909,6 @@ "blD" = ( /obj/machinery/holopad, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -30604,8 +28919,6 @@ "blE" = ( /obj/structure/table/wood, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/folder/red, @@ -30614,13 +28927,9 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/grimy, @@ -30630,8 +28939,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/start/head_of_security, @@ -30642,8 +28949,6 @@ /area/crew_quarters/heads/hos) "blG" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -30654,8 +28959,6 @@ /area/crew_quarters/heads/hos) "blH" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ @@ -30664,18 +28967,12 @@ /area/crew_quarters/heads/hos) "blI" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/door/airlock/command{ @@ -30689,8 +28986,6 @@ /area/crew_quarters/heads/hos) "blJ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/event_spawn, @@ -30698,8 +28993,6 @@ /area/crew_quarters/heads/hos) "blK" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/start/head_of_security, @@ -30707,8 +29000,6 @@ /area/crew_quarters/heads/hos) "blL" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/computer/crew, @@ -30716,12 +29007,10 @@ /area/crew_quarters/heads/hos) "blM" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -30934,8 +29223,6 @@ /area/engine/atmos) "bmj" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -31012,8 +29299,6 @@ /area/hallway/primary/port) "bmt" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -31029,8 +29314,6 @@ /area/hallway/primary/port) "bmu" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -31047,8 +29330,6 @@ req_access_txt = "12" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -31065,8 +29346,6 @@ "bmw" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -31079,8 +29358,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -31090,8 +29367,6 @@ /area/maintenance/port/fore) "bmy" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -31104,8 +29379,6 @@ "bmz" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -31119,8 +29392,6 @@ /area/maintenance/port/fore) "bmA" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -31132,8 +29403,6 @@ "bmB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/junction{ @@ -31145,13 +29414,9 @@ "bmC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -31212,16 +29477,12 @@ /area/hallway/primary/central) "bmJ" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -31236,8 +29497,6 @@ /area/hallway/primary/central) "bmK" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -31249,8 +29508,6 @@ /area/hallway/primary/central) "bmL" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -31260,8 +29517,6 @@ /area/hallway/primary/central) "bmM" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -31275,8 +29530,6 @@ "bmN" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -31292,8 +29545,6 @@ /area/hallway/primary/central) "bmO" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -31305,8 +29556,6 @@ /area/hallway/primary/central) "bmP" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -31318,8 +29567,6 @@ /area/hallway/primary/central) "bmQ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -31331,8 +29578,6 @@ /area/hallway/primary/central) "bmR" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -31350,19 +29595,13 @@ "bmS" = ( /obj/effect/landmark/lightsout, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -31379,8 +29618,6 @@ /area/hallway/primary/central) "bmT" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel{ @@ -31389,8 +29626,6 @@ /area/hallway/primary/central) "bmU" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel{ @@ -31399,8 +29634,6 @@ /area/hallway/primary/central) "bmV" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel{ @@ -31410,8 +29643,6 @@ /area/hallway/primary/central) "bmW" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/side{ @@ -31420,16 +29651,12 @@ /area/hallway/primary/central) "bmX" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral, /area/hallway/primary/central) "bmY" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -31438,8 +29665,6 @@ "bmZ" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -31452,8 +29677,6 @@ /area/hallway/primary/central) "bna" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -31463,8 +29686,6 @@ /area/hallway/primary/central) "bnb" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -31474,13 +29695,9 @@ /area/hallway/primary/central) "bnc" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -31519,8 +29736,6 @@ /area/security/execution/transfer) "bnh" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/red/side{ @@ -31556,7 +29771,6 @@ "bnm" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -31576,8 +29790,6 @@ /area/security/brig) "bno" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -31601,8 +29813,6 @@ "bnq" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_security{ @@ -31634,8 +29844,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/start/security_officer, @@ -31693,8 +29901,6 @@ /area/security/main) "bny" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -31711,6 +29917,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, +/obj/effect/turf_decal/bot, /turf/open/floor/plasteel/vault{ dir = 5 }, @@ -31718,7 +29925,6 @@ "bnA" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -31733,8 +29939,6 @@ /area/crew_quarters/heads/hos) "bnB" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -31771,8 +29975,6 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/grimy, @@ -32049,8 +30251,6 @@ /area/engine/atmos) "boi" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ @@ -32074,7 +30274,6 @@ /area/engine/atmos) "bok" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -32146,8 +30345,6 @@ dir = 10 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -32178,8 +30375,6 @@ /area/storage/tech) "box" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -32238,8 +30433,6 @@ /area/hydroponics) "boD" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -32462,8 +30655,6 @@ /area/hallway/primary/central) "boX" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -32505,7 +30696,6 @@ /area/shuttle/labor) "bpd" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -32513,12 +30703,9 @@ /area/security/execution/transfer) "bpe" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -32527,12 +30714,9 @@ /area/security/execution/transfer) "bpf" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -32540,8 +30724,6 @@ /area/security/execution/transfer) "bpg" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -32551,13 +30733,9 @@ /area/security/execution/transfer) "bph" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -32600,8 +30778,6 @@ /area/security/execution/transfer) "bpl" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -32614,18 +30790,12 @@ "bpm" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/door/airlock/glass_security{ @@ -32639,8 +30809,6 @@ /area/security/execution/transfer) "bpn" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -32655,18 +30823,12 @@ /area/security/brig) "bpo" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment, @@ -32680,8 +30842,6 @@ /area/security/brig) "bpp" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -32695,18 +30855,12 @@ "bpq" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_security{ @@ -32722,8 +30876,6 @@ /area/security/main) "bpr" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -32736,13 +30888,9 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/landmark/start/security_officer, @@ -32756,8 +30904,6 @@ "bpt" = ( /obj/structure/table/reinforced, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/folder/red, @@ -32770,8 +30916,6 @@ "bpu" = ( /obj/structure/table/reinforced, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/paper_bin, @@ -32783,8 +30927,6 @@ /area/security/main) "bpv" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -32796,8 +30938,6 @@ /area/security/main) "bpw" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -32808,8 +30948,6 @@ /area/security/main) "bpx" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -32819,13 +30957,9 @@ /area/security/main) "bpy" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -32839,6 +30973,7 @@ /area/security/main) "bpz" = ( /obj/effect/landmark/secequipment, +/obj/effect/turf_decal/bot, /turf/open/floor/plasteel/vault{ dir = 5 }, @@ -32859,16 +30994,12 @@ pixel_y = -32 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/grimy, /area/crew_quarters/heads/hos) "bpC" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -33068,13 +31199,9 @@ /area/engine/atmos) "bqb" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, @@ -33085,8 +31212,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -33104,18 +31229,12 @@ req_access_txt = "24" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -33133,8 +31252,6 @@ "bqe" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -33145,8 +31262,6 @@ /area/engine/atmos) "bqf" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/portable_atmospherics/canister/nitrous_oxide, @@ -33158,8 +31273,6 @@ /area/engine/atmos) "bqg" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/portable_atmospherics/canister/nitrogen, @@ -33200,14 +31313,10 @@ "bql" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/neutral, @@ -33216,8 +31325,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -33259,8 +31366,6 @@ "bqr" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -33295,8 +31400,6 @@ "bqv" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -33313,7 +31416,6 @@ "bqx" = ( /obj/structure/grille, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/window/shuttle, @@ -33393,13 +31495,9 @@ /area/security/execution/transfer) "bqG" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment, @@ -33409,8 +31507,6 @@ /area/security/execution/transfer) "bqH" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -33423,13 +31519,9 @@ /area/security/execution/transfer) "bqI" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -33442,13 +31534,9 @@ /area/security/execution/transfer) "bqJ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -33461,8 +31549,6 @@ /area/security/execution/transfer) "bqK" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -33474,7 +31560,6 @@ /area/security/execution/transfer) "bqL" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white, @@ -33494,8 +31579,6 @@ /area/security/brig) "bqN" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -33543,8 +31626,6 @@ /area/security/main) "bqU" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -33557,6 +31638,7 @@ /obj/machinery/light/small{ dir = 4 }, +/obj/effect/turf_decal/bot, /turf/open/floor/plasteel/vault{ dir = 5 }, @@ -33585,8 +31667,6 @@ "bqY" = ( /obj/structure/table/wood, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/storage/fancy/donut_box, @@ -33734,8 +31814,6 @@ "brm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -33801,8 +31879,6 @@ "brr" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -33833,7 +31909,6 @@ /area/engine/atmos) "bru" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -33860,8 +31935,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/junction, @@ -33882,7 +31955,6 @@ /area/storage/tech) "brz" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -33890,15 +31962,12 @@ /area/storage/tech) "brA" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -33906,7 +31975,6 @@ /area/storage/tech) "brB" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -33949,8 +32017,6 @@ /area/hallway/primary/central) "brI" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -33983,8 +32049,6 @@ /area/hallway/primary/central) "brO" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -33998,7 +32062,6 @@ /area/hallway/primary/central) "brQ" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -34082,8 +32145,6 @@ "brZ" = ( /obj/structure/closet/emcloset, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -34093,13 +32154,9 @@ /area/security/execution/transfer) "bsa" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment, @@ -34122,8 +32179,6 @@ /area/security/execution/transfer) "bsd" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/red/side, @@ -34182,8 +32237,6 @@ /area/security/main) "bsl" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -34196,6 +32249,7 @@ pixel_x = 32 }, /obj/effect/landmark/secequipment, +/obj/effect/turf_decal/bot, /turf/open/floor/plasteel/vault{ dir = 5 }, @@ -34203,11 +32257,9 @@ "bsn" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -34223,8 +32275,6 @@ /area/ai_monitored/turret_protected/ai) "bsp" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/item/twohanded/required/kirbyplants/random, @@ -34236,11 +32286,9 @@ charge = 5e+006 }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/structure/sign/electricshock{ @@ -34256,8 +32304,6 @@ /area/ai_monitored/turret_protected/ai) "bsr" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/item/twohanded/required/kirbyplants/random, @@ -34357,8 +32403,6 @@ "bsB" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -34406,13 +32450,9 @@ "bsE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -34422,8 +32462,6 @@ /area/engine/atmos) "bsF" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -34435,8 +32473,6 @@ "bsG" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -34451,8 +32487,6 @@ opacity = 1 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/door/poddoor/preopen{ @@ -34460,8 +32494,6 @@ name = "Atmospherics Lockdown Blast door" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -34489,8 +32521,6 @@ dir = 5 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/sortjunction{ @@ -34507,8 +32537,6 @@ }, /obj/item/circuitboard/computer/mecha_control, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -34528,18 +32556,12 @@ pixel_y = -3 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line, @@ -34557,8 +32579,6 @@ pixel_y = -3 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -34609,11 +32629,9 @@ /area/hydroponics) "bsS" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -34625,11 +32643,9 @@ /area/bridge) "bsT" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -34641,11 +32657,9 @@ /area/bridge) "bsU" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -34660,7 +32674,6 @@ /area/bridge) "bsW" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -34672,15 +32685,12 @@ /area/bridge) "bsX" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -34692,7 +32702,6 @@ /area/bridge) "bsY" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -34712,8 +32721,6 @@ /area/hallway/primary/central) "bta" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -34733,12 +32740,10 @@ /area/hallway/primary/central) "btc" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -34749,7 +32754,6 @@ /area/hallway/primary/central) "btd" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -34827,13 +32831,9 @@ "btn" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/door/airlock/glass_security{ @@ -34845,7 +32845,6 @@ /area/security/execution/transfer) "bto" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -34884,7 +32883,6 @@ /area/security/main) "bts" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced/tinted, @@ -34892,18 +32890,12 @@ /area/security/main) "btt" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/security{ @@ -34917,7 +32909,6 @@ /area/security/main) "btu" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced/tinted, @@ -34963,8 +32954,6 @@ /area/ai_monitored/turret_protected/ai) "btz" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -35089,8 +33078,6 @@ /area/engine/break_room) "btP" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/delivery, @@ -35120,8 +33107,6 @@ "btS" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -35135,7 +33120,6 @@ /area/engine/atmos) "btU" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -35159,8 +33143,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -35193,8 +33175,6 @@ /area/storage/tech) "bua" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -35215,8 +33195,6 @@ /area/storage/tech) "buc" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -35256,8 +33234,6 @@ "buh" = ( /obj/machinery/computer/med_data, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/darkblue/side{ @@ -35282,8 +33258,6 @@ "buk" = ( /obj/machinery/computer/security, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/darkred/side{ @@ -35307,8 +33281,6 @@ "bun" = ( /obj/machinery/computer/station_alert, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/darkyellow/side{ @@ -35329,21 +33301,15 @@ /area/bridge) "buq" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, /area/hallway/primary/central) "bur" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -35356,18 +33322,12 @@ /area/hallway/primary/central) "bus" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/vault{ @@ -35385,8 +33345,6 @@ /area/hallway/primary/central) "but" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -35404,8 +33362,6 @@ req_access_txt = "53" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/sign/electricshock{ @@ -35423,8 +33379,6 @@ /area/security/nuke_storage) "buv" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -35437,8 +33391,6 @@ layer = 2 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -35450,15 +33402,12 @@ /area/security/nuke_storage) "bux" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/circuit/green, /area/security/nuke_storage) "buy" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -35503,8 +33452,6 @@ }, /obj/item/twohanded/required/kirbyplants/random, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -35514,13 +33461,9 @@ /area/security/execution/transfer) "buD" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment, @@ -35603,7 +33546,6 @@ /area/security/main) "buO" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced/tinted, @@ -35620,8 +33562,6 @@ /area/security/main) "buQ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -35662,8 +33602,6 @@ /area/ai_monitored/turret_protected/ai) "buU" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -35673,8 +33611,6 @@ /area/ai_monitored/turret_protected/ai) "buV" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -35682,13 +33618,9 @@ /area/ai_monitored/turret_protected/ai) "buW" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -35698,18 +33630,12 @@ /area/ai_monitored/turret_protected/ai) "buX" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/ai_slipper{ @@ -35722,13 +33648,9 @@ /area/ai_monitored/turret_protected/ai) "buY" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -35738,8 +33660,6 @@ /area/ai_monitored/turret_protected/ai) "buZ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -35750,8 +33670,6 @@ /area/ai_monitored/turret_protected/ai) "bva" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -35825,7 +33743,6 @@ /area/engine/break_room) "bvj" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -35905,8 +33822,6 @@ "bvr" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -35932,7 +33847,6 @@ pixel_x = -32 }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/modular_computer/console/preset/engineering, @@ -35948,24 +33862,18 @@ /area/engine/atmos) "bvv" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/holopad, /obj/effect/landmark/start/atmospheric_technician, /obj/effect/turf_decal/bot, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel, /area/engine/atmos) "bvw" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -35976,8 +33884,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/caution{ @@ -35987,13 +33893,9 @@ "bvy" = ( /obj/structure/table/reinforced, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/item/folder/yellow, @@ -36023,8 +33925,6 @@ dir = 6 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -36047,18 +33947,12 @@ "bvC" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/highsecurity{ @@ -36080,13 +33974,9 @@ /area/storage/tech) "bvE" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -36097,8 +33987,6 @@ /area/maintenance/port/fore) "bvF" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -36113,8 +34001,6 @@ "bvG" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -36128,13 +34014,9 @@ "bvH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -36152,8 +34034,6 @@ req_access_txt = "12" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -36169,8 +34049,6 @@ /area/maintenance/port/fore) "bvJ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -36183,13 +34061,9 @@ /area/hallway/primary/central) "bvK" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -36240,8 +34114,6 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -36263,8 +34135,6 @@ /area/bridge) "bvR" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -36310,11 +34180,9 @@ "bvW" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -36322,7 +34190,6 @@ /area/hallway/primary/central) "bvX" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -36491,8 +34358,6 @@ /area/security/execution/transfer) "bwg" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -36544,8 +34409,6 @@ /area/security/brig) "bwm" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -36607,11 +34470,9 @@ "bws" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced/tinted, @@ -36622,8 +34483,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ @@ -36632,8 +34491,6 @@ /area/security/main) "bwu" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/item/device/radio/intercom{ @@ -36700,8 +34557,6 @@ /area/ai_monitored/turret_protected/ai) "bwA" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -36720,8 +34575,6 @@ /area/ai_monitored/turret_protected/ai) "bwC" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -36741,8 +34594,6 @@ /area/ai_monitored/turret_protected/ai) "bwE" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -36784,7 +34635,6 @@ /area/engine/gravity_generator) "bwJ" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -36823,8 +34673,7 @@ dir = 4 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -36843,7 +34692,6 @@ dir = 10 }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/turf_decal/stripes/line{ @@ -36864,8 +34712,7 @@ pixel_x = 26 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, @@ -36902,7 +34749,6 @@ /area/engine/break_room) "bwS" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white, @@ -36946,8 +34792,6 @@ /area/engine/break_room) "bwY" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/poddoor/preopen{ @@ -37053,8 +34897,6 @@ "bxg" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -37100,8 +34942,6 @@ /area/storage/tech) "bxl" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -37129,8 +34969,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -37172,8 +35010,6 @@ opacity = 1 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -37204,7 +35040,6 @@ /area/hallway/primary/central) "bxw" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -37270,8 +35105,6 @@ "bxE" = ( /obj/machinery/computer/cargo/request, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/darkyellow/side{ @@ -37296,8 +35129,6 @@ /area/bridge) "bxH" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -37307,8 +35138,6 @@ /area/bridge) "bxI" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/device/radio/beacon, @@ -37318,8 +35147,6 @@ /area/bridge) "bxJ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, @@ -37349,8 +35176,6 @@ /area/bridge) "bxM" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/modular_computer/console/preset/command, @@ -37455,13 +35280,9 @@ /area/shuttle/labor) "bxX" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment, @@ -37508,8 +35329,6 @@ /area/security/brig) "byd" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -37623,8 +35442,6 @@ /area/ai_monitored/turret_protected/ai) "byp" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -37645,8 +35462,6 @@ /area/ai_monitored/turret_protected/ai) "bys" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/circuit/green, @@ -37682,7 +35497,6 @@ "byy" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -37699,8 +35513,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/neutral, @@ -37709,13 +35521,9 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -37729,8 +35537,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/bot, @@ -37792,7 +35598,6 @@ /area/engine/break_room) "byI" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -37809,13 +35614,9 @@ req_access_txt = "19" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -37831,11 +35632,9 @@ /area/engine/break_room) "byK" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/white, @@ -37853,13 +35652,9 @@ req_access_txt = "19" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -37875,7 +35670,6 @@ /area/engine/break_room) "byM" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -37942,7 +35736,6 @@ pixel_y = 24 }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -37954,8 +35747,6 @@ /area/engine/break_room) "byT" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -37968,13 +35759,9 @@ /area/engine/break_room) "byU" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -38054,8 +35841,6 @@ /area/engine/atmos) "bzb" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -38087,8 +35872,6 @@ /area/storage/tech) "bzf" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -38149,8 +35932,6 @@ /area/storage/primary) "bzn" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -38269,13 +36050,9 @@ /area/storage/primary) "bzs" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/lightsout, @@ -38290,8 +36067,6 @@ /area/hallway/primary/central) "bzt" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -38307,13 +36082,9 @@ "bzu" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_command{ @@ -38328,8 +36099,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ @@ -38338,8 +36107,6 @@ /area/bridge) "bzv" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -38354,8 +36121,6 @@ /area/bridge) "bzw" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/poddoor/preopen{ @@ -38376,18 +36141,12 @@ "bzx" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_command{ @@ -38404,8 +36163,6 @@ /area/bridge) "bzy" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -38417,8 +36174,6 @@ /area/bridge) "bzz" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -38431,13 +36186,9 @@ "bzA" = ( /obj/item/twohanded/required/kirbyplants/random, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/light{ @@ -38458,8 +36209,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -38474,18 +36223,12 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -38497,13 +36240,9 @@ /area/bridge) "bzD" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -38515,8 +36254,6 @@ "bzE" = ( /obj/structure/window/reinforced, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -38526,8 +36263,6 @@ /area/bridge) "bzF" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/window/brigdoor/southright{ @@ -38542,18 +36277,12 @@ "bzG" = ( /obj/structure/window/reinforced, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -38563,13 +36292,9 @@ /area/bridge) "bzH" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -38582,13 +36307,9 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -38603,8 +36324,6 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -38616,8 +36335,6 @@ /area/bridge) "bzK" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -38631,13 +36348,9 @@ "bzL" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_command{ @@ -38654,8 +36367,6 @@ /area/bridge) "bzM" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/poddoor/preopen{ @@ -38672,13 +36383,9 @@ "bzN" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_command{ @@ -38690,8 +36397,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ @@ -38700,8 +36405,6 @@ /area/bridge) "bzO" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -38713,13 +36416,9 @@ /area/hallway/primary/central) "bzP" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -38770,8 +36469,6 @@ /area/security/execution/transfer) "bzU" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/sortjunction{ @@ -38869,8 +36566,6 @@ /area/ai_monitored/turret_protected/ai) "bAe" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/ai_slipper{ @@ -38933,8 +36628,6 @@ /area/ai_monitored/turret_protected/ai) "bAi" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/ai_slipper{ @@ -39006,13 +36699,9 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel, @@ -39022,24 +36711,18 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/bot, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/engine/gravity_generator) "bAo" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/turf_decal/stripes/line{ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel, @@ -39047,8 +36730,6 @@ "bAp" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -39061,8 +36742,6 @@ req_access_txt = "19;23" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -39075,13 +36754,9 @@ /area/engine/gravity_generator) "bAr" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -39092,8 +36767,6 @@ /obj/machinery/holopad, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/bot, @@ -39101,8 +36774,6 @@ /area/engine/gravity_generator) "bAt" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -39115,8 +36786,6 @@ "bAu" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/highsecurity{ @@ -39137,8 +36806,6 @@ /area/engine/break_room) "bAv" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -39151,13 +36818,9 @@ /area/engine/break_room) "bAw" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -39174,8 +36837,6 @@ /area/engine/break_room) "bAx" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -39191,13 +36852,9 @@ /area/engine/break_room) "bAy" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -39213,8 +36870,6 @@ /area/engine/break_room) "bAz" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -39228,8 +36883,6 @@ "bAA" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/highsecurity{ @@ -39250,8 +36903,6 @@ /area/engine/break_room) "bAB" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers, @@ -39265,8 +36916,6 @@ /area/engine/break_room) "bAC" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -39277,8 +36926,6 @@ /area/engine/break_room) "bAD" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -39291,8 +36938,6 @@ /area/engine/break_room) "bAE" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -39303,8 +36948,6 @@ /area/engine/break_room) "bAF" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -39314,8 +36957,6 @@ /area/engine/break_room) "bAG" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -39325,13 +36966,9 @@ /area/engine/break_room) "bAH" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/neutral, @@ -39359,8 +36996,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -39440,7 +37075,6 @@ pixel_y = 3 }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/turf_decal/bot, @@ -39448,8 +37082,6 @@ /area/storage/primary) "bAS" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/yellow/side{ @@ -39458,8 +37090,6 @@ /area/storage/primary) "bAT" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -39472,8 +37102,6 @@ /area/storage/primary) "bAU" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -39485,8 +37113,6 @@ /area/storage/primary) "bAV" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -39535,8 +37161,6 @@ "bBc" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_command{ @@ -39580,8 +37204,6 @@ "bBf" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_command{ @@ -39626,8 +37248,6 @@ /area/bridge) "bBi" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -39652,8 +37272,6 @@ /area/bridge) "bBk" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -39700,8 +37318,6 @@ "bBp" = ( /obj/machinery/computer/communications, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -39747,8 +37363,6 @@ /area/bridge) "bBu" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -39787,8 +37401,6 @@ /area/hallway/primary/central) "bBy" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -39807,7 +37419,6 @@ /area/hallway/primary/central) "bBA" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -39819,13 +37430,9 @@ /area/security/execution/transfer) "bBB" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/door/airlock/glass_security{ @@ -39839,7 +37446,6 @@ /area/security/execution/transfer) "bBC" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -39848,8 +37454,6 @@ /area/security/execution/transfer) "bBD" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -39895,7 +37499,6 @@ /area/security/warden) "bBJ" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -40043,8 +37646,6 @@ /area/engine/gravity_generator) "bBX" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -40167,8 +37768,6 @@ /area/engine/break_room) "bCk" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -40272,7 +37871,6 @@ dir = 4 }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -40289,8 +37887,6 @@ /area/hallway/primary/port) "bCu" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -40395,8 +37991,6 @@ /area/storage/primary) "bCG" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -40472,8 +38066,6 @@ /area/bridge) "bCP" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -40543,8 +38135,6 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/carpet, @@ -40600,8 +38190,6 @@ /area/bridge) "bDe" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -40637,7 +38225,6 @@ /area/security/detectives_office) "bDj" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -40670,7 +38257,6 @@ /area/hallway/primary/starboard) "bDn" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -40706,7 +38292,6 @@ /area/security/brig) "bDq" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -40723,13 +38308,9 @@ /area/security/brig) "bDs" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -40740,8 +38321,6 @@ /area/security/brig) "bDt" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -40754,8 +38333,6 @@ "bDu" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/security{ @@ -40771,8 +38348,6 @@ /area/security/warden) "bDv" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -40784,13 +38359,9 @@ /area/security/warden) "bDw" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -40802,8 +38373,6 @@ /area/security/warden) "bDx" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/blobstart, @@ -40816,8 +38385,6 @@ /area/security/warden) "bDy" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ @@ -40826,18 +38393,12 @@ /area/security/warden) "bDz" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/door/airlock/glass_security{ @@ -40854,8 +38415,6 @@ /area/security/warden) "bDA" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -40866,8 +38425,6 @@ "bDB" = ( /obj/structure/tank_dispenser/oxygen, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ @@ -40876,7 +38433,6 @@ /area/security/warden) "bDC" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -40970,8 +38526,6 @@ /area/engine/gravity_generator) "bDK" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/poddoor/preopen{ @@ -41060,21 +38614,15 @@ /area/engine/break_room) "bDU" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/neutral, /area/engine/break_room) "bDV" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -41082,16 +38630,12 @@ /area/engine/break_room) "bDW" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral, /area/engine/break_room) "bDX" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/yellow/side{ @@ -41102,8 +38646,6 @@ /obj/machinery/door/firedoor, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/engineering{ @@ -41121,8 +38663,6 @@ /area/engine/break_room) "bDZ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -41130,8 +38670,6 @@ /area/engine/break_room) "bEa" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/lightsout, @@ -41140,8 +38678,6 @@ "bEb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -41151,8 +38687,6 @@ /obj/machinery/door/firedoor, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/engineering{ @@ -41161,13 +38695,9 @@ req_one_access_txt = "32;19" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/stripes/line{ @@ -41181,8 +38711,6 @@ "bEd" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/yellow/side{ @@ -41191,18 +38719,12 @@ /area/hallway/primary/port) "bEe" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -41219,7 +38741,6 @@ "bEg" = ( /obj/structure/table/reinforced, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/item/folder/yellow, @@ -41237,8 +38758,6 @@ /area/storage/tech) "bEh" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -41250,8 +38769,6 @@ /area/storage/tech) "bEi" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -41261,13 +38778,9 @@ /area/storage/tech) "bEj" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -41410,8 +38923,6 @@ "bEz" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/command{ @@ -41489,8 +39000,6 @@ /area/bridge) "bEG" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/carpet, @@ -41558,8 +39067,6 @@ req_access_txt = "20" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -41571,8 +39078,6 @@ /area/crew_quarters/heads/captain) "bEP" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -41587,8 +39092,6 @@ req_access_txt = "12" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -41602,8 +39105,6 @@ "bER" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/side{ @@ -41613,21 +39114,15 @@ "bES" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/starboard) "bET" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -41637,8 +39132,6 @@ /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/neutral/side{ @@ -41648,13 +39141,9 @@ "bEX" = ( /obj/structure/closet/secure_closet/detective, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/clothing/head/fedora/det_hat{ @@ -41671,8 +39160,6 @@ "bEY" = ( /obj/structure/table/wood, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/item/book/manual/wiki/security_space_law, @@ -41682,7 +39169,6 @@ "bEZ" = ( /obj/structure/table/wood, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -41698,21 +39184,15 @@ "bFa" = ( /obj/structure/filingcabinet/security, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/vault, /area/security/detectives_office) "bFb" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/trunk, @@ -41769,17 +39249,12 @@ "bFi" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -41791,8 +39266,6 @@ /area/security/brig) "bFj" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side{ @@ -41801,8 +39274,6 @@ /area/security/brig) "bFk" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side{ @@ -41811,18 +39282,12 @@ /area/security/brig) "bFl" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/window/brigdoor/security/cell/westright{ @@ -41835,8 +39300,6 @@ /area/security/brig) "bFm" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -41844,13 +39307,9 @@ /area/security/brig) "bFn" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment, @@ -41874,8 +39333,6 @@ /area/security/warden) "bFq" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -41924,8 +39381,6 @@ /area/ai_monitored/turret_protected/ai) "bFw" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -41953,7 +39408,6 @@ /area/ai_monitored/turret_protected/ai) "bFz" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -41977,8 +39431,6 @@ /area/ai_monitored/turret_protected/ai) "bFB" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -42007,8 +39459,6 @@ /area/ai_monitored/turret_protected/ai) "bFE" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/hatch{ @@ -42114,7 +39564,6 @@ /area/crew_quarters/heads/chief) "bFM" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -42183,8 +39632,6 @@ /area/engine/break_room) "bFT" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -42263,8 +39710,6 @@ /area/hallway/primary/port) "bGd" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -42393,7 +39838,6 @@ /area/bridge/meeting_room/council) "bGs" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc/highcap/ten_k{ @@ -42406,8 +39850,6 @@ /area/bridge/meeting_room/council) "bGt" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -42418,8 +39860,6 @@ /area/bridge/meeting_room/council) "bGu" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/light_switch{ @@ -42451,8 +39891,6 @@ /area/tcommsat/computer) "bGz" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -42487,8 +39925,6 @@ pixel_y = 26 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -42557,8 +39993,6 @@ req_access_txt = "12" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -42572,8 +40006,6 @@ "bGN" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plating, @@ -42584,8 +40016,6 @@ req_access_txt = "4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -42602,8 +40032,6 @@ pixel_y = 32 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ @@ -42612,13 +40040,9 @@ /area/security/detectives_office) "bGQ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -42630,8 +40054,6 @@ /area/security/detectives_office) "bGR" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -42641,18 +40063,12 @@ /area/security/detectives_office) "bGS" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -42662,8 +40078,6 @@ /area/security/detectives_office) "bGT" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -42673,8 +40087,6 @@ /area/security/detectives_office) "bGU" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/reagent_dispensers/peppertank{ @@ -42770,8 +40182,6 @@ /area/security/brig) "bHe" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -42791,7 +40201,6 @@ /area/security/brig) "bHg" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -42800,13 +40209,9 @@ "bHh" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_security{ @@ -42882,8 +40287,6 @@ /area/ai_monitored/turret_protected/ai) "bHo" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -42891,16 +40294,12 @@ /area/ai_monitored/turret_protected/ai) "bHp" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/circuit/green, /area/ai_monitored/turret_protected/ai) "bHq" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/ai_slipper{ @@ -42910,13 +40309,9 @@ /area/ai_monitored/turret_protected/ai) "bHr" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -42924,8 +40319,6 @@ /area/ai_monitored/turret_protected/ai) "bHs" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/circuit/green, @@ -42982,8 +40375,6 @@ /area/engine/transit_tube) "bHz" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -43045,8 +40436,6 @@ /area/crew_quarters/heads/chief) "bHF" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -43058,13 +40447,9 @@ /area/crew_quarters/heads/chief) "bHG" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/door/firedoor, @@ -43073,8 +40458,6 @@ req_access_txt = "56" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -43094,8 +40477,6 @@ name = "Chief's Lockdown Shutters" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -43111,8 +40492,6 @@ /area/engine/break_room) "bHI" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -43123,8 +40502,6 @@ /area/engine/break_room) "bHJ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -43140,8 +40517,6 @@ /area/engine/break_room) "bHK" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -43154,8 +40529,6 @@ /area/engine/break_room) "bHL" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -43168,8 +40541,6 @@ /area/engine/break_room) "bHM" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -43182,13 +40553,9 @@ /area/engine/break_room) "bHN" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -43201,13 +40568,9 @@ /area/engine/break_room) "bHO" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -43229,7 +40592,6 @@ /area/security/checkpoint/engineering) "bHR" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -43240,13 +40602,9 @@ /area/security/checkpoint/engineering) "bHS" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/door/airlock/glass_security{ @@ -43261,7 +40619,6 @@ /area/security/checkpoint/engineering) "bHT" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -43359,7 +40716,6 @@ /area/storage/primary) "bId" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -43398,8 +40754,6 @@ /area/bridge/meeting_room/council) "bIi" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/chair/comfy/brown, @@ -43410,8 +40764,6 @@ /area/bridge/meeting_room/council) "bIj" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/chair/comfy/black, @@ -43485,7 +40837,6 @@ }, /obj/item/twohanded/required/kirbyplants/random, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -43507,8 +40858,6 @@ /area/tcommsat/computer) "bIs" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light_switch{ @@ -43580,8 +40929,6 @@ /area/crew_quarters/heads/captain) "bIA" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -43633,7 +40980,6 @@ /area/storage/tools) "bII" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/decal/cleanable/dirt, @@ -43651,8 +40997,6 @@ /area/storage/tools) "bIJ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -43712,8 +41056,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -43849,8 +41191,6 @@ pixel_y = 32 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side{ @@ -43859,13 +41199,9 @@ /area/security/warden) "bJd" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/red/side{ @@ -44041,7 +41377,6 @@ /area/aisat) "bJt" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -44053,8 +41388,6 @@ /area/aisat) "bJu" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/hatch{ @@ -44071,8 +41404,6 @@ "bJv" = ( /obj/structure/lattice/catwalk, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -44083,8 +41414,6 @@ "bJw" = ( /obj/structure/lattice/catwalk, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -44095,8 +41424,6 @@ "bJx" = ( /obj/structure/lattice/catwalk, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -44106,8 +41433,6 @@ /area/space) "bJy" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/hatch{ @@ -44124,8 +41449,6 @@ /area/engine/transit_tube) "bJz" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -44137,8 +41460,6 @@ /area/engine/transit_tube) "bJA" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -44148,8 +41469,6 @@ /area/engine/transit_tube) "bJB" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -44205,8 +41524,6 @@ /area/crew_quarters/heads/chief) "bJI" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -44277,8 +41594,6 @@ /area/engine/break_room) "bJQ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -44302,7 +41617,6 @@ /area/engine/break_room) "bJU" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -44373,8 +41687,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -44425,11 +41737,9 @@ "bKj" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -44441,8 +41751,6 @@ /area/bridge/meeting_room/council) "bKk" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/photocopier, @@ -44451,8 +41759,6 @@ "bKl" = ( /obj/machinery/holopad, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/grimy, @@ -44464,8 +41770,6 @@ icon_state = "comfychair" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/carpet, @@ -44473,8 +41777,6 @@ "bKn" = ( /obj/structure/table/wood, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/folder/blue, @@ -44484,13 +41786,9 @@ "bKo" = ( /obj/structure/table/wood, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/item/folder/red, @@ -44500,13 +41798,9 @@ "bKp" = ( /obj/structure/table/wood, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/item/folder/yellow, @@ -44560,8 +41854,6 @@ /area/tcommsat/computer) "bKw" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -44571,8 +41863,6 @@ /area/tcommsat/computer) "bKx" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -44582,14 +41872,10 @@ /area/tcommsat/computer) "bKy" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/holopad, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/grimy, @@ -44634,13 +41920,9 @@ "bKF" = ( /obj/machinery/holopad, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -44649,8 +41931,6 @@ /area/crew_quarters/heads/captain) "bKG" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/event_spawn, @@ -44658,8 +41938,6 @@ /area/crew_quarters/heads/captain) "bKH" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, @@ -44670,8 +41948,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/grimy, @@ -44686,8 +41962,6 @@ }, /obj/item/clothing/mask/cigarette/cigar, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/grimy, @@ -44718,8 +41992,6 @@ /area/storage/tools) "bKM" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/decal/cleanable/dirt, @@ -44729,8 +42001,6 @@ /area/storage/tools) "bKN" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/neutral, @@ -44787,8 +42057,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/grimy, @@ -44874,8 +42142,6 @@ /area/security/brig) "bLe" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/holopad, @@ -44910,13 +42176,9 @@ /area/security/warden) "bLh" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, @@ -44925,8 +42187,6 @@ "bLi" = ( /obj/machinery/computer/secure_data, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side{ @@ -44935,7 +42195,6 @@ /area/security/warden) "bLj" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -45059,8 +42318,6 @@ "bLx" = ( /obj/structure/lattice/catwalk, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -45138,8 +42395,6 @@ "bLG" = ( /obj/structure/table/reinforced, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/item/folder/blue{ @@ -45155,8 +42410,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -45167,13 +42420,9 @@ /area/crew_quarters/heads/chief) "bLI" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/light{ @@ -45200,8 +42449,6 @@ "bLM" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/engineering{ @@ -45229,7 +42476,6 @@ /area/engine/break_room) "bLP" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/white, @@ -45270,8 +42516,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -45443,8 +42687,6 @@ /area/bridge/meeting_room/council) "bMp" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/chair/comfy/brown{ @@ -45501,8 +42743,6 @@ /area/tcommsat/computer) "bMy" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/grimy, @@ -45549,8 +42789,6 @@ "bMF" = ( /obj/structure/chair/comfy/brown, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -45689,8 +42927,6 @@ /area/security/detectives_office) "bMU" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -45698,28 +42934,18 @@ /area/security/detectives_office) "bMV" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/grimy, @@ -45727,8 +42953,6 @@ "bMW" = ( /obj/structure/table/wood, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/item/paper_bin, @@ -45781,18 +43005,12 @@ /area/security/detectives_office) "bNb" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/window/brigdoor/security/cell/westright{ @@ -45808,8 +43026,6 @@ /obj/item/paper_bin, /obj/item/pen, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side{ @@ -45818,18 +43034,12 @@ /area/security/warden) "bNd" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -45838,8 +43048,6 @@ "bNe" = ( /obj/machinery/computer/security, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red, @@ -45860,6 +43068,12 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/bot, /obj/item/gun/ballistic/shotgun/riot, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) "bNh" = ( @@ -45915,8 +43129,6 @@ "bNl" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/portable_atmospherics/canister/air, @@ -45933,7 +43145,6 @@ charge = 5e+006 }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/light{ @@ -45950,7 +43161,6 @@ "bNn" = ( /obj/machinery/power/port_gen/pacman, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/structure/sign/electricshock{ @@ -46079,8 +43289,6 @@ "bNG" = ( /obj/structure/lattice/catwalk, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -46091,8 +43299,6 @@ "bNH" = ( /obj/structure/lattice/catwalk, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -46149,8 +43355,6 @@ "bNN" = ( /obj/structure/table/reinforced, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/clipboard, @@ -46169,7 +43373,6 @@ /area/crew_quarters/heads/chief) "bNP" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced/tinted, @@ -46245,8 +43448,6 @@ /area/engine/engineering) "bNW" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -46270,7 +43471,6 @@ /area/engine/engineering) "bNZ" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -46278,13 +43478,9 @@ /area/security/checkpoint/engineering) "bOa" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/door/window/brigdoor{ @@ -46297,7 +43493,6 @@ /area/security/checkpoint/engineering) "bOb" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -46325,8 +43520,6 @@ "bOf" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/engineering{ @@ -46444,8 +43637,6 @@ /area/bridge/meeting_room/council) "bOo" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light_switch{ @@ -46540,8 +43731,6 @@ /obj/item/pen/fourcolor, /obj/item/stamp/captain, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -46645,8 +43834,6 @@ req_access_txt = "4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/red/side{ @@ -46662,8 +43849,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plating, @@ -46676,7 +43861,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -46719,8 +43903,6 @@ /area/security/brig) "bOR" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -46746,13 +43928,9 @@ /area/security/warden) "bOT" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -46761,7 +43939,6 @@ "bOU" = ( /obj/machinery/computer/prisoner, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -46820,6 +43997,9 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 4 + }, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) "bOX" = ( @@ -46901,8 +44081,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "bPc" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -46917,7 +44095,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/effect/turf_decal/stripes/line, @@ -46925,8 +44102,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "bPe" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/stripes/line, @@ -47199,8 +44374,6 @@ "bPE" = ( /obj/structure/table/reinforced, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/cartridge/engineering{ @@ -47226,8 +44399,6 @@ /area/crew_quarters/heads/chief) "bPG" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -47239,18 +44410,12 @@ /area/crew_quarters/heads/chief) "bPH" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -47271,8 +44436,6 @@ /area/crew_quarters/heads/chief) "bPI" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -47284,8 +44447,6 @@ /area/crew_quarters/heads/chief) "bPJ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -47295,13 +44456,9 @@ /area/crew_quarters/heads/chief) "bPK" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/start/chief_engineer, @@ -47312,8 +44469,6 @@ /area/crew_quarters/heads/chief) "bPL" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -47326,7 +44481,6 @@ /area/crew_quarters/heads/chief) "bPM" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -47346,8 +44500,6 @@ /area/engine/engineering) "bPO" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/device/radio/beacon, @@ -47366,7 +44518,6 @@ /area/engine/engineering) "bPQ" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -47380,8 +44531,6 @@ /area/engine/engineering) "bPR" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/twohanded/required/kirbyplants/random, @@ -47411,7 +44560,6 @@ pixel_y = 36 }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plasteel/red/side{ @@ -47428,8 +44576,6 @@ /area/security/checkpoint/engineering) "bPU" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -47462,13 +44608,9 @@ /area/security/checkpoint/engineering) "bPW" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/neutral, @@ -47478,8 +44620,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/yellow/corner{ @@ -47492,8 +44632,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -47509,8 +44647,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -47522,8 +44658,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/yellow/corner{ @@ -47536,8 +44670,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/yellow/corner{ @@ -47546,14 +44678,10 @@ /area/hallway/primary/port) "bQc" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/yellow/corner{ @@ -47562,8 +44690,6 @@ /area/hallway/primary/port) "bQd" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -47575,8 +44701,6 @@ /area/hallway/primary/port) "bQe" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -47588,13 +44712,9 @@ /area/hallway/primary/port) "bQf" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -47604,8 +44724,6 @@ /area/hallway/primary/port) "bQg" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -47623,8 +44741,6 @@ /area/hallway/primary/port) "bQh" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -47638,8 +44754,6 @@ /area/hallway/primary/port) "bQi" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -47649,8 +44763,6 @@ /area/hallway/primary/port) "bQj" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -47663,8 +44775,6 @@ "bQk" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -47683,13 +44793,9 @@ /area/hallway/primary/port) "bQl" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -47708,8 +44814,6 @@ /area/crew_quarters/heads/hop) "bQo" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -47752,8 +44856,6 @@ /area/tcommsat/server) "bQw" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -47790,8 +44892,6 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/start/captain, @@ -47953,8 +45053,6 @@ /area/hallway/primary/starboard) "bQN" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -48090,8 +45188,6 @@ /area/security/warden) "bQY" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -48114,7 +45210,6 @@ /area/security/warden) "bRa" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -48139,6 +45234,9 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 4 + }, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) "bRd" = ( @@ -48206,8 +45304,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/vault{ @@ -48216,16 +45312,12 @@ /area/ai_monitored/turret_protected/aisat_interior) "bRi" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ @@ -48234,8 +45326,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "bRj" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/holopad, @@ -48246,8 +45336,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "bRk" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -48259,8 +45347,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "bRl" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -48275,8 +45361,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "bRm" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -48297,8 +45381,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "bRn" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -48310,13 +45392,9 @@ /area/ai_monitored/turret_protected/aisat_interior) "bRo" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -48324,8 +45402,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "bRp" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -48333,13 +45409,9 @@ /area/ai_monitored/turret_protected/aisat_interior) "bRq" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /mob/living/simple_animal/bot/secbot/pingsky, @@ -48347,8 +45419,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "bRr" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -48356,8 +45426,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "bRs" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -48367,8 +45435,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "bRt" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ @@ -48377,8 +45443,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "bRu" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -48392,8 +45456,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "bRv" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -48403,8 +45465,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "bRw" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -48416,8 +45476,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "bRx" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -48431,8 +45489,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "bRy" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ @@ -48441,8 +45497,6 @@ /area/aisat) "bRz" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -48454,8 +45508,6 @@ /area/aisat) "bRA" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -48467,8 +45519,6 @@ /area/aisat) "bRB" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ @@ -48477,8 +45527,6 @@ /area/aisat) "bRC" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/holopad, @@ -48488,8 +45536,6 @@ /area/aisat) "bRD" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -48650,8 +45696,6 @@ /area/crew_quarters/heads/chief) "bRS" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/side{ @@ -48690,8 +45734,6 @@ /area/crew_quarters/heads/chief) "bRY" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/grimy, @@ -48718,8 +45760,6 @@ /area/engine/engineering) "bSb" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -48738,12 +45778,10 @@ /area/engine/engineering) "bSd" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -48751,18 +45789,12 @@ /area/engine/engineering) "bSe" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, @@ -48772,14 +45804,10 @@ /area/security/checkpoint/engineering) "bSf" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/holopad, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/neutral, @@ -48787,21 +45815,15 @@ "bSg" = ( /obj/structure/chair/office/dark, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral, /area/security/checkpoint/engineering) "bSh" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/neutral, @@ -48829,8 +45851,6 @@ /area/hallway/primary/port) "bSk" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/navbeacon{ @@ -48894,8 +45914,6 @@ /area/hallway/primary/central) "bSt" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/navbeacon{ @@ -48982,8 +46000,6 @@ /area/crew_quarters/heads/hop) "bSA" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -49024,8 +46040,6 @@ /area/tcommsat/server) "bSG" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/fans/tiny, @@ -49059,8 +46073,6 @@ pixel_y = -26 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -49124,14 +46136,10 @@ /area/hallway/primary/central) "bSR" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/lightsout, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/navbeacon{ @@ -49142,8 +46150,6 @@ /area/hallway/primary/central) "bSS" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -49156,8 +46162,6 @@ "bST" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass{ @@ -49173,8 +46177,6 @@ /area/hallway/primary/starboard) "bSU" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral, @@ -49182,8 +46184,6 @@ "bSV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral, @@ -49191,16 +46191,12 @@ "bSW" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral, /area/hallway/primary/starboard) "bSX" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -49214,34 +46210,24 @@ /area/hallway/primary/starboard) "bSY" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral, /area/hallway/primary/starboard) "bSZ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/neutral, /area/hallway/primary/starboard) "bTa" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -49249,8 +46235,6 @@ /area/hallway/primary/starboard) "bTb" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment, @@ -49258,8 +46242,6 @@ /area/hallway/primary/starboard) "bTc" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -49269,13 +46251,9 @@ /area/hallway/primary/starboard) "bTd" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -49284,8 +46262,6 @@ "bTe" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -49299,8 +46275,6 @@ "bTf" = ( /obj/item/device/radio/beacon, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/navbeacon{ @@ -49315,8 +46289,6 @@ /area/hallway/primary/starboard) "bTg" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -49333,8 +46305,6 @@ "bTh" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_security{ @@ -49358,13 +46328,9 @@ /area/security/brig) "bTi" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -49380,13 +46346,9 @@ /area/security/brig) "bTj" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/poddoor/preopen{ @@ -49404,8 +46366,6 @@ /area/security/brig) "bTk" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -49419,13 +46379,9 @@ /area/security/brig) "bTl" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -49449,7 +46405,6 @@ /area/security/brig) "bTn" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -49475,13 +46430,9 @@ /area/security/warden) "bTp" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -49489,8 +46440,6 @@ /area/security/warden) "bTq" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -49503,18 +46452,12 @@ "bTr" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/security{ @@ -49534,8 +46477,6 @@ /area/ai_monitored/security/armory) "bTs" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -49548,8 +46489,6 @@ /area/ai_monitored/security/armory) "bTt" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -49572,20 +46511,20 @@ pixel_y = -3 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, /obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) "bTv" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/stripes/line{ @@ -49643,8 +46582,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -49699,8 +46636,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "bTG" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -49715,8 +46650,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "bTI" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -49919,7 +46852,6 @@ /area/crew_quarters/heads/chief) "bUc" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -49932,11 +46864,9 @@ "bUd" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -49967,8 +46897,6 @@ "bUf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -49991,8 +46919,6 @@ /area/engine/engineering) "bUi" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light_switch{ @@ -50026,8 +46952,6 @@ /area/security/checkpoint/engineering) "bUl" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/computer/secure_data, @@ -50063,8 +46987,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -50231,8 +47153,6 @@ /area/crew_quarters/heads/hop) "bUG" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -50271,8 +47191,6 @@ /area/tcommsat/server) "bUM" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/command{ @@ -50309,8 +47227,6 @@ req_access_txt = "20" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -50426,8 +47342,6 @@ /area/hallway/primary/starboard) "bVc" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -50437,8 +47351,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/neutral/corner, @@ -50475,8 +47387,6 @@ /area/hallway/primary/starboard) "bVg" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -50538,7 +47448,6 @@ /area/hallway/primary/starboard) "bVn" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -50550,8 +47459,6 @@ /area/security/brig) "bVo" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -50562,8 +47469,6 @@ /area/security/brig) "bVp" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/door/poddoor/preopen{ @@ -50575,7 +47480,6 @@ /area/security/brig) "bVq" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -50583,13 +47487,9 @@ /area/security/brig) "bVr" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/landmark/event_spawn, @@ -50597,8 +47497,6 @@ /area/security/brig) "bVs" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -50608,18 +47506,12 @@ "bVt" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/door/airlock/glass_security{ @@ -50630,8 +47522,6 @@ /area/security/warden) "bVu" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -50641,13 +47531,9 @@ /area/security/warden) "bVv" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/button/door{ @@ -50686,8 +47572,6 @@ "bVx" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/security{ @@ -50712,8 +47596,6 @@ /area/ai_monitored/security/armory) "bVA" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -50815,8 +47697,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "bVJ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -50944,8 +47824,6 @@ "bVZ" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/engineering{ @@ -50968,8 +47846,6 @@ /area/engine/engineering) "bWb" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -51004,8 +47880,6 @@ dir = 6 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/yellow/side, @@ -51078,7 +47952,6 @@ /area/hallway/primary/central) "bWo" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -51091,8 +47964,6 @@ "bWp" = ( /obj/machinery/computer/card, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ @@ -51101,16 +47972,12 @@ /area/crew_quarters/heads/hop) "bWq" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/wood, /area/crew_quarters/heads/hop) "bWr" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment, @@ -51118,13 +47985,9 @@ /area/crew_quarters/heads/hop) "bWs" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/grimy, @@ -51169,8 +48032,6 @@ /area/tcommsat/server) "bWz" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault/telecomms{ @@ -51211,8 +48072,6 @@ pixel_y = 26 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -51296,8 +48155,6 @@ req_access_txt = "42" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -51318,8 +48175,6 @@ "bWT" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock{ @@ -51455,8 +48310,6 @@ /area/security/warden) "bXf" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -51556,8 +48409,6 @@ /area/ai_monitored/security/armory) "bXn" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -51580,8 +48431,6 @@ /area/engine/engineering) "bXp" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/grille, @@ -51590,8 +48439,6 @@ /area/engine/engineering) "bXq" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/grille, @@ -51600,8 +48447,6 @@ /area/engine/engineering) "bXr" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/grille, @@ -51612,8 +48457,6 @@ /area/engine/engineering) "bXs" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/grille, @@ -51622,13 +48465,9 @@ /area/engine/engineering) "bXt" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/grille, @@ -51637,8 +48476,6 @@ /area/engine/engineering) "bXu" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/grille, @@ -51734,16 +48571,12 @@ /area/engine/engineering) "bXD" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/sortjunction{ @@ -51757,8 +48590,6 @@ /area/engine/engineering) "bXE" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -51772,8 +48603,6 @@ /area/engine/engineering) "bXF" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/firealarm{ @@ -51789,18 +48618,12 @@ /area/engine/engineering) "bXG" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -51813,12 +48636,9 @@ /area/engine/engineering) "bXH" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -51826,12 +48646,9 @@ /area/engine/engineering) "bXI" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/power/smes/engineering{ @@ -51841,7 +48658,6 @@ /area/engine/engineering) "bXJ" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/smes/engineering{ @@ -51856,8 +48672,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -51892,7 +48706,6 @@ pixel_x = 26 }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plating, @@ -51979,8 +48792,6 @@ /area/hallway/primary/central) "bXY" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -52008,8 +48819,6 @@ /area/crew_quarters/heads/hop) "bYc" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/grimy, @@ -52024,8 +48833,6 @@ /area/crew_quarters/heads/hop) "bYe" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/camera{ @@ -52040,8 +48847,6 @@ /area/tcommsat/server) "bYf" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault/telecomms{ @@ -52050,8 +48855,6 @@ /area/tcommsat/server) "bYg" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -52066,8 +48869,6 @@ /area/tcommsat/server) "bYh" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault/telecomms{ @@ -52076,8 +48877,6 @@ /area/tcommsat/server) "bYi" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -52088,22 +48887,16 @@ "bYj" = ( /obj/structure/table/glass, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/folder/yellow, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) "bYl" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ @@ -52117,8 +48910,6 @@ /area/tcommsat/server) "bYm" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault/telecomms{ @@ -52127,8 +48918,6 @@ /area/tcommsat/server) "bYn" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/vault/telecomms{ @@ -52148,8 +48937,6 @@ /area/crew_quarters/heads/captain/private) "bYp" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -52268,8 +49055,6 @@ pixel_y = 26 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -52310,8 +49095,6 @@ /area/lawoffice) "bYK" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -52372,8 +49155,6 @@ /area/security/brig) "bYQ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -52452,8 +49233,6 @@ /area/ai_monitored/turret_protected/ai_upload) "bZa" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -52497,8 +49276,6 @@ /area/engine/engineering) "bZh" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/grille, @@ -52509,8 +49286,6 @@ /area/engine/engineering) "bZi" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/grille, @@ -52521,8 +49296,6 @@ /area/engine/engineering) "bZj" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/decal/cleanable/dirt, @@ -52536,8 +49309,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -52551,8 +49322,6 @@ "bZl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/fans/tiny, @@ -52562,8 +49331,6 @@ /area/engine/engineering) "bZm" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -52574,16 +49341,12 @@ "bZn" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral, /area/engine/engineering) "bZo" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -52593,24 +49356,18 @@ /area/engine/engineering) "bZp" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral, /area/engine/engineering) "bZq" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/yellow, /area/engine/engineering) "bZr" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -52622,14 +49379,10 @@ "bZs" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -52653,16 +49406,12 @@ "bZv" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -52673,13 +49422,9 @@ "bZw" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/door/airlock/glass_engineering{ @@ -52705,8 +49450,7 @@ dir = 4 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -52721,8 +49465,7 @@ dir = 4 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -52745,8 +49488,7 @@ dir = 10 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -52765,8 +49507,6 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/delivery, @@ -52786,8 +49526,6 @@ /area/maintenance/port) "bZF" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/side{ @@ -52886,8 +49624,6 @@ /area/hallway/primary/central) "bZR" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/twohanded/required/kirbyplants/random, @@ -52897,18 +49633,12 @@ /area/crew_quarters/heads/hop) "bZS" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/grimy, @@ -52921,7 +49651,6 @@ pixel_x = 26 }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -52949,8 +49678,6 @@ /area/tcommsat/server) "bZW" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/vault/telecomms{ @@ -52960,8 +49687,6 @@ "bZX" = ( /obj/machinery/telecomms/broadcaster/preset_left, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/general/hidden{ @@ -52971,8 +49696,6 @@ /area/tcommsat/server) "bZY" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/general/hidden{ @@ -52985,8 +49708,6 @@ "bZZ" = ( /obj/machinery/message_server, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/general/hidden{ @@ -52996,8 +49717,6 @@ /area/tcommsat/server) "caa" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -53011,18 +49730,12 @@ "cab" = ( /obj/machinery/telecomms/hub/preset, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/general/hidden{ @@ -53033,8 +49746,6 @@ "cad" = ( /obj/machinery/blackbox_recorder, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/general/hidden{ @@ -53045,8 +49756,6 @@ "cae" = ( /obj/machinery/telecomms/broadcaster/preset_right, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/general/hidden{ @@ -53056,15 +49765,12 @@ /area/tcommsat/server) "caf" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/power/terminal{ dir = 4 }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/vault/telecomms{ @@ -53097,8 +49803,6 @@ icon_state = "comfychair" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/landmark/start/captain, @@ -53110,8 +49814,6 @@ /area/crew_quarters/heads/captain/private) "caj" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, @@ -53123,13 +49825,9 @@ "cak" = ( /obj/machinery/holopad, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -53141,8 +49839,6 @@ /area/crew_quarters/heads/captain/private) "cal" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -53156,8 +49852,6 @@ req_access_txt = "20" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/grimy, @@ -53224,8 +49918,6 @@ /area/security/courtroom) "cau" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -53235,8 +49927,6 @@ /area/security/courtroom) "cav" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -53246,13 +49936,9 @@ /area/security/courtroom) "caw" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, @@ -53260,8 +49946,6 @@ /area/security/courtroom) "cax" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -53274,8 +49958,6 @@ "cay" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock{ @@ -53290,13 +49972,9 @@ /area/lawoffice) "caz" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -53306,8 +49984,6 @@ /area/lawoffice) "caA" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -53319,13 +49995,9 @@ "caB" = ( /obj/machinery/holopad, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -53336,8 +50008,6 @@ /area/lawoffice) "caC" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/landmark/start/lawyer, @@ -53357,8 +50027,6 @@ "caE" = ( /obj/machinery/computer/security, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/red/side{ @@ -53378,8 +50046,6 @@ "caG" = ( /obj/machinery/computer/secure_data, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/button/flasher{ @@ -53433,13 +50099,9 @@ /area/security/brig) "caK" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/landmark/lightsout, @@ -53451,8 +50113,6 @@ "caL" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_security{ @@ -53466,8 +50126,6 @@ /area/security/brig) "caM" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -53479,8 +50137,6 @@ /area/security/brig) "caN" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -53492,13 +50148,9 @@ /area/security/brig) "caO" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -53510,7 +50162,6 @@ /area/security/brig) "caP" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc/highcap/ten_k{ @@ -53561,12 +50212,14 @@ /area/security/brig) "caT" = ( /obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, /turf/open/floor/plasteel/red/side{ dir = 5 }, /area/security/brig) "caU" = ( /obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, /turf/open/floor/plasteel/red, /area/security/brig) "caV" = ( @@ -53608,8 +50261,6 @@ /area/ai_monitored/turret_protected/ai_upload) "caZ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -53701,8 +50352,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment, @@ -53710,8 +50359,6 @@ /area/engine/engineering) "cbk" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -53719,8 +50366,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/corner, @@ -53730,8 +50375,6 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line, @@ -53742,8 +50385,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line, @@ -53754,13 +50395,9 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -53771,7 +50408,6 @@ "cbo" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -53779,8 +50415,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -53791,13 +50425,9 @@ dir = 8 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/stripes/line{ @@ -53809,13 +50439,9 @@ /obj/structure/chair/office/dark, /obj/effect/landmark/start/station_engineer, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/stripes/line, @@ -53834,8 +50460,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/stripes/line{ @@ -53854,8 +50478,6 @@ "cbt" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -53873,8 +50495,6 @@ /area/maintenance/port) "cbw" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -53942,8 +50562,6 @@ /area/crew_quarters/heads/hop) "cbG" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -53971,8 +50589,6 @@ /area/crew_quarters/heads/hop) "cbJ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault/telecomms{ @@ -53993,8 +50609,6 @@ "cbM" = ( /obj/machinery/ntnet_relay, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/circuit/green/telecomms/mainframe, @@ -54007,8 +50621,6 @@ /area/tcommsat/server) "cbO" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault/telecomms{ @@ -54061,8 +50673,6 @@ /area/crew_quarters/heads/captain/private) "cbT" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -54171,8 +50781,6 @@ /area/security/courtroom) "cce" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/side{ @@ -54223,8 +50831,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/newscaster{ @@ -54262,8 +50868,6 @@ /area/lawoffice) "ccm" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -54284,8 +50888,6 @@ /area/lawoffice) "cco" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table/reinforced, @@ -54306,8 +50908,6 @@ /area/security/brig) "ccq" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/filingcabinet/chestdrawer, @@ -54328,8 +50928,6 @@ /area/security/brig) "ccs" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -54337,18 +50935,12 @@ /area/security/brig) "cct" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/window/brigdoor/security/holding/westright{ @@ -54361,8 +50953,6 @@ /area/security/brig) "ccu" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -54373,26 +50963,18 @@ /area/security/brig) "ccv" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/neutral, /area/security/brig) "ccw" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -54403,7 +50985,6 @@ /area/security/brig) "ccx" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -54436,13 +51017,9 @@ /area/security/brig) "ccA" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/landmark/start/security_officer, @@ -54453,8 +51030,6 @@ /area/security/brig) "ccB" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/start/security_officer, @@ -54463,8 +51038,6 @@ "ccC" = ( /obj/machinery/holopad, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/bot, @@ -54472,8 +51045,6 @@ /area/security/brig) "ccD" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/start/security_officer, @@ -54484,8 +51055,6 @@ /area/security/brig) "ccE" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral, @@ -54500,8 +51069,6 @@ pixel_y = 32 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side{ @@ -54524,11 +51091,9 @@ /area/space) "ccH" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -54540,8 +51105,6 @@ /area/ai_monitored/turret_protected/ai_upload) "ccI" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/table/reinforced, @@ -54562,8 +51125,6 @@ /area/ai_monitored/turret_protected/ai_upload) "ccJ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ @@ -54572,13 +51133,9 @@ /area/ai_monitored/turret_protected/ai_upload) "ccK" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -54588,8 +51145,6 @@ /area/ai_monitored/turret_protected/ai_upload) "ccL" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -54601,18 +51156,12 @@ /area/ai_monitored/turret_protected/ai_upload) "ccM" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/holopad, @@ -54625,8 +51174,6 @@ /area/ai_monitored/turret_protected/ai_upload) "ccN" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -54638,8 +51185,6 @@ /area/ai_monitored/turret_protected/ai_upload) "ccO" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -54647,8 +51192,6 @@ /area/ai_monitored/turret_protected/ai_upload) "ccP" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/table/reinforced, @@ -54673,11 +51216,9 @@ /area/ai_monitored/turret_protected/ai_upload) "ccQ" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -54751,8 +51292,6 @@ /area/engine/engineering) "ccZ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -54760,8 +51299,6 @@ /area/engine/engineering) "cda" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -54778,8 +51315,6 @@ "cdc" = ( /obj/machinery/vending/engivend, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/turf_decal/delivery, @@ -54789,8 +51324,6 @@ /obj/structure/cable/white, /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -54805,7 +51338,6 @@ pixel_y = -32 }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/camera{ @@ -54837,8 +51369,6 @@ "cdi" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -54943,8 +51473,6 @@ "cdx" = ( /obj/machinery/computer/security/mining, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ @@ -54954,8 +51482,6 @@ "cdy" = ( /obj/structure/chair/office/dark, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/start/head_of_personnel, @@ -54972,8 +51498,6 @@ /area/crew_quarters/heads/hop) "cdA" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/circuit/green/telecomms/mainframe, @@ -55023,8 +51547,6 @@ req_access_txt = "20" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -55086,8 +51608,6 @@ /area/security/courtroom) "cdP" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -55165,8 +51685,6 @@ /area/lawoffice) "cdW" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -55187,8 +51705,6 @@ /area/lawoffice) "cdZ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/sign/nanotrasen{ @@ -55206,13 +51722,9 @@ /area/security/brig) "cea" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/extinguisher_cabinet{ @@ -55232,13 +51744,9 @@ req_access_txt = "63" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -55250,8 +51758,6 @@ /area/security/brig) "cec" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -55261,8 +51767,6 @@ /area/security/brig) "ced" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/chair{ @@ -55282,8 +51786,6 @@ /area/security/brig) "cef" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -55321,6 +51823,7 @@ /area/security/brig) "cei" = ( /obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, /turf/open/floor/plasteel/red/side{ dir = 6 }, @@ -55331,10 +51834,9 @@ pixel_y = -32 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, +/obj/effect/turf_decal/bot, /turf/open/floor/plasteel/red/side{ dir = 10 }, @@ -55344,13 +51846,9 @@ /obj/machinery/recharger, /obj/machinery/light, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side, @@ -55361,8 +51859,6 @@ pixel_y = -32 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side, @@ -55371,8 +51867,6 @@ /obj/structure/table/reinforced, /obj/machinery/recharger, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/red/side, @@ -55382,6 +51876,7 @@ /obj/machinery/ai_status_display{ pixel_y = -32 }, +/obj/effect/turf_decal/bot, /turf/open/floor/plasteel/red/side{ dir = 6 }, @@ -55405,8 +51900,6 @@ /area/ai_monitored/turret_protected/ai_upload) "cer" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -55422,8 +51915,6 @@ /area/ai_monitored/turret_protected/ai_upload) "cet" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -55462,8 +51953,6 @@ "cey" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/space, @@ -55471,8 +51960,6 @@ "cez" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/space, @@ -55480,13 +51967,9 @@ "ceA" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/space, @@ -55494,8 +51977,6 @@ "ceB" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/space, @@ -55507,8 +51988,7 @@ "ceD" = ( /obj/machinery/power/rad_collector/anchored, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -55521,8 +52001,6 @@ name = "Engineering Chamber Shutters" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/stripes/line{ @@ -55575,8 +52053,6 @@ /area/engine/engineering) "ceK" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -55604,8 +52080,6 @@ "ceP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/side{ @@ -55696,8 +52170,6 @@ "cfb" = ( /obj/machinery/holopad, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/grimy, @@ -55716,8 +52188,6 @@ /area/tcommsat/server) "cff" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/command{ @@ -55756,8 +52226,6 @@ /area/teleporter) "cfl" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/camera/motion{ @@ -55780,8 +52248,6 @@ /area/teleporter) "cfm" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -55795,8 +52261,6 @@ /area/teleporter) "cfn" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -55884,8 +52348,6 @@ /area/security/courtroom) "cfz" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -55942,8 +52404,6 @@ /area/lawoffice) "cfG" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -55961,7 +52421,6 @@ /area/lawoffice) "cfI" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -55972,18 +52431,12 @@ /area/security/brig) "cfJ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -56004,7 +52457,6 @@ /area/security/brig) "cfK" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -56048,8 +52500,6 @@ /area/ai_monitored/turret_protected/ai_upload) "cfO" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -56057,8 +52507,6 @@ /area/ai_monitored/turret_protected/ai_upload) "cfP" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/ai_slipper{ @@ -56096,8 +52544,6 @@ "cfT" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/space, @@ -56123,8 +52569,6 @@ /area/space) "cfX" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/corner{ @@ -56139,18 +52583,12 @@ name = "Engineering Chamber Shutters" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -56161,8 +52599,6 @@ /area/engine/engineering) "cfZ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -56172,8 +52608,6 @@ /area/engine/engineering) "cga" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/neutral, @@ -56190,14 +52624,10 @@ "cgd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/turf_decal/stripes/line{ @@ -56207,8 +52637,6 @@ /area/engine/engineering) "cge" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/yellow/side{ @@ -56217,8 +52645,6 @@ /area/engine/engineering) "cgf" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/start/station_engineer, @@ -56227,7 +52653,6 @@ "cgg" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -56271,8 +52696,6 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -56356,8 +52779,6 @@ /area/crew_quarters/heads/hop) "cgw" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault/telecomms{ @@ -56378,8 +52799,6 @@ /area/teleporter) "cgA" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance_hatch{ @@ -56492,8 +52911,6 @@ /area/security/courtroom) "cgL" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -56531,8 +52948,6 @@ /area/lawoffice) "cgQ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance_hatch{ @@ -56631,8 +53046,6 @@ /area/security/range) "cgZ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -56729,8 +53142,6 @@ /area/ai_monitored/turret_protected/ai_upload) "chk" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/flasher{ @@ -56744,8 +53155,6 @@ /area/ai_monitored/turret_protected/ai_upload) "chl" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/circuit/green, @@ -56783,8 +53192,6 @@ /area/space) "chs" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -56798,8 +53205,6 @@ name = "Engineering Chamber Shutters" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/stripes/line{ @@ -56818,8 +53223,6 @@ /area/engine/engineering) "chv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/delivery, @@ -56914,8 +53317,6 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plating, @@ -56925,8 +53326,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -56937,8 +53336,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -56950,8 +53347,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -56959,21 +53354,15 @@ "chL" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/delivery, @@ -56985,8 +53374,6 @@ req_access_txt = "12" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -57002,8 +53389,6 @@ /area/maintenance/port) "chN" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -57013,8 +53398,6 @@ /area/library) "chO" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -57069,8 +53452,6 @@ /area/crew_quarters/heads/hop) "chY" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment, @@ -57078,13 +53459,9 @@ /area/crew_quarters/heads/hop) "chZ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -57105,8 +53482,6 @@ /area/tcommsat/server) "cic" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -57150,7 +53525,6 @@ pixel_y = 28 }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/disposalpipe/segment{ @@ -57174,8 +53548,6 @@ /area/teleporter) "cii" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -57283,8 +53655,6 @@ /area/security/courtroom) "cis" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/side, @@ -57314,8 +53684,6 @@ "ciw" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/landmark/blobstart, @@ -57330,8 +53698,6 @@ "cix" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -57343,8 +53709,6 @@ /area/maintenance/starboard) "ciy" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -57356,13 +53720,9 @@ "ciz" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -57376,8 +53736,6 @@ /area/maintenance/starboard) "ciA" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/small{ @@ -57395,8 +53753,6 @@ /area/maintenance/starboard) "ciB" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -57409,8 +53765,6 @@ /area/maintenance/starboard) "ciC" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/blobstart, @@ -57425,8 +53779,6 @@ "ciD" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -57441,8 +53793,6 @@ "ciE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -57456,8 +53806,6 @@ "ciF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -57470,13 +53818,9 @@ /area/maintenance/starboard) "ciG" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -57503,16 +53847,12 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/maintenance/starboard) "ciI" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -57529,23 +53869,15 @@ /area/security/range) "ciJ" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/decal/cleanable/dirt, @@ -57557,8 +53889,6 @@ /area/security/range) "ciK" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -57576,8 +53906,6 @@ /area/security/range) "ciL" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/window/brigdoor/westright{ @@ -57588,16 +53916,12 @@ /area/security/range) "ciM" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/security/range) "ciN" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -57606,13 +53930,9 @@ /area/security/range) "ciO" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/target/syndicate, @@ -57622,7 +53942,6 @@ /area/security/range) "ciP" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -57672,8 +53991,6 @@ /area/ai_monitored/turret_protected/ai_upload) "ciT" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table/reinforced, @@ -57726,20 +54043,15 @@ "ciX" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/space, /area/space) "ciY" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/effect/turf_decal/stripes/line{ @@ -57761,8 +54073,6 @@ name = "Engineering Chamber Shutters" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -57818,8 +54128,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -57843,8 +54151,6 @@ /area/library) "cjk" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -57939,8 +54245,6 @@ /area/crew_quarters/heads/hop) "cjx" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -57951,8 +54255,6 @@ /area/crew_quarters/heads/hop) "cjy" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -57960,8 +54262,6 @@ /area/crew_quarters/heads/hop) "cjz" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -58007,8 +54307,6 @@ /area/tcommsat/server) "cjE" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -58070,8 +54368,6 @@ "cjK" = ( /obj/machinery/holopad, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -58086,8 +54382,6 @@ /area/teleporter) "cjL" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -58102,13 +54396,9 @@ /area/teleporter) "cjM" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -58122,8 +54412,6 @@ /area/teleporter) "cjN" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/decal/cleanable/dirt, @@ -58195,8 +54483,6 @@ /area/security/courtroom) "cjU" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -58224,8 +54510,6 @@ "cjY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -58302,8 +54586,6 @@ "ckh" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -58328,7 +54610,6 @@ pixel_x = -26 }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/decal/cleanable/dirt, @@ -58338,13 +54619,9 @@ /area/security/range) "ckk" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/decal/cleanable/dirt, @@ -58423,8 +54700,6 @@ /area/security/range) "ckr" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -58448,8 +54723,6 @@ /area/ai_monitored/turret_protected/ai_upload) "ckv" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/stripes/line{ @@ -58460,8 +54733,6 @@ /area/engine/engineering) "ckw" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -58471,13 +54742,9 @@ /area/engine/engineering) "ckx" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/stripes/line{ @@ -58487,13 +54754,9 @@ /area/engine/engineering) "cky" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -58598,8 +54861,6 @@ "ckL" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -58616,23 +54877,18 @@ pixel_y = 3 }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/wood, /area/library) "ckN" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/wood, /area/library) "ckO" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -58698,8 +54954,6 @@ "ckY" = ( /obj/machinery/disposal/bin, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/trunk{ @@ -58721,8 +54975,6 @@ pixel_y = -26 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -58758,8 +55010,6 @@ /area/tcommsat/server) "cle" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -58850,8 +55100,6 @@ /area/teleporter) "cln" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -58894,16 +55142,12 @@ /area/security/courtroom) "clt" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/neutral/side, /area/security/courtroom) "clu" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/side, @@ -58916,7 +55160,6 @@ pixel_x = 26 }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/neutral/side, @@ -58927,8 +55170,6 @@ req_access_txt = "12" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -58954,8 +55195,6 @@ req_access_txt = "12" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -58987,8 +55226,6 @@ req_access_txt = "63" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -59052,8 +55289,6 @@ /area/space) "clM" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -59072,16 +55307,12 @@ "clQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plating, /area/engine/engineering) "clR" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -59095,8 +55326,6 @@ name = "Engineering Chamber Shutters" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -59110,8 +55339,6 @@ /area/engine/engineering) "clT" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -59122,8 +55349,6 @@ "clU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/corner{ @@ -59133,13 +55358,9 @@ /area/engine/engineering) "clV" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -59147,8 +55368,6 @@ /area/engine/engineering) "clW" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -59243,8 +55462,6 @@ /area/maintenance/port) "cmh" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -59311,8 +55528,6 @@ /area/crew_quarters/heads/hop) "cms" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -59333,7 +55548,6 @@ /area/hallway/secondary/command) "cmu" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -59346,8 +55560,6 @@ /area/hallway/secondary/command) "cmw" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -59488,8 +55700,6 @@ /area/security/courtroom) "cmL" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -59536,8 +55746,6 @@ /area/maintenance/starboard) "cmR" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -59551,8 +55759,6 @@ /area/maintenance/starboard) "cmT" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -59567,7 +55773,6 @@ /area/maintenance/starboard) "cmV" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -59643,13 +55848,9 @@ /area/space) "cnf" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/stripes/line{ @@ -59660,21 +55861,15 @@ "cng" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/engine/engineering) "cnh" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/stripes/line{ @@ -59720,13 +55915,9 @@ "cnp" = ( /obj/machinery/holopad, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -59735,8 +55926,6 @@ /area/engine/engineering) "cnq" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -59869,8 +56058,6 @@ "cnD" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -59926,8 +56113,6 @@ /area/library) "cnJ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -59975,8 +56160,6 @@ /area/hallway/secondary/command) "cnO" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, @@ -60006,8 +56189,6 @@ /area/hallway/secondary/command) "cnR" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -60028,7 +56209,6 @@ pixel_y = 24 }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plasteel/neutral/corner{ @@ -60037,8 +56217,6 @@ /area/hallway/secondary/command) "cnT" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -60081,8 +56259,6 @@ /area/hallway/secondary/command) "cnX" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -60237,8 +56413,6 @@ /area/security/courtroom) "coo" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/extinguisher_cabinet{ @@ -60312,8 +56486,6 @@ /area/maintenance/starboard) "cow" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -60337,8 +56509,6 @@ /area/maintenance/starboard) "coz" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/decal/cleanable/dirt, @@ -60347,16 +56517,12 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, /area/maintenance/starboard) "coA" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -60367,21 +56533,15 @@ /area/maintenance/starboard) "coB" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/starboard) "coC" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/decal/cleanable/dirt, @@ -60463,8 +56623,6 @@ "coP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, @@ -60474,8 +56632,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -60486,8 +56642,6 @@ "coR" = ( /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/corner{ @@ -60500,8 +56654,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment, @@ -60509,8 +56661,6 @@ /area/engine/engineering) "coT" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -60668,18 +56818,12 @@ /area/library) "cpm" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -60692,8 +56836,6 @@ /area/hallway/primary/central) "cpn" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -60704,8 +56846,6 @@ /area/hallway/primary/central) "cpo" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -60725,8 +56865,6 @@ /area/hallway/secondary/command) "cpp" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -60738,13 +56876,9 @@ /area/hallway/secondary/command) "cpq" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -60756,8 +56890,6 @@ /area/hallway/secondary/command) "cpr" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -60773,8 +56905,6 @@ /area/hallway/secondary/command) "cps" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -60791,13 +56921,9 @@ /area/hallway/secondary/command) "cpt" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -60810,8 +56936,6 @@ /area/hallway/secondary/command) "cpu" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -60821,18 +56945,12 @@ /area/hallway/secondary/command) "cpv" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -60844,8 +56962,6 @@ /area/hallway/secondary/command) "cpw" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -60858,8 +56974,6 @@ /area/hallway/secondary/command) "cpx" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/sign/electricshock{ @@ -60870,8 +56984,6 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -60880,8 +56992,6 @@ /area/hallway/secondary/command) "cpy" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -60896,8 +57006,6 @@ /area/hallway/secondary/command) "cpz" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/chair/comfy/black, @@ -60908,18 +57016,12 @@ /area/hallway/secondary/command) "cpA" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/item/device/radio/beacon, @@ -60932,8 +57034,6 @@ /area/hallway/secondary/command) "cpB" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/chair/comfy/black, @@ -60947,8 +57047,6 @@ /area/hallway/secondary/command) "cpC" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/table/wood, @@ -60962,8 +57060,6 @@ /area/hallway/secondary/command) "cpD" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/sign/electricshock{ @@ -60978,8 +57074,6 @@ /area/hallway/secondary/command) "cpE" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -60990,18 +57084,12 @@ /area/hallway/secondary/command) "cpF" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -61011,8 +57099,6 @@ /area/hallway/secondary/command) "cpG" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -61022,8 +57108,6 @@ /area/hallway/secondary/command) "cpH" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -61033,13 +57117,9 @@ /area/hallway/secondary/command) "cpI" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -61050,8 +57130,6 @@ /area/hallway/secondary/command) "cpJ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -61065,8 +57143,6 @@ /area/hallway/secondary/command) "cpK" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -61078,8 +57154,6 @@ /area/hallway/secondary/command) "cpL" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -61091,13 +57165,9 @@ /area/hallway/primary/central) "cpM" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -61120,8 +57190,6 @@ /area/security/courtroom) "cpP" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -61186,8 +57254,6 @@ "cpX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -61280,8 +57346,6 @@ /area/aisat) "cqi" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/turf_decal/stripes/line{ @@ -61292,8 +57356,6 @@ /area/engine/engineering) "cqj" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line, @@ -61302,8 +57364,6 @@ "cqk" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line, @@ -61311,8 +57371,6 @@ /area/engine/engineering) "cql" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/camera/emp_proof{ @@ -61325,13 +57383,9 @@ /area/engine/engineering) "cqm" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line, @@ -61365,8 +57419,6 @@ "cqq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -61515,8 +57567,6 @@ /area/ai_monitored/storage/eva) "cqI" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -61585,8 +57635,6 @@ /area/hallway/secondary/command) "cqO" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/holopad, @@ -61627,8 +57675,6 @@ /area/gateway) "cqU" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -61823,8 +57869,6 @@ /area/crew_quarters/locker) "crl" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -61908,8 +57952,6 @@ "crv" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -62004,8 +58046,6 @@ /area/engine/engineering) "crH" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/status_display{ @@ -62023,8 +58063,6 @@ "crJ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -62132,8 +58170,6 @@ /area/ai_monitored/storage/eva) "crX" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -62157,7 +58193,6 @@ pixel_y = 26 }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/turf_decal/stripes/line{ @@ -62200,11 +58235,9 @@ /area/ai_monitored/storage/eva) "csd" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -62212,13 +58245,9 @@ /area/hallway/secondary/command) "cse" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -62228,8 +58257,6 @@ /area/hallway/secondary/command) "csf" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/table/wood, @@ -62238,8 +58265,6 @@ /area/hallway/secondary/command) "csg" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/chair/comfy/black{ @@ -62250,13 +58275,9 @@ /area/hallway/secondary/command) "csh" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/landmark/event_spawn, @@ -62264,8 +58285,6 @@ /area/hallway/secondary/command) "csi" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/chair/comfy/black{ @@ -62275,8 +58294,6 @@ /area/hallway/secondary/command) "csj" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/twohanded/required/kirbyplants{ @@ -62286,8 +58303,6 @@ /area/hallway/secondary/command) "csk" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -62295,11 +58310,9 @@ /area/hallway/secondary/command) "csl" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -62313,7 +58326,6 @@ /area/gateway) "csn" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc/highcap/ten_k{ @@ -62329,8 +58341,6 @@ /area/gateway) "cso" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light_switch{ @@ -62435,8 +58445,6 @@ /area/crew_quarters/locker) "csC" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/side{ @@ -62496,8 +58504,6 @@ "csK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -62512,8 +58518,6 @@ "csL" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -62529,8 +58533,6 @@ /area/maintenance/starboard) "csM" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -62549,8 +58551,6 @@ req_access_txt = "12" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -62569,8 +58569,6 @@ /area/maintenance/starboard) "csO" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -62585,8 +58583,6 @@ /area/crew_quarters/fitness/recreation) "csP" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -62611,8 +58607,7 @@ /obj/machinery/power/rad_collector/anchored, /obj/machinery/power/rad_collector/anchored, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -62626,8 +58621,6 @@ name = "Engineering Chamber Shutters" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/stripes/line{ @@ -62674,8 +58667,6 @@ /area/engine/engineering) "ctb" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/airalarm{ @@ -62734,8 +58725,6 @@ /area/engine/storage) "cth" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, @@ -62743,8 +58732,6 @@ "cti" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -62753,8 +58740,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -62763,8 +58748,6 @@ /area/maintenance/port) "ctk" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -62772,8 +58755,6 @@ "ctl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/side{ @@ -62782,8 +58763,6 @@ /area/maintenance/port) "ctm" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -62791,18 +58770,12 @@ /area/maintenance/port) "ctn" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -62949,8 +58922,6 @@ /area/ai_monitored/storage/eva) "ctE" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/decal/cleanable/dirt, @@ -62962,8 +58933,6 @@ /area/ai_monitored/storage/eva) "ctF" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -62974,13 +58943,9 @@ /area/ai_monitored/storage/eva) "ctG" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line, @@ -62988,8 +58953,6 @@ /area/ai_monitored/storage/eva) "ctH" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -63000,8 +58963,6 @@ /area/ai_monitored/storage/eva) "ctI" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -63013,8 +58974,6 @@ /area/ai_monitored/storage/eva) "ctJ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -63025,8 +58984,6 @@ "ctK" = ( /obj/machinery/cell_charger, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/table/reinforced, @@ -63037,7 +58994,6 @@ /area/ai_monitored/storage/eva) "ctL" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -63045,8 +59001,6 @@ /area/ai_monitored/storage/eva) "ctM" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -63071,7 +59025,6 @@ /area/hallway/secondary/command) "ctR" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -63080,8 +59033,6 @@ "ctS" = ( /obj/structure/closet/secure_closet/medical1, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -63090,13 +59041,9 @@ /area/gateway) "ctT" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -63107,13 +59054,9 @@ /area/gateway) "ctU" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -63142,7 +59085,6 @@ /area/gateway) "ctX" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -63285,8 +59227,6 @@ /area/crew_quarters/locker) "cul" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -63434,8 +59374,6 @@ /area/crew_quarters/fitness/recreation) "cuB" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -63499,16 +59437,13 @@ /area/space) "cuK" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating/airless, /area/space) "cuL" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/corner, @@ -63520,18 +59455,12 @@ name = "Engineering Chamber Shutters" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -63542,15 +59471,12 @@ /area/engine/engineering) "cuN" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/neutral, /area/engine/engineering) "cuO" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -63606,8 +59532,6 @@ "cuU" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -63826,7 +59750,6 @@ /area/ai_monitored/storage/eva) "cvr" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -63841,8 +59764,6 @@ /area/bridge/showroom/corporate) "cvt" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -63881,13 +59802,9 @@ /area/gateway) "cvx" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -63898,8 +59815,6 @@ /area/gateway) "cvy" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -63911,8 +59826,6 @@ "cvz" = ( /obj/structure/table, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/clipboard, @@ -63926,7 +59839,6 @@ "cvA" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -63944,7 +59856,6 @@ "cvC" = ( /obj/machinery/gateway/centerstation, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/decal/cleanable/dirt, @@ -63996,8 +59907,6 @@ pixel_x = -24 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner{ @@ -64056,8 +59965,6 @@ /area/crew_quarters/fitness/recreation) "cvR" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -64126,8 +60033,6 @@ "cvZ" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/space, @@ -64135,13 +60040,9 @@ "cwa" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/space, @@ -64149,8 +60050,6 @@ "cwb" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/space, @@ -64159,8 +60058,7 @@ /obj/machinery/power/rad_collector/anchored, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -64189,8 +60087,6 @@ /area/engine/engineering) "cwg" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -64204,7 +60100,6 @@ "cwh" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -64254,8 +60149,6 @@ "cwn" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -64417,8 +60310,6 @@ /area/ai_monitored/storage/eva) "cwG" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/window/reinforced, @@ -64438,8 +60329,6 @@ /area/bridge/showroom/corporate) "cwI" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -64447,8 +60336,6 @@ /area/bridge/showroom/corporate) "cwJ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/grimy, @@ -64484,8 +60371,6 @@ /area/bridge/showroom/corporate) "cwO" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/window/reinforced, @@ -64531,8 +60416,6 @@ /area/gateway) "cwR" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/event_spawn, @@ -64576,12 +60459,9 @@ "cwW" = ( /obj/machinery/gateway, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -64681,7 +60561,6 @@ /area/crew_quarters/toilet/restrooms) "cxf" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -64748,13 +60627,9 @@ /area/crew_quarters/toilet/restrooms) "cxk" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -64768,8 +60643,6 @@ /area/crew_quarters/locker) "cxl" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -64780,8 +60653,6 @@ "cxm" = ( /obj/structure/chair/stool, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -64794,8 +60665,6 @@ /obj/item/folder, /obj/item/pen, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -64807,8 +60676,6 @@ /obj/structure/table, /obj/item/device/paicard, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -64819,8 +60686,6 @@ "cxp" = ( /obj/structure/table, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/toy/gun, @@ -64832,13 +60697,9 @@ "cxq" = ( /obj/structure/chair/stool, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/landmark/start/assistant, @@ -64850,8 +60711,6 @@ /area/crew_quarters/locker) "cxr" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -64862,7 +60721,6 @@ /area/crew_quarters/locker) "cxs" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -65007,8 +60865,6 @@ /area/crew_quarters/fitness/recreation) "cxD" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -65080,13 +60936,9 @@ /area/engine/engineering) "cxN" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -65102,18 +60954,12 @@ req_access_txt = "32" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -65127,8 +60973,6 @@ "cxP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/delivery, @@ -65159,8 +61003,6 @@ "cxT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/blobstart, @@ -65187,8 +61029,6 @@ "cxX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -65305,13 +61145,9 @@ /area/ai_monitored/storage/eva) "cym" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/power/apc{ @@ -65321,15 +61157,12 @@ pixel_x = -26 }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/wood, /area/bridge/showroom/corporate) "cyn" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -65339,18 +61172,12 @@ /area/bridge/showroom/corporate) "cyo" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -65360,13 +61187,9 @@ /area/bridge/showroom/corporate) "cyp" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/chair/comfy/brown{ @@ -65377,13 +61200,9 @@ "cyq" = ( /obj/structure/table/wood, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/reagent_containers/food/drinks/bottle/whiskey, @@ -65392,13 +61211,9 @@ "cyr" = ( /obj/structure/table/wood, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/storage/fancy/donut_box, @@ -65407,13 +61222,9 @@ "cys" = ( /obj/structure/table/wood, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/paper_bin, @@ -65421,13 +61232,9 @@ /area/bridge/showroom/corporate) "cyt" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/chair/comfy/black{ @@ -65437,8 +61244,6 @@ /area/bridge/showroom/corporate) "cyu" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -65448,8 +61253,6 @@ /area/bridge/showroom/corporate) "cyv" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -65459,13 +61262,9 @@ /area/bridge/showroom/corporate) "cyw" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/airalarm{ @@ -65556,8 +61355,6 @@ /area/gateway) "cyy" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -65585,7 +61382,6 @@ /area/gateway) "cyB" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -65605,8 +61401,6 @@ /area/gateway) "cyD" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -65671,8 +61465,6 @@ /area/crew_quarters/toilet/restrooms) "cyL" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -65695,8 +61487,6 @@ /area/crew_quarters/toilet/restrooms) "cyQ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/closet/wardrobe/white, @@ -65707,8 +61497,6 @@ /area/crew_quarters/locker) "cyR" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -65876,8 +61664,6 @@ /area/engine/engineering) "czq" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -65892,7 +61678,6 @@ "czr" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -65904,8 +61689,6 @@ "czs" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -65916,8 +61699,6 @@ /area/engine/storage) "czt" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -65927,8 +61708,6 @@ /area/engine/storage) "czu" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -65938,8 +61717,6 @@ /area/engine/storage) "czv" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral, @@ -65958,7 +61735,6 @@ pixel_x = 26 }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/turf_decal/delivery, @@ -66015,8 +61791,6 @@ /area/maintenance/port) "czC" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -66237,8 +62011,6 @@ "czZ" = ( /obj/structure/table/wood, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/clipboard, @@ -66257,8 +62029,6 @@ "cAc" = ( /obj/structure/table/wood, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/folder/blue, @@ -66268,8 +62038,6 @@ "cAd" = ( /obj/structure/table/wood, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/clothing/mask/cigarette/cigar/cohiba{ @@ -66284,8 +62052,6 @@ "cAe" = ( /obj/structure/table/wood, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/lighter, @@ -66300,8 +62066,6 @@ "cAg" = ( /obj/structure/table/wood, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/storage/secure/briefcase, @@ -66332,8 +62096,6 @@ /area/gateway) "cAj" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -66344,8 +62106,6 @@ /area/gateway) "cAk" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -66357,8 +62117,6 @@ /area/gateway) "cAl" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -66371,18 +62129,12 @@ /area/gateway) "cAm" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_command{ @@ -66403,8 +62155,6 @@ /area/gateway) "cAn" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -66418,8 +62168,6 @@ "cAo" = ( /obj/machinery/holopad, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -66491,8 +62239,6 @@ /area/crew_quarters/toilet/restrooms) "cAv" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -66507,13 +62253,9 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/light, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -66526,8 +62268,6 @@ /area/crew_quarters/toilet/restrooms) "cAx" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -66543,8 +62283,6 @@ pixel_y = -32 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -66557,8 +62295,6 @@ /area/crew_quarters/toilet/restrooms) "cAz" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -66570,8 +62306,6 @@ pixel_y = -32 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -66581,8 +62315,6 @@ /area/crew_quarters/toilet/restrooms) "cAB" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -66593,8 +62325,6 @@ "cAC" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock{ @@ -66613,8 +62343,6 @@ /area/crew_quarters/toilet/restrooms) "cAD" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -66654,8 +62382,6 @@ /area/crew_quarters/locker) "cAH" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -66755,7 +62481,6 @@ /area/holodeck/rec_center) "cAU" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/turf_decal/stripes/line, @@ -66763,8 +62488,6 @@ /area/engine/engineering) "cAV" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/grille, @@ -66775,8 +62498,6 @@ /area/engine/engineering) "cAW" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/grille, @@ -66787,8 +62508,6 @@ /area/engine/engineering) "cAX" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/grille, @@ -66799,8 +62518,6 @@ /area/engine/engineering) "cAY" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating/airless, @@ -66812,8 +62529,6 @@ req_access_txt = "10; 13" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -66826,8 +62541,6 @@ /area/engine/engineering) "cBa" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/fans/tiny, @@ -66838,8 +62551,6 @@ "cBb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, @@ -66847,8 +62558,6 @@ /area/engine/engineering) "cBc" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -66862,16 +62571,12 @@ /area/engine/engineering) "cBd" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -66884,8 +62589,6 @@ /obj/effect/decal/cleanable/dirt, /obj/item/twohanded/required/kirbyplants/random, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -66941,8 +62644,6 @@ /area/engine/storage) "cBk" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner{ @@ -67048,8 +62749,6 @@ "cBz" = ( /obj/structure/table/wood, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/folder/blue, @@ -67083,8 +62782,6 @@ /area/bridge/showroom/corporate) "cBC" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/chair/comfy/brown{ @@ -67094,8 +62791,6 @@ /area/bridge/showroom/corporate) "cBD" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/holopad, @@ -67103,8 +62798,6 @@ /area/bridge/showroom/corporate) "cBE" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/chair/comfy/black{ @@ -67135,8 +62828,6 @@ "cBH" = ( /obj/structure/table/wood, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/folder/red, @@ -67228,8 +62919,6 @@ /area/gateway) "cBR" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/lightsout, @@ -67250,8 +62939,6 @@ /area/crew_quarters/toilet/restrooms) "cBT" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -67312,8 +62999,6 @@ /area/crew_quarters/locker) "cCb" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -67398,8 +63083,6 @@ /area/engine/engineering) "cCn" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/grille, @@ -67410,8 +63093,6 @@ /area/engine/engineering) "cCo" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/grille, @@ -67422,8 +63103,6 @@ /area/engine/engineering) "cCp" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/grille, @@ -67434,13 +63113,9 @@ /area/engine/engineering) "cCq" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/grille, @@ -67451,8 +63126,6 @@ /area/engine/engineering) "cCr" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/grille, @@ -67503,8 +63176,6 @@ "cCx" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -67517,8 +63188,6 @@ /area/engine/engineering) "cCy" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -67618,8 +63287,6 @@ "cCJ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -67772,8 +63439,6 @@ req_access_txt = "19" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -67880,8 +63545,6 @@ "cDj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -67927,8 +63590,6 @@ "cDn" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock{ @@ -68058,8 +63719,6 @@ req_access_txt = "10" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -68074,8 +63733,6 @@ /area/maintenance/port) "cDB" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -68108,8 +63765,6 @@ "cDG" = ( /obj/effect/landmark/lightsout, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -68208,8 +63863,6 @@ /area/hallway/primary/central) "cDQ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -68352,8 +64005,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -68406,8 +64057,6 @@ /area/crew_quarters/dorms) "cEm" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -68421,8 +64070,6 @@ /area/crew_quarters/dorms) "cEn" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -68435,8 +64082,6 @@ /area/crew_quarters/dorms) "cEo" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -68448,8 +64093,6 @@ "cEp" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock{ @@ -68468,8 +64111,6 @@ /area/crew_quarters/dorms) "cEq" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -68481,13 +64122,9 @@ /area/crew_quarters/dorms) "cEr" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -68502,8 +64139,6 @@ /area/crew_quarters/dorms) "cEs" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -68516,8 +64151,6 @@ /area/crew_quarters/dorms) "cEt" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -68529,8 +64162,6 @@ /area/crew_quarters/dorms) "cEu" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -68547,8 +64178,6 @@ /area/crew_quarters/dorms) "cEv" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, @@ -68559,8 +64188,6 @@ "cEw" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock{ @@ -68579,8 +64206,6 @@ /area/crew_quarters/dorms) "cEx" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -68592,13 +64217,9 @@ /area/crew_quarters/fitness/recreation) "cEy" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -68798,8 +64419,6 @@ "cET" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -68813,8 +64432,6 @@ "cEU" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -68825,8 +64442,6 @@ "cEV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -68837,8 +64452,6 @@ "cEX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -68851,8 +64464,6 @@ /area/maintenance/port) "cEY" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -68866,13 +64477,9 @@ "cEZ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -68884,13 +64491,9 @@ "cFa" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -68904,21 +64507,15 @@ "cFb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -68930,8 +64527,6 @@ /area/maintenance/port) "cFc" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -68945,8 +64540,6 @@ "cFd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -68960,8 +64553,6 @@ "cFe" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -68978,13 +64569,9 @@ "cFf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -68998,8 +64585,6 @@ "cFg" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -69014,13 +64599,9 @@ /area/maintenance/port) "cFh" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -69034,8 +64615,6 @@ "cFi" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -69050,8 +64629,6 @@ /area/maintenance/port) "cFj" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -69066,8 +64643,6 @@ /area/maintenance/port) "cFk" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -69082,13 +64657,9 @@ "cFl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -69101,8 +64672,6 @@ "cFm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -69112,8 +64681,6 @@ /area/maintenance/port) "cFn" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -69124,8 +64691,6 @@ "cFo" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -69135,8 +64700,6 @@ /area/maintenance/port) "cFp" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/blobstart, @@ -69149,8 +64712,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -69161,8 +64722,6 @@ /area/maintenance/port) "cFr" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -69175,8 +64734,6 @@ /area/maintenance/port) "cFs" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -69186,13 +64743,9 @@ /area/maintenance/port) "cFt" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -69206,8 +64759,6 @@ /area/maintenance/port) "cFu" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -69225,8 +64776,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -69242,8 +64791,6 @@ /area/maintenance/port) "cFw" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -69259,13 +64806,9 @@ /area/hallway/primary/central) "cFx" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -69279,8 +64822,6 @@ /area/hallway/primary/central) "cFy" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/side{ @@ -69289,13 +64830,9 @@ /area/hallway/primary/central) "cFz" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -69305,8 +64842,6 @@ /area/hallway/primary/central) "cFA" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel{ @@ -69315,8 +64850,6 @@ /area/hallway/primary/central) "cFB" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel{ @@ -69325,8 +64858,6 @@ /area/hallway/primary/central) "cFC" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, @@ -69340,8 +64871,6 @@ /area/hallway/primary/central) "cFD" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -69355,8 +64884,6 @@ /area/hallway/primary/central) "cFE" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel{ @@ -69365,8 +64892,6 @@ /area/hallway/primary/central) "cFF" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel{ @@ -69376,8 +64901,6 @@ /area/hallway/primary/central) "cFG" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -69387,21 +64910,15 @@ /area/hallway/primary/central) "cFH" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/navbeacon{ @@ -69412,8 +64929,6 @@ /area/hallway/primary/central) "cFI" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -69435,8 +64950,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -69455,8 +64968,6 @@ /area/maintenance/starboard/aft) "cFK" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -69470,8 +64981,6 @@ "cFL" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -69516,19 +65025,13 @@ "cFP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -69540,8 +65043,6 @@ "cFQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -69555,8 +65056,6 @@ "cFR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -69576,8 +65075,6 @@ req_access_txt = "12" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -69596,8 +65093,6 @@ /area/maintenance/starboard/aft) "cFT" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -69678,8 +65173,6 @@ /area/crew_quarters/dorms) "cGe" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -69707,8 +65200,6 @@ /area/crew_quarters/fitness/recreation) "cGi" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/holopad, @@ -69782,8 +65273,6 @@ "cGx" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/delivery, @@ -69833,8 +65322,6 @@ /area/maintenance/port) "cGC" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -69860,8 +65347,6 @@ /area/maintenance/port) "cGF" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -69902,8 +65387,6 @@ "cGL" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -70087,8 +65570,6 @@ /area/maintenance/starboard/aft) "cHe" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -70099,8 +65580,6 @@ "cHf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/spawner/lootdrop/maintenance, @@ -70111,8 +65590,6 @@ /area/maintenance/starboard/aft) "cHg" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/blobstart, @@ -70123,8 +65600,6 @@ /area/maintenance/starboard/aft) "cHh" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -70132,8 +65607,6 @@ /area/maintenance/starboard/aft) "cHi" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -70153,8 +65626,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -70362,8 +65833,6 @@ /area/crew_quarters/fitness/recreation) "cHB" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/lightsout, @@ -70457,8 +65926,6 @@ req_access_txt = "10" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -70488,8 +65955,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -70824,8 +66289,6 @@ "cIJ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -71083,8 +66546,6 @@ "cJq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -71179,8 +66640,6 @@ "cJB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -71191,8 +66650,6 @@ /area/maintenance/port) "cJC" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -71210,8 +66667,6 @@ /area/maintenance/port) "cJD" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -71221,8 +66676,6 @@ /area/science/xenobiology) "cJE" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/landmark/blobstart, @@ -71280,8 +66733,6 @@ /area/science/research) "cJN" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance_hatch{ @@ -71361,8 +66812,6 @@ /area/science/research) "cJY" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment, @@ -71528,7 +66977,6 @@ /area/maintenance/starboard/aft) "cKx" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -71548,13 +66996,9 @@ /area/medical/storage) "cKy" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -71566,8 +67010,6 @@ /area/medical/storage) "cKz" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -71579,8 +67021,6 @@ /area/medical/storage) "cKA" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -71597,8 +67037,6 @@ /area/medical/storage) "cKB" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock{ @@ -71623,13 +67061,9 @@ "cKC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -71646,8 +67080,6 @@ "cKD" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -71657,8 +67089,6 @@ /area/maintenance/starboard/aft) "cKE" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -71668,8 +67098,6 @@ /area/maintenance/starboard/aft) "cKF" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -71683,8 +67111,6 @@ /area/maintenance/starboard/aft) "cKG" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -71703,8 +67129,6 @@ req_access_txt = "12" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -71723,8 +67147,6 @@ /area/maintenance/starboard/aft) "cKI" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/decal/cleanable/dirt, @@ -71939,13 +67361,9 @@ /area/maintenance/department/electrical) "cLg" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -71957,8 +67375,6 @@ "cLh" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -71970,8 +67386,6 @@ "cLi" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -71982,8 +67396,6 @@ "cLj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -71994,7 +67406,6 @@ /obj/item/stock_parts/cell/high, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -72008,8 +67419,6 @@ "cLl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -72020,8 +67429,6 @@ "cLm" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/research{ @@ -72081,8 +67488,6 @@ /area/science/research) "cLt" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitepurple/side{ @@ -72285,8 +67690,6 @@ /area/medical/storage) "cLX" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/cmo, @@ -72364,8 +67767,6 @@ /area/maintenance/starboard/aft) "cMh" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -72521,8 +67922,6 @@ dir = 9 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -72554,8 +67953,6 @@ /area/maintenance/department/electrical) "cMG" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -72580,7 +67977,6 @@ /area/science/xenobiology) "cMK" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/turf_decal/stripes/line{ @@ -72591,8 +67987,6 @@ /area/science/xenobiology) "cML" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -72600,16 +67994,12 @@ /area/science/xenobiology) "cMM" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/status_display{ pixel_y = 32 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/camera{ @@ -72627,8 +68017,6 @@ pixel_y = 26 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -72651,7 +68039,6 @@ /area/science/xenobiology) "cMP" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -72663,13 +68050,9 @@ /area/science/xenobiology) "cMQ" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/door/window/brigdoor{ @@ -72687,7 +68070,6 @@ /area/science/xenobiology) "cMR" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -72700,7 +68082,6 @@ /area/science/xenobiology) "cMS" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -72712,13 +68093,9 @@ /area/science/xenobiology) "cMT" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/door/window/brigdoor{ @@ -72736,7 +68113,6 @@ /area/science/xenobiology) "cMU" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -72749,7 +68125,6 @@ /area/science/xenobiology) "cMV" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -72761,13 +68136,9 @@ /area/science/xenobiology) "cMW" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/door/window/brigdoor{ @@ -72785,7 +68156,6 @@ /area/science/xenobiology) "cMX" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -72798,7 +68168,6 @@ /area/science/xenobiology) "cMY" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -72807,13 +68176,9 @@ /area/science/xenobiology) "cMZ" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/door/airlock/glass_research{ @@ -72830,7 +68195,6 @@ /area/science/xenobiology) "cNa" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -72838,8 +68202,6 @@ /area/science/xenobiology) "cNb" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/purple, @@ -72852,7 +68214,6 @@ /area/science/research) "cNd" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -73252,8 +68613,6 @@ /area/maintenance/starboard/aft) "cNR" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -73405,8 +68764,6 @@ "cOm" = ( /obj/machinery/holopad, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/bot, @@ -73436,8 +68793,6 @@ /area/maintenance/department/electrical) "cOq" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -73455,7 +68810,6 @@ /area/science/xenobiology) "cOt" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -73476,8 +68830,6 @@ /area/science/xenobiology) "cOv" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -73520,8 +68872,6 @@ /area/science/xenobiology) "cOA" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/window/brigdoor{ @@ -73626,8 +68976,6 @@ /area/science/xenobiology) "cOK" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/delivery, @@ -73668,8 +69016,6 @@ /area/science/research) "cOP" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -73679,8 +69025,6 @@ /area/science/research) "cOQ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -73694,18 +69038,12 @@ "cOR" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/door/airlock/security{ @@ -73725,8 +69063,6 @@ /area/security/checkpoint/science/research) "cOS" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -73738,13 +69074,9 @@ /area/security/checkpoint/science/research) "cOT" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/chair/office/dark{ @@ -73754,8 +69086,6 @@ /area/security/checkpoint/science/research) "cOU" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/computer/security, @@ -73764,11 +69094,9 @@ "cOV" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -74033,7 +69361,6 @@ /area/medical/medbay/central) "cPx" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -74061,7 +69388,6 @@ /area/security/checkpoint/medical) "cPB" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -74421,8 +69747,6 @@ "cQk" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/stripes/line{ @@ -74432,7 +69756,6 @@ /area/maintenance/department/electrical) "cQl" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/effect/turf_decal/stripes/line{ @@ -74449,8 +69772,7 @@ /area/maintenance/department/electrical) "cQn" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -74459,8 +69781,6 @@ /area/maintenance/department/electrical) "cQo" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/stripes/line{ @@ -74491,7 +69811,6 @@ "cQs" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -74519,8 +69838,6 @@ /area/science/xenobiology) "cQu" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -74561,8 +69878,6 @@ /area/science/xenobiology) "cQz" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -74583,8 +69898,6 @@ /area/science/xenobiology) "cQB" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -74616,8 +69929,6 @@ /area/science/xenobiology) "cQE" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -74638,8 +69949,6 @@ /area/science/xenobiology) "cQG" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -74718,8 +70027,6 @@ /area/security/checkpoint/science/research) "cQO" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/holopad, @@ -74822,12 +70129,10 @@ /area/medical/medbay/central) "cRd" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -74836,8 +70141,6 @@ "cRe" = ( /obj/machinery/computer/security, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red, @@ -74847,21 +70150,15 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/neutral, /area/security/checkpoint/medical) "cRg" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side{ @@ -74871,13 +70168,9 @@ "cRh" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/door/airlock/security{ @@ -74913,8 +70206,6 @@ /area/medical/storage) "cRk" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whiteblue/side, @@ -74970,8 +70261,6 @@ /area/medical/medbay/central) "cRp" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -74988,7 +70277,6 @@ /area/maintenance/starboard/aft) "cRr" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -75004,13 +70292,9 @@ /area/crew_quarters/fitness/recreation) "cRs" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -75124,8 +70408,6 @@ "cRI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/blobstart, @@ -75147,13 +70429,9 @@ /area/science/xenobiology) "cRK" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/door/window/brigdoor{ @@ -75171,8 +70449,6 @@ /area/science/xenobiology) "cRL" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/window/brigdoor{ @@ -75185,18 +70461,12 @@ /area/science/xenobiology) "cRM" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -75206,8 +70476,6 @@ /area/science/xenobiology) "cRN" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -75215,8 +70483,6 @@ /area/science/xenobiology) "cRO" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -75226,8 +70492,6 @@ "cRP" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -75237,8 +70501,6 @@ /area/science/xenobiology) "cRQ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/shower{ @@ -75253,8 +70515,6 @@ /area/science/xenobiology) "cRR" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -75267,18 +70527,12 @@ /area/science/xenobiology) "cRS" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/lightsout, @@ -75292,8 +70546,6 @@ /area/science/xenobiology) "cRT" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/shower{ @@ -75310,18 +70562,12 @@ /area/science/xenobiology) "cRU" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -75331,8 +70577,6 @@ /area/science/xenobiology) "cRV" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whitepurple/side{ @@ -75341,13 +70585,9 @@ /area/science/xenobiology) "cRW" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/landmark/start/scientist, @@ -75386,7 +70626,6 @@ /area/science/research) "cSb" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/door_timer{ @@ -75419,13 +70658,9 @@ /area/security/checkpoint/science/research) "cSc" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/red/side, @@ -75651,8 +70886,6 @@ /area/security/checkpoint/medical) "cSF" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/holopad, @@ -76003,7 +71236,6 @@ "cTw" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -76062,8 +71294,6 @@ /area/science/xenobiology) "cTC" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -76094,8 +71324,6 @@ /area/science/xenobiology) "cTG" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -76105,8 +71333,6 @@ /area/science/xenobiology) "cTH" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -76127,8 +71353,6 @@ /area/science/xenobiology) "cTJ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -76182,7 +71406,6 @@ /area/science/research) "cTO" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -76190,18 +71413,12 @@ /area/security/checkpoint/science/research) "cTP" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/window/brigdoor{ @@ -76213,7 +71430,6 @@ /area/security/checkpoint/science/research) "cTQ" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -76417,7 +71633,6 @@ /area/medical/medbay/central) "cUn" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/door_timer{ @@ -76446,13 +71661,9 @@ /area/security/checkpoint/medical) "cUo" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -76504,8 +71715,6 @@ /area/medical/medbay/central) "cUt" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whiteblue/corner{ @@ -76555,8 +71764,6 @@ /area/medical/medbay/central) "cUB" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -76570,13 +71777,9 @@ /area/maintenance/starboard/aft) "cUC" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -76590,8 +71793,6 @@ /area/maintenance/starboard/aft) "cUD" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -76606,8 +71807,6 @@ /area/maintenance/starboard/aft) "cUE" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -76621,8 +71820,6 @@ /area/maintenance/starboard/aft) "cUF" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -76636,8 +71833,6 @@ /area/maintenance/starboard/aft) "cUG" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -76651,8 +71846,6 @@ /area/maintenance/starboard/aft) "cUH" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -76665,8 +71858,6 @@ /area/maintenance/starboard/aft) "cUI" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -76679,8 +71870,6 @@ /area/maintenance/starboard/aft) "cUJ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -76694,8 +71883,6 @@ /area/maintenance/starboard/aft) "cUK" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -76715,8 +71902,6 @@ req_access_txt = "12" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -76735,8 +71920,6 @@ /area/maintenance/starboard/aft) "cUM" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -76752,8 +71935,6 @@ /area/crew_quarters/fitness/recreation) "cUN" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -76888,8 +72069,6 @@ /area/science/xenobiology) "cVd" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -76921,8 +72100,6 @@ /area/science/xenobiology) "cVh" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/window/brigdoor{ @@ -77001,8 +72178,6 @@ /area/science/xenobiology) "cVo" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/start/scientist, @@ -77021,11 +72196,9 @@ /area/science/xenobiology) "cVq" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -77033,8 +72206,6 @@ /area/security/checkpoint/science/research) "cVr" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/chair{ @@ -77046,18 +72217,12 @@ /area/security/checkpoint/science/research) "cVs" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/red/side{ @@ -77066,8 +72231,6 @@ /area/security/checkpoint/science/research) "cVt" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/closet/secure_closet/brig{ @@ -77080,7 +72243,6 @@ /area/security/checkpoint/science/research) "cVu" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -77283,7 +72445,6 @@ /area/medical/chemistry) "cVR" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -77345,7 +72506,6 @@ /area/medical/medbay/central) "cVZ" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -77353,18 +72513,12 @@ /area/security/checkpoint/medical) "cWa" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/door/window/brigdoor{ @@ -77376,7 +72530,6 @@ /area/security/checkpoint/medical) "cWb" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -77394,8 +72547,6 @@ /area/medical/medbay/central) "cWe" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -77459,8 +72610,6 @@ /area/maintenance/starboard/aft) "cWn" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -77636,7 +72785,6 @@ pixel_y = 28 }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plating, @@ -77647,8 +72795,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/side{ @@ -77661,8 +72807,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/side{ @@ -77677,8 +72821,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -77690,8 +72832,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/neutral/side{ @@ -77713,7 +72853,6 @@ /area/science/xenobiology) "cWP" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/turf_decal/stripes/line{ @@ -77724,8 +72863,6 @@ /area/science/xenobiology) "cWQ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/airalarm{ @@ -77757,7 +72894,6 @@ /area/science/xenobiology) "cWT" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -77770,13 +72906,9 @@ /area/science/xenobiology) "cWU" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/door/window/brigdoor{ @@ -77794,7 +72926,6 @@ /area/science/xenobiology) "cWV" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -77806,7 +72937,6 @@ /area/science/xenobiology) "cWW" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -77819,13 +72949,9 @@ /area/science/xenobiology) "cWX" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/door/window/brigdoor{ @@ -77843,7 +72969,6 @@ /area/science/xenobiology) "cWY" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -77855,7 +72980,6 @@ /area/science/xenobiology) "cWZ" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -77868,13 +72992,9 @@ /area/science/xenobiology) "cXa" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/door/poddoor/preopen{ @@ -77892,7 +73012,6 @@ /area/science/xenobiology) "cXb" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -77917,13 +73036,9 @@ /area/science/xenobiology) "cXe" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -77933,8 +73048,6 @@ /area/science/xenobiology) "cXf" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -77944,8 +73057,6 @@ /area/science/xenobiology) "cXg" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -77958,7 +73069,6 @@ /obj/item/folder/white, /obj/item/pen, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/light{ @@ -77983,8 +73093,6 @@ /area/security/checkpoint/science/research) "cXj" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/red/side, @@ -78170,8 +73278,6 @@ /area/medical/chemistry) "cXF" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -78238,11 +73344,9 @@ /area/medical/medbay/central) "cXN" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -78250,8 +73354,6 @@ /area/security/checkpoint/medical) "cXO" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/chair{ @@ -78263,13 +73365,9 @@ /area/security/checkpoint/medical) "cXP" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/red/side{ @@ -78287,8 +73385,6 @@ /area/security/checkpoint/medical) "cXR" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/blue, @@ -78534,16 +73630,12 @@ "cYx" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/turf_decal/delivery, @@ -78552,8 +73644,6 @@ "cYy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -78564,8 +73654,6 @@ /area/maintenance/port) "cYz" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -78576,8 +73664,6 @@ "cYA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -78587,13 +73673,9 @@ /area/maintenance/port) "cYB" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -78674,11 +73756,9 @@ "cYL" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -78893,21 +73973,15 @@ /area/security/checkpoint/medical) "cZn" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/red/side, /area/security/checkpoint/medical) "cZo" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side{ @@ -78916,12 +73990,10 @@ /area/security/checkpoint/medical) "cZp" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -78938,8 +74010,6 @@ /area/medical/medbay/central) "cZr" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whiteblue/corner{ @@ -78990,8 +74060,6 @@ /area/maintenance/starboard/aft) "cZA" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -79036,8 +74104,6 @@ req_access_txt = "12" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/barricade/wooden, @@ -79128,7 +74194,6 @@ /area/science/xenobiology) "cZS" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -79155,20 +74220,15 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel, /area/science/xenobiology) "cZU" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -79246,7 +74306,6 @@ /obj/item/stock_parts/console_screen, /obj/item/stock_parts/console_screen, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -79263,8 +74322,6 @@ /area/science/lab) "daf" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -79272,8 +74329,6 @@ /area/science/lab) "dag" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whitepurple/side{ @@ -79285,8 +74340,6 @@ pixel_x = -16 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/whitepurple/side{ @@ -79404,18 +74457,12 @@ "das" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/door/airlock/glass_security{ @@ -79460,8 +74507,6 @@ "dax" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -79505,13 +74550,9 @@ /area/maintenance/starboard/aft) "daC" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/decal/cleanable/dirt, @@ -79529,8 +74570,6 @@ req_access_txt = "12" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -79551,8 +74590,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/whiteblue/corner{ @@ -79642,7 +74679,6 @@ "daR" = ( /obj/structure/table/wood, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/item/clothing/gloves/color/fyellow, @@ -79679,8 +74715,6 @@ /area/crew_quarters/abandoned_gambling_den) "daV" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -79700,8 +74734,6 @@ /area/crew_quarters/abandoned_gambling_den) "daY" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -79713,8 +74745,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -79724,8 +74754,6 @@ /area/maintenance/port) "dbc" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -79735,8 +74763,6 @@ /area/maintenance/port) "dbe" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -79748,8 +74774,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -79978,8 +75002,6 @@ /area/science/lab) "dbC" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table, @@ -80082,8 +75104,6 @@ /area/medical/chemistry) "dbO" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -80189,8 +75209,6 @@ /area/medical/medbay/central) "dbZ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -80262,8 +75280,6 @@ /area/maintenance/starboard/aft) "dcj" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -80277,8 +75293,6 @@ name = "emergency shower" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whiteblue/corner{ @@ -80363,13 +75377,9 @@ /area/crew_quarters/abandoned_gambling_den) "dcx" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -80379,8 +75389,6 @@ /area/crew_quarters/abandoned_gambling_den) "dcy" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -80392,8 +75400,6 @@ /area/crew_quarters/abandoned_gambling_den) "dcz" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -80406,13 +75412,9 @@ /area/crew_quarters/abandoned_gambling_den) "dcA" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -80455,8 +75457,6 @@ "dcH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -80572,8 +75572,6 @@ /area/science/lab) "dcW" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/start/scientist, @@ -80667,8 +75665,6 @@ /area/medical/chemistry) "ddh" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/whiteyellow/side{ @@ -80677,8 +75673,6 @@ /area/medical/medbay/central) "ddi" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -80686,32 +75680,24 @@ /area/medical/medbay/central) "ddj" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral, /area/medical/medbay/central) "ddk" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/blue, /area/medical/medbay/central) "ddl" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whiteblue, /area/medical/medbay/central) "ddm" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -80719,13 +75705,9 @@ /area/medical/medbay/central) "ddn" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/device/radio/beacon, @@ -80735,8 +75717,6 @@ /area/medical/medbay/central) "ddo" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -80744,8 +75724,6 @@ /area/medical/medbay/central) "ddp" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -80759,21 +75737,15 @@ /area/medical/medbay/central) "ddq" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/blue, /area/medical/medbay/central) "ddr" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -80783,8 +75755,6 @@ /area/medical/medbay/central) "dds" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -80792,21 +75762,15 @@ /area/medical/medbay/central) "ddt" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/blue, /area/medical/medbay/central) "ddu" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -80814,21 +75778,15 @@ /area/medical/medbay/central) "ddv" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/blue, /area/medical/medbay/central) "ddw" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -80838,8 +75796,6 @@ /area/medical/medbay/central) "ddx" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -80847,8 +75803,6 @@ /area/medical/medbay/central) "ddy" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whiteblue/side{ @@ -80857,8 +75811,6 @@ /area/medical/medbay/central) "ddz" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance_hatch{ @@ -80875,8 +75827,6 @@ /area/medical/medbay/central) "ddA" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -80886,13 +75836,9 @@ /area/maintenance/starboard/aft) "ddB" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -80910,8 +75856,6 @@ pixel_x = -28 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -80995,8 +75939,6 @@ /area/crew_quarters/abandoned_gambling_den) "ddO" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -81029,8 +75971,6 @@ "ddS" = ( /obj/structure/table/wood/poker, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/storage/wallet/random, @@ -81142,8 +76082,6 @@ /area/maintenance/port) "deg" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -81200,7 +76138,6 @@ /area/science/explab) "deo" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -81396,8 +76333,6 @@ /area/science/lab) "deK" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -81497,8 +76432,6 @@ /area/medical/chemistry) "deT" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/item/device/radio/intercom{ @@ -81513,8 +76446,6 @@ /area/medical/chemistry) "deU" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light_switch{ @@ -81533,8 +76464,6 @@ req_access_txt = "5; 33" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -81550,8 +76479,6 @@ /area/medical/chemistry) "deW" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -81600,8 +76527,6 @@ /area/medical/medbay/central) "dfb" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -81657,8 +76582,6 @@ /area/medical/medbay/central) "dfi" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -81714,8 +76637,6 @@ /area/maintenance/starboard/aft) "dfq" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -81847,27 +76768,21 @@ /area/crew_quarters/abandoned_gambling_den) "dfF" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/hollow/reinforced/end{ dir = 1 }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plating, /area/crew_quarters/abandoned_gambling_den) "dfG" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/door/window/northright, @@ -81878,26 +76793,21 @@ /area/crew_quarters/abandoned_gambling_den) "dfH" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/hollow/reinforced/directional{ dir = 9 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/crew_quarters/abandoned_gambling_den) "dfI" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/hollow/reinforced/directional{ @@ -81907,11 +76817,9 @@ /area/crew_quarters/abandoned_gambling_den) "dfJ" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/white, @@ -81998,8 +76906,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -82010,8 +76916,6 @@ "dfW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -82056,8 +76960,6 @@ /area/science/explab) "dgb" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitepurple/side{ @@ -82100,7 +77002,6 @@ /area/science/research) "dgi" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -82109,13 +77010,9 @@ "dgj" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/door/airlock/research{ @@ -82133,7 +77030,6 @@ /area/science/misc_lab/range) "dgk" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -82148,7 +77044,6 @@ /area/crew_quarters/heads/hor) "dgn" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -82164,7 +77059,6 @@ /area/crew_quarters/heads/hor) "dgp" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -82176,11 +77070,9 @@ /area/crew_quarters/heads/hor) "dgq" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -82192,11 +77084,9 @@ /area/crew_quarters/heads/hor) "dgr" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -82237,8 +77127,6 @@ req_one_access_txt = "7;29" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -82318,8 +77206,6 @@ /area/medical/genetics/cloning) "dgG" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -82334,8 +77220,6 @@ /area/medical/medbay/central) "dgH" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -82396,8 +77280,6 @@ /area/maintenance/starboard/aft) "dgO" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -82417,7 +77299,6 @@ "dgS" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/hollow/reinforced/directional{ @@ -82440,7 +77321,6 @@ "dgV" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/hollow/reinforced/directional{ @@ -82552,8 +77432,6 @@ /area/science/explab) "dhl" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/event_spawn, @@ -82640,7 +77518,6 @@ /obj/item/clothing/ears/earmuffs, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/firealarm{ @@ -82660,18 +77537,12 @@ /area/science/misc_lab/range) "dhw" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment, @@ -82703,7 +77574,6 @@ dir = 4 }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/turf_decal/delivery, @@ -82725,8 +77595,6 @@ /area/crew_quarters/heads/hor) "dhz" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -82759,7 +77627,6 @@ "dhD" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -82794,8 +77661,6 @@ /area/science/robotics/mechbay) "dhG" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/stripes/line{ @@ -82805,8 +77670,6 @@ /area/science/robotics/mechbay) "dhH" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -82816,14 +77679,10 @@ /area/science/robotics/mechbay) "dhI" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/stripes/line{ @@ -82833,8 +77692,6 @@ /area/science/robotics/mechbay) "dhJ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -82845,7 +77702,6 @@ /area/science/robotics/mechbay) "dhK" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc/highcap/ten_k{ @@ -82896,7 +77752,6 @@ pixel_y = 24 }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/turf_decal/stripes/end, @@ -82978,7 +77833,6 @@ "dhX" = ( /obj/structure/table/glass, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc/highcap/five_k{ @@ -83001,8 +77855,6 @@ /area/medical/medbay/central) "dhZ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -83061,8 +77913,6 @@ /area/medical/medbay/central) "dig" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -83129,8 +77979,6 @@ /area/medical/surgery) "dir" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/decal/cleanable/dirt, @@ -83139,8 +77987,6 @@ /area/maintenance/starboard/aft) "dis" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -83377,13 +78223,9 @@ /area/maintenance/port) "diX" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -83396,8 +78238,6 @@ /area/maintenance/port) "diY" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -83418,8 +78258,6 @@ /area/maintenance/port) "diZ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -83430,8 +78268,6 @@ /area/science/explab) "dja" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -83444,8 +78280,6 @@ /area/science/explab) "djb" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -83461,8 +78295,6 @@ /area/science/explab) "djc" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -83478,8 +78310,6 @@ "djd" = ( /obj/structure/table/reinforced, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/item/stack/sheet/mineral/plasma{ @@ -83645,8 +78475,6 @@ "djp" = ( /obj/machinery/holopad, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/junction{ @@ -83673,7 +78501,6 @@ /area/science/misc_lab/range) "djr" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -83701,8 +78528,6 @@ /area/crew_quarters/heads/hor) "djt" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -83745,7 +78570,6 @@ "djx" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -83802,8 +78626,6 @@ /area/science/robotics/mechbay) "djD" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -83913,8 +78735,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -83969,8 +78789,6 @@ /area/medical/genetics/cloning) "djX" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -83988,8 +78806,6 @@ req_access_txt = "5" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -84005,8 +78821,6 @@ /area/medical/genetics/cloning) "djZ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -84019,13 +78833,9 @@ /area/medical/medbay/central) "dka" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -84100,8 +78910,6 @@ /area/medical/surgery) "dkj" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -84261,8 +79069,6 @@ "dkF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/stripes/line, @@ -84270,8 +79076,6 @@ /area/science/research/abandoned) "dkG" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -84282,8 +79086,6 @@ /area/science/research/abandoned) "dkH" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -84296,8 +79098,6 @@ /area/science/research/abandoned) "dkI" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -84309,8 +79109,6 @@ "dkJ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -84336,8 +79134,6 @@ name = "Decrepit Blast Door" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -84356,8 +79152,6 @@ "dkL" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -84369,13 +79163,9 @@ /area/maintenance/port) "dkM" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -84551,13 +79341,9 @@ /area/science/misc_lab/range) "dle" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -84568,8 +79354,6 @@ /area/science/misc_lab/range) "dlf" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -84579,13 +79363,9 @@ "dlg" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/door/airlock/command{ @@ -84603,13 +79383,9 @@ /area/crew_quarters/heads/hor) "dlh" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment, @@ -84618,13 +79394,9 @@ /area/crew_quarters/heads/hor) "dli" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/whitepurple/corner{ @@ -84633,13 +79405,9 @@ /area/crew_quarters/heads/hor) "dlj" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -84651,8 +79419,6 @@ /area/crew_quarters/heads/hor) "dlk" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -84669,8 +79435,6 @@ /area/crew_quarters/heads/hor) "dll" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -84685,13 +79449,9 @@ "dlm" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/door/airlock/command{ @@ -84722,8 +79482,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whitepurple/corner{ @@ -84739,8 +79497,6 @@ icon_state = "pipe-j2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/purple, @@ -84762,8 +79518,6 @@ /area/science/robotics/mechbay) "dlr" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -84843,8 +79597,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -84937,8 +79689,6 @@ /area/medical/medbay/central) "dlN" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -85019,7 +79769,6 @@ "dlZ" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/hollow/reinforced/directional{ @@ -85109,8 +79858,6 @@ /area/maintenance/port) "dmk" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -85208,8 +79955,6 @@ /area/science/misc_lab/range) "dmy" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/window/northright{ @@ -85246,8 +79991,6 @@ "dmC" = ( /obj/structure/chair/office/light, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -85296,8 +80039,6 @@ "dmG" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -85323,8 +80064,6 @@ /area/science/robotics/mechbay) "dmJ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -85390,8 +80129,6 @@ /area/maintenance/department/medical) "dmS" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -85478,8 +80215,6 @@ /area/medical/medbay/central) "dnd" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -85640,8 +80375,6 @@ /area/medical/surgery) "dnu" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -85673,8 +80406,6 @@ /area/crew_quarters/abandoned_gambling_den) "dnz" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/window/eastleft, @@ -85779,8 +80510,6 @@ /area/science/misc_lab/range) "dnO" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -85795,8 +80524,6 @@ /area/science/misc_lab/range) "dnQ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/disposal/bin, @@ -85808,8 +80535,6 @@ /area/crew_quarters/heads/hor) "dnR" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whitepurple/side{ @@ -85819,13 +80544,9 @@ "dnS" = ( /obj/structure/table/reinforced, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/button/door{ @@ -85882,8 +80603,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/purple, @@ -85928,8 +80647,6 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -85943,7 +80660,6 @@ /area/medical/genetics) "doe" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -85956,13 +80672,9 @@ req_access_txt = "9" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -85976,7 +80688,6 @@ /area/medical/genetics) "dog" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -85985,7 +80696,6 @@ /area/medical/genetics) "doh" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -86001,13 +80711,9 @@ /area/medical/medbay/central) "doi" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment, @@ -86113,13 +80819,9 @@ /area/medical/surgery) "dow" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/decal/cleanable/dirt, @@ -86131,8 +80833,6 @@ /area/maintenance/starboard/aft) "dox" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -86148,8 +80848,6 @@ req_access_txt = "12" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -86220,7 +80918,6 @@ "doG" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/hollow/reinforced/directional{ @@ -86230,11 +80927,9 @@ /area/crew_quarters/abandoned_gambling_den) "doH" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/hollow/reinforced/directional, @@ -86243,7 +80938,6 @@ "doI" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/hollow/reinforced/end{ @@ -86346,8 +81040,6 @@ "doV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -86485,13 +81177,9 @@ "dpm" = ( /obj/machinery/computer/aifixer, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -86504,8 +81192,6 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/start/research_director, @@ -86515,8 +81201,6 @@ "dpo" = ( /obj/machinery/computer/mecha, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/bot, @@ -86524,7 +81208,6 @@ /area/crew_quarters/heads/hor) "dpp" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -86548,8 +81231,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -86580,8 +81261,6 @@ /area/science/robotics/mechbay) "dpv" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -86661,8 +81340,6 @@ /area/medical/genetics) "dpE" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitepurple/corner{ @@ -86737,8 +81414,6 @@ /area/medical/genetics) "dpM" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -86777,7 +81452,6 @@ /area/medical/genetics) "dpP" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -86789,7 +81463,6 @@ /area/medical/genetics) "dpR" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -86849,13 +81522,9 @@ /area/crew_quarters/heads/cmo) "dpX" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -86865,8 +81534,6 @@ /area/medical/medbay/central) "dpY" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -86878,8 +81545,6 @@ "dpZ" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/medical{ @@ -86898,8 +81563,6 @@ /area/medical/surgery) "dqa" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -86911,8 +81574,6 @@ /area/medical/surgery) "dqb" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/start/medical_doctor, @@ -86923,8 +81584,6 @@ /area/medical/surgery) "dqc" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -86941,8 +81600,6 @@ req_access_txt = "45" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -86958,8 +81615,6 @@ /area/medical/surgery) "dqe" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -86972,8 +81627,6 @@ "dqf" = ( /obj/machinery/computer/operating, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -86985,13 +81638,9 @@ /obj/structure/table/optable, /obj/effect/decal/cleanable/blood/old, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -87002,8 +81651,6 @@ "dqh" = ( /obj/machinery/holopad, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -87014,8 +81661,6 @@ /area/medical/surgery) "dqi" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -87029,8 +81674,6 @@ req_access_txt = "45" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -87046,13 +81689,9 @@ /area/maintenance/starboard/aft) "dqk" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -87186,8 +81825,6 @@ /area/science/research/abandoned) "dqA" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/blobstart, @@ -87279,8 +81916,6 @@ /area/science/misc_lab/range) "dqK" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -87299,8 +81934,6 @@ /obj/structure/table/reinforced, /obj/machinery/light, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/storage/secure/briefcase, @@ -87318,8 +81951,6 @@ /area/crew_quarters/heads/hor) "dqN" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whitepurple/corner{ @@ -87328,13 +81959,9 @@ /area/crew_quarters/heads/hor) "dqO" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -87364,8 +81991,6 @@ "dqR" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/purple, @@ -87397,8 +82022,6 @@ /area/science/robotics/mechbay) "dqU" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/turf_decal/stripes/line{ @@ -87409,8 +82032,6 @@ "dqV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line, @@ -87418,8 +82039,6 @@ /area/science/robotics/mechbay) "dqW" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/camera{ @@ -87433,8 +82052,6 @@ /area/science/robotics/mechbay) "dqX" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line, @@ -87442,8 +82059,6 @@ /area/science/robotics/mechbay) "dqY" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/stripes/line, @@ -87535,8 +82150,6 @@ /area/medical/genetics) "drh" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -87547,16 +82160,12 @@ icon_state = "pipe-c" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/neutral, /area/medical/genetics) "dri" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -87568,7 +82177,6 @@ "drj" = ( /obj/structure/table/glass, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/item/clipboard, @@ -87642,8 +82250,6 @@ /area/medical/genetics) "drp" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -87677,7 +82283,6 @@ /area/medical/genetics) "drs" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white, @@ -87698,13 +82303,9 @@ /area/medical/medbay/central) "dru" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -87715,8 +82316,6 @@ /area/medical/medbay/central) "drv" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -87731,18 +82330,12 @@ req_access_txt = "40" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -87758,8 +82351,6 @@ /area/crew_quarters/heads/cmo) "drx" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -87771,13 +82362,9 @@ /area/crew_quarters/heads/cmo) "dry" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -87787,16 +82374,12 @@ /area/crew_quarters/heads/cmo) "drz" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/cmo, /area/crew_quarters/heads/cmo) "drA" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -87806,8 +82389,6 @@ /area/crew_quarters/heads/cmo) "drB" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -87824,18 +82405,12 @@ req_access_txt = "40" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -87851,8 +82426,6 @@ /area/crew_quarters/heads/cmo) "drD" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -87864,13 +82437,9 @@ /area/medical/medbay/central) "drE" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/landmark/lightsout, @@ -87922,8 +82491,6 @@ /area/medical/surgery) "drL" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whiteblue/side, @@ -87943,8 +82510,6 @@ /area/medical/surgery) "drO" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -88183,8 +82748,6 @@ "dsv" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/spawner/structure/window/reinforced/tinted, @@ -88193,18 +82756,12 @@ "dsw" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/door/airlock/command{ @@ -88223,7 +82780,6 @@ /area/crew_quarters/heads/hor) "dsx" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced/tinted, @@ -88233,8 +82789,6 @@ "dsy" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -88280,8 +82834,6 @@ "dsD" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_research{ @@ -88333,13 +82885,9 @@ /area/medical/genetics) "dsH" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -88351,8 +82899,6 @@ /area/medical/genetics) "dsI" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -88365,8 +82911,6 @@ /area/medical/genetics) "dsJ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -88386,13 +82930,9 @@ req_access_txt = "9" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -88411,8 +82951,6 @@ /area/medical/genetics) "dsL" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -88427,8 +82965,6 @@ /area/medical/genetics) "dsM" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -88443,8 +82979,6 @@ /area/medical/genetics) "dsN" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -88457,8 +82991,6 @@ /area/medical/genetics) "dsO" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -88471,8 +83003,6 @@ /area/medical/genetics) "dsP" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/holopad, @@ -88512,12 +83042,10 @@ /area/medical/genetics) "dsS" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -88529,8 +83057,6 @@ /area/medical/genetics) "dsT" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -88542,13 +83068,9 @@ /area/medical/medbay/central) "dsU" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -88574,8 +83096,6 @@ /area/crew_quarters/heads/cmo) "dsX" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -88698,7 +83218,6 @@ pixel_y = -26 }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/turf_decal/bot, @@ -88708,8 +83227,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/delivery, @@ -88860,8 +83377,6 @@ "dtG" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -88871,8 +83386,6 @@ /area/maintenance/port) "dtH" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -88885,8 +83398,6 @@ "dtI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -88898,8 +83409,6 @@ /area/maintenance/port) "dtJ" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -88991,8 +83500,6 @@ /area/crew_quarters/heads/hor) "dtU" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -89083,8 +83590,6 @@ /area/science/robotics/lab) "dub" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/delivery, @@ -89161,8 +83666,6 @@ /area/medical/genetics) "duh" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -89264,8 +83767,6 @@ /area/crew_quarters/heads/cmo) "duu" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/holopad, @@ -89279,8 +83780,6 @@ "duw" = ( /obj/structure/chair/office/light, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -89289,7 +83788,6 @@ "dux" = ( /obj/item/twohanded/required/kirbyplants/random, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/light{ @@ -89321,8 +83819,6 @@ /area/medical/medbay/central) "duz" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -89335,8 +83831,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -89349,8 +83843,6 @@ /area/hallway/secondary/construction) "duB" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/item/device/radio/intercom{ @@ -89365,7 +83857,6 @@ "duC" = ( /obj/machinery/power/smes, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/light/small{ @@ -89461,8 +83952,6 @@ "duP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -89472,7 +83961,6 @@ /area/maintenance/port) "duQ" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -89487,8 +83975,6 @@ /area/science/mixing) "duR" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -89498,8 +83984,6 @@ /area/science/mixing) "duS" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -89534,8 +84018,6 @@ /obj/item/target/syndicate, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/bot, @@ -89567,8 +84049,6 @@ /area/crew_quarters/heads/hor) "dva" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/start/research_director, @@ -89615,8 +84095,6 @@ /area/science/robotics/lab) "dve" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/stripes/line{ @@ -89627,8 +84105,6 @@ "dvf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -89638,8 +84114,6 @@ /area/science/robotics/lab) "dvg" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -89649,8 +84123,6 @@ /area/science/robotics/lab) "dvh" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/stripes/line{ @@ -89688,7 +84160,6 @@ /area/science/robotics/lab) "dvk" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -89701,8 +84172,6 @@ "dvl" = ( /obj/structure/filingcabinet/chestdrawer, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/button/door{ @@ -89722,13 +84191,9 @@ /area/medical/genetics) "dvm" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -89841,8 +84306,6 @@ /area/medical/genetics) "dvz" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -89864,7 +84327,6 @@ /area/medical/medbay/central) "dvB" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -89883,8 +84345,6 @@ "dvC" = ( /obj/machinery/disposal/bin, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -89895,18 +84355,12 @@ /area/crew_quarters/heads/cmo) "dvD" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -89918,8 +84372,6 @@ "dvE" = ( /obj/structure/table/glass, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/paper_bin, @@ -89931,13 +84383,9 @@ "dvF" = ( /obj/structure/table/glass, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/item/folder/blue{ @@ -89955,8 +84403,6 @@ /obj/machinery/computer/med_data/laptop, /obj/structure/table/glass, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/side{ @@ -89966,7 +84412,6 @@ /area/crew_quarters/heads/cmo) "dvH" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -90013,8 +84458,6 @@ /area/maintenance/starboard/aft) "dvO" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/decal/cleanable/dirt, @@ -90028,8 +84471,6 @@ /area/maintenance/starboard/aft) "dvP" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -90043,8 +84484,6 @@ /area/maintenance/starboard/aft) "dvQ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -90055,13 +84494,9 @@ /area/maintenance/starboard/aft) "dvR" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -90069,8 +84504,6 @@ /area/maintenance/starboard/aft) "dvS" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -90081,8 +84514,6 @@ /area/maintenance/starboard/aft) "dvT" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -90092,8 +84523,6 @@ /area/maintenance/starboard/aft) "dvU" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -90108,8 +84537,6 @@ /area/maintenance/starboard/aft) "dvV" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -90122,13 +84549,9 @@ /area/maintenance/starboard/aft) "dvW" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/decal/cleanable/dirt, @@ -90140,13 +84563,9 @@ /area/maintenance/starboard/aft) "dvX" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -90160,8 +84579,6 @@ /area/maintenance/starboard/aft) "dvY" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -90172,8 +84589,6 @@ /area/maintenance/starboard/aft) "dvZ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -90189,8 +84604,6 @@ req_access_txt = "10" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -90206,7 +84619,6 @@ /area/maintenance/solars/starboard/aft) "dwb" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/lattice/catwalk, @@ -90307,8 +84719,6 @@ /area/science/mixing) "dwq" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -90337,8 +84747,6 @@ /area/science/misc_lab/range) "dwu" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -90372,8 +84780,6 @@ /area/crew_quarters/heads/hor) "dwy" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/camera{ @@ -90387,8 +84793,6 @@ /area/crew_quarters/heads/hor) "dwz" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/whitepurple/corner, @@ -90446,8 +84850,6 @@ /area/science/robotics/lab) "dwE" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -90491,8 +84893,6 @@ "dwL" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/centcom{ @@ -90522,8 +84922,6 @@ "dwP" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance_hatch{ @@ -90552,8 +84950,6 @@ /area/crew_quarters/heads/cmo) "dwR" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -90648,8 +85044,6 @@ /area/medical/medbay/central) "dxa" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -90717,8 +85111,6 @@ /area/maintenance/starboard/aft) "dxi" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -90766,8 +85158,7 @@ /area/maintenance/solars/starboard/aft) "dxm" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/lattice/catwalk, /turf/open/space, @@ -90822,8 +85213,6 @@ /area/science/research/abandoned) "dxw" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -90877,8 +85266,6 @@ /area/science/mixing) "dxz" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -90907,8 +85294,6 @@ "dxD" = ( /obj/machinery/door/firedoor/heavy, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -91001,8 +85386,6 @@ "dxK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -91083,8 +85466,6 @@ /area/medical/morgue) "dxT" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light_switch{ @@ -91165,8 +85546,6 @@ /area/maintenance/department/medical/morgue) "dyd" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -91189,8 +85568,6 @@ /area/crew_quarters/heads/cmo) "dyf" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/vending/wallmed{ @@ -91304,8 +85681,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -91320,8 +85695,6 @@ /area/security/detectives_office/private_investigators_office) "dyu" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/lattice/catwalk, @@ -91385,8 +85758,6 @@ /area/science/mixing) "dyA" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/start/scientist, @@ -91413,8 +85784,6 @@ /area/science/storage) "dyE" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -91515,8 +85884,6 @@ /area/science/robotics/lab) "dyP" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -91561,8 +85928,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -91592,8 +85957,6 @@ "dyZ" = ( /obj/effect/decal/cleanable/blood/old, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -91633,8 +85996,6 @@ "dzh" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -91653,8 +86014,6 @@ "dzk" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/spawner/structure/window/reinforced/tinted, @@ -91667,15 +86026,12 @@ req_access_txt = "40" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/cmo, /area/crew_quarters/heads/cmo) "dzm" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced/tinted, @@ -91721,7 +86077,6 @@ /area/crew_quarters/theatre/abandoned) "dzr" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -91790,8 +86145,6 @@ /area/security/detectives_office/private_investigators_office) "dzz" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -91819,8 +86172,7 @@ /area/security/detectives_office/private_investigators_office) "dzD" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/power/solar{ id = "aftstarboard"; @@ -91900,8 +86252,6 @@ /area/science/mixing) "dzL" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance_hatch{ @@ -91998,8 +86348,6 @@ /area/science/storage) "dzS" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -92032,7 +86380,6 @@ /area/science/storage) "dzW" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/computer/rdservercontrol, @@ -92055,13 +86402,9 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/vault{ @@ -92074,8 +86417,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ @@ -92092,8 +86433,6 @@ req_access_txt = "30" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ @@ -92106,8 +86445,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whitepurple/corner{ @@ -92119,14 +86456,10 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -92140,7 +86473,6 @@ "dAd" = ( /obj/machinery/disposal/bin, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -92157,13 +86489,9 @@ /area/science/robotics/lab) "dAe" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/decal/cleanable/dirt, @@ -92257,13 +86585,9 @@ /area/medical/morgue) "dAo" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -92275,8 +86599,6 @@ "dAp" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -92287,8 +86609,6 @@ /area/medical/morgue) "dAq" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -92299,8 +86619,6 @@ "dAr" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/start/medical_doctor, @@ -92313,8 +86631,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/old, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/blobstart, @@ -92325,8 +86641,6 @@ /area/medical/morgue) "dAt" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -92334,8 +86648,6 @@ /area/medical/morgue) "dAu" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light_switch{ @@ -92357,8 +86669,6 @@ "dAv" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/centcom{ @@ -92378,8 +86688,6 @@ /area/maintenance/department/medical/morgue) "dAw" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -92391,8 +86699,6 @@ /area/maintenance/department/medical/morgue) "dAx" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/blobstart, @@ -92404,8 +86710,6 @@ "dAy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -92416,18 +86720,12 @@ /area/maintenance/department/medical/morgue) "dAz" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -92472,8 +86770,6 @@ /area/crew_quarters/heads/cmo) "dAF" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -92493,8 +86789,6 @@ /area/maintenance/starboard/aft) "dAH" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -92511,8 +86805,6 @@ /area/crew_quarters/theatre/abandoned) "dAK" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -92561,8 +86853,6 @@ /area/security/detectives_office/private_investigators_office) "dAR" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -92600,18 +86890,12 @@ /area/security/detectives_office/private_investigators_office) "dAW" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/lattice/catwalk, @@ -92619,26 +86903,19 @@ /area/solar/starboard/aft) "dAX" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/aft) "dAY" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/lattice/catwalk, @@ -92714,8 +86991,6 @@ /area/science/mixing) "dBi" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -92751,8 +87026,6 @@ /area/science/mixing) "dBn" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -92763,8 +87036,6 @@ /area/science/storage) "dBo" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -92798,7 +87069,6 @@ /area/science/storage) "dBs" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -92814,13 +87084,9 @@ req_access_txt = "30" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/vault{ @@ -92829,7 +87095,6 @@ /area/science/server) "dBu" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -92843,8 +87108,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -92873,8 +87136,6 @@ /area/science/robotics/lab) "dBx" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -92956,8 +87217,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -93045,8 +87304,6 @@ "dBR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -93127,8 +87384,6 @@ /area/crew_quarters/theatre/abandoned) "dCb" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/wood, @@ -93160,7 +87415,6 @@ /area/crew_quarters/theatre/abandoned) "dCf" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -93174,8 +87428,6 @@ /area/security/detectives_office/private_investigators_office) "dCg" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/landmark/xeno_spawn, @@ -93301,13 +87553,9 @@ /area/science/mixing) "dCt" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/blobstart, @@ -93318,8 +87566,6 @@ /area/science/mixing) "dCu" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -93334,8 +87580,6 @@ "dCv" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -93360,8 +87604,6 @@ /area/science/mixing) "dCw" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -93377,8 +87619,6 @@ /area/science/mixing) "dCx" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -93391,18 +87631,12 @@ /area/science/mixing) "dCy" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -93410,8 +87644,6 @@ /area/science/mixing) "dCz" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -93421,8 +87653,6 @@ /area/science/mixing) "dCA" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -93443,8 +87673,6 @@ name = "Toxins Lab Shutters" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -93460,16 +87688,12 @@ /area/science/mixing) "dCC" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -93479,8 +87703,6 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/bot, @@ -93490,8 +87712,6 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -93502,8 +87722,6 @@ "dCF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -93511,8 +87729,6 @@ /area/science/storage) "dCG" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/delivery, @@ -93564,13 +87780,9 @@ /area/science/research) "dCL" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -93581,7 +87793,6 @@ /area/science/research) "dCM" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -93609,8 +87820,6 @@ /area/science/robotics/lab) "dCO" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -93744,14 +87953,10 @@ /area/maintenance/department/medical/morgue) "dDg" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/vault{ @@ -93808,8 +88013,6 @@ /area/medical/medbay/central) "dDn" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitegreen/side, @@ -93829,13 +88032,9 @@ /area/maintenance/starboard/aft) "dDq" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/decal/cleanable/dirt, @@ -93854,8 +88053,6 @@ req_access_txt = "12" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -93872,8 +88069,6 @@ /area/crew_quarters/theatre/abandoned) "dDs" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -93883,8 +88078,6 @@ /area/crew_quarters/theatre/abandoned) "dDt" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -93896,8 +88089,6 @@ "dDu" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -94088,8 +88279,6 @@ /area/science/mixing) "dDR" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -94130,8 +88319,6 @@ /area/science/mixing) "dDV" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -94239,8 +88426,6 @@ /area/science/research) "dEi" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -94248,8 +88433,6 @@ /area/science/research) "dEj" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -94293,8 +88476,6 @@ "dEm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance_hatch{ @@ -94317,8 +88498,6 @@ "dEo" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/virology{ @@ -94449,8 +88628,6 @@ /area/science/mixing) "dED" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance_hatch{ @@ -94469,8 +88646,6 @@ /area/maintenance/port/aft) "dEE" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -94511,8 +88686,6 @@ req_access_txt = "47" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -94535,8 +88708,6 @@ /area/maintenance/port/aft) "dEK" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -94606,24 +88777,18 @@ /area/hallway/primary/aft) "dES" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, /area/hallway/primary/aft) "dET" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -94635,8 +88800,6 @@ /area/hallway/primary/aft) "dEU" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -94651,8 +88814,6 @@ req_access_txt = "12" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -94668,8 +88829,6 @@ /area/maintenance/aft) "dEW" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -94681,8 +88840,6 @@ /area/maintenance/aft) "dEX" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -94692,8 +88849,6 @@ /area/maintenance/aft) "dEY" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -94704,8 +88859,6 @@ /area/maintenance/aft) "dEZ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -94719,8 +88872,6 @@ /area/maintenance/aft) "dFa" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -94733,29 +88884,21 @@ /area/maintenance/aft) "dFb" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, /area/maintenance/aft) "dFc" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/decal/cleanable/dirt, @@ -94783,8 +88926,6 @@ /area/maintenance/aft) "dFe" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/rack, @@ -94799,8 +88940,6 @@ /area/maintenance/aft) "dFf" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/blobstart, @@ -94812,13 +88951,9 @@ /area/maintenance/aft) "dFg" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -94830,8 +88965,6 @@ /area/maintenance/aft) "dFh" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -94861,8 +88994,6 @@ /area/medical/medbay/central) "dFk" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -95113,8 +89244,6 @@ /area/maintenance/port/aft) "dFQ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -95159,8 +89288,6 @@ "dFV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -95226,8 +89353,6 @@ /area/science/research) "dGf" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -95253,13 +89378,9 @@ /area/maintenance/port/aft) "dGi" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -95269,8 +89390,6 @@ /area/maintenance/port/aft) "dGj" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -95281,8 +89400,6 @@ /area/maintenance/port/aft) "dGk" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -95292,8 +89409,6 @@ /area/maintenance/port/aft) "dGl" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -95301,13 +89416,9 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/delivery, @@ -95315,8 +89426,6 @@ /area/maintenance/port/aft) "dGm" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -95327,8 +89436,6 @@ /area/maintenance/port/aft) "dGn" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -95344,8 +89451,6 @@ req_access_txt = "12" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -95361,8 +89466,6 @@ /area/maintenance/port/aft) "dGp" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -95374,8 +89477,6 @@ /area/hallway/primary/aft) "dGq" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -95389,8 +89490,6 @@ /area/hallway/primary/aft) "dGr" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -95496,8 +89595,6 @@ /area/maintenance/aft) "dGD" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/decal/cleanable/dirt, @@ -95508,8 +89605,6 @@ /area/maintenance/aft) "dGE" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -95519,8 +89614,6 @@ /area/maintenance/aft) "dGF" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -95569,8 +89662,6 @@ /area/maintenance/aft) "dGL" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/decal/cleanable/dirt, @@ -95581,8 +89672,6 @@ /area/maintenance/aft) "dGM" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -95594,8 +89683,6 @@ /area/maintenance/aft) "dGN" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance_hatch{ @@ -95615,8 +89702,6 @@ /area/maintenance/aft) "dGO" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, @@ -95626,23 +89711,15 @@ /area/medical/medbay/central) "dGP" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/lightsout, @@ -95653,13 +89730,9 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/bot, @@ -95667,8 +89740,6 @@ /area/medical/medbay/central) "dGQ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -95682,8 +89753,6 @@ "dGR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance_hatch{ @@ -95703,8 +89772,6 @@ /area/maintenance/starboard/aft) "dGS" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -95715,8 +89782,6 @@ /area/maintenance/starboard/aft) "dGT" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -95726,8 +89791,6 @@ /area/maintenance/starboard/aft) "dGU" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -95738,8 +89801,6 @@ /area/maintenance/starboard/aft) "dGV" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -95750,8 +89811,6 @@ /area/maintenance/starboard/aft) "dGW" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -95761,8 +89820,6 @@ /area/maintenance/starboard/aft) "dGX" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/decal/cleanable/dirt, @@ -95914,14 +89971,10 @@ "dHt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -95929,8 +89982,6 @@ "dHu" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -95940,8 +89991,6 @@ /area/maintenance/port/aft) "dHv" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -95952,8 +90001,6 @@ "dHw" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -95964,13 +90011,9 @@ "dHx" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -95979,8 +90022,6 @@ "dHy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -95993,8 +90034,6 @@ /area/maintenance/port/aft) "dHz" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -96049,16 +90088,12 @@ icon_state = "pipe-c" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/redyellow, /area/science/research) "dHF" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -96071,8 +90106,6 @@ /area/science/research) "dHG" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -96101,8 +90134,6 @@ /area/maintenance/port/aft) "dHJ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -96112,8 +90143,6 @@ "dHK" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_command{ @@ -96194,8 +90223,6 @@ /area/medical/medbay/central) "dHS" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -96284,8 +90311,6 @@ dir = 6 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/delivery, @@ -96298,8 +90323,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -96311,8 +90334,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/side{ @@ -96322,8 +90343,6 @@ "dIf" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/neutral/side, @@ -96359,8 +90378,6 @@ "dIk" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -96420,8 +90437,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/redyellow, @@ -96468,8 +90483,6 @@ /area/maintenance/port/aft) "dIv" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -96497,8 +90510,6 @@ /area/security/checkpoint/customs) "dIx" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light_switch{ @@ -96645,8 +90656,6 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/barricade/wooden, @@ -96699,8 +90708,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/redyellow, @@ -96737,8 +90744,6 @@ /area/maintenance/port/aft) "dIY" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/blobstart, @@ -96758,8 +90763,6 @@ /area/security/checkpoint/customs) "dJa" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -96830,8 +90833,6 @@ "dJn" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -96870,7 +90871,6 @@ /area/medical/virology) "dJq" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -96878,7 +90878,6 @@ /area/medical/virology) "dJr" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -96886,11 +90885,9 @@ /area/medical/virology) "dJs" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -96925,8 +90922,6 @@ "dJx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/grimy, @@ -96966,7 +90961,6 @@ "dJE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plasteel/neutral/side{ @@ -96977,8 +90971,6 @@ "dJF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -96986,13 +90978,9 @@ /area/maintenance/port/aft) "dJG" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -97031,7 +91019,6 @@ pixel_y = 24 }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plasteel/neutral/side{ @@ -97072,8 +91059,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/side, @@ -97107,8 +91092,6 @@ /area/maintenance/port/aft) "dJT" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -97120,7 +91103,6 @@ "dJU" = ( /obj/machinery/computer/card, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -97139,18 +91121,12 @@ /area/security/checkpoint/customs) "dJV" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/neutral, @@ -97160,8 +91136,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -97170,8 +91144,6 @@ "dJX" = ( /obj/structure/table/reinforced, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/folder/blue, @@ -97181,13 +91153,9 @@ "dJY" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/door/window/brigdoor/southright{ @@ -97252,8 +91220,6 @@ /area/medical/virology) "dKf" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -97273,7 +91239,6 @@ /area/medical/virology) "dKh" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -97288,8 +91253,6 @@ /area/medical/virology) "dKj" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/twohanded/required/kirbyplants/random, @@ -97333,8 +91296,6 @@ /area/medical/virology) "dKo" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/filingcabinet/chestdrawer, @@ -97378,8 +91339,6 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/grimy, @@ -97420,8 +91379,6 @@ "dKB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -97450,8 +91407,6 @@ "dKF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -97477,8 +91432,6 @@ /area/maintenance/port/aft) "dKI" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance_hatch{ @@ -97487,8 +91440,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -97505,8 +91456,6 @@ /area/maintenance/port/aft) "dKK" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -97594,8 +91543,6 @@ /area/medical/virology) "dKW" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -97608,8 +91555,6 @@ /area/medical/virology) "dKX" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -97623,8 +91568,6 @@ "dKY" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -97653,18 +91596,12 @@ /area/medical/virology) "dKZ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/turf_decal/stripes/line{ @@ -97677,18 +91614,12 @@ /area/medical/virology) "dLa" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/light/small{ @@ -97709,8 +91640,6 @@ req_access_txt = "39" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -97723,8 +91652,6 @@ /area/medical/virology) "dLc" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light_switch{ @@ -97740,13 +91667,9 @@ /area/medical/virology) "dLd" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -97792,8 +91715,6 @@ /area/medical/virology) "dLi" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -97814,8 +91735,6 @@ /area/medical/virology) "dLl" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/bed, @@ -97919,13 +91838,9 @@ "dLz" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -97935,8 +91850,6 @@ /area/maintenance/port/aft) "dLA" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -97947,8 +91860,6 @@ "dLB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -97959,13 +91870,9 @@ "dLC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -97976,29 +91883,21 @@ /area/maintenance/port/aft) "dLD" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plating, /area/maintenance/port/aft) "dLE" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -98008,8 +91907,6 @@ /area/maintenance/port/aft) "dLF" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -98022,8 +91919,6 @@ /area/maintenance/port/aft) "dLG" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -98034,13 +91929,9 @@ /area/maintenance/port/aft) "dLH" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -98051,8 +91942,6 @@ /area/maintenance/port/aft) "dLI" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -98060,8 +91949,6 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/neutral/side{ @@ -98071,8 +91958,6 @@ /area/maintenance/port/aft) "dLJ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -98083,8 +91968,6 @@ /area/maintenance/port/aft) "dLK" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -98095,8 +91978,6 @@ /area/maintenance/port/aft) "dLL" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -98110,8 +91991,6 @@ /area/maintenance/port/aft) "dLM" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -98123,8 +92002,6 @@ /area/maintenance/port/aft) "dLN" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -98137,13 +92014,9 @@ /area/maintenance/port/aft) "dLO" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -98153,8 +92026,6 @@ "dLQ" = ( /obj/structure/table/reinforced, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/storage/box/ids, @@ -98358,21 +92229,15 @@ /area/medical/virology) "dMj" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/green, /area/medical/virology) "dMk" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whitegreen/corner{ @@ -98386,8 +92251,6 @@ req_access_txt = "39" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -98400,8 +92263,6 @@ /area/medical/virology) "dMm" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whitegreen/corner{ @@ -98410,8 +92271,6 @@ /area/medical/virology) "dMn" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -98419,18 +92278,12 @@ /area/medical/virology) "dMo" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -98440,8 +92293,6 @@ /area/medical/virology) "dMp" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whitegreen/corner, @@ -98452,8 +92303,6 @@ req_access_txt = "39" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -98466,8 +92315,6 @@ /area/medical/virology) "dMr" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light_switch{ @@ -98480,13 +92327,9 @@ /area/medical/virology) "dMs" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/landmark/start/virologist, @@ -98534,8 +92377,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/blood/splatter, @@ -98568,8 +92409,6 @@ "dMD" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -98590,8 +92429,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -98643,8 +92480,6 @@ /area/maintenance/port/aft) "dML" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -98677,8 +92512,6 @@ /area/hallway/secondary/exit/departure_lounge) "dMP" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance_hatch{ @@ -98702,7 +92535,6 @@ "dMR" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -98710,7 +92542,6 @@ /area/hallway/secondary/exit/departure_lounge) "dMS" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -98870,8 +92701,6 @@ /area/medical/virology) "dNi" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -98910,8 +92739,6 @@ /area/medical/virology) "dNn" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -98933,8 +92760,6 @@ /area/medical/virology) "dNq" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -98956,7 +92781,6 @@ "dNt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -98973,8 +92797,6 @@ "dNu" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/wood{ @@ -98983,16 +92805,12 @@ /area/library/abandoned) "dNv" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/wood, /area/library/abandoned) "dNw" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/grimy, @@ -99000,8 +92818,6 @@ "dNx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/grimy, @@ -99041,8 +92857,6 @@ /area/library/abandoned) "dND" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -99059,8 +92873,6 @@ "dNG" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -99166,8 +92978,6 @@ /area/medical/virology) "dOb" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/green, @@ -99192,8 +93002,6 @@ /obj/item/clothing/neck/stethoscope, /obj/structure/table, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/storage/box/donkpockets, @@ -99225,8 +93033,6 @@ /area/medical/virology) "dOj" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -99269,8 +93075,6 @@ "dOq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/side{ @@ -99293,8 +93097,6 @@ /area/chapel/office) "dOs" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -99361,8 +93163,6 @@ /area/chapel/main) "dOy" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -99418,8 +93218,6 @@ /area/chapel/main) "dOF" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -99430,8 +93228,6 @@ /area/hallway/secondary/exit/departure_lounge) "dOG" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, @@ -99443,13 +93239,9 @@ /area/hallway/secondary/exit/departure_lounge) "dOH" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -99459,8 +93251,6 @@ /area/hallway/secondary/exit/departure_lounge) "dOI" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -99470,8 +93260,6 @@ /area/hallway/secondary/exit/departure_lounge) "dOJ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -99549,11 +93337,9 @@ /area/shuttle/escape) "dOV" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -99561,11 +93347,9 @@ /area/medical/virology) "dOW" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -99573,11 +93357,9 @@ /area/medical/virology) "dOX" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -99585,7 +93367,6 @@ /area/medical/virology) "dOY" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -99602,13 +93383,9 @@ /area/medical/virology) "dPa" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/neutral, @@ -99625,7 +93402,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/whitegreen/corner{ @@ -99685,8 +93461,6 @@ /area/maintenance/port/aft) "dPj" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/side{ @@ -99695,8 +93469,6 @@ /area/maintenance/port/aft) "dPk" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -99729,8 +93501,6 @@ /area/chapel/main) "dPo" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -99804,8 +93574,6 @@ /area/hallway/secondary/exit/departure_lounge) "dPw" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -99863,8 +93631,6 @@ "dPE" = ( /obj/structure/table/glass, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/clothing/gloves/color/latex, @@ -99892,8 +93658,6 @@ /area/medical/virology) "dPG" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/computer/pandemic, @@ -99920,8 +93684,6 @@ /area/medical/virology) "dPJ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, @@ -99949,8 +93711,6 @@ /area/medical/virology) "dPM" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/lightsout, @@ -100028,8 +93788,6 @@ /area/library/abandoned) "dPW" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -100041,8 +93799,6 @@ "dPX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plating, @@ -100062,8 +93818,6 @@ /area/chapel/office) "dPZ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/start/chaplain, @@ -100092,8 +93846,6 @@ /area/chapel/main) "dQd" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/lightsout, @@ -100145,8 +93897,6 @@ /area/hallway/secondary/exit/departure_lounge) "dQk" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/delivery, @@ -100212,8 +93962,6 @@ }, /obj/structure/table/glass, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/reagentgrinder{ @@ -100235,8 +93983,6 @@ /area/medical/virology) "dQv" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitegreen/corner{ @@ -100255,8 +94001,6 @@ /area/medical/virology) "dQy" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -100276,7 +94020,6 @@ /area/medical/virology) "dQA" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -100295,21 +94038,15 @@ /area/medical/virology) "dQC" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/neutral, /area/medical/virology) "dQD" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -100385,8 +94122,6 @@ "dQP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -100403,8 +94138,6 @@ /area/maintenance/port/aft) "dQR" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -100471,8 +94204,6 @@ /area/chapel/main) "dQZ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/delivery, @@ -100552,18 +94283,12 @@ /area/shuttle/escape) "dRl" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/smartfridge/chemistry/virology/preloaded, @@ -100574,8 +94299,6 @@ /area/medical/virology) "dRm" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whitegreen/side{ @@ -100584,18 +94307,12 @@ /area/medical/virology) "dRn" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -100606,8 +94323,6 @@ /area/medical/virology) "dRo" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/holopad, @@ -100619,8 +94334,6 @@ /area/medical/virology) "dRp" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -100630,18 +94343,12 @@ /area/medical/virology) "dRq" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -100656,8 +94363,6 @@ /area/medical/virology) "dRr" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -100676,18 +94381,12 @@ req_access_txt = "39" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -100706,8 +94405,6 @@ /area/medical/virology) "dRt" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -100723,13 +94420,9 @@ /area/medical/virology) "dRu" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -100753,7 +94446,6 @@ /area/medical/virology) "dRx" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -100767,13 +94459,9 @@ req_access_txt = "39" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/stripes/line{ @@ -100786,7 +94474,6 @@ /area/medical/virology) "dRz" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -100879,8 +94566,6 @@ /area/library/abandoned) "dRL" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -100899,8 +94584,6 @@ /area/chapel/office) "dRN" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/blobstart, @@ -101039,8 +94722,6 @@ pixel_x = -23 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/book/manual/wiki/infections, @@ -101066,8 +94747,6 @@ /area/medical/virology) "dSe" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -101083,8 +94762,6 @@ /area/medical/virology) "dSh" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -101105,8 +94782,6 @@ /area/medical/virology) "dSk" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -101139,8 +94814,6 @@ /area/medical/virology) "dSo" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitegreen/side{ @@ -101253,8 +94926,6 @@ /area/maintenance/port/aft) "dSE" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -101268,8 +94939,6 @@ pixel_y = -26 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -101340,8 +95009,6 @@ /area/hallway/secondary/exit/departure_lounge) "dSO" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -101430,8 +95097,6 @@ "dSV" = ( /obj/structure/table/glass, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/storage/box/beakers{ @@ -101457,8 +95122,6 @@ /area/medical/virology) "dSX" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/disposal/bin, @@ -101486,8 +95149,6 @@ /area/medical/virology) "dTa" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -101523,13 +95184,9 @@ /area/medical/virology) "dTd" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -101537,8 +95194,6 @@ /area/medical/virology) "dTe" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -101553,18 +95208,12 @@ req_access_txt = "39" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/stripes/line{ @@ -101580,13 +95229,9 @@ /area/medical/virology) "dTg" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -101598,27 +95243,19 @@ /area/medical/virology) "dTh" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/green, /area/medical/virology) "dTi" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/holopad, @@ -101631,16 +95268,12 @@ /area/medical/virology) "dTj" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/green, @@ -101648,13 +95281,9 @@ "dTk" = ( /obj/structure/table/glass, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/folder/white, @@ -101666,8 +95295,6 @@ /area/medical/virology) "dTl" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -101692,8 +95319,6 @@ req_access_txt = "27" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -101795,7 +95420,6 @@ "dTz" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -101803,7 +95427,6 @@ /area/medical/virology) "dTA" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/white, @@ -101812,7 +95435,6 @@ /area/medical/virology) "dTB" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/white, @@ -101821,8 +95443,6 @@ /area/medical/virology) "dTC" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -101847,8 +95467,6 @@ /area/medical/virology) "dTF" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/sink{ @@ -101868,8 +95486,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitegreen/corner{ @@ -101893,8 +95509,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitegreen/corner, @@ -101902,8 +95516,6 @@ "dTJ" = ( /obj/structure/table/glass, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/newscaster{ @@ -101968,8 +95580,6 @@ "dTP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -101995,8 +95605,6 @@ pixel_y = 26 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -102013,7 +95621,6 @@ pixel_y = 3 }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plasteel{ @@ -102023,8 +95630,6 @@ /area/chapel/main) "dTU" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel{ @@ -102034,8 +95639,6 @@ /area/chapel/main) "dTV" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel{ @@ -102045,8 +95648,6 @@ /area/chapel/main) "dTW" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -102144,8 +95745,6 @@ /area/medical/virology) "dUh" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table, @@ -102187,8 +95786,6 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -102203,8 +95800,6 @@ "dUn" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -102214,8 +95809,6 @@ /area/maintenance/port/aft) "dUo" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -102223,8 +95816,6 @@ "dUp" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/side, @@ -102232,13 +95823,9 @@ "dUq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/blue/side, @@ -102246,8 +95833,6 @@ "dUr" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/blue/side, @@ -102255,22 +95840,16 @@ "dUs" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, /area/maintenance/port/aft) "dUt" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/blue/side, @@ -102278,8 +95857,6 @@ "dUu" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/neutral/side, @@ -102303,8 +95880,6 @@ pixel_x = 26 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -102440,8 +96015,6 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitegreen/side{ @@ -102457,8 +96030,6 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitegreen/side{ @@ -102486,7 +96057,6 @@ "dUS" = ( /obj/machinery/power/smes, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/light/small{ @@ -102499,8 +96069,6 @@ /area/maintenance/solars/port/aft) "dUT" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/camera{ @@ -102523,8 +96091,6 @@ "dUV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -102586,8 +96152,6 @@ req_access_txt = "18" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/barricade/wooden, @@ -102634,8 +96198,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -102742,8 +96304,6 @@ /obj/structure/chair/office/light, /obj/effect/decal/cleanable/greenglow, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitegreen/side{ @@ -102760,8 +96320,6 @@ }, /obj/structure/chair/office/light, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitegreen/side{ @@ -102784,24 +96342,19 @@ "dVv" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/space, /area/solar/port/aft) "dVw" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/space, /area/solar/port/aft) "dVx" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/external{ @@ -102820,8 +96373,6 @@ "dVy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -102829,13 +96380,9 @@ /area/maintenance/solars/port/aft) "dVz" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -102849,7 +96396,6 @@ dir = 1 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/effect/landmark/blobstart, @@ -102857,13 +96403,9 @@ /area/maintenance/solars/port/aft) "dVB" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -102881,8 +96423,6 @@ req_access_txt = "10" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -102898,8 +96438,6 @@ /area/maintenance/solars/port/aft) "dVD" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -102936,8 +96474,6 @@ /area/maintenance/port/aft) "dVI" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -102974,8 +96510,6 @@ /area/chapel/office) "dVM" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -103063,8 +96597,6 @@ /area/hallway/secondary/exit/departure_lounge) "dVW" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -103144,8 +96676,6 @@ /obj/item/pen/red, /obj/effect/turf_decal/delivery, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -103216,8 +96746,6 @@ /area/maintenance/port/aft) "dWo" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/decal/cleanable/dirt, @@ -103229,8 +96757,6 @@ /area/maintenance/port/aft) "dWp" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/decal/cleanable/dirt, @@ -103277,8 +96803,6 @@ /area/chapel/office) "dWt" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -103350,8 +96874,6 @@ /area/hallway/secondary/exit/departure_lounge) "dWC" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -103466,8 +96988,6 @@ "dWR" = ( /obj/structure/rack, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -103506,8 +97026,6 @@ req_access_txt = "27" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -103555,8 +97073,6 @@ "dXa" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_security{ @@ -103574,7 +97090,6 @@ /area/security/checkpoint/checkpoint2) "dXb" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -103583,13 +97098,9 @@ "dXc" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/stripes/line{ @@ -103602,7 +97113,6 @@ /area/security/checkpoint/checkpoint2) "dXd" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -103615,11 +97125,9 @@ /area/security/checkpoint/checkpoint2) "dXf" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -103629,13 +97137,9 @@ "dXg" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/door/airlock/glass_security{ @@ -103652,11 +97156,9 @@ /area/security/checkpoint/checkpoint2) "dXh" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -103665,11 +97167,9 @@ /area/security/checkpoint/checkpoint2) "dXi" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -103677,7 +97177,6 @@ /area/security/checkpoint/checkpoint2) "dXj" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -103804,8 +97303,6 @@ "dXq" = ( /obj/structure/rack, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -103914,8 +97411,6 @@ /area/chapel/office) "dXv" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/grimy, @@ -104036,8 +97531,6 @@ /area/security/checkpoint/checkpoint2) "dXH" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -104056,8 +97549,6 @@ "dXJ" = ( /obj/structure/table/reinforced, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/folder/red, @@ -104093,8 +97584,6 @@ /area/security/checkpoint/checkpoint2) "dXO" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/red/side{ @@ -104212,8 +97701,6 @@ /area/maintenance/port/aft) "dYe" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/decal/cleanable/dirt, @@ -104224,13 +97711,9 @@ /area/maintenance/port/aft) "dYf" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -104241,8 +97724,6 @@ "dYg" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -104253,13 +97734,9 @@ "dYh" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/turf_decal/delivery, @@ -104267,8 +97744,6 @@ /area/maintenance/port/aft) "dYi" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -104278,13 +97753,9 @@ /area/maintenance/port/aft) "dYj" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -104295,8 +97766,6 @@ /area/maintenance/port/aft) "dYk" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/decal/cleanable/dirt, @@ -104357,7 +97826,6 @@ "dYs" = ( /obj/structure/table/reinforced, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/light{ @@ -104379,13 +97847,9 @@ /area/security/checkpoint/checkpoint2) "dYt" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -104396,13 +97860,9 @@ "dYu" = ( /obj/machinery/holopad, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/bot, @@ -104413,21 +97873,15 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/neutral, /area/security/checkpoint/checkpoint2) "dYw" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -104437,8 +97891,6 @@ /area/security/checkpoint/checkpoint2) "dYx" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side{ @@ -104448,8 +97900,6 @@ "dYy" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_security{ @@ -104466,8 +97916,6 @@ /area/security/checkpoint/checkpoint2) "dYz" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -104479,8 +97927,6 @@ /area/security/checkpoint/checkpoint2) "dYA" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -104490,18 +97936,12 @@ /area/security/checkpoint/checkpoint2) "dYB" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/neutral, @@ -104583,8 +98023,6 @@ /area/maintenance/port/aft) "dYO" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/twohanded/required/kirbyplants/random, @@ -104595,8 +98033,6 @@ /area/maintenance/port/aft) "dYP" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -104624,8 +98060,6 @@ /area/maintenance/port/aft) "dYS" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -104634,8 +98068,6 @@ /area/maintenance/port/aft) "dYT" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -104670,8 +98102,6 @@ /area/chapel/office) "dYW" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/grimy, @@ -104687,7 +98117,6 @@ pixel_y = 24 }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/grimy, @@ -104799,8 +98228,6 @@ "dZj" = ( /obj/machinery/computer/prisoner, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/red/side{ @@ -104853,13 +98280,9 @@ "dZp" = ( /obj/structure/table, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/item/restraints/handcuffs, @@ -104872,8 +98295,6 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side, @@ -104883,8 +98304,6 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/firealarm{ @@ -104903,12 +98322,10 @@ /area/security/checkpoint/checkpoint2) "dZs" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -104971,8 +98388,7 @@ /area/shuttle/escape) "dZB" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/power/solar{ id = "aftport"; @@ -105118,11 +98534,9 @@ "dZS" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -105130,7 +98544,6 @@ /area/security/checkpoint/checkpoint2) "dZT" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -105188,13 +98601,9 @@ /area/shuttle/escape) "eab" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/lattice/catwalk, @@ -105202,18 +98611,12 @@ /area/solar/port/aft) "eac" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/lattice/catwalk, @@ -105221,7 +98624,6 @@ /area/solar/port/aft) "ead" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/lattice/catwalk, @@ -105229,26 +98631,19 @@ /area/solar/port/aft) "eae" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/aft) "eaf" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/lattice/catwalk, @@ -105256,13 +98651,9 @@ /area/solar/port/aft) "eag" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/lattice/catwalk, @@ -105554,16 +98945,13 @@ /area/space) "eaV" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/aft) "eaW" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/lattice/catwalk, @@ -105599,13 +98987,9 @@ /area/chapel/main) "eba" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/lattice/catwalk, @@ -105613,13 +98997,9 @@ /area/solar/starboard/fore) "ebb" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/lattice/catwalk, @@ -105638,13 +99018,9 @@ /area/maintenance/solars/starboard/fore) "ebB" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/lattice/catwalk, @@ -105652,13 +99028,9 @@ /area/solar/port/fore) "ebC" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/lattice/catwalk, @@ -105666,13 +99038,9 @@ /area/solar/port/fore) "ebD" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/lattice/catwalk, @@ -105680,13 +99048,9 @@ /area/solar/starboard/aft) "ebE" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/lattice/catwalk, @@ -105723,8 +99087,6 @@ "ebP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ @@ -105734,8 +99096,6 @@ /area/engine/atmospherics_engine) "ebQ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/trinary/filter/critical{ @@ -105747,8 +99107,6 @@ /area/engine/atmospherics_engine) "ebR" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ @@ -105758,8 +99116,6 @@ /area/engine/atmospherics_engine) "ebS" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -105772,8 +99128,6 @@ /area/engine/atmospherics_engine) "ebT" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/stripes/line{ @@ -105791,8 +99145,6 @@ /area/hallway/primary/central) "ebV" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/device/radio/beacon, @@ -105822,8 +99174,6 @@ /area/maintenance/starboard/fore) "ebZ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/ai_slipper{ @@ -105914,8 +99264,6 @@ /area/hydroponics/garden/abandoned) "ecm" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -105961,8 +99309,6 @@ /area/crew_quarters/abandoned_gambling_den) "ecu" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -105975,8 +99321,6 @@ /area/maintenance/port/fore) "ecv" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -106035,8 +99379,6 @@ /area/crew_quarters/abandoned_gambling_den) "ecR" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -106152,8 +99494,6 @@ req_access_txt = "39" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -106767,8 +100107,6 @@ /area/security/execution/transfer) "efG" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/security{ @@ -106836,13 +100174,9 @@ /obj/structure/table/reinforced, /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/door/window/brigdoor/northright{ @@ -106864,8 +100198,6 @@ /area/security/warden) "efM" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/table/reinforced, @@ -106887,8 +100219,6 @@ /obj/item/clothing/under/rank/security/grey, /obj/item/clothing/under/rank/security/grey, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/item/storage/backpack/satchel/sec, @@ -107056,8 +100386,6 @@ req_access_txt = "5" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -107355,8 +100683,6 @@ dir = 9 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -107374,7 +100700,6 @@ name = "departures camera" }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/turf_decal/stripes/line{ @@ -107426,8 +100751,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -107445,8 +100768,6 @@ /area/hallway/secondary/exit/departure_lounge) "egM" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -107671,8 +100992,7 @@ "ehF" = ( /obj/machinery/power/rad_collector/anchored, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/circuit/green, /area/engine/supermatter) @@ -107685,8 +101005,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral, @@ -107742,13 +101060,9 @@ /area/maintenance/solars/starboard/aft) "eip" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -107764,21 +101078,16 @@ dir = 1 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) "eir" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/stripes/line{ @@ -107788,8 +101097,6 @@ /area/maintenance/solars/starboard/aft) "eis" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/external{ @@ -107808,8 +101115,6 @@ "eit" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -107827,7 +101132,6 @@ pixel_x = 26 }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/yellow/corner{ @@ -107848,21 +101152,16 @@ pixel_y = -26 }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/neutral/corner, /area/hallway/primary/starboard) "eiG" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/neutral/side{ @@ -107872,7 +101171,6 @@ "eiH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -107885,8 +101183,6 @@ /area/maintenance/starboard/aft) "eiI" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/neutral, @@ -107901,15 +101197,12 @@ pixel_x = 26 }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/neutral/corner, /area/hallway/primary/aft) "eiK" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -107935,8 +101228,6 @@ /area/hallway/secondary/command) "eiR" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -107952,8 +101243,6 @@ /area/hallway/secondary/command) "eiS" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -107974,8 +101263,6 @@ /area/crew_quarters/dorms) "eiZ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, @@ -107985,8 +101272,6 @@ /area/crew_quarters/dorms) "eja" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -107999,8 +101284,6 @@ /area/crew_quarters/dorms) "ejc" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -108121,8 +101404,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/airalarm{ @@ -108177,8 +101458,6 @@ req_access_txt = "12" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -108246,8 +101525,6 @@ "epm" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -108333,8 +101610,6 @@ /area/engine/supermatter) "epB" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/external{ @@ -108365,8 +101640,6 @@ /area/hallway/secondary/entry) "epD" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/external{ @@ -108387,8 +101660,6 @@ "epE" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_command{ @@ -108405,8 +101676,6 @@ /area/bridge) "epF" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/hatch{ @@ -108424,8 +101693,6 @@ "epG" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_security{ @@ -108473,8 +101740,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -108492,8 +101757,6 @@ req_access_txt = "10; 13" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -108555,8 +101818,6 @@ /area/science/research) "epN" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/external{ @@ -108587,8 +101848,6 @@ /area/hallway/secondary/exit/departure_lounge) "epQ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/external{ @@ -108719,8 +101978,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -108748,8 +102005,6 @@ /area/maintenance/department/medical) "eqt" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/event_spawn, @@ -108765,8 +102020,6 @@ "eqw" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/event_spawn, @@ -108778,8 +102031,6 @@ /area/hallway/secondary/entry) "eqy" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/event_spawn, @@ -108800,8 +102051,6 @@ /area/maintenance/port/fore) "eqB" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -108810,8 +102059,6 @@ /area/hallway/primary/fore) "eqC" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -108829,8 +102076,6 @@ /area/quartermaster/storage) "eqE" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -108899,8 +102144,6 @@ /area/hydroponics) "eqU" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -108911,8 +102154,6 @@ /area/hallway/primary/central) "eqV" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/event_spawn, @@ -108920,8 +102161,6 @@ /area/hallway/primary/central) "eqW" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -108934,8 +102173,6 @@ /area/engine/atmos) "eqY" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -108958,8 +102195,6 @@ /area/storage/tech) "erc" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -108979,8 +102214,6 @@ "erf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -108991,8 +102224,6 @@ /area/maintenance/port/fore) "erg" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/event_spawn, @@ -109002,8 +102233,6 @@ /area/security/brig) "eri" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/event_spawn, @@ -109017,8 +102246,6 @@ /area/security/detectives_office) "erk" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/event_spawn, @@ -109034,8 +102261,6 @@ /area/hallway/primary/port) "ern" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/event_spawn, @@ -109073,8 +102298,6 @@ /area/maintenance/starboard) "erv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -109087,8 +102310,6 @@ /area/library) "erx" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -109101,8 +102322,6 @@ /area/hallway/secondary/command) "ery" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -109187,8 +102406,6 @@ /area/crew_quarters/fitness/recreation) "erU" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -109226,8 +102443,6 @@ /area/maintenance/port) "erZ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/event_spawn, @@ -109235,8 +102450,6 @@ /area/medical/medbay/central) "esa" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -109254,8 +102467,6 @@ /area/science/research) "esc" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/event_spawn, @@ -109268,8 +102479,6 @@ /area/maintenance/starboard/aft) "esh" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -109295,8 +102504,6 @@ "esl" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/event_spawn, @@ -109304,8 +102511,6 @@ /area/science/research) "esm" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -109314,8 +102519,6 @@ /area/science/mixing) "esn" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/event_spawn, @@ -109410,7 +102613,6 @@ pixel_y = -26 }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/vault{ @@ -109431,12 +102633,19 @@ /turf/open/space/basic, /area/space) "YGJ" = ( +/obj/structure/reflector/double/anchored{ + dir = 5 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmospherics_engine) +"YGK" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 8 }, /obj/machinery/power/rad_collector/anchored, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/window/plasma/reinforced{ @@ -109444,13 +102653,12 @@ }, /turf/open/floor/circuit/green, /area/engine/supermatter) -"YGK" = ( +"YGL" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 4 }, /obj/machinery/power/rad_collector/anchored, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/structure/window/plasma/reinforced{ @@ -134458,9 +127666,9 @@ aaa aiW ajL ajL -alP +akQ ajL -akR +YGJ eqb eqc ard @@ -134724,7 +127932,7 @@ are asj ehy auD -YGJ +YGK avP axP ehJ @@ -135752,7 +128960,7 @@ ari asn ehy auG -YGK +YGL avR axT ehJ diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm index 36daa43402..74ffa97435 100644 --- a/_maps/map_files/MetaStation/MetaStation.dmm +++ b/_maps/map_files/MetaStation/MetaStation.dmm @@ -30,8 +30,7 @@ /area/space) "aah" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/power/tracker, /turf/open/floor/plating/airless, @@ -47,8 +46,6 @@ /area/space) "aak" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/lattice/catwalk, @@ -56,8 +53,7 @@ /area/solar/port/fore) "aal" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/power/solar{ id = "foreport"; @@ -72,13 +68,9 @@ /area/solar/port/fore) "aan" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/lattice/catwalk, @@ -86,18 +78,12 @@ /area/solar/port/fore) "aao" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/lattice/catwalk, @@ -105,7 +91,6 @@ /area/solar/port/fore) "aap" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/lattice/catwalk, @@ -117,26 +102,19 @@ /area/solar/port/fore) "aar" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) "aas" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/lattice/catwalk, @@ -144,13 +122,9 @@ /area/solar/port/fore) "aat" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/lattice/catwalk, @@ -178,7 +152,6 @@ "aay" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plating, @@ -197,8 +170,6 @@ /area/security/prison) "aaB" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/twohanded/required/kirbyplants{ @@ -218,8 +189,6 @@ /area/security/prison) "aaD" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/twohanded/required/kirbyplants, @@ -239,7 +208,6 @@ "aaF" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plating, @@ -248,26 +216,18 @@ /obj/machinery/hydroponics/constructable, /obj/item/seeds/ambrosia, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) "aaH" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, @@ -275,8 +235,6 @@ /area/security/prison) "aaI" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/floorgrime, @@ -284,13 +242,9 @@ "aaJ" = ( /obj/item/reagent_containers/glass/bucket, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -300,8 +254,6 @@ /obj/machinery/hydroponics/constructable, /obj/item/seeds/glowshroom, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/floorgrime, @@ -309,7 +261,6 @@ "aaL" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -320,8 +271,7 @@ /area/shuttle/pod_2) "aaN" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/power/tracker, /turf/open/floor/plating/airless, @@ -339,8 +289,6 @@ /area/security/prison) "aaQ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -382,8 +330,6 @@ /area/space) "aaY" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/lattice/catwalk, @@ -396,7 +342,6 @@ /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/yellow, @@ -412,7 +357,6 @@ "abc" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -423,8 +367,7 @@ /area/security/prison) "abf" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/lattice/catwalk, /turf/open/space, @@ -449,8 +392,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/freezer, @@ -460,8 +401,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/sink/kitchen{ @@ -473,8 +412,6 @@ /area/security/prison) "abj" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/easel, @@ -487,15 +424,11 @@ /obj/item/folder, /obj/item/paper/guides/jobs/hydroponics, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/pen, /obj/item/storage/crayons, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/floorgrime, @@ -520,14 +453,10 @@ /area/security/prison) "abo" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/floorgrime, @@ -535,8 +464,6 @@ "abp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/floorgrime, @@ -561,8 +488,6 @@ "abs" = ( /obj/machinery/washing_machine, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/barber{ @@ -586,8 +511,7 @@ /area/shuttle/pod_2) "abv" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/power/solar{ id = "forestarboard"; @@ -644,8 +568,6 @@ /area/security/prison) "abC" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/floorgrime, @@ -660,8 +582,6 @@ "abF" = ( /obj/structure/table, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -687,8 +607,6 @@ /area/security/prison) "abI" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/floorgrime, @@ -696,8 +614,6 @@ "abJ" = ( /obj/structure/window/reinforced, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/barber{ @@ -709,8 +625,6 @@ /obj/structure/bedsheetbin, /obj/structure/window/reinforced, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/barber{ @@ -733,13 +647,9 @@ /area/security/prison) "abO" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/lattice/catwalk, @@ -747,18 +657,12 @@ /area/solar/starboard/fore) "abP" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/lattice/catwalk, @@ -766,7 +670,6 @@ /area/solar/starboard/fore) "abQ" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/lattice/catwalk, @@ -778,26 +681,19 @@ /area/solar/starboard/fore) "abS" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/fore) "abT" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/lattice/catwalk, @@ -805,13 +701,9 @@ /area/solar/starboard/fore) "abU" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/lattice/catwalk, @@ -872,8 +764,6 @@ "aca" = ( /obj/structure/table, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -1004,16 +894,12 @@ /area/security/prison) "acr" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) "acs" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -1023,18 +909,12 @@ /area/security/prison) "act" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -1045,16 +925,12 @@ "acu" = ( /obj/machinery/holopad, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) "acv" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -1062,8 +938,6 @@ /area/security/prison) "acw" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/floorgrime, @@ -1196,8 +1070,6 @@ /area/security/prison) "acI" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -1285,8 +1157,6 @@ /area/security/prison) "acS" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/lattice/catwalk, @@ -1294,8 +1164,6 @@ /area/solar/port/fore) "acT" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/lattice/catwalk, @@ -1303,8 +1171,6 @@ /area/solar/port/fore) "acU" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/lattice/catwalk, @@ -1430,7 +1296,6 @@ pixel_y = 24 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/structure/closet/secure_closet/injection{ @@ -1475,8 +1340,6 @@ name = "Cell 2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -1509,8 +1372,6 @@ /area/security/prison) "adh" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/white, @@ -1521,8 +1382,6 @@ /obj/item/clothing/glasses/sunglasses/blindfold, /obj/item/clothing/mask/muzzle, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/revenantspawn, @@ -1575,8 +1434,6 @@ /area/security/execution/education) "adq" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/firealarm{ @@ -1625,8 +1482,6 @@ /area/security/prison) "adv" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -1690,8 +1545,6 @@ /area/security/prison) "adB" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/white, @@ -1811,8 +1664,6 @@ pixel_x = 26 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -1859,8 +1710,6 @@ /area/security/prison) "adS" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -1894,8 +1743,6 @@ /area/security/prison) "adW" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitered/side{ @@ -1921,7 +1768,6 @@ "aea" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/door/poddoor/preopen{ @@ -1933,11 +1779,9 @@ "aeb" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/door/poddoor/preopen{ @@ -1949,11 +1793,9 @@ "aec" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/door/poddoor/preopen{ @@ -1979,8 +1821,6 @@ req_access_txt = "10; 13" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -2033,8 +1873,6 @@ req_access_txt = "3" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -2063,8 +1901,6 @@ req_access_txt = "2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -2084,8 +1920,6 @@ req_access_txt = "2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/red/side{ @@ -2155,8 +1989,6 @@ "aew" = ( /obj/machinery/computer/secure_data, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -2207,8 +2039,6 @@ /area/solar/starboard/fore) "aeG" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -2256,8 +2086,6 @@ "aeK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/red/corner{ @@ -2266,8 +2094,6 @@ /area/security/prison) "aeL" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -2284,13 +2110,9 @@ /area/security/prison) "aeM" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -2303,8 +2125,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/corner{ @@ -2328,8 +2148,6 @@ pixel_y = 24 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/corner{ @@ -2342,8 +2160,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/computer/security/telescreen{ @@ -2362,13 +2178,9 @@ /area/security/prison) "aeQ" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -2380,13 +2192,9 @@ /area/security/prison) "aeR" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -2412,8 +2220,6 @@ pixel_y = 24 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/corner{ @@ -2422,8 +2228,6 @@ /area/security/prison) "aeT" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -2442,8 +2246,6 @@ "aeU" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light{ @@ -2458,8 +2260,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/corner{ @@ -2484,8 +2284,6 @@ pixel_y = 24 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/corner{ @@ -2504,15 +2302,12 @@ dir = 4 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/camera{ @@ -2526,8 +2321,6 @@ /area/security/prison) "aeY" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -2539,8 +2332,6 @@ /area/security/prison) "aeZ" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -2555,8 +2346,6 @@ /area/security/prison) "afa" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -2573,17 +2362,13 @@ /area/security/prison) "afb" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /turf/open/floor/plasteel/red/corner{ dir = 2 @@ -2592,12 +2377,9 @@ "afc" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plating, @@ -2615,9 +2397,7 @@ pixel_y = 32 }, /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /turf/open/floor/plasteel, /area/security/prison) @@ -2706,8 +2486,6 @@ dir = 6 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/black, @@ -2721,8 +2499,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/black, @@ -2844,8 +2620,6 @@ /area/holodeck/rec_center) "afE" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/external{ @@ -2874,8 +2648,6 @@ /area/security/prison) "afH" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -2922,8 +2694,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/red/corner{ @@ -2994,8 +2764,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/red/corner{ @@ -3132,11 +2900,9 @@ "age" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/door/poddoor/preopen{ @@ -3153,16 +2919,12 @@ /obj/item/book/manual/wiki/security_space_law, /obj/item/cartridge/detective, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black, /area/crew_quarters/heads/hos) "agg" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/black, @@ -3194,13 +2956,9 @@ /area/crew_quarters/heads/hos) "agk" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -3212,8 +2970,6 @@ pixel_y = 7 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black, @@ -3221,11 +2977,9 @@ "agm" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/door/poddoor/preopen{ @@ -3283,8 +3037,6 @@ /area/crew_quarters/fitness/recreation) "agt" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/neutral/corner{ @@ -3293,8 +3045,6 @@ /area/crew_quarters/fitness/recreation) "agu" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -3303,8 +3053,6 @@ /area/crew_quarters/fitness/recreation) "agv" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/camera{ @@ -3320,16 +3068,12 @@ /area/crew_quarters/fitness/recreation) "agw" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) "agx" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -3347,7 +3091,6 @@ pixel_y = 24 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -3369,20 +3112,15 @@ track = 0 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plating, /area/maintenance/solars/port/fore) "agC" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/stripes/line{ @@ -3418,8 +3156,6 @@ /obj/item/restraints/handcuffs, /obj/item/device/assembly/flash/handheld, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault, @@ -3441,8 +3177,6 @@ "agI" = ( /obj/structure/closet/secure_closet/brig, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault, @@ -3455,8 +3189,6 @@ /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_security{ @@ -3584,8 +3316,6 @@ /area/crew_quarters/heads/hos) "agX" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -3652,8 +3382,6 @@ /area/maintenance/fore) "ahf" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner{ @@ -3727,8 +3455,6 @@ /area/maintenance/solars/port/fore) "ahs" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -3737,7 +3463,6 @@ /area/maintenance/solars/port/fore) "aht" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/terminal, @@ -3779,8 +3504,6 @@ "ahy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/poddoor/preopen{ @@ -3829,21 +3552,15 @@ "ahD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/black, /area/ai_monitored/security/armory) "ahE" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/rack, @@ -3867,7 +3584,6 @@ pixel_y = -24 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/light, @@ -3881,13 +3597,9 @@ "ahG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/vault{ @@ -3947,8 +3659,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/vault, @@ -3959,16 +3669,12 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/carpet, /area/crew_quarters/heads/hos) "ahM" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -3976,8 +3682,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/carpet, @@ -3985,21 +3689,15 @@ "ahN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/carpet, /area/crew_quarters/heads/hos) "ahO" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/vault, @@ -4013,8 +3711,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -4044,8 +3740,6 @@ /area/maintenance/fore) "ahV" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/firealarm{ @@ -4194,7 +3888,6 @@ pixel_y = 3 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plating{ @@ -4203,13 +3896,9 @@ /area/maintenance/solars/port/fore) "aim" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -4220,11 +3909,9 @@ /area/maintenance/solars/port/fore) "ain" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/smes, @@ -4240,15 +3927,12 @@ "aiq" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plating, /area/security/brig) "air" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ @@ -4257,8 +3941,6 @@ /area/security/brig) "ais" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/small, @@ -4278,8 +3960,6 @@ req_access_txt = "3" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -4287,13 +3967,9 @@ "aiu" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/red/side{ @@ -4374,7 +4050,6 @@ "aiD" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plating, @@ -4382,7 +4057,6 @@ "aiE" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/door/poddoor/preopen{ @@ -4394,11 +4068,9 @@ "aiF" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -4411,8 +4083,6 @@ "aiG" = ( /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -4422,13 +4092,9 @@ req_access_txt = "58" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/carpet, @@ -4436,11 +4102,9 @@ "aiH" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -4453,7 +4117,6 @@ "aiI" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/door/poddoor/preopen{ @@ -4508,8 +4171,6 @@ /area/maintenance/fore) "aiQ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/extinguisher_cabinet{ @@ -4630,8 +4291,6 @@ /area/maintenance/disposal) "ajh" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -4693,8 +4352,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/red/side, @@ -4757,8 +4414,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -4774,7 +4429,6 @@ "ajx" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plating, @@ -4784,6 +4438,7 @@ pixel_y = 30 }, /obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) "ajz" = ( @@ -4794,13 +4449,12 @@ /obj/machinery/airalarm{ pixel_y = 28 }, +/obj/effect/turf_decal/bot, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) "ajB" = ( /obj/machinery/computer/secure_data, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault, @@ -4821,17 +4475,17 @@ "ajE" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/landmark/secequipment, +/obj/effect/turf_decal/bot, /turf/open/floor/plasteel/vault, /area/security/main) "ajF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/landmark/secequipment, +/obj/effect/turf_decal/bot, /turf/open/floor/plasteel/vault, /area/security/main) "ajG" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -4840,11 +4494,13 @@ "ajH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/landmark/secequipment, +/obj/effect/turf_decal/bot, /turf/open/floor/plasteel/vault, /area/security/main) "ajI" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/effect/landmark/secequipment, +/obj/effect/turf_decal/bot, /turf/open/floor/plasteel/vault, /area/security/main) "ajJ" = ( @@ -4859,8 +4515,6 @@ /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault, @@ -4922,9 +4576,7 @@ dir = 8 }, /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /turf/open/floor/plasteel/red/corner{ dir = 4 @@ -5021,8 +4673,7 @@ /area/maintenance/solars/starboard/fore) "ake" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/lattice/catwalk, /turf/open/space, @@ -5036,16 +4687,12 @@ /area/maintenance/disposal) "akg" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel, @@ -5089,8 +4736,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/stripes/corner{ @@ -5104,8 +4749,6 @@ req_access_txt = "12" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -5118,8 +4761,6 @@ /area/maintenance/disposal) "akm" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -5135,13 +4776,9 @@ /area/maintenance/port/fore) "akn" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -5237,21 +4874,25 @@ }, /area/security/brig) "akv" = ( +/obj/structure/table, /obj/machinery/airalarm{ pixel_y = 28 }, -/obj/machinery/chem_dispenser{ - layer = 2.7 - }, +/obj/machinery/computer/med_data/laptop, /turf/open/floor/plasteel/whitered/side{ dir = 1 }, /area/security/brig) "akw" = ( +/obj/structure/table, /obj/structure/window/reinforced{ dir = 4 }, -/obj/machinery/chem_master, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, /turf/open/floor/plasteel/whitered/side{ dir = 5 }, @@ -5259,8 +4900,6 @@ "akx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/red/side{ @@ -5269,8 +4908,6 @@ /area/security/brig) "aky" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/red/side{ @@ -5291,9 +4928,7 @@ dir = 4 }, /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ dir = 8 @@ -5328,8 +4963,6 @@ "akE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -5343,7 +4976,6 @@ "akG" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/yellow, @@ -5352,6 +4984,7 @@ "akH" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) "akI" = ( @@ -5365,12 +4998,12 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/effect/turf_decal/bot, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) "akK" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -5383,8 +5016,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/red/side{ @@ -5396,13 +5027,9 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side{ @@ -5423,8 +5050,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side{ @@ -5434,8 +5059,6 @@ "akO" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side{ @@ -5447,8 +5070,6 @@ dir = 9 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side{ @@ -5457,13 +5078,9 @@ /area/security/main) "akQ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -5479,8 +5096,6 @@ dir = 5 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -5495,8 +5110,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -5514,8 +5127,6 @@ pixel_y = 28 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -5527,8 +5138,6 @@ /area/security/main) "akU" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -5544,8 +5153,6 @@ /area/security/main) "akV" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment, @@ -5553,13 +5160,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/red/side{ @@ -5569,7 +5172,6 @@ "akW" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -5652,8 +5254,6 @@ /area/crew_quarters/fitness/recreation) "alg" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -5773,8 +5373,6 @@ /area/maintenance/solars/starboard/fore) "alw" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/external{ @@ -5852,8 +5450,6 @@ pixel_x = 32 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -5867,8 +5463,6 @@ /area/maintenance/port) "alD" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -6002,9 +5596,7 @@ dir = 4 }, /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ dir = 8 @@ -6021,9 +5613,7 @@ "alT" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ dir = 8 @@ -6034,9 +5624,7 @@ dir = 4 }, /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /turf/open/floor/plasteel, /area/security/warden) @@ -6052,9 +5640,7 @@ req_one_access_txt = "0" }, /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ dir = 8 @@ -6065,18 +5651,12 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel, @@ -6087,8 +5667,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/door/airlock/glass_security{ @@ -6097,9 +5675,7 @@ req_one_access_txt = "1;4" }, /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, @@ -6107,13 +5683,9 @@ "alY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/red/side{ @@ -6125,8 +5697,6 @@ dir = 5 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -6141,18 +5711,12 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -6160,13 +5724,9 @@ /area/security/warden) "amb" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -6179,8 +5739,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/showroomfloor, @@ -6190,9 +5748,7 @@ dir = 10 }, /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /turf/open/floor/plasteel/red/side{ dir = 8 @@ -6200,14 +5756,10 @@ /area/security/main) "ame" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/showroomfloor, @@ -6217,8 +5769,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/power/apc/highcap/five_k{ @@ -6290,8 +5840,6 @@ /area/security/main) "amo" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -6303,8 +5851,6 @@ sortType = 7 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/red/side{ @@ -6319,8 +5865,6 @@ req_one_access_txt = "1;4" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -6337,8 +5881,6 @@ pixel_y = -24 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -6353,8 +5895,6 @@ /area/security/range) "amr" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -6363,8 +5903,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/corner{ @@ -6392,7 +5930,6 @@ pixel_x = 24 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/effect/turf_decal/stripes/line{ @@ -6535,8 +6072,6 @@ /area/engine/gravity_generator) "amN" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -6581,8 +6116,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -6598,15 +6131,11 @@ /area/maintenance/port/fore) "amT" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, @@ -6665,7 +6194,6 @@ "anb" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plating, @@ -6716,8 +6244,6 @@ /area/security/brig) "ani" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6794,8 +6320,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -6817,8 +6341,6 @@ /area/security/warden) "ans" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/showroomfloor, @@ -6904,8 +6426,6 @@ req_one_access_txt = "1;4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -6922,8 +6442,6 @@ /area/maintenance/fore) "anF" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light_switch{ @@ -7144,8 +6662,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, @@ -7158,13 +6674,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plating, @@ -7177,8 +6689,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -7194,8 +6704,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance{ @@ -7213,8 +6721,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black, @@ -7227,8 +6733,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/small, @@ -7246,8 +6750,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/iv_drip, @@ -7277,8 +6779,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whitered/side{ @@ -7293,8 +6793,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/corner{ @@ -7303,8 +6801,6 @@ /area/security/brig) "aos" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -7312,8 +6808,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel, @@ -7343,8 +6837,6 @@ "aow" = ( /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_security{ @@ -7353,13 +6845,9 @@ }, /obj/effect/turf_decal/delivery, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel, @@ -7381,17 +6869,15 @@ /area/security/warden) "aoz" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) "aoA" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -7475,8 +6961,6 @@ /area/security/main) "aoL" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -7493,8 +6977,6 @@ /area/maintenance/fore) "aoM" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -7507,8 +6989,6 @@ /area/maintenance/fore) "aoN" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -7536,8 +7016,6 @@ /area/maintenance/disposal) "aoP" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -7547,8 +7025,6 @@ /area/maintenance/fore) "aoQ" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -7561,8 +7037,6 @@ /area/maintenance/fore) "aoR" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -7578,8 +7052,6 @@ req_one_access_txt = "1;4;38;12" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -7589,17 +7061,13 @@ /area/maintenance/fore) "aoT" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner{ dir = 8 @@ -7607,8 +7075,6 @@ /area/crew_quarters/fitness/recreation) "aoU" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -7620,8 +7086,6 @@ /area/crew_quarters/fitness/recreation) "aoV" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -7633,8 +7097,6 @@ /area/crew_quarters/fitness/recreation) "aoW" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -7646,8 +7108,6 @@ /area/crew_quarters/fitness/recreation) "aoX" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -7751,8 +7211,7 @@ "aph" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plating, /area/engine/gravity_generator) @@ -7760,11 +7219,9 @@ /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -7780,19 +7237,16 @@ /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plating, /area/engine/gravity_generator) "apl" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -7807,20 +7261,15 @@ track = 0 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) "apo" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/stripes/line{ @@ -7883,8 +7332,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -7955,8 +7402,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, @@ -7970,8 +7415,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plating, @@ -7998,8 +7441,6 @@ /area/security/brig) "apF" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -8014,7 +7455,6 @@ "apH" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plating, @@ -8022,13 +7462,9 @@ "apI" = ( /obj/machinery/computer/prisoner, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/showroomfloor, @@ -8036,16 +7472,12 @@ "apJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) "apK" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/photocopier{ @@ -8097,8 +7529,6 @@ "apO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/showroomfloor, @@ -8179,8 +7609,6 @@ "aqb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -8213,8 +7641,6 @@ /area/crew_quarters/fitness/recreation) "aqh" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -8311,8 +7737,7 @@ dir = 6 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/power/apc{ dir = 8; @@ -8331,13 +7756,9 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/turf_decal/stripes/line{ @@ -8347,8 +7768,6 @@ /area/engine/gravity_generator) "aqv" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -8361,8 +7780,6 @@ /area/engine/gravity_generator) "aqw" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -8375,13 +7792,9 @@ /area/engine/gravity_generator) "aqx" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/power/port_gen/pacman, @@ -8402,8 +7815,6 @@ /area/maintenance/solars/starboard/fore) "aqz" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -8412,7 +7823,6 @@ /area/maintenance/solars/starboard/fore) "aqA" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/terminal, @@ -8528,8 +7938,6 @@ dir = 9 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -8575,8 +7983,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/stripes/line, @@ -8630,29 +8036,21 @@ /area/security/warden) "arb" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) "arc" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -8662,16 +8060,12 @@ /area/security/warden) "ard" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) "are" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment, @@ -8679,18 +8073,12 @@ /area/security/warden) "arf" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -8702,8 +8090,6 @@ }, /obj/effect/landmark/start/warden, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/showroomfloor, @@ -8712,14 +8098,13 @@ /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) "arj" = ( /obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) "ark" = ( @@ -8741,8 +8126,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/red/side{ @@ -8757,8 +8140,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/start/security_officer, @@ -8772,8 +8153,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/landmark/start/security_officer, @@ -8891,8 +8270,6 @@ "arD" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -9018,8 +8395,6 @@ pixel_x = 28 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/chair/office/light, @@ -9037,7 +8412,6 @@ pixel_y = 3 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plating{ @@ -9046,13 +8420,9 @@ /area/maintenance/solars/starboard/fore) "arU" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -9063,7 +8433,6 @@ /area/maintenance/solars/starboard/fore) "arV" = ( /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/smes, @@ -9075,8 +8444,6 @@ }, /obj/effect/landmark/xeno_spawn, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/stripes/line{ @@ -9090,8 +8457,6 @@ }, /obj/machinery/light, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -9110,8 +8475,6 @@ req_access_txt = "0" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -9121,8 +8484,6 @@ /area/maintenance/port/fore) "arZ" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -9132,16 +8493,12 @@ /area/maintenance/port/fore) "asa" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/port) "asb" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -9160,8 +8517,6 @@ req_access_txt = "0" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -9176,8 +8531,6 @@ /obj/machinery/light, /obj/effect/landmark/xeno_spawn, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -9190,8 +8543,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -9209,8 +8560,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -9221,8 +8570,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -9232,8 +8579,6 @@ /area/maintenance/port/fore) "ash" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -9243,8 +8588,6 @@ /area/maintenance/port/fore) "asi" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/spawner/lootdrop/maintenance, @@ -9253,22 +8596,16 @@ "asj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/port/fore) "ask" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/landmark/event_spawn, @@ -9291,8 +8628,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -9326,13 +8661,9 @@ "asp" = ( /obj/machinery/computer/security, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/showroomfloor, @@ -9342,18 +8673,12 @@ /obj/structure/chair/office/dark, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/showroomfloor, @@ -9361,8 +8686,6 @@ "asr" = ( /obj/machinery/computer/crew, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/showroomfloor, @@ -9395,8 +8718,6 @@ "asu" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/filingcabinet/chestdrawer{ @@ -9406,21 +8727,15 @@ /area/security/warden) "asv" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ req_access_txt = "0" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/showroomfloor, @@ -9450,8 +8765,6 @@ req_access_txt = "0" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/item/device/radio/intercom{ @@ -9469,13 +8782,9 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/showroomfloor, @@ -9493,8 +8802,6 @@ "asz" = ( /obj/structure/table, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/folder/red, @@ -9524,11 +8831,9 @@ "asA" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -9542,8 +8847,6 @@ "asC" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/red/side, @@ -9557,8 +8860,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side, @@ -9566,21 +8867,15 @@ "asE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/red/side, @@ -9590,13 +8885,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/red/side, @@ -9611,37 +8902,27 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side, /area/security/main) "asH" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/red/side, /area/security/main) "asI" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side, /area/security/main) "asJ" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/firealarm{ @@ -9653,8 +8934,6 @@ "asK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/red/side, @@ -9705,8 +8984,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -9793,8 +9070,6 @@ /area/crew_quarters/dorms) "asY" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -9877,16 +9152,13 @@ charge = 5e+006 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/gravity_generator) "ati" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/table, @@ -9905,8 +9177,6 @@ /area/maintenance/starboard) "atk" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -9941,8 +9211,6 @@ req_one_access_txt = "0" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -10014,8 +9282,6 @@ /area/maintenance/port/fore) "atw" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -10023,8 +9289,6 @@ /area/maintenance/port) "atx" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -10038,8 +9302,6 @@ /area/maintenance/port/fore) "aty" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -10057,13 +9319,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -10079,8 +9337,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -10090,8 +9346,6 @@ /area/maintenance/port/fore) "atB" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -10118,8 +9372,6 @@ /area/maintenance/port/fore) "atE" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -10132,8 +9384,6 @@ /area/maintenance/port/fore) "atG" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -10147,13 +9397,9 @@ /area/maintenance/port/fore) "atH" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -10169,8 +9415,6 @@ dir = 9 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -10196,8 +9440,6 @@ /area/security/brig) "atM" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -10220,8 +9462,6 @@ /area/security/warden) "atP" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -10246,8 +9486,6 @@ req_access_txt = "3" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -10291,8 +9529,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -10301,7 +9537,6 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plating, @@ -10309,7 +9544,6 @@ "atX" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -10327,8 +9561,6 @@ "aua" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -10387,8 +9619,6 @@ /area/crew_quarters/dorms) "aui" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -10454,13 +9684,9 @@ /area/maintenance/starboard/fore) "aur" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -10535,8 +9761,6 @@ /area/engine/gravity_generator) "aux" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -10605,8 +9829,6 @@ "auE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -10630,8 +9852,6 @@ /area/maintenance/port/fore) "auI" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -10655,8 +9875,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -10668,8 +9886,6 @@ "auM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating{ @@ -10680,7 +9896,6 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plating, @@ -10688,11 +9903,9 @@ "auO" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plating, @@ -10701,7 +9914,6 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -10747,8 +9959,6 @@ /area/security/brig) "auV" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/junction, @@ -10771,7 +9981,6 @@ pixel_x = 24 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/button/door{ @@ -10820,8 +10029,6 @@ /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/showroomfloor, @@ -10900,8 +10107,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/red/corner{ @@ -10941,8 +10146,6 @@ /area/crew_quarters/dorms) "avm" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -10999,8 +10202,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -11016,8 +10217,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -11040,8 +10239,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -11057,8 +10254,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -11077,13 +10272,9 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -11096,8 +10287,6 @@ /area/engine/gravity_generator) "avy" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -11110,8 +10299,6 @@ /area/engine/gravity_generator) "avz" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -11124,8 +10311,6 @@ /area/maintenance/starboard/fore) "avA" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -11145,8 +10330,6 @@ /area/maintenance/starboard/fore) "avB" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -11156,8 +10339,6 @@ /area/maintenance/starboard/fore) "avC" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -11169,8 +10350,6 @@ /area/maintenance/starboard/fore) "avD" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -11182,8 +10361,6 @@ /area/maintenance/starboard/fore) "avE" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -11195,8 +10372,6 @@ /area/maintenance/starboard/fore) "avF" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -11263,8 +10438,6 @@ "avM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating{ @@ -11281,8 +10454,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -11295,16 +10466,12 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/stripes/line{ @@ -11317,8 +10484,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -11337,13 +10502,9 @@ sortType = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -11363,8 +10524,6 @@ "avT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -11427,13 +10586,9 @@ /area/security/brig) "awb" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -11444,8 +10599,6 @@ /area/security/brig) "awc" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -11458,8 +10611,6 @@ /area/security/brig) "awd" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -11469,19 +10620,13 @@ /area/security/brig) "awe" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -11491,13 +10636,9 @@ /area/security/brig) "awf" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/junction{ @@ -11508,8 +10649,6 @@ /area/security/brig) "awg" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, @@ -11520,8 +10659,6 @@ /area/security/brig) "awh" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -11532,8 +10669,6 @@ /area/security/brig) "awi" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -11549,13 +10684,9 @@ /area/security/brig) "awj" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -11566,13 +10697,9 @@ /area/security/brig) "awk" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -11585,8 +10712,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -11596,8 +10721,6 @@ /area/security/brig) "awm" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -11605,8 +10728,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/landmark/lightsout, @@ -11614,8 +10735,6 @@ /area/security/brig) "awn" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -11627,21 +10746,15 @@ "awo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/security/brig) "awp" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -11649,16 +10762,12 @@ "awq" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/security/brig) "awr" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -11813,8 +10922,6 @@ "awJ" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -11825,8 +10932,6 @@ "awK" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -11870,8 +10975,6 @@ /area/maintenance/port/fore) "awQ" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/stripes/line{ @@ -11881,8 +10984,6 @@ /area/maintenance/port/fore) "awR" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plating, @@ -11895,8 +10996,6 @@ "awT" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -11918,8 +11017,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -11955,8 +11052,6 @@ /area/security/brig) "axa" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -12002,8 +11097,6 @@ /area/security/brig) "axe" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -12064,8 +11157,6 @@ /area/security/brig) "axk" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, @@ -12114,8 +11205,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -12170,8 +11259,6 @@ /area/security/brig) "axt" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -12292,8 +11379,6 @@ /area/crew_quarters/dorms) "axH" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -12335,8 +11420,6 @@ /area/maintenance/starboard/fore) "axM" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -12353,8 +11436,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -12369,8 +11450,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -12383,8 +11462,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -12400,8 +11477,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -12418,8 +11493,6 @@ }, /obj/machinery/holopad, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/red/corner{ @@ -12432,8 +11505,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -12477,8 +11548,6 @@ "axW" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -12567,8 +11636,6 @@ req_access_txt = "48" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -12583,8 +11650,6 @@ req_one_access_txt = "48;50" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -12594,8 +11659,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -12633,7 +11696,6 @@ pixel_y = 25 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/circuit/green{ @@ -12660,7 +11722,6 @@ "ayw" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -12668,13 +11729,12 @@ /area/security/brig) "ayx" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/door/window/brigdoor/security/cell{ @@ -12686,7 +11746,6 @@ "ayy" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -12696,13 +11755,12 @@ /area/security/brig) "ayz" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/door/window/brigdoor/security/cell{ @@ -12713,13 +11771,12 @@ /area/security/brig) "ayA" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/door/window/brigdoor/security/cell{ @@ -12741,13 +11798,9 @@ /area/security/brig) "ayC" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/door/firedoor, @@ -12764,29 +11817,21 @@ /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, /area/security/brig) "ayE" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/door/window/brigdoor/security/holding{ @@ -12806,15 +11851,12 @@ name = "detective's office shutters" }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plating, /area/security/detectives_office) "ayH" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -12833,7 +11875,6 @@ name = "detective's office shutters" }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -12881,8 +11922,6 @@ /area/crew_quarters/dorms) "ayO" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -12909,8 +11948,6 @@ "ayQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -12974,8 +12011,6 @@ "azb" = ( /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/red/corner{ @@ -13072,7 +12107,6 @@ pixel_y = 24 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/light_switch{ @@ -13085,13 +12119,9 @@ /area/quartermaster/miningoffice) "azo" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/brown{ @@ -13113,8 +12143,6 @@ /area/quartermaster/miningoffice) "azq" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -13124,8 +12152,6 @@ req_access_txt = "0" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel, @@ -13135,8 +12161,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -13164,8 +12188,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/floorgrime, @@ -13176,8 +12198,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/floorgrime, @@ -13206,8 +12226,6 @@ /area/security/nuke_storage) "azy" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -13256,6 +12274,9 @@ /turf/open/floor/plasteel/floorgrime, /area/security/brig) "azE" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) "azF" = ( @@ -13307,8 +12328,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -13331,8 +12350,6 @@ /area/security/brig) "azN" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -13382,26 +12399,18 @@ /area/security/detectives_office) "azR" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) "azS" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -13412,8 +12421,6 @@ /obj/item/storage/fancy/cigarettes, /obj/item/clothing/glasses/sunglasses, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -13469,7 +12476,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -13490,8 +12496,6 @@ /area/maintenance/fore) "azZ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -13565,13 +12569,9 @@ /area/crew_quarters/dorms) "aAg" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -13583,8 +12583,6 @@ /area/crew_quarters/dorms) "aAh" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -13602,8 +12600,6 @@ req_access_txt = "12" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -13616,8 +12612,6 @@ /area/maintenance/starboard/fore) "aAj" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -13633,8 +12627,6 @@ /area/maintenance/starboard/fore) "aAk" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -13649,8 +12641,6 @@ /area/maintenance/starboard/fore) "aAl" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -13666,8 +12656,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -13682,16 +12670,12 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -13735,8 +12719,6 @@ /area/engine/engineering) "aAu" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/sortjunction{ @@ -13840,8 +12822,6 @@ /area/quartermaster/miningoffice) "aAH" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/start/shaft_miner, @@ -13893,8 +12873,6 @@ /area/quartermaster/warehouse) "aAN" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/floorgrime, @@ -13952,8 +12930,6 @@ /area/security/nuke_storage) "aAS" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -14089,8 +13065,6 @@ /area/security/brig) "aBe" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -14118,8 +13092,6 @@ /area/security/brig) "aBh" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -14162,8 +13134,6 @@ /area/security/detectives_office) "aBm" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -14193,8 +13163,6 @@ /area/security/detectives_office) "aBq" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -14205,13 +13173,9 @@ /area/maintenance/fore) "aBr" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -14224,8 +13188,6 @@ /area/maintenance/fore) "aBs" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/landmark/blobstart, @@ -14254,8 +13216,6 @@ /area/crew_quarters/toilet/restrooms) "aBw" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -14270,8 +13230,6 @@ /area/crew_quarters/dorms) "aBx" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -14283,11 +13241,9 @@ /area/crew_quarters/dorms) "aBy" = ( /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/light/small{ @@ -14308,8 +13264,6 @@ /area/crew_quarters/dorms) "aBz" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment, @@ -14322,8 +13276,6 @@ /area/crew_quarters/dorms) "aBA" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -14345,8 +13297,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -14449,8 +13399,6 @@ /area/engine/engineering) "aBL" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -14462,8 +13410,6 @@ "aBM" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/stripes/line, @@ -14521,8 +13467,6 @@ /area/quartermaster/miningoffice) "aBW" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -14568,8 +13512,6 @@ "aCb" = ( /obj/structure/closet/crate, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/ore/glass, @@ -14611,8 +13553,6 @@ dir = 10 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/vault, @@ -14625,8 +13565,6 @@ }, /obj/machinery/light, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/vault{ @@ -14678,7 +13616,6 @@ "aCk" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/door/poddoor/preopen{ @@ -14691,11 +13628,9 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/door/poddoor/preopen{ @@ -14707,7 +13642,6 @@ "aCm" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/door/poddoor/preopen{ @@ -14736,20 +13670,15 @@ name = "brig shutters" }, /obj/structure/cable/yellow{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plating, /area/security/brig) "aCp" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -14776,13 +13705,9 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/black, @@ -14807,7 +13732,6 @@ pixel_x = -24 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/item/device/taperecorder{ @@ -14819,8 +13743,6 @@ /area/security/detectives_office) "aCt" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -14830,13 +13752,9 @@ /area/security/detectives_office) "aCu" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -14866,8 +13784,6 @@ /area/security/detectives_office) "aCy" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -14879,8 +13795,6 @@ req_access_txt = "12" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -14899,8 +13813,6 @@ /area/crew_quarters/toilet/restrooms) "aCC" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -14986,8 +13898,6 @@ /area/crew_quarters/dorms) "aCM" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -15020,8 +13930,6 @@ /area/engine/engineering) "aCQ" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/stripes/line{ @@ -15032,7 +13940,6 @@ "aCR" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -15047,8 +13954,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -15199,8 +14104,6 @@ "aDn" = ( /obj/item/stack/sheet/cardboard, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -15238,8 +14141,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -15294,6 +14195,12 @@ }, /area/hallway/primary/fore) "aDz" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 32 + }, /obj/machinery/camera{ c_tag = "Fore Primary Hallway Cells"; dir = 2; @@ -15325,8 +14232,6 @@ /area/hallway/primary/fore) "aDD" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -15337,7 +14242,6 @@ "aDE" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/door/poddoor/preopen{ @@ -15403,8 +14307,6 @@ /area/security/brig) "aDH" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -15452,8 +14354,6 @@ /area/security/detectives_office) "aDK" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -15470,8 +14370,6 @@ pixel_y = -26 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -15484,8 +14382,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -15510,8 +14406,6 @@ /area/security/detectives_office) "aDO" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -15550,8 +14444,6 @@ /area/crew_quarters/toilet/restrooms) "aDR" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -15561,8 +14453,6 @@ /area/crew_quarters/toilet/restrooms) "aDS" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -15575,8 +14465,6 @@ /area/crew_quarters/toilet/restrooms) "aDT" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -15615,8 +14503,6 @@ /area/crew_quarters/toilet/restrooms) "aDX" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -15720,16 +14606,12 @@ /area/engine/engineering) "aEl" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -15744,8 +14626,6 @@ req_access_txt = "32" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -15763,8 +14643,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -15779,16 +14657,12 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/engine/engineering) "aEp" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -15796,21 +14670,15 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel, /area/engine/engineering) "aEq" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -15823,8 +14691,6 @@ /area/engine/engineering) "aEr" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -15877,8 +14743,6 @@ /area/quartermaster/miningoffice) "aEy" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -15899,8 +14763,6 @@ "aEA" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -15911,8 +14773,6 @@ "aEB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/button/door{ @@ -15926,13 +14786,9 @@ "aED" = ( /obj/structure/closet/crate/internals, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/spawner/lootdrop/maintenance{ @@ -15949,7 +14805,6 @@ pixel_x = 27 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/effect/landmark/blobstart, @@ -15958,7 +14813,6 @@ "aEF" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -15967,8 +14821,6 @@ "aEG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -15978,7 +14830,6 @@ "aEH" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plating, @@ -16021,24 +14872,18 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel, /area/hallway/primary/fore) "aEN" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -16048,8 +14893,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -16059,13 +14902,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel, @@ -16075,16 +14914,12 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/hallway/primary/fore) "aER" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -16094,8 +14929,6 @@ /area/hallway/primary/fore) "aES" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -16106,8 +14939,6 @@ /area/hallway/primary/fore) "aET" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -16122,8 +14953,6 @@ /area/hallway/primary/fore) "aEU" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -16146,13 +14975,9 @@ req_access_txt = "1" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/item/device/radio/off, @@ -16167,16 +14992,12 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black, /area/security/brig) "aEX" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -16186,8 +15007,6 @@ /area/security/brig) "aEY" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/airalarm{ @@ -16223,8 +15042,6 @@ req_access_txt = "4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -16255,28 +15072,21 @@ pixel_y = -26 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) "aFf" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) "aFg" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -16287,8 +15097,6 @@ /area/crew_quarters/toilet/restrooms) "aFh" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -16303,8 +15111,6 @@ req_access_txt = "0" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -16314,13 +15120,9 @@ /area/crew_quarters/toilet/restrooms) "aFj" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -16397,16 +15199,12 @@ /area/engine/engineering) "aFt" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/item/clothing/head/cone{ @@ -16437,7 +15235,6 @@ "aFu" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -16462,8 +15259,6 @@ /area/engine/engineering) "aFx" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -16482,8 +15277,6 @@ /area/engine/engineering) "aFA" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/stripes/line{ @@ -16493,8 +15286,6 @@ /area/engine/engineering) "aFB" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/corner, @@ -16505,8 +15296,6 @@ /area/engine/engineering) "aFC" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line, @@ -16517,8 +15306,6 @@ /area/engine/engineering) "aFD" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/turf_decal/stripes/line, @@ -16579,8 +15366,6 @@ /area/quartermaster/miningoffice) "aFI" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -16600,8 +15385,6 @@ name = "Warehouse Shutters" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -16621,8 +15404,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -16633,11 +15414,9 @@ "aFO" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plating, @@ -16645,11 +15424,9 @@ "aFP" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plating, @@ -16657,7 +15434,6 @@ "aFQ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/yellow, @@ -16667,8 +15443,6 @@ "aFR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -16682,7 +15456,6 @@ "aFS" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/yellow, @@ -16691,15 +15464,12 @@ "aFT" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plating, @@ -16707,15 +15477,12 @@ "aFU" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, /area/construction/storage/wing) "aFV" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/firealarm{ @@ -16734,8 +15501,6 @@ /area/hallway/primary/fore) "aFW" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black, @@ -16745,16 +15510,12 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black, /area/hallway/primary/fore) "aFY" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -16770,16 +15531,12 @@ /area/hallway/primary/fore) "aFZ" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/red/corner{ @@ -16788,8 +15545,6 @@ /area/hallway/primary/fore) "aGa" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -16804,8 +15559,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/extinguisher_cabinet{ @@ -16820,8 +15573,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/corner{ @@ -16833,8 +15584,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/firealarm{ @@ -16850,8 +15599,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/red/corner{ @@ -16901,8 +15648,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/red/corner{ @@ -16920,8 +15665,6 @@ /area/hallway/primary/fore) "aGk" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -17027,8 +15770,6 @@ /area/security/detectives_office) "aGw" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -17041,16 +15782,12 @@ /area/maintenance/fore) "aGx" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/stripes/line, @@ -17058,13 +15795,9 @@ /area/maintenance/fore) "aGy" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment, @@ -17136,8 +15869,6 @@ /area/crew_quarters/toilet/restrooms) "aGG" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -17397,8 +16128,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -17411,8 +16140,6 @@ "aHe" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -17480,8 +16207,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -17522,8 +16247,6 @@ /area/construction/storage/wing) "aHn" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -17552,8 +16275,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -17566,8 +16287,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/brown/corner{ @@ -17596,8 +16315,6 @@ "aHu" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -17627,8 +16344,6 @@ /area/hallway/primary/fore) "aHA" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -17672,8 +16387,6 @@ req_access_txt = "38" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -17712,8 +16425,6 @@ /area/crew_quarters/toilet/restrooms) "aHM" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -17745,8 +16456,6 @@ /area/crew_quarters/dorms) "aHQ" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -17807,8 +16516,6 @@ /area/maintenance/starboard/fore) "aHW" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -17904,8 +16611,6 @@ dir = 5 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel, @@ -17920,16 +16625,12 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/quartermaster/storage) "aIl" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -17952,16 +16653,12 @@ /area/quartermaster/storage) "aIm" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -17975,8 +16672,6 @@ /area/quartermaster/storage) "aIn" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -17990,8 +16685,6 @@ /area/quartermaster/storage) "aIo" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -18012,8 +16705,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -18029,8 +16720,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -18064,8 +16753,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -18099,12 +16786,9 @@ pixel_y = -27 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/brown/corner{ @@ -18114,8 +16798,6 @@ "aIv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating{ @@ -18127,13 +16809,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/brown/corner{ @@ -18142,8 +16820,6 @@ /area/construction/storage/wing) "aIx" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -18162,8 +16838,6 @@ }, /obj/machinery/light, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/event_spawn, @@ -18176,8 +16850,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/brown/corner{ @@ -18193,13 +16865,9 @@ location = "2.1-Storage" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/brown/corner{ @@ -18211,8 +16879,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -18222,8 +16888,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -18234,8 +16898,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/security{ @@ -18250,13 +16912,9 @@ dir = 9 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black, @@ -18269,8 +16927,6 @@ pixel_y = -30 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black, @@ -18287,8 +16943,6 @@ pixel_y = -22 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black, @@ -18296,7 +16950,6 @@ "aIG" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -18304,7 +16957,6 @@ "aIH" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plating, @@ -18312,8 +16964,6 @@ "aII" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/corner{ @@ -18322,16 +16972,12 @@ /area/hallway/primary/fore) "aIJ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel, @@ -18461,7 +17107,6 @@ /area/lawoffice) "aIX" = ( /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -18477,16 +17122,12 @@ /area/lawoffice) "aIY" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/wood, /area/lawoffice) "aIZ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -18552,8 +17193,6 @@ /area/crew_quarters/toilet/restrooms) "aJe" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -18578,8 +17217,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/spawner/lootdrop/maintenance, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -18730,8 +17367,6 @@ location = "QM #1" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/window/northleft, @@ -18749,8 +17384,6 @@ "aJL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance{ @@ -18761,8 +17394,6 @@ /area/maintenance/port/fore) "aJM" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance{ @@ -18813,8 +17444,6 @@ /area/hallway/primary/fore) "aJU" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -18934,21 +17563,15 @@ /area/lawoffice) "aKi" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/wood, /area/lawoffice) "aKj" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/firealarm{ @@ -18959,8 +17582,6 @@ /area/lawoffice) "aKk" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -18982,8 +17603,6 @@ "aKm" = ( /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -19124,8 +17743,6 @@ /area/engine/engineering) "aKC" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -19170,8 +17787,6 @@ /area/engine/supermatter) "aKL" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/stripes/line, @@ -19281,8 +17896,6 @@ location = "QM #2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/delivery, @@ -19304,8 +17917,6 @@ dir = 5 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/turf_decal/stripes/line{ @@ -19318,8 +17929,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/blobstart, @@ -19330,8 +17939,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -19345,13 +17952,9 @@ dir = 10 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -19414,8 +18017,6 @@ /area/storage/primary) "aLk" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -19579,8 +18180,6 @@ "aLF" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/wood, @@ -19598,8 +18197,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault, @@ -19673,8 +18270,6 @@ /area/crew_quarters/locker) "aLR" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -19763,8 +18358,6 @@ "aMd" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/landmark/event_spawn, @@ -19772,13 +18365,9 @@ /area/engine/engineering) "aMe" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -19788,8 +18377,6 @@ "aMg" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_engineering{ @@ -19800,13 +18387,9 @@ /area/engine/engineering) "aMh" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/stripes/line{ @@ -19898,8 +18481,6 @@ location = "QM #3" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/delivery, @@ -20083,8 +18664,6 @@ dir = 6 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/wood, @@ -20094,8 +18673,6 @@ dir = 9 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/wood, @@ -20117,8 +18694,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/neutral/corner{ @@ -20133,8 +18708,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -20200,8 +18773,6 @@ /area/crew_quarters/locker) "aNd" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -20314,8 +18885,6 @@ "aNr" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -20473,8 +19042,6 @@ location = "QM #4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/window/southleft, @@ -20517,7 +19084,6 @@ pixel_y = 30 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plasteel/brown{ @@ -20548,8 +19114,6 @@ dir = 10 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plating{ @@ -20607,7 +19171,6 @@ "aNZ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plating, @@ -20751,8 +19314,6 @@ "aOp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/event_spawn, @@ -20783,8 +19344,6 @@ /area/crew_quarters/locker) "aOt" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -20807,16 +19366,12 @@ /area/crew_quarters/locker) "aOy" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel, /area/crew_quarters/locker) "aOz" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/lightsout, @@ -20824,8 +19379,6 @@ /area/crew_quarters/locker) "aOA" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -20835,8 +19388,6 @@ /area/crew_quarters/locker) "aOB" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -20846,8 +19397,6 @@ /area/crew_quarters/locker) "aOC" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -20857,16 +19406,12 @@ /area/crew_quarters/locker) "aOD" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -20880,8 +19425,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -20897,8 +19440,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -20908,8 +19449,6 @@ "aOG" = ( /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -20926,8 +19465,6 @@ /area/hydroponics/garden) "aOH" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -20942,8 +19479,6 @@ /area/hydroponics/garden) "aOI" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -20953,8 +19488,6 @@ /area/hydroponics/garden) "aOJ" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -20965,13 +19498,9 @@ /area/hydroponics/garden) "aOK" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -20981,8 +19510,6 @@ /area/hydroponics/garden) "aOL" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -20994,8 +19521,6 @@ /area/hydroponics/garden) "aOM" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -21015,7 +19540,6 @@ pixel_y = 2 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/disposal/bin, @@ -21039,7 +19563,6 @@ pixel_x = -26 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/effect/turf_decal/stripes/line{ @@ -21050,28 +19573,20 @@ "aOP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/engine/engineering) "aOQ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel, @@ -21189,13 +19704,9 @@ /area/quartermaster/storage) "aPf" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -21211,8 +19722,6 @@ /area/quartermaster/storage) "aPg" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -21230,8 +19739,6 @@ /area/quartermaster/qm) "aPh" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -21250,8 +19757,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel, @@ -21285,8 +19790,6 @@ "aPl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -21365,7 +19868,6 @@ "aPs" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/yellow, @@ -21374,8 +19876,6 @@ "aPt" = ( /obj/structure/table, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/aiModule/supplied/quarantine, @@ -21383,29 +19883,21 @@ /area/ai_monitored/turret_protected/ai_upload) "aPu" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) "aPv" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black, /area/ai_monitored/turret_protected/ai_upload) "aPw" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/ai_slipper{ @@ -21416,8 +19908,6 @@ "aPx" = ( /obj/structure/table, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/aiModule/supplied/freeform, @@ -21426,7 +19916,6 @@ "aPy" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/yellow, @@ -21434,8 +19923,6 @@ /area/ai_monitored/turret_protected/ai_upload) "aPz" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/navbeacon{ @@ -21492,8 +19979,6 @@ req_access_txt = "38" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -21582,8 +20067,6 @@ /area/hydroponics/garden) "aPP" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/hydroponics/constructable, @@ -21619,8 +20102,6 @@ /area/maintenance/starboard/fore) "aPT" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -21652,7 +20133,6 @@ /area/engine/engineering) "aPW" = ( /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/status_display{ @@ -21669,8 +20149,6 @@ "aPX" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -21678,8 +20156,6 @@ "aPY" = ( /obj/machinery/vending/engivend, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/delivery, @@ -21797,8 +20273,6 @@ /area/quartermaster/storage) "aQo" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table, @@ -21935,7 +20409,6 @@ pixel_y = -24 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/camera/motion{ @@ -21947,13 +20420,9 @@ /area/ai_monitored/turret_protected/ai_upload) "aQB" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -22041,8 +20510,6 @@ /area/crew_quarters/locker) "aQL" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -22055,13 +20522,9 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -22073,8 +20536,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -22086,8 +20547,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/camera{ @@ -22105,8 +20564,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock{ @@ -22120,18 +20577,12 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel, @@ -22141,8 +20592,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -22155,16 +20604,12 @@ pixel_y = 8 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/crew_quarters/locker) "aQT" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -22174,8 +20619,6 @@ /area/crew_quarters/locker) "aQU" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -22271,8 +20714,6 @@ /area/hydroponics/garden) "aRe" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/side, @@ -22302,8 +20743,6 @@ /area/hydroponics/garden) "aRi" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -22322,8 +20761,6 @@ pixel_x = -31 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/stripes/line{ @@ -22333,13 +20770,9 @@ /area/engine/engineering) "aRk" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/stripes/line{ @@ -22349,13 +20782,9 @@ /area/engine/engineering) "aRl" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -22366,21 +20795,15 @@ "aRm" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/engine/engineering) "aRn" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -22390,8 +20813,6 @@ /area/engine/engineering) "aRo" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -22408,8 +20829,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/corner{ @@ -22427,16 +20846,12 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel, /area/engine/engineering) "aRr" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/sortjunction{ @@ -22531,8 +20946,6 @@ /area/quartermaster/storage) "aRJ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/device/radio/intercom{ @@ -22656,8 +21069,6 @@ /area/ai_monitored/turret_protected/ai_upload) "aRU" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -22670,8 +21081,6 @@ /area/ai_monitored/turret_protected/ai_upload) "aRW" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -22707,8 +21116,6 @@ /area/security/courtroom) "aSb" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -22803,8 +21210,6 @@ /area/hydroponics/garden) "aSm" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -22864,8 +21269,6 @@ "aSs" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_engineering{ @@ -22881,13 +21284,9 @@ /area/engine/engineering) "aSt" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -22900,13 +21299,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel, @@ -22915,8 +21310,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -22926,8 +21319,6 @@ /area/engine/engineering) "aSw" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -22938,21 +21329,15 @@ "aSx" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel, /area/engine/engineering) "aSz" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/turf_decal/stripes/line{ @@ -22962,8 +21347,6 @@ /area/engine/engineering) "aSA" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/corner{ @@ -22976,8 +21359,6 @@ /area/engine/engineering) "aSB" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -23037,7 +21418,6 @@ /area/construction/mining/aux_base) "aSL" = ( /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -23071,8 +21451,6 @@ "aSO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -23141,8 +21519,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/disposal/bin, @@ -23164,13 +21540,9 @@ "aSY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -23184,21 +21556,15 @@ req_access_txt = "12" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/port) "aTa" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/brown{ @@ -23207,8 +21573,6 @@ /area/storage/primary) "aTb" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -23219,8 +21583,6 @@ dir = 5 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -23230,8 +21592,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment, @@ -23242,8 +21602,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -23254,13 +21612,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -23270,8 +21624,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/brown{ @@ -23281,7 +21633,6 @@ "aTh" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -23294,21 +21645,15 @@ req_access_txt = "16" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, /area/ai_monitored/turret_protected/ai_upload) "aTj" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel, @@ -23362,8 +21707,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -23494,15 +21837,12 @@ req_access_txt = "12" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, /area/maintenance/starboard/fore) "aTD" = ( /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/light_switch{ @@ -23513,11 +21853,9 @@ /area/engine/engineering) "aTE" = ( /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/smes/engineering, @@ -23525,8 +21863,6 @@ /area/engine/engineering) "aTF" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/stripes/line{ @@ -23540,8 +21876,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -23576,8 +21910,6 @@ "aTJ" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -23587,16 +21919,12 @@ dir = 10 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel, /area/engine/engineering) "aTK" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -23606,8 +21934,6 @@ /area/engine/engineering) "aTM" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -23617,8 +21943,6 @@ /area/engine/engineering) "aTN" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line, @@ -23686,15 +22010,12 @@ charge = 5e+006 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plasteel/black, /area/ai_monitored/turret_protected/ai) "aTX" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -23755,8 +22076,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -23795,8 +22114,6 @@ /area/quartermaster/storage) "aUi" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/firealarm{ @@ -23829,7 +22146,6 @@ pixel_y = 24 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plasteel/red/side{ @@ -23912,8 +22228,6 @@ "aUt" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/brown{ @@ -23935,7 +22249,6 @@ "aUw" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plating, @@ -23960,7 +22273,6 @@ }, /obj/effect/landmark/start/cyborg, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -23985,13 +22297,9 @@ /area/ai_monitored/turret_protected/ai_upload_foyer) "aUz" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/vault, @@ -24053,8 +22361,6 @@ /area/hallway/primary/fore) "aUD" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -24102,7 +22408,6 @@ pixel_y = -24 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/structure/table, @@ -24111,8 +22416,6 @@ /area/security/courtroom) "aUH" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -24125,8 +22428,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/black, @@ -24158,8 +22459,6 @@ "aUK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -24205,8 +22504,6 @@ /area/crew_quarters/locker) "aUU" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -24216,16 +22513,12 @@ /area/maintenance/starboard/fore) "aUV" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/turf_decal/stripes/line{ @@ -24235,8 +22528,6 @@ /area/maintenance/starboard/fore) "aUW" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -24264,8 +22555,6 @@ "aUZ" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -24295,8 +22584,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/bot{ @@ -24379,8 +22666,6 @@ pixel_y = 20 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -24476,9 +22761,7 @@ dir = 4 }, /obj/structure/cable/yellow{ - icon_state = "1-4"; - d1 = 1; - d2 = 4 + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/yellow/side{ @@ -24493,9 +22776,7 @@ dir = 2 }, /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /turf/open/floor/plasteel/yellow/corner{ dir = 1 @@ -24506,8 +22787,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/sign/map/left{ @@ -24525,8 +22804,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/sign/map/right{ @@ -24543,13 +22820,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/arrival{ @@ -24589,13 +22862,9 @@ /area/quartermaster/storage) "aVL" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -24608,8 +22877,6 @@ /area/quartermaster/storage) "aVM" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -24621,8 +22888,6 @@ /area/security/checkpoint/supply) "aVN" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side{ @@ -24631,8 +22896,6 @@ /area/security/checkpoint/supply) "aVO" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel, @@ -24668,8 +22931,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/brown{ @@ -24692,8 +22953,6 @@ /area/hallway/primary/central) "aVV" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/closet/emcloset, @@ -24714,8 +22973,6 @@ req_access_txt = "19" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault, @@ -24737,8 +22994,6 @@ /area/hallway/primary/central) "aWb" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/side{ @@ -24774,8 +23029,6 @@ /area/hallway/primary/central) "aWf" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -24834,8 +23087,6 @@ "aWl" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -24853,8 +23104,6 @@ name = "Crew Quarters Access" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -24888,8 +23137,6 @@ dir = 6 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/vault, @@ -24902,8 +23149,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -24913,8 +23158,6 @@ dir = 10 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/stripes/line{ @@ -24974,8 +23217,6 @@ /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -25004,8 +23245,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/bot{ @@ -25051,8 +23290,6 @@ /area/ai_monitored/turret_protected/ai) "aWP" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -25062,8 +23299,6 @@ /area/ai_monitored/turret_protected/ai) "aWQ" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -25146,8 +23381,6 @@ /area/hallway/secondary/entry) "aXc" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -25185,8 +23418,6 @@ dir = 5 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/spawner/lootdrop/maintenance, @@ -25198,8 +23429,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -25211,8 +23440,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -25222,16 +23449,12 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/quartermaster/storage) "aXk" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment, @@ -25242,13 +23465,9 @@ /area/quartermaster/storage) "aXl" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -25320,8 +23539,6 @@ dir = 5 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/landmark/blobstart, @@ -25331,8 +23548,6 @@ /area/maintenance/port/fore) "aXs" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/trash/popcorn, @@ -25347,8 +23562,6 @@ /area/maintenance/port/fore) "aXt" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -25364,8 +23577,6 @@ /area/maintenance/port) "aXu" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -25382,8 +23593,6 @@ /area/maintenance/port/fore) "aXv" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -25398,8 +23607,6 @@ /area/hallway/primary/central) "aXw" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -25435,8 +23642,6 @@ /area/hallway/primary/central) "aXz" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -25477,8 +23682,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner{ @@ -25528,8 +23731,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -25566,8 +23767,6 @@ /area/hallway/primary/central) "aXJ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -25605,8 +23804,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/lightsout, @@ -25665,8 +23862,6 @@ dir = 2 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner{ @@ -25688,8 +23883,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner{ @@ -25718,8 +23911,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner{ @@ -25731,8 +23922,6 @@ dir = 5 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/landmark/blobstart, @@ -25743,8 +23932,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating{ @@ -25756,13 +23943,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/stripes/line, @@ -25781,8 +23964,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -25792,8 +23973,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -25806,8 +23985,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line, @@ -25818,13 +23995,9 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -25962,7 +24135,6 @@ }, /obj/structure/cable/yellow, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -26033,8 +24205,6 @@ /area/ai_monitored/turret_protected/ai) "aYA" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -26091,8 +24261,6 @@ /area/hallway/secondary/entry) "aYH" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -26135,8 +24303,6 @@ /area/quartermaster/storage) "aYL" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/stripes/line{ @@ -26146,21 +24312,15 @@ /area/quartermaster/storage) "aYM" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/quartermaster/storage) "aYN" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel, @@ -26193,8 +24353,6 @@ /area/quartermaster/storage) "aYR" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -26227,13 +24385,9 @@ /area/hallway/primary/central) "aYV" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -26247,8 +24401,6 @@ /area/hallway/primary/central) "aYW" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -26259,21 +24411,15 @@ /area/hallway/primary/central) "aYX" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/hallway/primary/central) "aYY" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/navbeacon{ @@ -26284,8 +24430,6 @@ /area/hallway/primary/central) "aYZ" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -26293,8 +24437,6 @@ /area/hallway/primary/central) "aZa" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -26302,21 +24444,15 @@ /area/hallway/primary/central) "aZb" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel, /area/hallway/primary/central) "aZc" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, @@ -26324,27 +24460,19 @@ /area/hallway/primary/central) "aZd" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel, /area/hallway/primary/central) "aZe" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/holopad, @@ -26352,21 +24480,15 @@ /area/hallway/primary/central) "aZf" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /turf/open/floor/plasteel, /area/hallway/primary/central) "aZg" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel{ @@ -26375,8 +24497,6 @@ /area/hallway/primary/central) "aZh" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel{ @@ -26385,8 +24505,6 @@ /area/hallway/primary/central) "aZi" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -26400,8 +24518,6 @@ /area/hallway/primary/central) "aZk" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel{ @@ -26410,8 +24526,6 @@ /area/hallway/primary/central) "aZl" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel{ @@ -26420,8 +24534,6 @@ /area/hallway/primary/central) "aZm" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel{ @@ -26430,8 +24542,6 @@ /area/hallway/primary/central) "aZn" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -26441,21 +24551,15 @@ /area/hallway/primary/central) "aZo" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel, /area/hallway/primary/central) "aZp" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/navbeacon{ @@ -26466,29 +24570,21 @@ /area/hallway/primary/central) "aZq" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel, /area/hallway/primary/central) "aZr" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel, @@ -26499,8 +24595,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -26529,7 +24623,6 @@ pixel_x = -27 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/effect/landmark/revenantspawn, @@ -26539,8 +24632,6 @@ /area/storage/tech) "aZy" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ @@ -26550,8 +24641,6 @@ "aZz" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ @@ -26560,8 +24649,6 @@ /area/storage/tech) "aZA" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/vault{ @@ -26644,8 +24731,6 @@ /area/crew_quarters/heads/chief) "aZH" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -26676,8 +24761,6 @@ dir = 9 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -26829,8 +24912,6 @@ uses = 10 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -26908,8 +24989,6 @@ /area/hallway/secondary/entry) "bad" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -26920,14 +24999,10 @@ /area/hallway/secondary/entry) "bae" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/arrival{ @@ -26936,8 +25011,6 @@ /area/hallway/secondary/entry) "baf" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance{ @@ -26948,8 +25021,6 @@ /area/maintenance/port/fore) "bag" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating{ @@ -26976,13 +25047,9 @@ /area/maintenance/starboard/fore) "baj" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -26994,8 +25061,6 @@ req_one_access_txt = "48;50" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -27008,8 +25073,6 @@ pixel_y = -28 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -27017,8 +25080,6 @@ /area/quartermaster/storage) "bam" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -27026,8 +25087,6 @@ /area/quartermaster/storage) "ban" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/stripes/line{ @@ -27134,8 +25193,6 @@ /area/quartermaster/office) "bav" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -27260,8 +25317,6 @@ /area/hallway/primary/central) "baG" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -27366,8 +25421,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -27496,8 +25549,6 @@ /area/hallway/primary/central) "bba" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -27531,7 +25582,6 @@ pixel_y = 24 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/light/small{ @@ -27543,8 +25593,6 @@ /area/storage/tools) "bbe" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/yellow/side{ @@ -27589,8 +25637,6 @@ /area/maintenance/starboard/fore) "bbj" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -27680,8 +25726,6 @@ /area/storage/tech) "bbq" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -27761,8 +25805,6 @@ /area/crew_quarters/heads/chief) "bbx" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -27795,8 +25837,6 @@ "bbz" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -27909,8 +25949,6 @@ "bbJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/arrival{ @@ -27922,8 +25960,6 @@ /area/security/checkpoint/customs) "bbL" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -27963,7 +25999,6 @@ pixel_x = -24 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plasteel/brown{ @@ -27972,14 +26007,10 @@ /area/quartermaster/office) "bbR" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/brown{ @@ -28106,8 +26137,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -28265,8 +26294,6 @@ dir = 10 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -28339,8 +26366,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/newscaster{ @@ -28359,8 +26384,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/bot{ @@ -28378,7 +26401,6 @@ pixel_x = -24 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plasteel/red/side{ @@ -28387,8 +26409,6 @@ /area/security/checkpoint/engineering) "bcM" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel, @@ -28407,7 +26427,7 @@ }, /area/security/checkpoint/engineering) "bcO" = ( -/obj/machinery/vending/kink, +/obj/structure/easel, /turf/open/floor/plating{ icon_state = "platingdmg3" }, @@ -28451,8 +26471,6 @@ pixel_x = 24 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/arrival{ @@ -28486,7 +26504,6 @@ pixel_y = 24 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -28549,8 +26566,6 @@ /area/security/checkpoint/customs) "bdd" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating{ @@ -28636,8 +26651,6 @@ /area/quartermaster/office) "bdm" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -28727,8 +26740,6 @@ /area/hallway/primary/central) "bdy" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/sortjunction{ @@ -28788,8 +26799,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -28879,8 +26888,6 @@ /area/hallway/primary/central) "bdP" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -28947,8 +26954,6 @@ /area/storage/tools) "bdW" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -29019,8 +27024,6 @@ /area/storage/tech) "bed" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -29111,8 +27114,6 @@ req_access_txt = "0" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/airalarm{ @@ -29132,8 +27133,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/bot{ @@ -29165,8 +27164,6 @@ req_access_txt = "1" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/red/side{ @@ -29176,18 +27173,12 @@ "ben" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/red/side, @@ -29199,8 +27190,6 @@ pixel_x = 24 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/red/side{ @@ -29261,15 +27250,12 @@ pixel_y = 24 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) "bex" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -29372,7 +27358,6 @@ "beK" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plating, @@ -29383,8 +27368,6 @@ /obj/item/folder/red, /obj/item/folder/red, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side{ @@ -29393,26 +27376,18 @@ /area/security/checkpoint/customs) "beM" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/security/checkpoint/customs) "beN" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel, @@ -29420,8 +27395,6 @@ "beO" = ( /obj/structure/chair/office/dark, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -29431,13 +27404,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel, @@ -29447,8 +27416,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side{ @@ -29464,24 +27431,18 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/port/fore) "beS" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/stripes/line{ @@ -29551,8 +27512,6 @@ /area/quartermaster/office) "beZ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -29640,8 +27599,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/floorgrime, @@ -29651,8 +27608,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -29670,8 +27625,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -29684,8 +27637,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -29706,13 +27657,9 @@ dir = 9 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -29724,7 +27671,6 @@ "bfr" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/door/poddoor/preopen{ @@ -29733,7 +27679,6 @@ name = "bridge blast door" }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plating, @@ -29741,11 +27686,9 @@ "bfs" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/door/poddoor/preopen{ @@ -29754,7 +27697,6 @@ name = "bridge blast door" }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plating, @@ -29762,11 +27704,9 @@ "bft" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/door/poddoor/preopen{ @@ -29779,7 +27719,6 @@ "bfu" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/door/poddoor/preopen{ @@ -29795,7 +27734,6 @@ "bfw" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/door/poddoor/preopen{ @@ -29808,7 +27746,6 @@ "bfx" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/door/poddoor/preopen{ @@ -29817,7 +27754,6 @@ name = "bridge blast door" }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plating, @@ -29938,8 +27874,6 @@ req_access_txt = "12" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -29960,8 +27894,6 @@ req_one_access_txt = "23;30" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -29973,7 +27905,6 @@ /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/door/poddoor/preopen{ @@ -29986,7 +27917,6 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/door/poddoor/preopen{ @@ -30007,8 +27937,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/delivery, @@ -30017,8 +27945,6 @@ "bfU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/spawner/lootdrop/maintenance, @@ -30038,8 +27964,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -30213,8 +28137,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/arrival{ @@ -30246,8 +28168,6 @@ /obj/item/pen, /obj/structure/table/reinforced, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/red/side, @@ -30269,8 +28189,6 @@ }, /obj/structure/table/reinforced, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/red/side, @@ -30316,8 +28234,6 @@ /area/security/warden) "bgC" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -30403,8 +28319,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel, @@ -30417,9 +28331,7 @@ dir = 4 }, /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /turf/open/floor/plasteel, /area/quartermaster/sorting) @@ -30435,9 +28347,7 @@ }, /obj/effect/turf_decal/delivery, /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /turf/open/floor/plasteel, /area/quartermaster/sorting) @@ -30446,9 +28356,7 @@ dir = 2 }, /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /turf/open/floor/plasteel/brown{ dir = 8 @@ -30456,17 +28364,13 @@ /area/quartermaster/office) "bgP" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, @@ -30476,8 +28380,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -30489,8 +28391,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -30504,8 +28404,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/brown{ @@ -30526,8 +28424,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -30541,8 +28437,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/brown{ @@ -30558,8 +28452,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -30569,8 +28461,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -30583,8 +28473,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/junction{ @@ -30616,15 +28504,12 @@ /obj/item/storage/box/mousetraps, /obj/item/storage/box/mousetraps, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plasteel/floorgrime, /area/janitor) "bhb" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/portable_atmospherics/canister/water_vapor, @@ -30637,8 +28522,6 @@ "bhc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/landmark/start/janitor, @@ -30685,8 +28568,6 @@ /area/bridge) "bhh" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/computer/card, @@ -30731,8 +28612,6 @@ /area/bridge) "bhm" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/computer/monitor{ @@ -30775,8 +28654,6 @@ /area/bridge) "bhr" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/computer/prisoner, @@ -30787,7 +28664,6 @@ "bhs" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/door/poddoor/preopen{ @@ -30875,8 +28751,6 @@ /area/hallway/primary/central) "bhB" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/navbeacon{ @@ -30963,8 +28837,6 @@ dir = 2 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/yellow/corner{ @@ -31048,7 +28920,6 @@ pixel_y = 26 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plasteel/yellow/corner{ @@ -31135,8 +29006,6 @@ "bhY" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/junction{ @@ -31181,8 +29050,6 @@ "bic" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -31310,8 +29177,6 @@ /area/ai_monitored/turret_protected/ai) "biq" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -31350,8 +29215,6 @@ /area/hallway/secondary/entry) "biv" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -31400,8 +29263,6 @@ /area/hallway/primary/port) "biB" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -31456,8 +29317,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -31531,8 +29390,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -31592,7 +29449,6 @@ "biY" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/door/poddoor/preopen{ @@ -31608,16 +29464,12 @@ pixel_y = -3 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table/glass, @@ -31645,8 +29497,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -31662,8 +29512,6 @@ pixel_y = 3 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -31735,21 +29583,15 @@ /area/hallway/primary/central) "bjm" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel, /area/hallway/primary/central) "bjn" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -31761,8 +29603,6 @@ /area/hallway/primary/central) "bjo" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -31776,8 +29616,6 @@ /area/hallway/primary/starboard) "bjp" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -31787,24 +29625,18 @@ /area/hallway/primary/starboard) "bjq" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel, /area/hallway/primary/starboard) "bjr" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -31815,8 +29647,6 @@ /area/hallway/primary/starboard) "bjs" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -31829,24 +29659,18 @@ /area/hallway/primary/starboard) "bjt" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel, /area/hallway/primary/starboard) "bju" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -31857,8 +29681,6 @@ /area/hallway/primary/starboard) "bjv" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/junction{ @@ -31869,8 +29691,6 @@ /area/hallway/primary/starboard) "bjw" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -31881,8 +29701,6 @@ /area/hallway/primary/starboard) "bjx" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, @@ -31893,8 +29711,6 @@ /area/hallway/primary/starboard) "bjy" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -31905,8 +29721,6 @@ /area/hallway/primary/starboard) "bjz" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -31917,8 +29731,6 @@ /area/hallway/primary/starboard) "bjA" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -31929,8 +29741,6 @@ /area/hallway/primary/starboard) "bjB" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -31938,16 +29748,12 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel, /area/hallway/primary/starboard) "bjC" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -31964,8 +29770,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel, @@ -31985,8 +29789,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/light_switch{ @@ -31999,8 +29801,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -32014,8 +29814,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -32029,13 +29827,9 @@ dir = 2 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel, @@ -32045,13 +29839,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -32059,8 +29849,6 @@ /area/engine/break_room) "bjK" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -32135,8 +29923,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -32203,8 +29989,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -32344,8 +30128,6 @@ }, /obj/item/storage/box/lights/mixed, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/arrival{ @@ -32369,7 +30151,6 @@ pixel_x = 26 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/arrival{ @@ -32446,8 +30227,6 @@ dir = 6 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/brown/corner{ @@ -32463,8 +30242,6 @@ dir = 9 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/rack{ @@ -32532,8 +30309,6 @@ /area/maintenance/central) "bkC" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/airalarm{ @@ -32562,8 +30337,6 @@ pixel_y = 3 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table/glass, @@ -32574,16 +30347,12 @@ "bkF" = ( /obj/item/device/radio/beacon, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, /area/bridge) "bkG" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/recharger{ @@ -32599,8 +30368,6 @@ /area/bridge) "bkH" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/computer/security/mining{ @@ -32622,8 +30389,6 @@ pixel_x = 32 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/computer/cargo/request, @@ -32710,8 +30475,6 @@ /area/hallway/primary/central) "bkR" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/navbeacon{ @@ -32758,8 +30521,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/caution/corner{ @@ -32856,8 +30617,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/caution/corner{ @@ -32892,8 +30651,6 @@ /area/hallway/primary/starboard) "blh" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -32917,15 +30674,12 @@ dir = 4 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plating, /area/engine/break_room) "blk" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -32959,8 +30713,6 @@ /area/engine/break_room) "blp" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -33105,7 +30857,6 @@ charge = 5e+006 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plasteel/vault{ @@ -33118,8 +30869,6 @@ pixel_y = 32 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/vault{ @@ -33142,8 +30891,7 @@ "blM" = ( /obj/machinery/power/port_gen/pacman, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plasteel/vault{ dir = 8 @@ -33194,13 +30942,9 @@ /area/shuttle/arrival) "blT" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -33211,8 +30955,6 @@ /area/hallway/secondary/entry) "blU" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/arrival{ @@ -33221,8 +30963,6 @@ /area/hallway/secondary/entry) "blV" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -33230,8 +30970,6 @@ /area/hallway/primary/port) "blW" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/side{ @@ -33240,16 +30978,12 @@ /area/hallway/primary/port) "blX" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/side, /area/hallway/primary/port) "blY" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/navbeacon{ @@ -33257,16 +30991,12 @@ location = "4-Customs" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/neutral/side, /area/hallway/primary/port) "blZ" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -33276,8 +31006,6 @@ /area/hallway/primary/port) "bma" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/side{ @@ -33286,13 +31014,9 @@ /area/hallway/primary/port) "bmb" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -33304,8 +31028,6 @@ /area/hallway/primary/port) "bmc" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -33384,8 +31106,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -33509,13 +31229,9 @@ /area/bridge) "bmw" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/darkblue/side{ @@ -33527,8 +31243,6 @@ dir = 6 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black, @@ -33538,29 +31252,21 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black, /area/bridge) "bmz" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black, /area/bridge) "bmA" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/darkblue/corner, @@ -33568,8 +31274,6 @@ "bmB" = ( /obj/structure/window/reinforced, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/darkblue/side{ @@ -33578,8 +31282,6 @@ /area/bridge) "bmC" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/window/brigdoor{ @@ -33594,13 +31296,9 @@ "bmD" = ( /obj/structure/window/reinforced, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/darkblue/side{ @@ -33609,8 +31307,6 @@ /area/bridge) "bmE" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/darkblue/corner{ @@ -33622,13 +31318,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/black, @@ -33638,8 +31330,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -33724,8 +31414,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -33759,8 +31447,6 @@ "bmT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance{ @@ -33790,21 +31476,15 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel, /area/hallway/primary/starboard) "bmX" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/sortjunction{ @@ -33830,21 +31510,15 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel, @@ -33854,8 +31528,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -33909,8 +31581,6 @@ pixel_y = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -34160,7 +31830,6 @@ pixel_x = 29 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/light/small{ @@ -34178,8 +31847,7 @@ dir = 1 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -34194,13 +31862,9 @@ /area/ai_monitored/storage/satellite) "bnG" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -34213,8 +31877,6 @@ /area/ai_monitored/storage/satellite) "bnH" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -34238,8 +31900,6 @@ dir = 10 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/stripes/line{ @@ -34265,8 +31925,6 @@ /area/hallway/secondary/entry) "bnL" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -34291,8 +31949,6 @@ /area/hallway/primary/port) "bnP" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/grimy, @@ -34308,8 +31964,6 @@ /area/hallway/primary/port) "bnS" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -34411,7 +32065,6 @@ pixel_y = 26 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -34464,8 +32117,6 @@ "bog" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -34505,8 +32156,6 @@ /area/hallway/primary/central) "bok" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/navbeacon{ @@ -34519,7 +32168,6 @@ "bol" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/door/poddoor/preopen{ @@ -34531,8 +32179,6 @@ "bom" = ( /obj/item/folder/blue, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/table/wood, @@ -34545,8 +32191,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/wood, @@ -34633,8 +32277,6 @@ /area/bridge) "boz" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/darkblue/corner{ @@ -34643,13 +32285,9 @@ /area/bridge) "boA" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/black, @@ -34771,8 +32409,6 @@ dir = 10 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -34857,8 +32493,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/spawner/lootdrop/maintenance, @@ -34895,8 +32529,6 @@ /area/maintenance/starboard) "bpc" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -34920,8 +32552,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -34958,14 +32588,10 @@ /area/engine/break_room) "bpj" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel, @@ -34975,12 +32601,9 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel, @@ -34990,8 +32613,7 @@ dir = 10 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plasteel, /area/engine/break_room) @@ -35001,8 +32623,6 @@ name = "Transit Tube Blast Door" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -35016,8 +32636,6 @@ /area/aisat) "bpp" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black, @@ -35076,8 +32694,6 @@ }, /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/transit_tube/horizontal, @@ -35089,8 +32705,6 @@ }, /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/transit_tube/crossing/horizontal, @@ -35102,8 +32716,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/transit_tube/horizontal, @@ -35115,8 +32727,6 @@ }, /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/transit_tube/junction/flipped{ @@ -35130,8 +32740,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/space, @@ -35145,8 +32753,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/space, @@ -35159,8 +32765,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/transit_tube/station{ @@ -35173,7 +32777,6 @@ dir = 10 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/black, @@ -35181,12 +32784,9 @@ "bpE" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plasteel/black, @@ -35194,9 +32794,7 @@ "bpF" = ( /obj/machinery/holopad, /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/black, @@ -35206,17 +32804,13 @@ dir = 1 }, /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /turf/open/floor/plasteel/black, /area/aisat) "bpH" = ( /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /obj/machinery/ai_slipper{ uses = 10 @@ -35225,9 +32819,7 @@ /area/aisat) "bpI" = ( /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/hatch{ @@ -35239,17 +32831,13 @@ "bpJ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /turf/open/floor/plasteel/black, /area/ai_monitored/turret_protected/aisat/foyer) "bpK" = ( /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /obj/machinery/holopad, /obj/item/device/radio/beacon, @@ -35257,25 +32845,19 @@ /area/ai_monitored/turret_protected/aisat/foyer) "bpL" = ( /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/black, /area/ai_monitored/turret_protected/aisat/foyer) "bpM" = ( /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/hatch{ @@ -35286,9 +32868,7 @@ /area/ai_monitored/turret_protected/aisat_interior) "bpN" = ( /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 @@ -35297,9 +32877,7 @@ /area/ai_monitored/turret_protected/aisat_interior) "bpO" = ( /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 @@ -35311,14 +32889,10 @@ /area/ai_monitored/turret_protected/aisat_interior) "bpP" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/ai_slipper{ @@ -35329,31 +32903,23 @@ /area/ai_monitored/turret_protected/aisat_interior) "bpQ" = ( /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/black, /area/ai_monitored/turret_protected/aisat_interior) "bpR" = ( /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /obj/structure/cable/yellow{ - icon_state = "1-4"; - d1 = 1; - d2 = 4 + icon_state = "1-4" }, /turf/open/floor/plasteel/black, /area/ai_monitored/turret_protected/aisat_interior) "bpS" = ( /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance_hatch{ @@ -35364,27 +32930,19 @@ /area/ai_monitored/turret_protected/aisat_interior) "bpT" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/black, /area/ai_monitored/storage/satellite) "bpU" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black, @@ -35394,8 +32952,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/black, @@ -35463,8 +33019,6 @@ "bqc" = ( /obj/machinery/holopad, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -35478,7 +33032,6 @@ pixel_x = 24 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plasteel/arrival{ @@ -35502,8 +33055,6 @@ /area/hallway/primary/port) "bqg" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/holopad{ @@ -35527,15 +33078,11 @@ /area/hallway/primary/port) "bqj" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/side{ @@ -35544,8 +33091,6 @@ /area/hallway/primary/port) "bqk" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -35556,8 +33101,6 @@ /area/hallway/primary/port) "bql" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -35590,8 +33133,6 @@ /area/ai_monitored/turret_protected/ai) "bqn" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -35602,8 +33143,6 @@ /area/hallway/primary/port) "bqo" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -35614,13 +33153,9 @@ /area/hallway/primary/port) "bqp" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -35631,8 +33166,6 @@ /area/hallway/primary/port) "bqq" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -35643,13 +33176,9 @@ /area/hallway/primary/port) "bqr" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -35659,8 +33188,6 @@ /area/hallway/primary/port) "bqs" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -35673,8 +33200,6 @@ /area/hallway/primary/port) "bqt" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -35687,8 +33212,6 @@ /area/hallway/primary/port) "bqu" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -35699,14 +33222,10 @@ /area/hallway/primary/port) "bqv" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -35717,16 +33236,12 @@ /area/hallway/primary/port) "bqw" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/hallway/primary/port) "bqx" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -35737,8 +33252,6 @@ /area/hallway/primary/port) "bqy" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -35746,13 +33259,9 @@ /area/hallway/primary/central) "bqz" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -35781,8 +33290,6 @@ /area/crew_quarters/heads/hop) "bqC" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/window{ @@ -35943,8 +33450,6 @@ /area/bridge) "bqS" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/darkblue/side{ @@ -35984,7 +33489,6 @@ pixel_x = -24 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/light/small{ @@ -35997,8 +33501,6 @@ /area/crew_quarters/heads/captain/private) "bqW" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/wood, @@ -36039,8 +33541,6 @@ /area/hallway/primary/central) "brb" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -36066,7 +33566,6 @@ pixel_x = -25 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/item/paper_bin, @@ -36082,8 +33581,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel, @@ -36174,8 +33671,6 @@ /area/maintenance/starboard) "bro" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/sortjunction{ @@ -36193,8 +33688,6 @@ /area/maintenance/starboard) "brp" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -36208,8 +33701,6 @@ /area/maintenance/starboard) "brq" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -36222,8 +33713,6 @@ /area/maintenance/starboard) "brr" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -36237,8 +33726,6 @@ "brs" = ( /obj/item/device/assembly/prox_sensor, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -36251,8 +33738,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/storage/box/lights/mixed, @@ -36264,8 +33749,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -36278,8 +33761,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance{ @@ -36293,8 +33774,6 @@ dir = 10 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -36322,8 +33801,6 @@ "bry" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -36397,7 +33874,6 @@ pixel_y = -26 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/light, @@ -36408,8 +33884,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/firealarm{ @@ -36420,8 +33894,6 @@ /area/engine/break_room) "brH" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -36434,8 +33906,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -36461,16 +33931,12 @@ req_one_access_txt = "32;19" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black, /area/engine/break_room) "brL" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -36484,8 +33950,6 @@ }, /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/window/reinforced{ @@ -36501,8 +33965,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/table/glass, @@ -36554,7 +34016,6 @@ pixel_y = -24 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plasteel/darkblue/corner{ @@ -36565,8 +34026,6 @@ /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/darkblue/corner{ @@ -36702,8 +34161,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "bsc" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, @@ -36815,14 +34272,10 @@ /area/hallway/secondary/entry) "bso" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/landmark/lightsout, @@ -36830,8 +34283,6 @@ /area/hallway/secondary/entry) "bsp" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/newscaster{ @@ -36853,8 +34304,6 @@ /area/hallway/primary/port) "bsr" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/carpet, @@ -36879,8 +34328,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/side{ @@ -36962,8 +34409,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -37047,8 +34492,6 @@ /area/hallway/primary/central) "bsL" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/navbeacon{ @@ -37078,8 +34521,6 @@ "bsN" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/carpet, @@ -37188,8 +34629,6 @@ /area/bridge) "bta" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -37231,8 +34670,6 @@ req_access_txt = "20" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/wood, @@ -37281,8 +34718,6 @@ dir = 6 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/landmark/blobstart, @@ -37299,8 +34734,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance{ @@ -37315,8 +34748,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -37329,16 +34760,12 @@ /area/hallway/primary/central) "btk" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel, @@ -37410,8 +34837,6 @@ /area/crew_quarters/bar) "bts" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance{ @@ -37443,8 +34868,6 @@ /area/maintenance/starboard) "btw" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -37487,8 +34910,6 @@ dir = 10 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/caution{ @@ -37558,7 +34979,6 @@ /area/engine/break_room) "btH" = ( /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -37605,8 +35025,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -37698,8 +35116,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/side{ @@ -37733,8 +35149,6 @@ req_one_access_txt = "12;27;37" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -37791,8 +35205,6 @@ /area/hallway/primary/central) "buk" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/sortjunction{ @@ -37801,16 +35213,12 @@ sortType = 15 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel, /area/hallway/primary/central) "bul" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -37825,8 +35233,6 @@ /area/hallway/primary/central) "bum" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -37845,8 +35251,6 @@ /area/crew_quarters/heads/hop) "bun" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -37860,42 +35264,30 @@ /area/crew_quarters/heads/hop) "buo" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/carpet, /area/crew_quarters/heads/hop) "bup" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/carpet, /area/crew_quarters/heads/hop) "buq" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/holopad, @@ -37903,16 +35295,12 @@ /area/crew_quarters/heads/hop) "bur" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/carpet, @@ -37922,8 +35310,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/carpet, @@ -37995,8 +35381,6 @@ /area/bridge) "buD" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/device/radio/intercom{ @@ -38026,8 +35410,6 @@ /area/crew_quarters/heads/captain/private) "buH" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/carpet, @@ -38049,8 +35431,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/camera{ @@ -38116,8 +35496,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/wood, @@ -38156,8 +35534,6 @@ /area/maintenance/starboard) "buX" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -38193,8 +35569,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -38305,8 +35679,6 @@ name = "Atmos Blast Door" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -38429,8 +35801,6 @@ "bvx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/grimy, @@ -38543,8 +35913,6 @@ /area/hallway/secondary/entry) "bvJ" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -38554,8 +35922,6 @@ /area/hallway/secondary/entry) "bvK" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -38566,16 +35932,12 @@ /area/hallway/secondary/entry) "bvL" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -38620,8 +35982,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/side{ @@ -38658,8 +36018,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner{ @@ -38683,8 +36041,6 @@ /area/crew_quarters/toilet/auxiliary) "bvY" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -38767,8 +36123,6 @@ /obj/item/hand_labeler, /obj/item/stack/packageWrap, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table/wood, @@ -38792,8 +36146,6 @@ "bwn" = ( /obj/machinery/computer/card, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/wood, @@ -38802,8 +36154,6 @@ /obj/structure/chair/office/dark, /obj/effect/landmark/start/head_of_personnel, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light_switch{ @@ -38929,8 +36279,6 @@ /area/bridge) "bwy" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/camera{ @@ -38971,8 +36319,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/chair/comfy/brown{ @@ -38986,8 +36332,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/storage/fancy/donut_box, @@ -38998,8 +36342,6 @@ dir = 2 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -39016,8 +36358,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -39035,8 +36375,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -39052,13 +36390,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/junction, @@ -39069,8 +36403,6 @@ /area/maintenance/central) "bwI" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -39167,7 +36499,6 @@ pixel_y = 25 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/structure/extinguisher_cabinet{ @@ -39177,21 +36508,15 @@ /area/crew_quarters/bar) "bwS" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/wood, /area/crew_quarters/bar) "bwT" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/wood, @@ -39204,8 +36529,6 @@ pixel_y = 21 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light{ @@ -39220,8 +36543,6 @@ /area/crew_quarters/bar) "bwV" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -39241,8 +36562,6 @@ /area/crew_quarters/bar) "bwY" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -39266,8 +36585,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -39295,8 +36612,6 @@ "bxe" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -39385,8 +36700,6 @@ /area/tcommsat/computer) "bxp" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -39494,8 +36807,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -39517,8 +36828,6 @@ /area/hallway/secondary/entry) "bxD" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -39571,8 +36880,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -39588,8 +36895,6 @@ dir = 10 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/neutral/side, @@ -39622,8 +36927,6 @@ dir = 5 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/sign/map/right{ @@ -39638,8 +36941,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/side{ @@ -39656,8 +36957,6 @@ req_access_txt = "0" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/floorgrime, @@ -39667,8 +36966,6 @@ dir = 10 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/sink/kitchen{ @@ -39699,7 +36996,6 @@ pixel_y = -24 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/effect/turf_decal/stripes/line{ @@ -39709,13 +37005,9 @@ /area/maintenance/port) "bxT" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -39774,8 +37066,6 @@ req_access_txt = "57" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -39867,8 +37157,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/darkblue/corner, @@ -39924,8 +37212,6 @@ "byu" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -39991,8 +37277,6 @@ /area/crew_quarters/bar) "byD" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table/wood/poker, @@ -40070,7 +37354,6 @@ pixel_y = 25 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/structure/table/wood, @@ -40240,7 +37523,6 @@ pixel_y = 28 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/camera{ @@ -40252,8 +37534,6 @@ "byY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -40435,13 +37715,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -40452,8 +37728,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/grimy, @@ -40463,8 +37737,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/chair/office/dark, @@ -40481,7 +37753,6 @@ network = "tcommsat" }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/grimy, @@ -40513,8 +37784,6 @@ /area/aisat) "bzw" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -40539,8 +37808,6 @@ req_access_txt = "32" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -40549,8 +37816,6 @@ "bzA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light/small{ @@ -40566,8 +37831,6 @@ /area/crew_quarters/toilet/auxiliary) "bzC" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -40667,8 +37930,6 @@ /area/hallway/secondary/command) "bzP" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/flasher{ @@ -40768,8 +38029,6 @@ /area/bridge) "bAa" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/button/door{ @@ -40833,8 +38092,6 @@ "bAh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -40890,8 +38147,6 @@ /area/crew_quarters/bar) "bAp" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table/wood/poker, @@ -40941,8 +38196,6 @@ /area/crew_quarters/theatre) "bAv" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -40970,8 +38223,6 @@ /area/hallway/primary/starboard) "bAy" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -40995,7 +38246,6 @@ name = "Atmos Blast Door" }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plating, @@ -41062,13 +38312,9 @@ /area/engine/atmos) "bAH" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel, @@ -41076,8 +38322,6 @@ "bAI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel, @@ -41178,8 +38422,6 @@ /area/tcommsat/computer) "bAX" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -41241,8 +38483,6 @@ /area/hallway/secondary/entry) "bBd" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -41269,8 +38509,6 @@ /area/security/vacantoffice) "bBh" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -41307,8 +38545,6 @@ "bBm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/floorgrime, @@ -41414,7 +38650,6 @@ "bBz" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plating, @@ -41425,8 +38660,6 @@ name = "HoP Queue Shutters" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/loadingarea{ @@ -41436,19 +38669,15 @@ "bBB" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, /area/hallway/secondary/command) "bBC" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/poddoor/shutters/preopen{ @@ -41456,8 +38685,6 @@ name = "HoP Queue Shutters" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/loadingarea, @@ -41500,8 +38727,6 @@ /area/bridge) "bBG" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -41519,7 +38744,6 @@ name = "Council Blast Doors" }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plating, @@ -41532,11 +38756,9 @@ name = "Council Blast Doors" }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -41549,15 +38771,12 @@ name = "Council Blast Doors" }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plating, @@ -41570,11 +38789,9 @@ name = "Council Blast Doors" }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plating, @@ -41587,7 +38804,6 @@ name = "Council Blast Doors" }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -41603,8 +38819,6 @@ req_access_txt = "19" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault, @@ -41622,8 +38836,6 @@ "bBO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance{ @@ -41665,8 +38877,6 @@ /area/hallway/primary/central) "bBR" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/navbeacon{ @@ -41695,8 +38905,6 @@ /area/crew_quarters/bar) "bBX" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/wood, @@ -41727,8 +38935,6 @@ /area/crew_quarters/theatre) "bCc" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/carpet, @@ -41784,13 +38990,9 @@ }, /obj/effect/turf_decal/delivery, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel, @@ -41801,9 +39003,7 @@ }, /obj/effect/landmark/start/atmospheric_technician, /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /turf/open/floor/plasteel/caution{ dir = 8 @@ -41817,8 +39017,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel, @@ -41860,8 +39058,6 @@ /area/engine/atmos) "bCo" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -41979,8 +39175,6 @@ name = "Telecomms Server Room" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -42001,8 +39195,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/extinguisher_cabinet{ @@ -42014,8 +39206,6 @@ /area/hallway/secondary/entry) "bCI" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -42104,8 +39294,6 @@ /area/hallway/primary/central) "bCX" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -42183,8 +39371,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -42268,8 +39454,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/side{ @@ -42314,7 +39498,6 @@ pixel_y = 25 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plasteel/neutral/corner{ @@ -42326,8 +39509,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner{ @@ -42402,8 +39583,6 @@ /area/hallway/secondary/command) "bDx" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -42446,8 +39625,6 @@ /area/hallway/primary/central) "bDA" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -42499,8 +39676,6 @@ /area/crew_quarters/bar) "bDH" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/chair/stool{ @@ -42541,8 +39716,6 @@ /area/hallway/primary/starboard) "bDN" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -42563,17 +39736,13 @@ /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel, /area/engine/atmos) "bDQ" = ( /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /turf/open/floor/plasteel/caution{ dir = 4 @@ -42585,9 +39754,7 @@ req_access_txt = "24" }, /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /turf/open/floor/plasteel, /area/engine/atmos) @@ -42598,13 +39765,9 @@ /area/engine/atmos) "bDT" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/landmark/event_spawn, @@ -42707,8 +39870,6 @@ /area/tcommsat/server) "bEi" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -42741,8 +39902,6 @@ /area/hallway/secondary/entry) "bEn" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/status_display{ @@ -42755,8 +39914,6 @@ "bEo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/storage/box/lights/mixed, @@ -42860,14 +40017,10 @@ /area/library) "bEB" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/navbeacon{ @@ -42881,8 +40034,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -42895,8 +40046,6 @@ }, /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass{ @@ -42911,8 +40060,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -42924,8 +40071,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -42935,13 +40080,9 @@ /area/hallway/secondary/command) "bEG" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -42956,8 +40097,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light, @@ -42973,8 +40112,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/extinguisher_cabinet{ @@ -42994,13 +40131,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -43012,13 +40145,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -43029,8 +40158,6 @@ /area/hallway/secondary/command) "bEL" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -43042,8 +40169,6 @@ /area/hallway/secondary/command) "bEM" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -43061,13 +40186,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/neutral/corner{ @@ -43076,8 +40197,6 @@ /area/hallway/secondary/command) "bEO" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light, @@ -43093,8 +40212,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -43102,21 +40219,15 @@ "bEQ" = ( /obj/machinery/holopad, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel, @@ -43127,8 +40238,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -43138,13 +40247,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/neutral/corner{ @@ -43156,8 +40261,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light, @@ -43170,18 +40273,12 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/neutral/corner{ @@ -43193,13 +40290,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/newscaster{ @@ -43214,8 +40307,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -43227,14 +40318,10 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/neutral/corner{ @@ -43243,8 +40330,6 @@ /area/hallway/secondary/command) "bEY" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -43259,8 +40344,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/extinguisher_cabinet{ @@ -43275,8 +40358,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light, @@ -43290,8 +40371,6 @@ /area/hallway/secondary/command) "bFb" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -43306,8 +40385,6 @@ dir = 2 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/event_spawn, @@ -43317,8 +40394,6 @@ /area/hallway/secondary/command) "bFd" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -43333,18 +40408,12 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/neutral/corner{ @@ -43356,8 +40425,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -43370,8 +40437,6 @@ /area/hallway/secondary/command) "bFg" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -43383,18 +40448,12 @@ /area/hallway/primary/central) "bFh" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/navbeacon{ @@ -43405,8 +40464,6 @@ /area/hallway/primary/central) "bFi" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -43419,8 +40476,6 @@ "bFj" = ( /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -43433,8 +40488,6 @@ /area/crew_quarters/bar) "bFk" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -43447,8 +40500,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -43459,8 +40510,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/bar, @@ -43470,8 +40519,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/bar, @@ -43481,16 +40528,12 @@ dir = 2 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) "bFp" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -43505,24 +40548,18 @@ /area/crew_quarters/bar) "bFq" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/wood, /area/crew_quarters/bar) "bFr" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -43535,13 +40572,9 @@ /area/crew_quarters/bar) "bFs" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -43597,13 +40630,9 @@ /area/crew_quarters/theatre) "bFy" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -43616,8 +40645,6 @@ /area/crew_quarters/theatre) "bFz" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -43635,8 +40662,6 @@ req_one_access_txt = "12;46" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -43649,13 +40674,9 @@ /area/maintenance/starboard) "bFB" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -43686,8 +40707,6 @@ /area/hallway/primary/starboard) "bFD" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -43789,8 +40808,6 @@ dir = 6 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -43937,8 +40954,6 @@ /area/tcommsat/computer) "bGj" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -43948,8 +40963,6 @@ /area/security/vacantoffice) "bGk" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -43981,8 +40994,6 @@ /area/crew_quarters/toilet/auxiliary) "bGp" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -44078,8 +41089,6 @@ "bGB" = ( /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -44095,8 +41104,6 @@ /area/teleporter) "bGD" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -44125,8 +41132,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner{ @@ -44148,8 +41153,6 @@ dir = 6 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -44165,8 +41168,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/extinguisher_cabinet{ @@ -44190,8 +41191,6 @@ /area/gateway) "bGO" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -44228,8 +41227,6 @@ req_one_access_txt = "12;17" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -44264,8 +41261,6 @@ /area/hallway/primary/central) "bGW" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -44315,8 +41310,6 @@ /area/crew_quarters/bar) "bHd" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -44329,8 +41322,6 @@ /area/crew_quarters/bar) "bHe" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -44340,8 +41331,6 @@ /area/crew_quarters/bar) "bHf" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -44351,8 +41340,6 @@ /area/crew_quarters/bar) "bHg" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -44365,8 +41352,6 @@ /area/crew_quarters/theatre) "bHh" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -44377,8 +41362,6 @@ /area/crew_quarters/theatre) "bHi" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -44388,8 +41371,6 @@ /area/crew_quarters/theatre) "bHj" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -44400,8 +41381,6 @@ "bHl" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -44418,8 +41397,6 @@ /area/hallway/primary/starboard) "bHn" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/navbeacon{ @@ -44494,8 +41471,6 @@ "bHu" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -44564,8 +41539,6 @@ "bHE" = ( /obj/machinery/holopad, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -44575,8 +41548,6 @@ /area/tcommsat/server) "bHF" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -44600,8 +41571,6 @@ /area/hallway/secondary/entry) "bHI" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/airalarm{ @@ -44717,8 +41686,6 @@ /area/library) "bHW" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -44757,8 +41724,6 @@ /area/ai_monitored/storage/eva) "bIb" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -44808,13 +41773,9 @@ /area/teleporter) "bIg" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -44841,7 +41802,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/vault{ @@ -44853,13 +41813,9 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner{ @@ -44871,8 +41827,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -44882,13 +41836,9 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/neutral/corner{ @@ -44898,7 +41848,6 @@ "bIl" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -44917,13 +41866,9 @@ /area/gateway) "bIn" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -44934,8 +41879,6 @@ /area/gateway) "bIo" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -44967,7 +41910,6 @@ pixel_x = 28 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/effect/turf_decal/bot{ @@ -44979,8 +41921,6 @@ /area/gateway) "bIq" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -44990,8 +41930,6 @@ /area/maintenance/central) "bIr" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -45082,8 +42020,6 @@ "bIE" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -45099,8 +42035,6 @@ /area/hallway/primary/starboard) "bIG" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -45199,8 +42133,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -45346,16 +42278,12 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, /area/maintenance/port) "bJk" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -45378,8 +42306,6 @@ /area/tcommsat/server) "bJo" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -45401,8 +42327,6 @@ /area/maintenance/port) "bJq" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -45440,8 +42364,6 @@ /area/security/vacantoffice) "bJu" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -45538,8 +42460,6 @@ /area/ai_monitored/storage/eva) "bJG" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -45581,8 +42501,6 @@ /area/teleporter) "bJK" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -45610,8 +42528,6 @@ /obj/item/device/flashlight, /obj/structure/window/reinforced, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -45624,7 +42540,6 @@ "bJM" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -45634,8 +42549,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -45660,8 +42573,6 @@ /area/hallway/secondary/command) "bJQ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/device/radio/beacon, @@ -45674,8 +42585,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/neutral/corner{ @@ -45685,7 +42594,6 @@ "bJS" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plating, @@ -45693,8 +42601,6 @@ "bJT" = ( /obj/structure/closet/l3closet/scientist, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/bot{ @@ -45706,21 +42612,15 @@ /area/gateway) "bJU" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/turf_decal/stripes/line{ @@ -45734,8 +42634,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -45747,8 +42645,6 @@ /obj/structure/table, /obj/item/folder/yellow, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/storage/firstaid/regular{ @@ -45765,11 +42661,9 @@ "bJX" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plating, @@ -45803,8 +42697,6 @@ /area/gateway) "bKb" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating{ @@ -45887,8 +42779,6 @@ /area/crew_quarters/kitchen) "bKk" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -45957,8 +42847,6 @@ req_access_txt = "61" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/delivery, @@ -45989,8 +42877,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -46187,8 +43073,6 @@ /area/hallway/secondary/entry) "bKW" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/firealarm{ @@ -46206,8 +43090,6 @@ /area/hallway/secondary/entry) "bKX" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating{ @@ -46222,15 +43104,12 @@ pixel_x = -25 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/wood, /area/security/vacantoffice) "bKZ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/wood, @@ -46346,7 +43225,6 @@ pixel_x = -24 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plasteel/vault{ @@ -46355,8 +43233,6 @@ /area/ai_monitored/storage/eva) "bLn" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -46366,16 +43242,12 @@ /area/ai_monitored/storage/eva) "bLo" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) "bLp" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -46461,7 +43333,6 @@ "bLv" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/door/poddoor/shutters/preopen{ @@ -46475,8 +43346,6 @@ /area/bridge/showroom/corporate) "bLx" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -46501,8 +43370,6 @@ /area/gateway) "bLz" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -46555,8 +43422,6 @@ /area/gateway) "bLG" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/cigbutt, @@ -46654,8 +43519,6 @@ pixel_y = 28 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/cafeteria{ @@ -46664,8 +43527,6 @@ /area/crew_quarters/kitchen) "bLP" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/cafeteria{ @@ -46712,8 +43573,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/holopad, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -46762,8 +43621,6 @@ "bMc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ @@ -46832,7 +43689,7 @@ "bMk" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 1; - filter_type = /datum/gas/nitrous_oxide; + filter_type = "n2o"; on = 1 }, /obj/structure/window/reinforced{ @@ -46890,8 +43747,6 @@ /area/tcommsat/server) "bMq" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -46901,8 +43756,6 @@ /area/tcommsat/server) "bMr" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black/telecomms/mainframe, @@ -46923,7 +43776,6 @@ network = list("SS13","tcomm") }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/black/telecomms/mainframe, @@ -46988,8 +43840,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/arrival{ @@ -47001,8 +43851,6 @@ dir = 2 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/sign/map/left{ @@ -47019,8 +43867,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/sign/map/right{ @@ -47089,7 +43935,6 @@ pixel_x = -25 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/effect/decal/cleanable/cobweb, @@ -47097,8 +43942,6 @@ /area/library) "bMI" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/wood, @@ -47106,8 +43949,6 @@ "bMJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/carpet, @@ -47115,8 +43956,6 @@ "bMK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/carpet, @@ -47269,8 +44108,6 @@ /obj/structure/window/reinforced, /obj/structure/showcase/mecha/ripley, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/cobweb, @@ -47291,8 +44128,6 @@ }, /obj/structure/window/reinforced, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/carpet, @@ -47331,8 +44166,6 @@ /area/bridge/showroom/corporate) "bNf" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/wood, @@ -47370,8 +44203,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/window/reinforced, @@ -47392,8 +44223,6 @@ /area/bridge/showroom/corporate) "bNk" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/window/reinforced, @@ -47462,7 +44291,6 @@ "bNq" = ( /obj/machinery/gateway, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plasteel/vault{ @@ -47479,8 +44307,6 @@ /area/gateway) "bNs" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -47564,8 +44390,6 @@ /area/crew_quarters/kitchen) "bNB" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -47648,7 +44472,6 @@ pixel_x = -28 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plasteel/black, @@ -47658,8 +44481,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/black, @@ -47696,8 +44517,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -47808,8 +44627,6 @@ req_one_access_txt = "12;27" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -47820,8 +44637,6 @@ dir = 10 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plating, @@ -47860,8 +44675,6 @@ opacity = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -47924,8 +44737,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating{ @@ -47980,8 +44791,6 @@ dir = 5 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plating, @@ -47991,13 +44800,9 @@ /area/teleporter) "bOx" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/decal/cleanable/dirt, @@ -48008,8 +44813,6 @@ /area/bridge/showroom/corporate) "bOy" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/oil, @@ -48017,29 +44820,21 @@ /area/bridge/showroom/corporate) "bOz" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/wood, /area/bridge/showroom/corporate) "bOB" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/wood, /area/bridge/showroom/corporate) "bOC" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -48047,18 +44842,12 @@ /area/bridge/showroom/corporate) "bOD" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/wood{ @@ -48068,9 +44857,7 @@ "bOE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /turf/open/floor/wood, /area/bridge/showroom/corporate) @@ -48082,12 +44869,9 @@ pixel_x = 28 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/item/cigbutt, @@ -48131,7 +44915,6 @@ "bOJ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plating, @@ -48141,8 +44924,6 @@ /area/gateway) "bOL" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/event_spawn, @@ -48159,8 +44940,6 @@ pixel_x = -32 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating{ @@ -48317,8 +45096,6 @@ /area/maintenance/starboard) "bPg" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/sortjunction{ @@ -48411,8 +45188,6 @@ /area/engine/atmos) "bPq" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ @@ -48507,8 +45282,6 @@ /area/hallway/secondary/entry) "bPC" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -48537,8 +45310,6 @@ /area/maintenance/port) "bPG" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -48581,8 +45352,6 @@ /area/maintenance/port) "bPM" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -48619,8 +45388,6 @@ /area/library) "bPR" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -48630,8 +45397,6 @@ /area/library) "bPS" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -48754,8 +45519,6 @@ /area/teleporter) "bQf" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/bodypart/chest/robot{ @@ -48810,8 +45573,6 @@ /area/bridge/showroom/corporate) "bQm" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, @@ -48847,8 +45608,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/turf_decal/stripes/line{ @@ -48858,8 +45617,6 @@ /area/gateway) "bQr" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -48875,8 +45632,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -48889,8 +45644,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -48898,13 +45651,9 @@ name = "Gateway Chamber" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel, @@ -48914,21 +45663,15 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/gateway) "bQv" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel, @@ -48938,8 +45681,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -48950,8 +45691,6 @@ req_access_txt = "17" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -48961,13 +45700,9 @@ /area/gateway) "bQy" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -48989,8 +45724,6 @@ /area/hallway/primary/central) "bQA" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/deepfryer, @@ -49000,8 +45733,6 @@ /area/crew_quarters/kitchen) "bQB" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/cafeteria{ @@ -49013,8 +45744,6 @@ dir = 5 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/cafeteria{ @@ -49026,8 +45755,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -49042,8 +45769,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/cafeteria{ @@ -49055,8 +45780,6 @@ dir = 10 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/cafeteria{ @@ -49066,13 +45789,9 @@ "bQG" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/cafeteria{ @@ -49190,8 +45909,6 @@ /area/aisat) "bRc" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plating, @@ -49231,8 +45948,6 @@ /area/library) "bRj" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -49331,8 +46046,6 @@ /area/teleporter) "bRw" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table/wood, @@ -49371,8 +46084,6 @@ /area/bridge/showroom/corporate) "bRA" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/item/toy/beach_ball{ @@ -49386,13 +46097,9 @@ /area/bridge/showroom/corporate) "bRB" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/reagent_dispensers/beerkeg{ @@ -49408,13 +46115,9 @@ /area/bridge/showroom/corporate) "bRC" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/storage/box/matches{ @@ -49437,8 +46140,6 @@ /area/bridge/showroom/corporate) "bRD" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/showcase/machinery/tv{ @@ -49452,13 +46153,9 @@ "bRE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/decal/cleanable/dirt, @@ -49466,8 +46163,6 @@ /area/bridge/showroom/corporate) "bRF" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/disk/data{ @@ -49496,8 +46191,6 @@ pixel_y = 2 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/item/toy/gun{ @@ -49602,8 +46295,6 @@ /area/gateway) "bRN" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -49704,8 +46395,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/cafeteria{ @@ -49720,8 +46409,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/cafeteria{ @@ -49740,8 +46427,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/showroomfloor, @@ -49758,8 +46443,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/showroomfloor, @@ -49776,8 +46459,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/camera{ @@ -49799,8 +46480,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/showroomfloor, @@ -49813,8 +46492,6 @@ dir = 10 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/showroomfloor, @@ -49822,8 +46499,6 @@ "bSc" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -49889,7 +46564,7 @@ "bSj" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 1; - filter_type = /datum/gas/plasma; + filter_type = "plasma"; on = 1 }, /obj/structure/window/reinforced{ @@ -49917,13 +46592,9 @@ /area/engine/atmos) "bSn" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -49932,8 +46603,6 @@ /area/maintenance/port) "bSo" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -49943,8 +46612,6 @@ /area/maintenance/port) "bSp" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -49954,8 +46621,6 @@ /area/maintenance/port) "bSq" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -49966,8 +46631,6 @@ /area/maintenance/port) "bSr" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -49977,24 +46640,18 @@ /area/maintenance/port) "bSs" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plating, /area/maintenance/port) "bSt" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -50006,8 +46663,6 @@ /area/maintenance/port) "bSu" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -50019,8 +46674,6 @@ /area/maintenance/port) "bSv" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -50036,8 +46689,6 @@ dir = 6 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, @@ -50069,8 +46720,6 @@ /area/library) "bSB" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -50181,8 +46830,6 @@ /area/gateway) "bSP" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance{ @@ -50266,8 +46913,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/turf_decal/stripes/line{ @@ -50284,8 +46929,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -50296,16 +46939,12 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/blobstart, @@ -50319,8 +46958,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -50338,7 +46975,6 @@ pixel_y = 26 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -50352,8 +46988,6 @@ "bTd" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -50366,8 +47000,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -50405,8 +47037,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/shower{ @@ -50452,8 +47082,6 @@ req_access_txt = "10" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -50552,8 +47180,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/wood, @@ -50568,16 +47194,12 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/port) "bTC" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -50598,8 +47220,6 @@ /area/hallway/primary/central) "bTE" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -50772,7 +47392,6 @@ pixel_y = 24 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plasteel/neutral/corner{ @@ -50846,8 +47465,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -51034,8 +47651,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -51051,8 +47666,6 @@ dir = 10 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -51063,13 +47676,9 @@ /area/maintenance/starboard) "bUu" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -51082,8 +47691,6 @@ /area/maintenance/starboard) "bUv" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -51232,7 +47839,6 @@ pixel_y = 3 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plating{ @@ -51241,13 +47847,9 @@ /area/maintenance/solars/port/aft) "bUO" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -51258,7 +47860,6 @@ /area/maintenance/solars/port/aft) "bUP" = ( /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/smes, @@ -51290,8 +47891,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -51339,13 +47938,9 @@ /area/hallway/primary/central) "bUZ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -51356,8 +47951,6 @@ /area/hallway/primary/central) "bVa" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -51367,8 +47960,6 @@ /area/hallway/primary/central) "bVb" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -51378,8 +47969,6 @@ /area/hallway/primary/central) "bVc" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -51389,13 +47978,9 @@ /area/hallway/primary/central) "bVd" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/landmark/event_spawn, @@ -51403,8 +47988,6 @@ /area/hallway/primary/central) "bVe" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -51414,8 +47997,6 @@ /area/hallway/primary/central) "bVf" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel{ @@ -51424,8 +48005,6 @@ /area/hallway/primary/central) "bVg" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/navbeacon{ @@ -51438,13 +48017,9 @@ /area/hallway/primary/central) "bVh" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel{ @@ -51453,8 +48028,6 @@ /area/hallway/primary/central) "bVi" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/navbeacon{ @@ -51468,8 +48041,6 @@ /area/hallway/primary/central) "bVj" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel{ @@ -51478,8 +48049,6 @@ /area/hallway/primary/central) "bVk" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel{ @@ -51488,27 +48057,19 @@ /area/hallway/primary/central) "bVl" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel, /area/hallway/primary/central) "bVm" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -51518,13 +48079,9 @@ /area/hallway/primary/central) "bVn" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -51532,16 +48089,12 @@ /area/hallway/primary/central) "bVo" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/navbeacon{ @@ -51553,8 +48106,6 @@ "bVp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/green/side{ @@ -51630,8 +48181,6 @@ /area/hydroponics) "bVz" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -51723,8 +48272,6 @@ }, /obj/machinery/meter, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -51777,8 +48324,6 @@ "bVQ" = ( /obj/structure/chair/stool, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/camera{ @@ -51790,8 +48335,6 @@ /area/maintenance/solars/port/aft) "bVR" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/xeno_spawn, @@ -51805,7 +48348,6 @@ dir = 1 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/light/small{ @@ -51834,8 +48376,6 @@ "bVV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -51866,8 +48406,6 @@ /area/maintenance/port/aft) "bWb" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -51877,16 +48415,12 @@ /area/maintenance/port) "bWc" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -51897,8 +48431,6 @@ /area/maintenance/port) "bWd" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -51916,24 +48448,18 @@ sortType = 16 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plating, /area/maintenance/port) "bWf" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -51950,8 +48476,6 @@ /area/maintenance/port) "bWg" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -51965,8 +48489,6 @@ /area/hallway/primary/central) "bWh" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -51981,8 +48503,6 @@ /area/hallway/primary/central) "bWi" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -52058,8 +48578,6 @@ /area/hallway/primary/central) "bWp" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -52100,8 +48618,6 @@ /area/hallway/primary/central) "bWu" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -52145,8 +48661,6 @@ /area/hallway/primary/central) "bWz" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -52253,8 +48767,6 @@ dir = 2 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/green/side{ @@ -52368,8 +48880,6 @@ /area/hydroponics) "bWX" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -52383,8 +48893,6 @@ dir = 6 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -52395,8 +48903,6 @@ /area/maintenance/starboard) "bWZ" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -52411,8 +48917,6 @@ /area/maintenance/starboard) "bXa" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -52425,8 +48929,6 @@ /area/maintenance/starboard) "bXb" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -52436,16 +48938,12 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, /area/maintenance/starboard) "bXc" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -52456,8 +48954,6 @@ /area/maintenance/starboard) "bXd" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -52477,8 +48973,6 @@ req_access_txt = "24" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -52492,8 +48986,6 @@ "bXf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -52508,8 +49000,6 @@ /area/engine/atmos) "bXg" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -52525,8 +49015,6 @@ /area/engine/atmos) "bXh" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -52542,8 +49030,6 @@ /area/engine/atmos) "bXi" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/dark/visible{ @@ -52553,8 +49039,6 @@ /area/engine/atmos) "bXj" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/dark/visible{ @@ -52608,7 +49092,7 @@ "bXq" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 1; - filter_type = /datum/gas/carbon_dioxide; + filter_type = "co2"; on = 1 }, /obj/structure/window/reinforced{ @@ -52641,16 +49125,13 @@ track = 0 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/solars/port/aft) "bXu" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/stripes/line{ @@ -52682,8 +49163,6 @@ "bXz" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/event_spawn, @@ -52724,8 +49203,6 @@ /area/maintenance/port/aft) "bXG" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -52779,8 +49256,6 @@ /area/hallway/primary/central) "bXO" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -52851,8 +49326,6 @@ /area/hallway/primary/central) "bXY" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -52897,8 +49370,6 @@ /area/hallway/primary/central) "bYd" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -53004,16 +49475,12 @@ /area/hydroponics) "bYo" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/junction{ @@ -53024,8 +49491,6 @@ /area/maintenance/starboard) "bYp" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -53057,8 +49522,6 @@ dir = 9 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -53084,8 +49547,6 @@ /obj/item/cigbutt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line, @@ -53156,8 +49617,6 @@ /area/maintenance/solars/port/aft) "bYD" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/external{ @@ -53170,8 +49629,6 @@ "bYE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -53218,7 +49675,6 @@ "bYK" = ( /obj/machinery/mech_bay_recharge_port, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plating, @@ -53229,7 +49685,6 @@ "bYM" = ( /obj/machinery/computer/mech_bay_power_console, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/circuit, @@ -53255,8 +49710,6 @@ /area/maintenance/port/aft) "bYQ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -53358,7 +49811,6 @@ pixel_y = 28 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/structure/closet/secure_closet/security/med, @@ -53420,8 +49872,6 @@ /area/medical/medbay/central) "bZc" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -53470,8 +49920,6 @@ /area/hallway/primary/aft) "bZg" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -53529,8 +49977,6 @@ /area/science/research) "bZm" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -53559,8 +50005,6 @@ /area/hallway/primary/central) "bZr" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/hydrofloor, @@ -53652,8 +50096,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -53734,8 +50176,6 @@ /area/engine/atmos) "bZN" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating/airless, @@ -53750,8 +50190,6 @@ /area/maintenance/port/aft) "bZP" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/circuit, @@ -53761,8 +50199,6 @@ /area/maintenance/port/aft) "bZR" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -53852,16 +50288,12 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/white, /area/medical/storage) "cac" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -53882,8 +50314,6 @@ req_access_txt = "63" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -53893,8 +50323,6 @@ /area/security/checkpoint/medical) "cae" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/light_switch{ @@ -53970,8 +50398,6 @@ /area/medical/medbay/central) "cal" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -54015,8 +50441,6 @@ /area/hallway/primary/aft) "car" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -54058,8 +50482,6 @@ /area/science/research) "cax" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -54205,16 +50627,12 @@ /area/hallway/primary/central) "caH" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/hydrofloor, /area/hallway/primary/central) "caI" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/hydrofloor, @@ -54226,8 +50644,6 @@ req_access_txt = "35" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/hydrofloor, @@ -54238,8 +50654,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/green/side{ @@ -54251,8 +50665,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/green/side{ @@ -54264,8 +50676,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/green/side{ @@ -54277,8 +50687,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/green/side{ @@ -54290,13 +50698,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/green/side{ @@ -54308,8 +50712,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/bot{ @@ -54330,8 +50732,6 @@ req_one_access_txt = "0" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/bot{ @@ -54347,8 +50747,6 @@ }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/hydrofloor, @@ -54361,8 +50759,6 @@ dir = 5 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/hydrofloor, @@ -54380,16 +50776,12 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/starboard) "caU" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/sortjunction{ @@ -54399,8 +50791,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/stripes/line{ @@ -54432,13 +50822,9 @@ /area/maintenance/disposal/incinerator) "caY" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -54446,8 +50832,6 @@ /area/maintenance/disposal/incinerator) "caZ" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/disposal/bin, @@ -54463,7 +50847,6 @@ charge = 10000 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/floorgrime, @@ -54492,7 +50875,7 @@ "cbd" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 4; - filter_type = /datum/gas/nitrogen; + filter_type = "n2"; on = 1 }, /obj/structure/window/reinforced, @@ -54547,7 +50930,7 @@ /obj/structure/window/reinforced, /obj/machinery/atmospherics/components/trinary/filter{ dir = 4; - filter_type = /datum/gas/oxygen; + filter_type = "o2"; on = 1 }, /turf/open/floor/plasteel/blue, @@ -54612,12 +50995,14 @@ /area/engine/atmos) "cbm" = ( /obj/docking_port/mobile{ + callTime = 250; dheight = 0; dir = 2; dwidth = 11; height = 15; id = "whiteship"; launch_status = 0; + movement_force = list("KNOCKDOWN" = 0, "THROW" = 0); name = "NT Recovery White-Ship"; port_direction = 8; preferred_direction = 4; @@ -54671,8 +51056,6 @@ dir = 5 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plating, @@ -54682,8 +51065,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating{ @@ -54695,8 +51076,6 @@ dir = 10 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plating, @@ -54723,13 +51102,9 @@ /area/maintenance/aft) "cbv" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/light_construct{ @@ -54739,8 +51114,6 @@ /area/maintenance/port/aft) "cbw" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating{ @@ -54749,8 +51122,6 @@ /area/maintenance/port/aft) "cbx" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plating, @@ -54784,8 +51155,6 @@ /area/maintenance/port/aft) "cbB" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/sortjunction{ @@ -54904,8 +51273,6 @@ /obj/machinery/holopad, /obj/effect/landmark/start/medical_doctor, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/white, @@ -54970,8 +51337,6 @@ /area/security/checkpoint/medical) "cbT" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -54981,8 +51346,6 @@ /area/medical/medbay/central) "cbU" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -54993,8 +51356,6 @@ /area/medical/medbay/central) "cbV" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -55004,8 +51365,6 @@ /area/medical/medbay/central) "cbW" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -55071,8 +51430,6 @@ /area/science/research) "cch" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -55321,8 +51678,6 @@ /area/hydroponics) "ccD" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -55356,8 +51711,6 @@ pixel_y = 28 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/general/visible{ @@ -55370,8 +51723,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -55385,8 +51736,6 @@ /area/maintenance/disposal/incinerator) "ccI" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -55397,8 +51746,6 @@ "ccJ" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -55408,7 +51755,6 @@ /area/maintenance/disposal/incinerator) "ccK" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/terminal{ @@ -55535,8 +51881,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, @@ -55546,8 +51890,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -55557,8 +51899,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -55575,8 +51915,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -55586,8 +51924,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/stripes/line{ @@ -55617,8 +51953,6 @@ /area/maintenance/port/aft) "cdj" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -55699,8 +52033,6 @@ /area/medical/storage) "cdt" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/event_spawn, @@ -55739,8 +52071,6 @@ /area/medical/medbay/central) "cdy" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -55816,8 +52146,6 @@ /area/hallway/primary/aft) "cdH" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -55845,8 +52173,6 @@ /area/science/research) "cdK" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -55860,8 +52186,6 @@ /area/science/research) "cdL" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -55875,8 +52199,6 @@ /area/science/research) "cdM" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -55886,8 +52208,6 @@ /area/science/research) "cdN" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -55900,8 +52220,6 @@ /area/science/research) "cdO" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -55909,8 +52227,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/white, @@ -55918,8 +52234,6 @@ "cdP" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -55933,8 +52247,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/red/side{ @@ -55973,8 +52285,6 @@ /area/hydroponics) "cdV" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -56025,8 +52335,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/general/visible{ @@ -56059,8 +52367,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -56119,16 +52425,12 @@ /area/maintenance/port/aft) "cem" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plating, @@ -56140,8 +52442,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -56153,8 +52453,6 @@ dir = 9 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plating, @@ -56231,8 +52529,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/white, @@ -56307,8 +52603,6 @@ /area/tcommsat/server) "ceD" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -56383,8 +52677,6 @@ /area/medical/medbay/central) "ceL" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -56476,8 +52768,6 @@ /area/science/research) "ceU" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -56498,8 +52788,6 @@ dir = 5 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/red/side{ @@ -56534,8 +52822,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -56545,8 +52831,6 @@ /area/maintenance/starboard/aft) "ceZ" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -56559,8 +52843,6 @@ /area/maintenance/starboard/aft) "cfa" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -56575,8 +52857,6 @@ /area/maintenance/starboard/aft) "cfb" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -56592,8 +52872,6 @@ /area/maintenance/starboard/aft) "cfc" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -56609,8 +52887,6 @@ /area/maintenance/starboard/aft) "cfd" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -56625,8 +52901,6 @@ /area/maintenance/starboard/aft) "cff" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -56641,13 +52915,9 @@ /area/maintenance/starboard/aft) "cfg" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -56663,8 +52933,6 @@ /area/maintenance/starboard/aft) "cfh" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -56680,8 +52948,6 @@ /area/maintenance/starboard/aft) "cfi" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -56697,8 +52963,6 @@ /area/maintenance/starboard) "cfj" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -56749,8 +53013,6 @@ "cfo" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/general/visible, @@ -56771,8 +53033,6 @@ /area/maintenance/disposal/incinerator) "cfr" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -56825,15 +53085,12 @@ "cfz" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/space, /area/solar/port/aft) "cfA" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/external{ @@ -56844,8 +53101,6 @@ "cfB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -56913,7 +53168,6 @@ pixel_y = 24 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/item/clothing/neck/stethoscope, @@ -56952,7 +53206,6 @@ pixel_y = -24 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/light_switch{ @@ -56966,8 +53219,6 @@ /area/medical/storage) "cfM" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -56979,16 +53230,12 @@ /area/medical/storage) "cfN" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /mob/living/simple_animal/bot/cleanbot{ @@ -57051,8 +53298,6 @@ /area/medical/medbay/central) "cfT" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -57187,8 +53432,6 @@ /area/science/research) "cgi" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -57227,8 +53470,6 @@ /area/security/checkpoint/science/research) "cgm" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -57272,15 +53513,12 @@ pixel_x = -24 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) "cgu" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/floorgrime, @@ -57288,8 +53526,6 @@ "cgv" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/general/visible{ @@ -57305,8 +53541,6 @@ /area/maintenance/disposal/incinerator) "cgx" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -57366,8 +53600,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/firealarm{ @@ -57385,8 +53617,6 @@ /area/maintenance/port/aft) "cgH" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -57397,8 +53627,6 @@ /area/maintenance/port) "cgI" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -57409,16 +53637,12 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/port/aft) "cgJ" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -57431,8 +53655,6 @@ /area/maintenance/aft) "cgL" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -57440,8 +53662,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -57454,8 +53674,6 @@ /area/maintenance/port/aft) "cgM" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -57465,8 +53683,6 @@ /area/maintenance/aft) "cgN" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -57483,8 +53699,6 @@ req_access_txt = "5" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -57494,8 +53708,6 @@ /area/maintenance/port/aft) "cgP" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -57510,8 +53722,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whiteblue/side{ @@ -57526,8 +53736,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/start/medical_doctor, @@ -57537,16 +53745,12 @@ /area/medical/sleeper) "cgS" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/whiteblue/side{ @@ -57581,8 +53785,6 @@ "cgV" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -57615,8 +53817,6 @@ /area/medical/medbay/central) "cgZ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -57782,8 +53982,6 @@ /area/security/checkpoint/science/research) "chr" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance{ @@ -57956,8 +54154,6 @@ "chL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/floorgrime, @@ -58071,8 +54267,6 @@ /area/solar/port/aft) "chZ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -58127,16 +54321,12 @@ "cih" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/white, /area/medical/sleeper) "cii" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -58148,8 +54338,6 @@ /area/medical/sleeper) "cij" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -58160,8 +54348,6 @@ /area/medical/sleeper) "cik" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -58176,8 +54362,6 @@ /area/medical/medbay/central) "cil" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -58189,8 +54373,6 @@ /area/medical/medbay/central) "cim" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -58228,7 +54410,6 @@ pixel_y = 24 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -58277,16 +54458,12 @@ /area/medical/medbay/central) "cit" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/whiteblue/side{ @@ -58295,8 +54472,6 @@ /area/medical/medbay/central) "ciu" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -58314,8 +54489,6 @@ req_access_txt = "5; 33" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -58325,8 +54498,6 @@ /area/medical/chemistry) "ciw" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -58338,8 +54509,6 @@ /area/medical/chemistry) "cix" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -58355,8 +54524,6 @@ dir = 10 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/whiteyellow/side{ @@ -58450,14 +54617,10 @@ /area/science/research) "ciI" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -58476,7 +54639,6 @@ pixel_y = 25 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -58503,8 +54665,6 @@ "ciM" = ( /obj/effect/landmark/blobstart, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -58589,8 +54749,6 @@ /area/science/explab) "ciX" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -58622,8 +54780,6 @@ req_access_txt = "12" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -58726,8 +54882,6 @@ dir = 6 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/light/small{ @@ -58895,13 +55049,9 @@ /area/medical/medbay/central) "cjL" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -58912,24 +55062,18 @@ /area/medical/medbay/central) "cjM" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) "cjN" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -58939,8 +55083,6 @@ /area/medical/medbay/central) "cjO" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -58950,13 +55092,9 @@ /area/medical/medbay/central) "cjP" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -58966,8 +55104,6 @@ /area/medical/medbay/central) "cjQ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -59015,8 +55151,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/white, @@ -59140,8 +55274,6 @@ /area/science/research) "ckf" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -59189,8 +55321,6 @@ /area/maintenance/starboard/aft) "ckk" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -59387,8 +55517,6 @@ /area/maintenance/disposal/incinerator) "ckE" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -59605,8 +55733,6 @@ /area/medical/medbay/central) "clk" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -59702,8 +55828,6 @@ /area/medical/chemistry) "clu" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/start/chemist, @@ -59833,8 +55957,6 @@ /area/science/research) "clG" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -59887,8 +56009,6 @@ /area/maintenance/aft) "clL" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -59999,8 +56119,6 @@ /area/science/explab) "clW" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -60069,8 +56187,6 @@ req_access_txt = "12" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/engine, @@ -60152,8 +56268,6 @@ /area/medical/medbay/central) "cms" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -60171,7 +56285,6 @@ "cmv" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/door/poddoor/preopen{ @@ -60183,11 +56296,9 @@ "cmw" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/door/poddoor/preopen{ @@ -60199,11 +56310,9 @@ "cmx" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/door/poddoor/preopen{ @@ -60234,8 +56343,6 @@ /area/medical/chemistry) "cmA" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/holopad, @@ -60244,8 +56351,6 @@ /area/medical/chemistry) "cmB" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/white, @@ -60363,8 +56468,6 @@ req_one_access_txt = "47" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -60550,8 +56653,6 @@ on = 0 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/engine/vacuum, @@ -60694,7 +56795,6 @@ pixel_y = 24 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -60827,8 +56927,6 @@ }, /obj/item/clothing/glasses/hud/health, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table/glass, @@ -60884,8 +56982,6 @@ dir = 2 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whiteyellow/corner{ @@ -60937,8 +57033,6 @@ /area/hallway/primary/aft) "cnO" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -61034,8 +57128,6 @@ /area/science/research) "cnZ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -61096,8 +57188,6 @@ /area/science/research) "coe" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -61265,8 +57355,6 @@ /area/maintenance/starboard/aft) "cow" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -61319,7 +57407,6 @@ pixel_x = 26 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/structure/table, @@ -61360,8 +57447,6 @@ /area/medical/surgery) "coH" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -61423,8 +57508,6 @@ /area/medical/medbay/central) "coO" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/filingcabinet/chestdrawer, @@ -61449,13 +57532,9 @@ /area/crew_quarters/heads/cmo) "coR" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /mob/living/simple_animal/pet/cat/Runtime, @@ -61471,7 +57550,6 @@ pixel_x = 26 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/camera{ @@ -61507,8 +57585,6 @@ dir = 6 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whiteyellow/side{ @@ -61601,8 +57677,6 @@ "cpd" = ( /obj/effect/landmark/start/scientist, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/whitepurple/side{ @@ -61611,16 +57685,12 @@ /area/science/lab) "cpe" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/white, /area/science/lab) "cpf" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -61631,8 +57701,6 @@ /area/science/lab) "cpg" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -61642,8 +57710,6 @@ /area/science/lab) "cph" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -61656,8 +57722,6 @@ /area/science/lab) "cpj" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whitepurple/side{ @@ -61666,24 +57730,18 @@ /area/science/research) "cpk" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/white, /area/science/research) "cpl" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -61694,13 +57752,9 @@ /area/science/research) "cpm" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -61710,8 +57764,6 @@ /area/science/research) "cpn" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -61722,24 +57774,18 @@ /area/science/research) "cpo" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/white, /area/science/research) "cpp" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -61749,13 +57795,9 @@ /area/science/research) "cpq" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/junction{ @@ -61769,8 +57811,6 @@ /area/science/research) "cpr" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -61783,8 +57823,6 @@ /area/science/research) "cps" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -61798,8 +57836,6 @@ /area/science/research) "cpt" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/junction{ @@ -61814,8 +57850,6 @@ /area/science/research) "cpu" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -61832,8 +57866,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -61843,13 +57875,9 @@ /area/science/research) "cpw" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -61869,8 +57897,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -61893,8 +57919,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whitepurple/side{ @@ -61906,13 +57930,9 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/white, @@ -61922,16 +57942,12 @@ dir = 9 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/white, /area/science/explab) "cpB" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/white, @@ -61941,8 +57957,6 @@ dir = 6 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/white, @@ -61952,8 +57966,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/white, @@ -61963,8 +57975,6 @@ dir = 5 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -61981,24 +57991,18 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/starboard/aft) "cpG" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/stripes/line{ @@ -62090,8 +58094,6 @@ /area/engine/supermatter) "cpS" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -62113,16 +58115,12 @@ /area/medical/surgery) "cpW" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/white, /area/medical/surgery) "cpX" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -62134,8 +58132,6 @@ /area/medical/surgery) "cpY" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/event_spawn, @@ -62143,8 +58139,6 @@ /area/medical/surgery) "cpZ" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -62156,8 +58150,6 @@ /area/medical/surgery) "cqa" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -62167,8 +58159,6 @@ /area/medical/surgery) "cqb" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -62183,13 +58173,9 @@ /area/medical/surgery) "cqc" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -62201,8 +58187,6 @@ /area/medical/cryo) "cqd" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -62218,8 +58202,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -62232,8 +58214,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -62243,8 +58223,6 @@ dir = 10 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -62254,8 +58232,6 @@ /area/medical/cryo) "cqh" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -62264,8 +58240,6 @@ /area/medical/cryo) "cqi" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whiteblue/side{ @@ -62274,14 +58248,10 @@ /area/medical/medbay/central) "cqj" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/landmark/event_spawn, @@ -62290,7 +58260,6 @@ "cqk" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/door/poddoor/preopen{ @@ -62307,13 +58276,9 @@ dir = 10 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/barber{ @@ -62348,8 +58313,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -62396,7 +58359,6 @@ pixel_x = -3 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/effect/turf_decal/stripes/line{ @@ -62408,8 +58370,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/whiteyellow/side{ @@ -62573,8 +58533,6 @@ /area/science/research) "cqF" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -62600,8 +58558,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/white, @@ -62664,8 +58620,6 @@ /area/science/research) "cqO" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -62985,8 +58939,6 @@ dir = 5 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/barber{ @@ -63019,8 +58971,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/barber{ @@ -63075,13 +59025,9 @@ /area/hallway/primary/aft) "crG" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment, @@ -63096,7 +59042,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/purple/corner{ @@ -63131,8 +59076,6 @@ /area/science/research) "crL" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -63148,11 +59091,9 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/door/poddoor/preopen{ @@ -63164,11 +59105,9 @@ "crO" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -63183,7 +59122,6 @@ "crP" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -63207,8 +59145,6 @@ /area/science/storage) "crT" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -63295,8 +59231,6 @@ /area/maintenance/starboard/aft) "cse" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -63314,8 +59248,6 @@ /area/maintenance/port/aft) "csg" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -63335,8 +59267,6 @@ /area/maintenance/port/aft) "csi" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -63461,13 +59391,9 @@ /area/medical/medbay/central) "csu" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -63477,8 +59403,6 @@ /area/medical/medbay/central) "csv" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -63495,8 +59419,6 @@ /area/medical/medbay/central) "csw" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -63517,8 +59439,6 @@ /area/crew_quarters/heads/cmo) "csx" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/sortjunction{ @@ -63530,8 +59450,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/barber{ @@ -63543,8 +59461,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -63560,8 +59476,6 @@ /area/crew_quarters/heads/cmo) "csz" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/table/glass, @@ -63585,8 +59499,6 @@ }, /obj/effect/landmark/start/chief_medical_officer, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/barber{ @@ -63690,8 +59602,6 @@ /area/hallway/primary/aft) "csK" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -63810,8 +59720,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/spawner/lootdrop/maintenance, @@ -63845,8 +59753,6 @@ /area/science/research) "csW" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/sortjunction{ @@ -63868,7 +59774,6 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/door/poddoor/preopen{ @@ -63948,8 +59853,6 @@ /area/science/storage) "ctg" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -63980,7 +59883,6 @@ pixel_y = 25 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/effect/turf_decal/bot, @@ -63993,8 +59895,6 @@ /area/science/storage) "ctk" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -64017,10 +59917,10 @@ /turf/open/space, /area/space) "ctn" = ( +/obj/machinery/vending/cigarette, /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/vending/kink, /turf/open/floor/plating, /area/maintenance/port/aft) "cto" = ( @@ -64060,8 +59960,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/vending/wallmed{ @@ -64071,8 +59969,6 @@ /area/medical/patients_rooms/room_a) "ctt" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -64091,22 +59987,16 @@ req_access_txt = "5" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/white, /area/medical/patients_rooms/room_a) "ctv" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/white, @@ -64179,8 +60069,6 @@ /area/hallway/primary/aft) "ctF" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -64205,8 +60093,6 @@ /area/maintenance/aft) "ctK" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -64240,8 +60126,6 @@ /area/science/research) "ctO" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -64332,8 +60216,6 @@ /area/science/storage) "ctX" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -64350,8 +60232,6 @@ /area/science/storage) "ctY" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -64370,8 +60250,6 @@ "ctZ" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/bot, @@ -64388,8 +60266,6 @@ /area/science/storage) "cub" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -64399,8 +60275,6 @@ /area/maintenance/starboard/aft) "cuc" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -64416,8 +60290,7 @@ /area/maintenance/starboard/aft) "cue" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/power/solar{ id = "aftport"; @@ -64468,7 +60341,6 @@ "cuj" = ( /obj/effect/decal/cleanable/cobweb, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -64496,7 +60368,6 @@ pixel_x = -26 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -64509,8 +60380,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/white, @@ -64553,8 +60422,6 @@ dir = 9 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/white, @@ -64632,7 +60499,6 @@ pixel_y = 24 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/item/folder/white{ @@ -64766,8 +60632,6 @@ /area/science/research) "cuJ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -64915,8 +60779,6 @@ /area/maintenance/starboard/aft) "cva" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -64944,13 +60806,9 @@ /area/maintenance/starboard/aft) "cvd" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/lattice/catwalk, @@ -64958,18 +60816,12 @@ /area/solar/port/aft) "cve" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/lattice/catwalk, @@ -64977,7 +60829,6 @@ /area/solar/port/aft) "cvf" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/lattice/catwalk, @@ -64985,26 +60836,19 @@ /area/solar/port/aft) "cvg" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/aft) "cvh" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/lattice/catwalk, @@ -65012,13 +60856,9 @@ /area/solar/port/aft) "cvi" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/lattice/catwalk, @@ -65048,8 +60888,6 @@ /area/maintenance/port/aft) "cvl" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -65057,8 +60895,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -65072,8 +60908,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -65104,8 +60938,6 @@ /area/medical/medbay/central) "cvr" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -65188,8 +61020,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/start/geneticist, @@ -65308,13 +61138,9 @@ /area/science/research) "cvN" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -65325,8 +61151,6 @@ /area/science/research) "cvO" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -65341,8 +61165,6 @@ /area/science/research) "cvP" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -65363,8 +61185,6 @@ /area/crew_quarters/heads/hor) "cvQ" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -65466,8 +61286,6 @@ /area/maintenance/starboard/aft) "cwb" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -65496,7 +61314,6 @@ /area/solar/port/aft) "cwf" = ( /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/structure/lattice/catwalk, @@ -65504,8 +61321,6 @@ /area/space) "cwg" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/lattice/catwalk, @@ -65513,8 +61328,6 @@ /area/space) "cwh" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -65527,8 +61340,6 @@ req_access_txt = "13" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -65541,8 +61352,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -65571,7 +61380,6 @@ pixel_x = -26 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -65589,8 +61397,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/landmark/start/medical_doctor, @@ -65638,8 +61444,6 @@ /area/medical/medbay/aft) "cwt" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -65711,8 +61515,6 @@ /area/medical/genetics) "cwB" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whiteblue/side{ @@ -65771,8 +61573,6 @@ /area/hallway/primary/aft) "cwG" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment, @@ -65784,7 +61584,6 @@ "cwH" = ( /obj/machinery/mech_bay_recharge_port, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -65807,7 +61606,6 @@ pixel_y = 20 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/circuit/green, @@ -65841,8 +61639,6 @@ /area/science/research) "cwN" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/white, @@ -66031,8 +61827,6 @@ /area/medical/patients_rooms/room_b) "cxf" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -66045,8 +61839,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whiteblue/side{ @@ -66059,8 +61851,6 @@ req_access_txt = "5" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -66073,8 +61863,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whiteblue/side{ @@ -66083,13 +61871,9 @@ /area/medical/medbay/aft) "cxj" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/landmark/lightsout, @@ -66170,8 +61954,6 @@ /area/medical/genetics) "cxt" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -66242,8 +62024,6 @@ /area/hallway/primary/aft) "cxA" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -66273,8 +62053,6 @@ /area/science/robotics/mechbay) "cxD" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -66342,8 +62120,6 @@ /area/science/storage) "cxL" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -66355,8 +62131,6 @@ /area/maintenance/aft) "cxM" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -66436,21 +62210,15 @@ /area/medical/medbay/aft) "cxW" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/white, /area/medical/medbay/aft) "cxX" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment, @@ -66462,8 +62230,6 @@ "cxY" = ( /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_medical{ @@ -66475,8 +62241,6 @@ /area/medical/genetics/cloning) "cxZ" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whiteblue/side{ @@ -66486,24 +62250,18 @@ "cya" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/white, /area/medical/genetics/cloning) "cyb" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/whiteblue/side{ @@ -66517,8 +62275,6 @@ req_access_txt = "5; 9; 68" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -66528,8 +62284,6 @@ /area/medical/genetics) "cyd" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -66541,8 +62295,6 @@ /area/medical/genetics) "cye" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -66552,8 +62304,6 @@ /area/medical/genetics) "cyf" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -66564,8 +62314,6 @@ /area/medical/genetics) "cyg" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/white, @@ -66648,8 +62396,6 @@ /area/science/robotics/mechbay) "cyq" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -66690,8 +62436,6 @@ /area/science/research) "cyw" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -66907,8 +62651,6 @@ /area/medical/medbay/aft) "cyT" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -67041,8 +62783,6 @@ /area/hallway/primary/aft) "czg" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -67079,13 +62819,9 @@ pixel_y = -2 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -67097,7 +62833,6 @@ "czk" = ( /obj/machinery/computer/mech_bay_power_console, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/circuit, @@ -67162,8 +62897,6 @@ /area/science/research) "czp" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -67257,8 +62990,6 @@ "czC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance{ @@ -67350,8 +63081,7 @@ /area/science/test_area) "czL" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/lattice/catwalk, /turf/open/space, @@ -67441,13 +63171,9 @@ /area/medical/medbay/aft) "czV" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -67466,7 +63192,6 @@ pixel_x = 26 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/disposalpipe/junction, @@ -67595,8 +63320,6 @@ /area/hallway/primary/aft) "cAi" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -67627,8 +63350,6 @@ /area/science/robotics/mechbay) "cAl" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -67642,8 +63363,6 @@ /area/science/robotics/mechbay) "cAm" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -67656,13 +63375,9 @@ /area/science/robotics/mechbay) "cAn" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -67682,7 +63397,6 @@ pixel_x = 28 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel, @@ -67720,8 +63434,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/stripes/line{ @@ -67740,8 +63452,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/purple, @@ -67751,8 +63461,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whitepurple/side{ @@ -67761,26 +63469,18 @@ /area/science/research) "cAu" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/white, /area/science/research) "cAv" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -67791,8 +63491,6 @@ "cAw" = ( /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/research{ @@ -67808,8 +63506,6 @@ /area/science/mixing) "cAx" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -67822,16 +63518,12 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/white, /area/science/mixing) "cAz" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -67844,16 +63536,12 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/white, /area/science/mixing) "cAB" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -67864,8 +63552,6 @@ /area/science/mixing) "cAC" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -67879,8 +63565,6 @@ dir = 6 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -67934,8 +63618,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/floorgrime, @@ -68071,8 +63753,6 @@ /area/medical/medbay/aft) "cAZ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -68129,8 +63809,6 @@ /area/science/robotics/mechbay) "cBh" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -68221,8 +63899,6 @@ /area/science/research) "cBo" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -68248,8 +63924,6 @@ /area/science/mixing) "cBr" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -68312,8 +63986,6 @@ "cBy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/white, @@ -68367,8 +64039,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/floorgrime, @@ -68550,8 +64220,6 @@ /area/medical/medbay/aft) "cBZ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -68658,8 +64326,6 @@ /area/science/robotics/mechbay) "cCp" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -68790,8 +64456,6 @@ dir = 5 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/white, @@ -68801,8 +64465,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/white, @@ -68812,8 +64474,6 @@ dir = 10 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/white, @@ -68843,7 +64503,6 @@ pixel_x = 26 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/window/reinforced{ @@ -68863,8 +64522,6 @@ "cCE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/floorgrime, @@ -68930,16 +64587,12 @@ /area/medical/medbay/aft) "cCO" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/white, @@ -68950,8 +64603,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment, @@ -68961,8 +64612,6 @@ /area/medical/medbay/aft) "cCQ" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -68973,8 +64622,6 @@ /area/medical/medbay/aft) "cCR" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -68986,8 +64633,6 @@ /area/medical/medbay/aft) "cCS" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -69003,8 +64648,6 @@ dir = 10 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/white/side{ @@ -69079,8 +64722,6 @@ "cDc" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/bot, @@ -69136,7 +64777,6 @@ pixel_y = 25 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/structure/table, @@ -69157,8 +64797,6 @@ /area/science/robotics/lab) "cDh" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -69321,8 +64959,6 @@ "cDC" = ( /obj/effect/landmark/blobstart, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/freezer, @@ -69335,7 +64971,6 @@ "cDE" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plating, @@ -69353,14 +64988,11 @@ pixel_y = 24 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/structure/table/glass, /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /turf/open/floor/plasteel/whitegreen/side{ dir = 9 @@ -69374,14 +65006,10 @@ /obj/item/reagent_containers/dropper, /obj/item/reagent_containers/spray/cleaner, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/table/glass, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitegreen/side{ @@ -69401,8 +65029,6 @@ }, /obj/structure/table/glass, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitegreen/side{ @@ -69430,8 +65056,6 @@ dir = 5 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plating, @@ -69444,8 +65068,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -69458,8 +65080,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating{ @@ -69472,8 +65092,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -69511,8 +65129,6 @@ /area/medical/medbay/aft) "cDR" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -69561,8 +65177,6 @@ dir = 5 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/white/side{ @@ -69574,8 +65188,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -69597,8 +65209,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black, @@ -69608,8 +65218,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -69622,8 +65230,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -69637,8 +65243,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -69648,8 +65252,6 @@ /area/medical/morgue) "cEc" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -69666,7 +65268,6 @@ pixel_x = 26 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/item/folder/white{ @@ -69757,8 +65358,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/turf_decal/stripes/line{ @@ -69774,8 +65373,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -69792,13 +65389,9 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -69958,8 +65551,6 @@ /area/science/test_area) "cED" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/lattice/catwalk, @@ -69972,8 +65563,7 @@ /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plating, /area/medical/virology) @@ -69984,18 +65574,12 @@ req_access_txt = "39" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/freezer, @@ -70004,7 +65588,6 @@ /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -70031,8 +65614,6 @@ pixel_y = 3 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitegreen/corner{ @@ -70051,8 +65632,6 @@ }, /obj/effect/landmark/start/virologist, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitegreen/corner{ @@ -70090,8 +65669,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -70104,8 +65681,6 @@ /area/medical/medbay/aft) "cEP" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -70199,8 +65774,6 @@ /area/hallway/primary/aft) "cFb" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -70252,8 +65825,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -70298,8 +65869,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/white, @@ -70449,8 +66018,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitegreen/side{ @@ -70499,8 +66066,6 @@ /area/medical/virology) "cFF" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -70519,8 +66084,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/white, @@ -70613,8 +66176,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -70644,8 +66205,6 @@ /area/medical/medbay/aft) "cFS" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -70739,8 +66298,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -70770,8 +66327,6 @@ dir = 10 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/lightsout, @@ -70885,9 +66440,7 @@ /obj/item/pen/red, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /turf/open/floor/plasteel/whitegreen/side{ dir = 8 @@ -70899,21 +66452,15 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/white, /area/medical/virology) "cGs" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/event_spawn, @@ -70921,21 +66468,15 @@ /area/medical/virology) "cGt" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/white, /area/medical/virology) "cGu" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -70945,8 +66486,6 @@ /area/medical/virology) "cGv" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -70958,8 +66497,6 @@ /area/medical/virology) "cGw" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment, @@ -70969,13 +66506,9 @@ /area/medical/virology) "cGx" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -70985,8 +66518,6 @@ /area/medical/virology) "cGy" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -70995,22 +66526,16 @@ /obj/effect/landmark/lightsout, /obj/machinery/holopad, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/white, /area/medical/virology) "cGz" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/white, @@ -71020,8 +66545,6 @@ dir = 6 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whitegreen/side{ @@ -71034,8 +66557,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/virology{ @@ -71049,8 +66570,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whitegreen/side{ @@ -71062,8 +66581,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/small{ @@ -71076,8 +66593,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/doorButtons/airlock_controller{ @@ -71098,8 +66613,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -71119,8 +66632,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/doorButtons/access_button{ @@ -71141,8 +66652,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -71159,8 +66668,6 @@ req_access_txt = "39" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -71177,8 +66684,6 @@ /area/medical/virology) "cGJ" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whitegreen/side{ @@ -71187,18 +66692,12 @@ /area/medical/medbay/aft) "cGK" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment, @@ -71209,8 +66708,6 @@ /area/medical/medbay/aft) "cGL" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -71222,16 +66719,12 @@ /area/medical/medbay/aft) "cGM" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/white, /area/medical/medbay/aft) "cGN" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -71320,8 +66813,6 @@ dir = 5 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/turf_decal/stripes/line{ @@ -71334,8 +66825,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/rack, @@ -71372,8 +66861,6 @@ "cGZ" = ( /obj/effect/spawner/structure/window, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -71386,8 +66873,6 @@ dir = 9 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whitepurple/corner{ @@ -71396,14 +66881,10 @@ /area/science/research) "cHb" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/white, @@ -71470,8 +66951,6 @@ "cHj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating{ @@ -71502,8 +66981,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitegreen/side, @@ -71524,8 +67001,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitegreen/side, @@ -71571,8 +67046,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitegreen/side, @@ -71655,8 +67128,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -71754,8 +67225,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -71765,8 +67234,6 @@ /area/maintenance/aft) "cHJ" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -71784,8 +67251,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -71803,8 +67268,6 @@ dir = 2 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -71814,8 +67277,6 @@ /area/maintenance/aft) "cHM" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -71829,8 +67290,6 @@ /area/maintenance/aft) "cHN" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -71842,13 +67301,9 @@ /area/hallway/primary/aft) "cHO" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel, @@ -71920,13 +67375,9 @@ /area/science/research) "cHX" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -71937,8 +67388,6 @@ /area/science/research) "cHY" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -71956,16 +67405,12 @@ req_access_txt = "30" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black, /area/science/server) "cIa" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light_switch{ @@ -71987,7 +67432,6 @@ pixel_y = 25 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/effect/landmark/revenantspawn, @@ -72035,8 +67479,6 @@ /area/maintenance/starboard/aft) "cIi" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -72049,8 +67491,6 @@ /area/maintenance/starboard/aft) "cIj" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -72063,8 +67503,6 @@ /area/maintenance/starboard/aft) "cIk" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -72073,29 +67511,21 @@ /area/maintenance/starboard/aft) "cIl" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, /area/maintenance/starboard/aft) "cIm" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -72110,8 +67540,6 @@ /area/science/lab) "cIn" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -72123,8 +67551,7 @@ /obj/effect/spawner/structure/window, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plating, /area/medical/virology) @@ -72136,13 +67563,9 @@ req_access_txt = "39" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/freezer, @@ -72155,13 +67578,9 @@ req_access_txt = "39" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/freezer, @@ -72216,8 +67635,6 @@ "cIv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault, @@ -72243,8 +67660,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance{ @@ -72281,8 +67696,6 @@ "cID" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -72296,8 +67709,6 @@ /area/hallway/primary/aft) "cIF" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/escape{ @@ -72416,8 +67827,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -72492,8 +67901,6 @@ /area/science/server) "cJa" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -72505,13 +67912,9 @@ /area/maintenance/starboard/aft) "cJc" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -72521,8 +67924,6 @@ /area/maintenance/starboard/aft) "cJd" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -72539,8 +67940,6 @@ pixel_y = -32 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -72550,7 +67949,6 @@ /area/maintenance/starboard/aft) "cJf" = ( /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/lattice/catwalk, @@ -72567,8 +67965,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/freezer, @@ -72592,8 +67988,6 @@ req_access_txt = "39" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitegreen, @@ -72616,8 +68010,6 @@ /area/science/lab) "cJn" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -72631,16 +68023,12 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -72650,8 +68038,6 @@ /area/maintenance/aft) "cJq" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -72662,8 +68048,6 @@ /area/maintenance/aft) "cJr" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -72680,8 +68064,6 @@ /area/maintenance/aft) "cJs" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -72735,8 +68117,6 @@ "cJx" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -72797,8 +68177,6 @@ /area/hallway/secondary/exit/departure_lounge) "cJF" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -72839,7 +68217,7 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/structure/light_construct/small{ +/obj/machinery/light/small/built{ dir = 1 }, /turf/open/floor/mineral/titanium, @@ -72922,8 +68300,6 @@ /area/science/research) "cJP" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -72984,8 +68360,6 @@ /area/science/server) "cJX" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -73030,8 +68404,6 @@ /area/maintenance/starboard/aft) "cKc" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -73051,8 +68423,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/freezer, @@ -73062,8 +68432,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/freezer, @@ -73114,8 +68482,6 @@ "cKk" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitegreen/side{ @@ -73198,8 +68564,6 @@ sortType = 17 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line, @@ -73251,7 +68615,6 @@ pixel_y = 24 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -73313,13 +68676,9 @@ /area/hallway/secondary/exit/departure_lounge) "cKE" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -73332,8 +68691,6 @@ /area/hallway/secondary/exit/departure_lounge) "cKF" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -73381,8 +68738,6 @@ /area/maintenance/aft) "cKK" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -73439,8 +68794,6 @@ req_access_txt = "10" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -73468,8 +68821,6 @@ }, /obj/item/pen/red, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/freezer, @@ -73505,13 +68856,9 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/white, @@ -73521,9 +68868,7 @@ dir = 8 }, /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /turf/open/floor/plasteel/white, /area/medical/virology) @@ -73533,9 +68878,7 @@ pixel_x = 11 }, /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /turf/open/floor/plasteel/whitegreen/side{ dir = 4 @@ -73557,8 +68900,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance{ @@ -73580,8 +68921,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -73594,8 +68933,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -73605,13 +68942,9 @@ /area/maintenance/aft) "cLg" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -73641,8 +68974,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -73658,8 +68989,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -73700,8 +69029,6 @@ /area/hallway/secondary/exit/departure_lounge) "cLo" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -73711,8 +69038,6 @@ /area/hallway/secondary/exit/departure_lounge) "cLp" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -73726,24 +69051,18 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) "cLr" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) "cLs" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -73753,8 +69072,6 @@ /area/hallway/secondary/exit/departure_lounge) "cLt" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -73762,16 +69079,12 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) "cLu" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -73788,8 +69101,6 @@ req_one_access_txt = "12;47" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -73799,8 +69110,6 @@ /area/maintenance/aft) "cLw" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -73813,8 +69122,6 @@ /area/maintenance/aft) "cLx" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -73827,8 +69134,6 @@ /area/maintenance/aft) "cLy" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -73841,16 +69146,12 @@ /area/maintenance/aft) "cLz" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/stripes/line{ @@ -73860,8 +69161,6 @@ /area/maintenance/aft) "cLA" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance{ @@ -73945,8 +69244,6 @@ /area/science/xenobiology) "cLF" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -73975,20 +69272,15 @@ "cLK" = ( /obj/machinery/power/smes, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) "cLL" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -74005,7 +69297,6 @@ pixel_y = 24 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -74039,8 +69330,6 @@ dir = 9 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitegreen/side, @@ -74107,8 +69396,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/grimy, @@ -74155,8 +69442,6 @@ req_one_access_txt = "12;22" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -74190,8 +69475,6 @@ "cMi" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/navbeacon{ @@ -74245,8 +69528,6 @@ dir = 6 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, @@ -74257,8 +69538,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -74279,8 +69558,7 @@ dir = 1 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/camera{ c_tag = "Aft Starboard Solar Maintenance"; @@ -74300,8 +69578,6 @@ /area/maintenance/solars/starboard/aft) "cMs" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/stripes/line{ @@ -74341,8 +69617,7 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plating, /area/medical/virology) @@ -74351,9 +69626,7 @@ dir = 1 }, /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /turf/open/floor/plasteel/vault, /area/medical/virology) @@ -74364,9 +69637,7 @@ }, /obj/machinery/portable_atmospherics/canister/air, /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /turf/open/floor/plasteel/vault, /area/medical/virology) @@ -74374,8 +69645,6 @@ /obj/item/trash/popcorn, /obj/structure/table/glass, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/vault, @@ -74433,8 +69702,6 @@ /obj/item/pen, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table/wood, @@ -74498,8 +69765,6 @@ /area/chapel/main) "cMM" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -74601,8 +69866,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -74706,8 +69969,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -74793,8 +70054,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -74815,16 +70074,12 @@ /area/maintenance/starboard/aft) "cNo" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) "cNp" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/chair/stool, @@ -74838,7 +70093,6 @@ }, /obj/structure/cable, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/sign/securearea{ @@ -74891,8 +70145,7 @@ "cNw" = ( /obj/structure/cable, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/power/compressor{ comp_id = "incineratorturbine"; @@ -74904,8 +70157,6 @@ "cNx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/storage/fancy/candle_box{ @@ -74953,8 +70204,6 @@ /area/chapel/main) "cNE" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -75052,8 +70301,6 @@ "cNO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -75061,7 +70308,6 @@ "cNP" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plating, @@ -75069,8 +70315,6 @@ "cNQ" = ( /obj/machinery/computer/secure_data, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/red/side{ @@ -75117,8 +70361,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/spawner/lootdrop/maintenance, @@ -75202,8 +70444,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/grimy, @@ -75231,7 +70471,6 @@ /area/chapel/office) "cOi" = ( /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -75244,16 +70483,12 @@ /area/chapel/main) "cOj" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/carpet, /area/chapel/main) "cOk" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -75264,8 +70499,6 @@ /area/chapel/main) "cOl" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -75326,8 +70559,6 @@ /area/hallway/secondary/exit/departure_lounge) "cOt" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -75337,8 +70568,6 @@ /area/hallway/secondary/exit/departure_lounge) "cOu" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -75356,8 +70585,6 @@ req_access_txt = "63" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -75367,16 +70594,12 @@ /area/hallway/secondary/exit/departure_lounge) "cOw" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/firealarm{ @@ -75389,8 +70612,6 @@ /area/hallway/secondary/exit/departure_lounge) "cOx" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/red/side, @@ -75643,7 +70864,6 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plating, @@ -75651,15 +70871,12 @@ "cPd" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, /area/hallway/secondary/exit/departure_lounge) "cPe" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -75799,8 +71016,6 @@ /area/hallway/secondary/exit/departure_lounge) "cPx" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -76059,8 +71274,6 @@ "cPX" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -76078,8 +71291,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -76227,8 +71438,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -76252,8 +71461,6 @@ pixel_y = 24 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -76265,18 +71472,12 @@ /area/science/xenobiology) "cQt" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -76507,8 +71708,6 @@ /area/hallway/secondary/exit/departure_lounge) "cQZ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/poddoor/preopen{ @@ -76528,8 +71727,6 @@ /area/science/xenobiology) "cRc" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -76547,8 +71744,6 @@ /area/science/xenobiology) "cRf" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitepurple/side{ @@ -76557,8 +71752,6 @@ /area/science/xenobiology) "cRg" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light/small{ @@ -76593,8 +71786,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/white, @@ -76704,8 +71895,6 @@ req_access_txt = "0" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -76909,7 +72098,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/door/poddoor/preopen{ @@ -76928,7 +72116,6 @@ /area/science/xenobiology) "cRW" = ( /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/door/poddoor/preopen{ @@ -76944,7 +72131,6 @@ /area/science/xenobiology) "cRY" = ( /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/door/poddoor/preopen{ @@ -76957,7 +72143,6 @@ "cRZ" = ( /obj/structure/cable/yellow, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/door/poddoor/preopen{ @@ -76970,26 +72155,18 @@ "cSa" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/white, /area/science/xenobiology) "cSb" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -77003,7 +72180,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/yellow, @@ -77026,8 +72202,6 @@ "cSf" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -77077,8 +72251,6 @@ "cSl" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -77131,8 +72303,6 @@ name = "containment blast door" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/engine, @@ -77166,8 +72336,6 @@ name = "containment blast door" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/engine, @@ -77203,15 +72371,12 @@ "cSz" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/space, /area/solar/starboard/aft) "cSA" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -77232,8 +72397,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -77244,15 +72407,13 @@ "cSC" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/space, /area/solar/starboard/aft) "cSD" = ( /obj/structure/cable/yellow, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/door/poddoor/preopen{ @@ -77271,8 +72432,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -77310,8 +72469,6 @@ "cSJ" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/white, @@ -77362,8 +72519,6 @@ name = "containment blast door" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/engine, @@ -77397,8 +72552,6 @@ name = "containment blast door" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/engine, @@ -77428,8 +72581,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -77442,8 +72593,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/table/reinforced, @@ -77475,18 +72624,12 @@ "cSV" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/white, @@ -77509,8 +72652,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/white, @@ -77569,8 +72710,6 @@ name = "containment blast door" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/engine, @@ -77629,8 +72768,6 @@ name = "containment blast door" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/engine, @@ -77664,8 +72801,6 @@ /obj/item/crowbar/red, /obj/item/wrench, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -77692,8 +72827,6 @@ }, /obj/structure/table/reinforced, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -77704,11 +72837,9 @@ "cTm" = ( /obj/structure/cable/yellow, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/general/visible, @@ -77878,8 +73009,6 @@ "cUM" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/lightsout, @@ -77889,18 +73018,12 @@ "cUN" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/landmark/start/scientist, @@ -77999,8 +73122,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -78254,7 +73375,7 @@ /obj/effect/decal/cleanable/greenglow{ desc = "Looks like something's sprung a leak" }, -/obj/structure/light_construct/small{ +/obj/machinery/light/small/built{ dir = 8 }, /turf/open/floor/mineral/titanium, @@ -78366,7 +73487,7 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/structure/light_construct/small{ +/obj/machinery/light/small/built{ dir = 8 }, /turf/open/floor/mineral/titanium/blue, @@ -78388,7 +73509,7 @@ name = "dust" }, /obj/effect/turf_decal/bot, -/obj/structure/light_construct/small{ +/obj/machinery/light/small/built{ dir = 8 }, /turf/open/floor/plasteel, @@ -78513,7 +73634,7 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/structure/light_construct/small{ +/obj/machinery/light/small/built{ dir = 4 }, /turf/open/floor/mineral/titanium, @@ -78525,11 +73646,8 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/effect/decal/cleanable/ash{ - desc = "They look like human remains, and have clearly been gnawed at."; - icon = 'icons/effects/blood.dmi'; - icon_state = "remains"; - name = "remains" +/obj/effect/decal/remains/human{ + desc = "They look like human remains, and have clearly been gnawed at." }, /obj/item/gun/energy/laser/retro, /turf/open/floor/mineral/titanium/blue, @@ -78546,7 +73664,7 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/structure/light_construct/small{ +/obj/machinery/light/small/built{ dir = 8 }, /turf/open/floor/mineral/titanium, @@ -78583,11 +73701,8 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/effect/decal/cleanable/ash{ - desc = "They look like human remains, and have clearly been gnawed at."; - icon = 'icons/effects/blood.dmi'; - icon_state = "remains"; - name = "remains" +/obj/effect/decal/remains/human{ + desc = "They look like human remains, and have clearly been gnawed at." }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) @@ -78653,11 +73768,8 @@ name = "dust" }, /obj/item/soap/nanotrasen, -/obj/effect/decal/cleanable/ash{ - desc = "They look like human remains, and have clearly been gnawed at."; - icon = 'icons/effects/blood.dmi'; - icon_state = "remains"; - name = "remains" +/obj/effect/decal/remains/human{ + desc = "They look like human remains, and have clearly been gnawed at." }, /obj/effect/decal/cleanable/blood/gibs/old, /turf/open/floor/mineral/titanium, @@ -78671,7 +73783,7 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/structure/light_construct/small{ +/obj/machinery/light/small/built{ dir = 4 }, /turf/open/floor/mineral/titanium/blue, @@ -78880,7 +73992,7 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/structure/light_construct{ +/obj/machinery/light/built{ dir = 1 }, /turf/open/floor/mineral/titanium/blue, @@ -78916,11 +74028,11 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/structure/light_construct{ - dir = 1 - }, /obj/item/folder/blue, /obj/item/pen, +/obj/machinery/light{ + dir = 1 + }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) "cWU" = ( @@ -78963,7 +74075,7 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/structure/light_construct/small{ +/obj/machinery/light/small/built{ dir = 4 }, /turf/open/floor/mineral/titanium/blue, @@ -79142,11 +74254,8 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/effect/decal/cleanable/ash{ - desc = "They look like human remains, and have clearly been gnawed at."; - icon = 'icons/effects/blood.dmi'; - icon_state = "remains"; - name = "remains" +/obj/effect/decal/remains/human{ + desc = "They look like human remains, and have clearly been gnawed at." }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) @@ -79237,8 +74346,6 @@ /area/shuttle/abandoned) "cXz" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line, @@ -79279,11 +74386,8 @@ desc = "There's a gouge through the top where something has clawed clean through it. Whoever was wearing it probably doesn't need a hat any more."; name = "\improper damaged CentCom hat" }, -/obj/effect/decal/cleanable/ash{ - desc = "They look like human remains, and have clearly been gnawed at."; - icon = 'icons/effects/blood.dmi'; - icon_state = "remains"; - name = "remains" +/obj/effect/decal/remains/human{ + desc = "They look like human remains, and have clearly been gnawed at." }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) @@ -79314,11 +74418,15 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/structure/light_construct, /obj/machinery/computer/camera_advanced/shuttle_docker/whiteship{ + station_lock_override = 1; + view_range = 15; x_offset = -3; y_offset = -7 }, +/obj/machinery/light/built{ + dir = 2 + }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) "cXI" = ( @@ -79438,7 +74546,7 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/structure/light_construct/small{ +/obj/machinery/light/small/built{ dir = 1 }, /turf/open/floor/mineral/titanium, @@ -79449,7 +74557,7 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/structure/light_construct/small{ +/obj/machinery/light/small/built{ dir = 1 }, /turf/open/floor/mineral/titanium, @@ -79549,7 +74657,7 @@ /obj/item/wirecutters, /obj/item/device/plant_analyzer, /obj/item/reagent_containers/glass/bucket, -/obj/structure/light_construct/small{ +/obj/machinery/light/small/built{ dir = 8 }, /turf/open/floor/mineral/titanium, @@ -79591,7 +74699,7 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/structure/light_construct/small{ +/obj/machinery/light/small/built{ dir = 4 }, /turf/open/floor/mineral/titanium, @@ -79634,7 +74742,7 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/structure/light_construct/small{ +/obj/machinery/light/small/built{ dir = 8 }, /turf/open/floor/mineral/titanium/blue, @@ -79645,11 +74753,8 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/effect/decal/cleanable/ash{ - desc = "A pile of remains that look vaguely humanoid. The skull is abnormally elongated, and there are burns through some of the other bones."; - icon = 'icons/effects/blood.dmi'; - icon_state = "remainsxeno"; - name = "remains" +/obj/effect/decal/remains/xeno{ + desc = "A pile of remains that look vaguely humanoid. The skull is abnormally elongated, and there are burns through some of the other bones." }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) @@ -79849,8 +74954,6 @@ "cYG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/yellow/side, @@ -79888,9 +74991,7 @@ /area/shuttle/escape) "cYK" = ( /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /obj/machinery/computer/security/telescreen{ desc = "Used for the Auxillary Mining Base."; @@ -80014,8 +75115,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -80038,8 +75137,6 @@ /area/shuttle/escape) "cYT" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/white, @@ -80100,8 +75197,6 @@ /area/shuttle/escape) "cZa" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/white, @@ -80228,9 +75323,7 @@ dir = 4 }, /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -80438,8 +75531,6 @@ "cZR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/chair{ @@ -80704,8 +75795,6 @@ name = "test chamber blast door" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/engine, @@ -80865,8 +75954,6 @@ /area/engine/engineering) "daX" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating{ @@ -80875,8 +75962,6 @@ /area/maintenance/port/fore) "daY" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/engine, @@ -80910,8 +75995,6 @@ /area/crew_quarters/heads/hop) "dbg" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/stripes/line{ @@ -80924,8 +76007,6 @@ /area/engine/engineering) "dbh" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/corner{ @@ -80948,7 +76029,7 @@ /turf/open/floor/plating, /area/maintenance/port) "dbl" = ( -/obj/machinery/vending/kink, +/obj/structure/easel, /turf/open/floor/plating, /area/maintenance/starboard/aft) "dbm" = ( @@ -81099,8 +76180,6 @@ /area/science/research) "dbI" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -81117,8 +76196,7 @@ /area/science/research) "dbJ" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/power/solar{ id = "aftstarboard"; @@ -81129,20 +76207,15 @@ "dbK" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/space, /area/solar/starboard/aft) "dbL" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/solar{ @@ -81154,18 +76227,12 @@ "dbM" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/space, @@ -81186,16 +76253,12 @@ req_access_txt = "10; 13" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) "dbQ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -81206,8 +76269,6 @@ "dbR" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/space, @@ -81220,7 +76281,6 @@ "dbT" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /turf/open/space, @@ -81228,7 +76288,6 @@ "dbU" = ( /obj/machinery/power/tracker, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating/airless, @@ -81236,18 +76295,12 @@ "dbV" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/space, @@ -81255,13 +76308,9 @@ "dbW" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/space, @@ -81280,8 +76329,6 @@ /area/science/xenobiology) "dbY" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -81363,7 +76410,6 @@ pixel_y = 27 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plasteel/whitepurple/side{ @@ -81434,8 +76480,6 @@ /area/science/xenobiology) "dch" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -81445,8 +76489,6 @@ /area/science/xenobiology) "dci" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -81469,8 +76511,6 @@ req_access_txt = "55" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -81485,8 +76525,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/doorButtons/airlock_controller{ @@ -81506,8 +76544,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/white, @@ -81517,8 +76553,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/computer/camera_advanced/xenobio, @@ -81532,14 +76566,10 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/smartfridge/extract/preloaded, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -81553,8 +76583,6 @@ }, /obj/machinery/computer/camera_advanced/xenobio, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -81564,8 +76592,6 @@ /area/science/xenobiology) "dcp" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/white, @@ -81635,8 +76661,6 @@ /area/science/xenobiology) "dcw" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line, @@ -81703,8 +76727,6 @@ /area/science/xenobiology) "dcH" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -81800,7 +76822,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/door/poddoor/preopen{ @@ -81819,7 +76840,6 @@ /area/science/xenobiology) "dcR" = ( /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/door/poddoor/preopen{ @@ -81834,7 +76854,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/yellow, @@ -81857,7 +76876,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/door/poddoor/preopen{ @@ -81883,7 +76901,6 @@ /area/science/xenobiology) "dcW" = ( /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/door/poddoor/preopen{ @@ -81895,7 +76912,6 @@ /area/science/xenobiology) "dcX" = ( /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/yellow, @@ -81909,8 +76925,6 @@ "dcY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/corner{ @@ -81921,8 +76935,6 @@ "dcZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/corner, @@ -81933,8 +76945,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/disposal/bin, @@ -81949,7 +76959,6 @@ "ddb" = ( /obj/structure/cable/yellow, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/door/poddoor/preopen{ @@ -82036,8 +77045,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/stripes/line{ @@ -82055,13 +77062,9 @@ pixel_y = -29 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -82075,13 +77078,9 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/turf_decal/stripes/line{ @@ -82091,8 +77090,6 @@ /area/science/xenobiology) "ddn" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -82102,13 +77099,9 @@ /area/science/xenobiology) "ddo" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -82123,16 +77116,12 @@ req_one_access_txt = "0" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/science/xenobiology) "ddq" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plating, @@ -82143,8 +77132,6 @@ /area/maintenance/department/science/xenobiology) "dds" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -82154,19 +77141,15 @@ /area/science/xenobiology) "ddt" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) "ddu" = ( /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/door/poddoor/preopen{ @@ -82179,7 +77162,6 @@ /area/science/xenobiology) "ddv" = ( /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/door/poddoor/preopen{ @@ -82304,8 +77286,6 @@ /area/engine/engineering) "ddQ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -82350,8 +77330,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel, @@ -82361,8 +77339,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/corner, @@ -82373,8 +77349,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line, @@ -82420,8 +77394,6 @@ /area/engine/engineering) "deh" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/spawner/structure/window/plasma/reinforced, @@ -82429,8 +77401,6 @@ /area/engine/engineering) "dei" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -82440,8 +77410,6 @@ /area/engine/engineering) "dej" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -82458,8 +77426,6 @@ name = "Mix to Gas" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -82469,8 +77435,6 @@ /area/engine/engineering) "del" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -82487,8 +77451,6 @@ name = "Gas to Mix" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/stripes/line{ @@ -82524,8 +77486,6 @@ /area/engine/engineering) "der" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line, @@ -82535,13 +77495,9 @@ /area/engine/engineering) "des" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/stripes/line, @@ -82552,8 +77508,6 @@ /area/engine/engineering) "deu" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/corner{ @@ -82566,8 +77520,6 @@ /area/engine/engineering) "dev" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -82579,8 +77531,6 @@ "dew" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_engineering{ @@ -82591,37 +77541,27 @@ /area/engine/engineering) "dex" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/engine/engineering) "dey" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plating, /area/engine/engineering) "deA" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plating, /area/engine/engineering) "deB" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -82657,7 +77597,7 @@ dir = 4 }, /obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - filter_type = /datum/gas/freon; + filter_type = "freon"; name = "gas filter (freon)" }, /turf/open/floor/engine, @@ -82739,7 +77679,7 @@ /area/engine/engineering) "deY" = ( /obj/structure/reflector/single/anchored{ - dir = 1 + dir = 9 }, /turf/open/floor/plating, /area/engine/engineering) @@ -82780,13 +77720,13 @@ /area/engine/engineering) "dff" = ( /obj/structure/reflector/double/anchored{ - dir = 1 + dir = 5 }, /turf/open/floor/plasteel/black, /area/engine/engineering) "dfg" = ( /obj/structure/reflector/single/anchored{ - dir = 8 + dir = 10 }, /turf/open/floor/plating, /area/engine/engineering) @@ -82814,8 +77754,7 @@ /obj/machinery/atmospherics/pipe/manifold/general/visible, /obj/machinery/power/rad_collector/anchored, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/window/plasma/reinforced{ dir = 1 @@ -82828,8 +77767,7 @@ }, /obj/machinery/power/rad_collector/anchored, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/window/plasma/reinforced{ dir = 1 @@ -82853,8 +77791,6 @@ network = list("Engine") }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/engine, @@ -82873,7 +77809,7 @@ dir = 4 }, /obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - filter_type = /datum/gas/nitrogen + filter_type = "n2" }, /turf/open/floor/engine, /area/engine/engineering) @@ -82887,14 +77823,12 @@ /area/engine/engineering) "dfA" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plating, /area/engine/engineering) "dfB" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/emitter/anchored{ @@ -82905,7 +77839,6 @@ /area/engine/engineering) "dfC" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/emitter/anchored{ @@ -82919,8 +77852,6 @@ /area/engine/engineering) "dfD" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -82933,8 +77864,6 @@ /area/engine/engineering) "dfE" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -82947,8 +77876,6 @@ /area/engine/engineering) "dfF" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -82965,13 +77892,9 @@ /area/engine/engineering) "dfG" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/stripes/line{ @@ -82988,8 +77911,6 @@ name = "Cooling Loop Bypass" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/stripes/line{ @@ -83002,8 +77923,6 @@ /area/engine/engineering) "dfJ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -83016,29 +77935,21 @@ /area/engine/engineering) "dfM" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plating, /area/engine/engineering) "dfO" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plating, /area/engine/engineering) "dfP" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line, @@ -83050,8 +77961,6 @@ /area/engine/engineering) "dfQ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line, @@ -83068,8 +77977,6 @@ on = 1 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line, @@ -83077,8 +77984,6 @@ /area/engine/engineering) "dfS" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/stripes/line, @@ -83114,8 +78019,6 @@ "dfX" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/bot{ @@ -83319,8 +78222,6 @@ }, /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/transit_tube/horizontal, @@ -83426,8 +78327,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -83454,8 +78353,6 @@ /area/maintenance/port/fore) "dhr" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -83509,8 +78406,6 @@ req_access_txt = "3" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/item/folder/red, @@ -83533,13 +78428,9 @@ /area/maintenance/starboard/fore) "dhx" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -83591,8 +78482,6 @@ /area/maintenance/starboard/fore) "dhC" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/rack{ @@ -83637,8 +78526,6 @@ /area/crew_quarters/dorms) "dhG" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -83653,8 +78540,6 @@ /area/construction/storage/wing) "dhH" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -83725,8 +78610,6 @@ /area/hallway/secondary/entry) "dhN" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -83741,8 +78624,6 @@ /area/maintenance/starboard/fore) "dhO" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/sign/poster/contraband/random{ @@ -83763,14 +78644,10 @@ /area/hallway/primary/port) "dhQ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/sign/poster/contraband/random{ @@ -83869,8 +78746,6 @@ /area/crew_quarters/theatre) "dic" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -84050,8 +78925,6 @@ /area/crew_quarters/theatre) "dit" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -84073,8 +78946,6 @@ /area/maintenance/starboard) "div" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -84136,8 +79007,6 @@ /area/maintenance/starboard/aft) "diB" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -84153,8 +79022,6 @@ /area/maintenance/starboard/aft) "diC" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -84285,8 +79152,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -84296,8 +79161,6 @@ pixel_y = 32 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, @@ -84313,8 +79176,6 @@ /area/medical/medbay/aft) "diP" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -84339,8 +79200,6 @@ /area/maintenance/aft) "diR" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -84351,8 +79210,6 @@ /area/maintenance/aft) "diS" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -84363,8 +79220,6 @@ /area/maintenance/aft) "diT" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -84419,16 +79274,12 @@ /area/maintenance/starboard/aft) "djg" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/white, /area/science/xenobiology) "djh" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/light/small{ @@ -84471,8 +79322,6 @@ /area/science/xenobiology) "djt" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/poddoor/shutters/preopen{ @@ -84483,8 +79332,6 @@ /area/engine/supermatter) "djx" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/crowbar, @@ -84503,14 +79350,10 @@ /area/hallway/secondary/entry) "djB" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - icon_state = "1-4"; - d1 = 1; - d2 = 4 + icon_state = "1-4" }, /obj/effect/landmark/observer_start, /turf/open/floor/plasteel{ @@ -84589,7 +79432,7 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/structure/light_construct/small{ +/obj/machinery/light/small/built{ dir = 4 }, /turf/open/floor/mineral/titanium/blue, @@ -84599,7 +79442,7 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/structure/light_construct{ +/obj/machinery/light/built{ dir = 1 }, /turf/open/floor/mineral/titanium/blue, @@ -84609,7 +79452,9 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/structure/light_construct, +/obj/machinery/light/built{ + dir = 2 + }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) "dln" = ( @@ -84635,7 +79480,7 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/structure/light_construct/small{ +/obj/machinery/light/small/built{ dir = 4 }, /turf/open/floor/mineral/titanium, @@ -84762,8 +79607,7 @@ "dlS" = ( /obj/machinery/power/rad_collector/anchored, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/engine, /area/engine/supermatter) @@ -84831,7 +79675,6 @@ /area/maintenance/port/fore) "dnr" = ( /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -84859,8 +79702,6 @@ /area/maintenance/port/fore) "dnG" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -84923,8 +79764,6 @@ /area/maintenance/port/fore) "doJ" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -84941,8 +79780,6 @@ /area/maintenance/starboard/fore) "dpG" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -84976,24 +79813,18 @@ /area/maintenance/port/fore) "dsg" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plating, /area/maintenance/fore) "dss" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -85007,8 +79838,6 @@ "dtl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -85024,8 +79853,6 @@ /area/crew_quarters/locker) "dtP" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -85041,17 +79868,13 @@ /area/maintenance/port/fore) "dtR" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/starboard/fore) @@ -85064,7 +79887,6 @@ pixel_y = -28 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -85109,8 +79931,6 @@ /area/maintenance/starboard/aft) "dwb" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -85123,8 +79943,6 @@ /area/maintenance/port/aft) "dwc" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -85141,8 +79959,6 @@ /area/maintenance/port/aft) "dwe" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -85156,8 +79972,6 @@ /area/maintenance/port/aft) "dwi" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -85167,8 +79981,6 @@ /area/maintenance/port/aft) "dwj" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -85227,8 +80039,6 @@ /area/maintenance/starboard/aft) "dxQ" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -85242,8 +80052,6 @@ /area/maintenance/starboard/aft) "dyg" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -85256,8 +80064,6 @@ /area/maintenance/port/aft) "dyj" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -85280,8 +80086,6 @@ /area/maintenance/port/aft) "dyQ" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -85298,8 +80102,6 @@ "dzI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -85317,8 +80119,6 @@ "dzR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/event_spawn, @@ -85340,8 +80140,6 @@ /area/maintenance/starboard/aft) "dAn" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/external{ @@ -85351,8 +80149,6 @@ /area/maintenance/starboard/aft) "dAp" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -85362,8 +80158,6 @@ /area/maintenance/starboard/aft) "dAw" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance{ @@ -85377,8 +80171,6 @@ /area/maintenance/starboard/aft) "dAx" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -85455,27 +80247,23 @@ "dBD" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plating, /area/security/brig) "dBF" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/yellow{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plating, /area/security/brig) "dBG" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -85484,8 +80272,7 @@ /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plating, /area/security/brig) @@ -85496,9 +80283,7 @@ /area/engine/break_room) "dBJ" = ( /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /turf/open/floor/plasteel, /area/engine/atmos) @@ -85513,9 +80298,7 @@ /area/engine/atmos) "dBM" = ( /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /turf/open/floor/plasteel/caution{ dir = 8 @@ -85524,15 +80307,12 @@ "dBN" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plating, /area/medical/virology) "dBO" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /mob/living/carbon/monkey, @@ -85541,20 +80321,15 @@ "dBR" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plating, /area/medical/virology) "dBS" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/white, @@ -85563,7 +80338,6 @@ /obj/effect/spawner/structure/window, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -85571,7 +80345,6 @@ "dBU" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -85603,9 +80376,7 @@ dir = 4 }, /obj/structure/cable/yellow{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "4-8" }, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, @@ -85622,8 +80393,6 @@ /area/crew_quarters/fitness/recreation) "dCe" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -85645,8 +80414,6 @@ /area/security/brig) "dCh" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/event_spawn, @@ -85659,6 +80426,9 @@ }, /area/maintenance/starboard/fore) "dCj" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/floorgrime, /area/security/brig) @@ -85673,8 +80443,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/event_spawn, @@ -85682,8 +80450,6 @@ /area/maintenance/port/fore) "dCn" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/event_spawn, @@ -85694,8 +80460,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/event_spawn, @@ -85703,8 +80467,6 @@ /area/hallway/primary/fore) "dCp" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -85721,8 +80483,6 @@ /area/security/courtroom) "dCr" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/event_spawn, @@ -85730,8 +80490,6 @@ /area/hallway/primary/fore) "dCs" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -85749,8 +80507,6 @@ "dCw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/event_spawn, @@ -85759,8 +80515,6 @@ "dCx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/event_spawn, @@ -85784,8 +80538,6 @@ /area/quartermaster/storage) "dCC" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -85799,8 +80551,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/event_spawn, @@ -85808,8 +80558,6 @@ /area/maintenance/starboard/fore) "dCE" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/event_spawn, @@ -85817,8 +80565,6 @@ /area/hallway/primary/central) "dCH" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -85857,8 +80603,6 @@ /area/hallway/primary/starboard) "dCN" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -85881,8 +80625,6 @@ /area/crew_quarters/bar) "dCT" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/event_spawn, @@ -85894,8 +80636,6 @@ /area/crew_quarters/bar) "dCV" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -85904,8 +80644,6 @@ /area/maintenance/starboard) "dCW" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -85932,8 +80670,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/event_spawn, @@ -85946,8 +80682,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/event_spawn, @@ -85961,8 +80695,6 @@ /area/crew_quarters/kitchen) "dDf" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -85971,8 +80703,6 @@ /area/bridge/showroom/corporate) "dDg" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/event_spawn, @@ -86013,8 +80743,6 @@ /area/maintenance/starboard/aft) "dDr" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -86028,8 +80756,6 @@ /area/maintenance/starboard/aft) "dDs" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -86055,8 +80781,6 @@ /area/crew_quarters/heads/cmo) "dDu" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -86076,8 +80800,6 @@ /area/maintenance/port/aft) "dDy" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/event_spawn, @@ -86092,8 +80814,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/event_spawn, @@ -86107,8 +80827,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/event_spawn, @@ -86122,8 +80840,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/event_spawn, @@ -86135,8 +80851,6 @@ /area/science/robotics/lab) "dDF" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -86238,6 +80952,107 @@ }, /turf/open/space/basic, /area/space) +"EDb" = ( +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/space) +"EDc" = ( +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/space) +"EDd" = ( +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/space) +"EDe" = ( +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/space) +"EDf" = ( +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/space) +"EDg" = ( +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/space) +"EDh" = ( +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/space) +"EDi" = ( +/obj/docking_port/mobile{ + callTime = 250; + dheight = 0; + dir = 2; + dwidth = 11; + height = 15; + id = "whiteship"; + launch_status = 0; + movement_force = list("KNOCKDOWN" = 0, "THROW" = 0); + name = "NT Recovery White-Ship"; + port_direction = 8; + preferred_direction = 4; + roundstart_move = "whiteship_away"; + width = 28 + }, +/obj/machinery/door/airlock/titanium{ + name = "recovery shuttle external airlock" + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/docking_port/stationary{ + dir = 2; + dwidth = 11; + height = 15; + id = "whiteship_home"; + name = "SS13: Auxiliary Dock, Station-Port"; + width = 28 + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"EDj" = ( +/obj/structure/sign/restroom, +/turf/closed/wall/mineral/titanium, +/area/shuttle/abandoned) +"EDk" = ( +/obj/structure/sign/cargo, +/turf/closed/wall/mineral/titanium, +/area/shuttle/abandoned) +"EDl" = ( +/obj/machinery/porta_turret/centcom_shuttle/weak{ + dir = 4 + }, +/turf/closed/wall/mineral/titanium, +/area/shuttle/abandoned) +"EDm" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/machinery/turretid{ + icon_state = "control_kill"; + lethal = 1; + locked = 0; + pixel_x = -28; + req_access = null + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/abandoned) +"EDn" = ( +/obj/machinery/porta_turret/aux_base{ + always_up = 1; + desc = "A turret built with substandard parts and run down further with age. Still capable of delivering lethal lasers to the odd space carp, but not much else."; + dir = 4; + has_cover = 0; + icon_state = "standard_lethal"; + lethal_projectile = /obj/item/projectile/beam/weak; + name = "turret" + }, +/turf/closed/wall/mineral/titanium, +/area/shuttle/abandoned) (1,1,1) = {" aaa @@ -93064,7 +87879,7 @@ cVF cVO cVF cWu -cVF +EDj cWo cWo cWo @@ -95760,7 +90575,7 @@ aaa aaa aaa aaa -EDa +aaa aaa aaa aaa @@ -95887,7 +90702,7 @@ aWU bOd bPA bOd -cbm +cVI cVZ cWo cVY @@ -96060,7 +90875,7 @@ aaa aaa aaa aaa -aaa +EDa aaa aaa aaa @@ -96144,7 +90959,7 @@ aWU bOd aZZ bOd -cVI +EDi cVY cWp dlk @@ -96662,7 +91477,7 @@ cVF cWa cWq cWC -cVF +EDk cWo cXa cXr @@ -97435,7 +92250,7 @@ cWt cWE cVF cWU -cXa +EDm cWo cXa dDP @@ -98461,13 +93276,13 @@ aaa aaa aaa aaa -cVF +EDl cVG cVG cVG cVG cVG -cVF +EDl aaa aaa aaa @@ -111006,7 +105821,7 @@ awZ ayw azD aAY -ajm +aCk aDw aDC aGb @@ -111263,8 +106078,8 @@ axa ayx azE azE -ajm -aDw +aCl +aDx aEK aGc aHx @@ -111520,7 +106335,7 @@ axb ayy azF aAZ -ajm +aCm aDw aEL aGd @@ -111778,7 +106593,7 @@ ahx ahx ahx ajm -aDw +aDy aEM aGe aHx @@ -112034,7 +106849,7 @@ axd ayw azG aAY -ajm +aCk aDw aEN aGf @@ -112291,8 +107106,8 @@ axe ayz dCj azE -ajm -aDw +aCl +aDx dCo aGg aHx @@ -112548,7 +107363,7 @@ axb ayy azF aBa -ajm +aCm aDw aEO aGh @@ -113062,7 +107877,7 @@ axd ayw azH aAY -ajm +aCk aDw aEO aGg @@ -113319,8 +108134,8 @@ axa ayA azE azE -ajm -aDw +aCl +aDx aEQ aGj aHz @@ -113576,7 +108391,7 @@ axg ayy azF aBb -ajm +aCm aDw aEN aGk @@ -134154,7 +128969,7 @@ aaa aaa aag aaa -anT +EDb aaa aaa aaa @@ -134171,7 +128986,7 @@ bzj bzj aai bzj -anT +EDb bzj bzj bKK @@ -134179,7 +128994,7 @@ bzj bzj bzj bzj -bzj +EDb aai bzj bzj @@ -134188,7 +129003,7 @@ bzj bKK bzj bzj -aaf +anS aaa aaa aaa @@ -135713,7 +130528,7 @@ aaa aaa aai aaa -anT +EDb aaa aaa aaa @@ -135970,7 +130785,7 @@ aaa aaa aai aaa -anT +EDb aaa aaa aaa @@ -136724,7 +131539,7 @@ aaa aaa aag aaa -anT +EDb aaa aaa aaf @@ -137255,7 +132070,7 @@ aaf aaf aag aaa -anT +EDb aaa aaa aaa diff --git a/_maps/map_files/Mining/Lavaland.dmm b/_maps/map_files/Mining/Lavaland.dmm index 90e8ab96bf..d634822968 100644 --- a/_maps/map_files/Mining/Lavaland.dmm +++ b/_maps/map_files/Mining/Lavaland.dmm @@ -459,16 +459,12 @@ /area/mine/laborcamp) "by" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel, /area/mine/laborcamp) "bz" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -479,8 +475,6 @@ req_access_txt = "2" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -492,13 +486,10 @@ pixel_y = 24 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plasteel, /area/mine/laborcamp) @@ -571,8 +562,6 @@ req_access_txt = "2" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -583,8 +572,6 @@ req_access_txt = "2" }, /obj/structure/cable{ - d1 = 1; - d2 = 10; icon_state = "1-10" }, /turf/open/floor/plating, @@ -608,8 +595,6 @@ /area/mine/production) "bQ" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -622,8 +607,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/brown{ @@ -632,8 +615,6 @@ /area/mine/production) "bS" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_mining{ @@ -647,16 +628,12 @@ /area/mine/eva) "bT" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/brown{ @@ -668,8 +645,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel, @@ -716,8 +691,6 @@ "cc" = ( /obj/structure/chair/office/dark, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /mob/living/simple_animal/bot/secbot/beepsky{ @@ -743,20 +716,15 @@ network = list("Labor") }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel, /area/mine/laborcamp/security) "ce" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 5; - d2 = 6; icon_state = "5-6" }, /turf/open/floor/plating, @@ -764,7 +732,6 @@ "cf" = ( /obj/machinery/power/terminal, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -803,8 +770,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -888,12 +853,9 @@ charge = 5e+006 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/cable{ - d1 = 0; - d2 = 9; icon_state = "0-9" }, /turf/open/floor/plating, @@ -914,8 +876,6 @@ "cE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -997,15 +957,12 @@ charge = 5e+006 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plating, /area/mine/living_quarters) "cT" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/small{ @@ -1017,8 +974,6 @@ "cU" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plating, @@ -1038,8 +993,7 @@ pixel_y = 2 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/light{ dir = 8 @@ -1051,13 +1005,9 @@ "cY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel, @@ -1114,9 +1064,7 @@ /area/mine/maintenance) "dh" = ( /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/power/apc{ dir = 1; @@ -1178,15 +1126,12 @@ dir = 1 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plating, /area/mine/living_quarters) "dp" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -1234,8 +1179,6 @@ /area/mine/production) "dx" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/baseturf_helper/lava_land/surface, @@ -1243,8 +1186,6 @@ /area/mine/maintenance) "dy" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -1317,8 +1258,6 @@ "dF" = ( /obj/structure/cable, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/power/port_gen/pacman{ @@ -1331,15 +1270,12 @@ anchored = 1 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, /area/mine/living_quarters) "dH" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -1420,8 +1356,6 @@ req_access_txt = "48" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -1442,8 +1376,6 @@ /area/mine/living_quarters) "dS" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance{ @@ -1451,8 +1383,6 @@ req_access_txt = "48" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -1504,8 +1434,6 @@ "eb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/brown{ @@ -1545,9 +1473,7 @@ pixel_y = 25 }, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plasteel, /area/mine/living_quarters) @@ -1560,8 +1486,6 @@ /area/mine/living_quarters) "ei" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -1619,8 +1543,6 @@ "eq" = ( /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel, @@ -1630,8 +1552,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -1639,8 +1559,6 @@ "es" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -1650,26 +1568,18 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel, /area/mine/living_quarters) "eu" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -1677,8 +1587,6 @@ /area/mine/living_quarters) "ev" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -1691,8 +1599,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/brown{ @@ -1701,8 +1607,6 @@ /area/mine/living_quarters) "ex" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_mining{ @@ -1719,8 +1623,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/brown{ @@ -1732,16 +1634,12 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/mine/production) "eA" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_mining{ @@ -1755,8 +1653,6 @@ /area/mine/production) "eB" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -1769,8 +1665,6 @@ "eC" = ( /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel, diff --git a/_maps/map_files/OmegaStation/OmegaStation.dmm b/_maps/map_files/OmegaStation/OmegaStation.dmm index cf3d52567c..21e18ab470 100644 --- a/_maps/map_files/OmegaStation/OmegaStation.dmm +++ b/_maps/map_files/OmegaStation/OmegaStation.dmm @@ -38,11 +38,9 @@ }) "aai" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -54,7 +52,6 @@ /area/bridge) "aaj" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -69,7 +66,6 @@ /area/bridge) "aal" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -81,7 +77,6 @@ /area/bridge) "aam" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -93,11 +88,9 @@ /area/bridge) "aan" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -109,11 +102,9 @@ /area/bridge) "aao" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -125,7 +116,6 @@ /area/bridge) "aap" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white, @@ -156,8 +146,6 @@ /obj/item/wrench, /obj/item/device/multitool, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table/reinforced, @@ -168,8 +156,6 @@ "aat" = ( /obj/machinery/computer/communications, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -180,8 +166,6 @@ /obj/item/paper_bin, /obj/item/pen, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table/reinforced, @@ -206,11 +190,9 @@ /area/bridge) "aax" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -232,8 +214,6 @@ "aaz" = ( /obj/machinery/computer/card, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/darkred/side{ @@ -260,8 +240,6 @@ "aaB" = ( /obj/machinery/computer/security, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/darkred/side{ @@ -292,8 +270,6 @@ /obj/item/book/manual/wiki/security_space_law, /obj/item/device/taperecorder, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table/reinforced, @@ -307,8 +283,6 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -320,8 +294,6 @@ /obj/item/folder/blue, /obj/item/pen, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table/reinforced, @@ -349,8 +321,6 @@ "aaJ" = ( /obj/machinery/computer/station_alert, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/darkyellow/side{ @@ -373,8 +343,6 @@ "aaL" = ( /obj/machinery/computer/monitor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/darkyellow/side{ @@ -399,8 +367,6 @@ name = "command camera" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -423,8 +389,6 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -452,8 +416,6 @@ /area/bridge) "aaR" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -495,8 +457,6 @@ name = "command camera" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -517,19 +477,13 @@ }) "aaX" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -538,8 +492,6 @@ /area/bridge) "aaY" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -551,13 +503,9 @@ /area/bridge) "aaZ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/power/apc{ @@ -576,8 +524,6 @@ /area/bridge) "aba" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -587,13 +533,9 @@ /area/bridge) "abc" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -605,18 +547,12 @@ /area/bridge) "abd" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -629,8 +565,6 @@ /area/bridge) "abe" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -645,13 +579,9 @@ /area/bridge) "abf" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/fireaxecabinet{ @@ -666,8 +596,6 @@ /area/bridge) "abg" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -680,21 +608,15 @@ /area/bridge) "abh" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -727,8 +649,6 @@ pixel_x = -32 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -755,7 +675,6 @@ /area/bridge) "abn" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/modular_computer/console/preset/command, @@ -770,8 +689,6 @@ /area/bridge) "abp" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -800,8 +717,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/sign/directions/engineering{ @@ -834,7 +749,6 @@ /area/crew_quarters/heads/captain/private) "abx" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -847,8 +761,6 @@ "aby" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -886,13 +798,9 @@ /obj/structure/table/wood, /obj/item/paper_bin, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -901,21 +809,15 @@ /area/bridge) "abD" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault, /area/bridge) "abE" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/holopad, @@ -926,13 +828,9 @@ /obj/structure/table/wood, /obj/item/lighter, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -969,8 +867,6 @@ "abI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/extinguisher_cabinet{ @@ -982,7 +878,6 @@ /area/bridge) "abJ" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -1128,8 +1023,6 @@ "aca" = ( /obj/structure/dresser, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -1140,8 +1033,6 @@ "acb" = ( /obj/structure/bed, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -1181,8 +1072,6 @@ /area/crew_quarters/heads/captain/private) "acd" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -1199,7 +1088,6 @@ /area/bridge) "acf" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -1219,8 +1107,6 @@ /area/bridge) "ach" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -1244,8 +1130,6 @@ /area/bridge) "ack" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -1272,8 +1156,6 @@ "acn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault, @@ -1304,8 +1186,6 @@ "acp" = ( /obj/structure/bed, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -1318,8 +1198,6 @@ "acq" = ( /obj/structure/dresser, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -1561,8 +1439,6 @@ /area/crew_quarters/heads/captain/private) "acR" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -1572,8 +1448,6 @@ /area/crew_quarters/heads/captain/private) "acS" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -1596,13 +1470,9 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/vault{ @@ -1611,8 +1481,6 @@ /area/bridge) "acV" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, @@ -1622,13 +1490,9 @@ /area/bridge) "acW" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/command{ @@ -1646,8 +1510,6 @@ /area/bridge) "acX" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -1659,8 +1521,6 @@ /area/bridge) "acY" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -1670,8 +1530,6 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/grimy, @@ -1721,27 +1579,19 @@ /area/bridge) "adc" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/grimy, /area/bridge) "add" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/command{ @@ -1763,8 +1613,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ @@ -1776,13 +1624,9 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/vault{ @@ -1796,8 +1640,6 @@ pixel_x = -22 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -1807,18 +1649,12 @@ /area/crew_quarters/heads/hop) "adh" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -1828,18 +1664,12 @@ /area/crew_quarters/heads/hop) "adi" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -1852,8 +1682,6 @@ /area/crew_quarters/heads/hop) "adj" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -1885,7 +1713,6 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -2051,8 +1878,6 @@ "adI" = ( /obj/structure/filingcabinet, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -2067,18 +1892,12 @@ /area/crew_quarters/heads/captain/private) "adJ" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/twohanded/required/kirbyplants{ @@ -2097,18 +1916,12 @@ /area/crew_quarters/heads/captain/private) "adK" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -2119,8 +1932,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/sign/goldenplaque/captain{ @@ -2133,8 +1944,6 @@ "adM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -2162,7 +1971,6 @@ name = "AI Core Shutters" }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white, @@ -2178,7 +1986,6 @@ name = "AI Core Shutters" }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plating, @@ -2200,8 +2007,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -2220,8 +2025,6 @@ "adV" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -2247,8 +2050,6 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -2483,7 +2284,6 @@ pixel_y = 3 }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plasteel, @@ -2505,8 +2305,6 @@ req_access_txt = "20" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -2558,8 +2356,6 @@ /area/ai_monitored/turret_protected/ai) "aeA" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault, @@ -2621,8 +2417,6 @@ }, /obj/effect/landmark/start/ai, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/ai_slipper{ @@ -2646,8 +2440,6 @@ req_access_txt = "16" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ @@ -2656,13 +2448,9 @@ /area/ai_monitored/turret_protected/ai) "aeE" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/vault, @@ -2703,8 +2491,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -2717,7 +2503,6 @@ dir = 4 }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plating, @@ -2732,8 +2517,6 @@ /area/crew_quarters/heads/hop) "aeK" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -2768,7 +2551,6 @@ }, /obj/item/storage/box/ids, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc/highcap/five_k{ @@ -2905,8 +2687,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/wood, @@ -2917,8 +2697,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/wood, @@ -2931,8 +2709,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/wood, @@ -2945,7 +2721,6 @@ pixel_y = 25 }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/wood, @@ -2965,8 +2740,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/delivery, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -2995,8 +2768,6 @@ /area/crew_quarters/heads/captain/private) "afn" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -3068,8 +2839,6 @@ /area/ai_monitored/turret_protected/ai) "afr" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/circuit/green, @@ -3118,13 +2887,9 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -3134,13 +2899,9 @@ "afv" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/door/airlock/command{ @@ -3155,16 +2916,12 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/crew_quarters/heads/hop) "afw" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -3176,18 +2933,12 @@ /area/crew_quarters/heads/hop) "afx" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -3197,13 +2948,9 @@ /area/crew_quarters/heads/hop) "afy" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/holopad, @@ -3216,8 +2963,6 @@ /area/crew_quarters/heads/hop) "afz" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/requests_console{ @@ -3253,8 +2998,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/landmark/blobstart, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -3380,8 +3123,6 @@ "afQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/grimy, @@ -3422,8 +3163,6 @@ /area/security/detectives_office) "afV" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/decal/cleanable/dirt, @@ -3431,8 +3170,6 @@ /obj/effect/turf_decal/delivery, /obj/effect/landmark/event_spawn, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -3445,8 +3182,6 @@ req_access_txt = "20" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -3456,8 +3191,6 @@ /area/maintenance/fore) "afX" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -3472,8 +3205,6 @@ pixel_y = 32 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/camera{ @@ -3496,8 +3227,6 @@ /area/crew_quarters/heads/captain/private) "agb" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -3515,7 +3244,6 @@ dir = 4 }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/door/poddoor/preopen{ @@ -3530,8 +3258,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -3584,7 +3310,6 @@ "agi" = ( /obj/machinery/doomsday_device, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -3623,8 +3348,6 @@ "agm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -3657,8 +3380,6 @@ "agp" = ( /obj/machinery/pdapainter, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -3678,8 +3399,6 @@ /obj/item/pen, /obj/item/stamp/hop, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/camera{ @@ -3732,8 +3451,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner{ @@ -3869,8 +3586,6 @@ /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/grimy, @@ -3906,8 +3621,6 @@ /area/security/detectives_office) "agN" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -3927,7 +3640,6 @@ pixel_y = 3 }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/turf_decal/delivery, @@ -3935,16 +3647,12 @@ /area/crew_quarters/heads/captain/private) "agP" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/carpet, @@ -3956,8 +3664,6 @@ icon_state = "comfychair" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -3969,8 +3675,6 @@ "agR" = ( /obj/structure/table/wood, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/clipboard, @@ -3987,13 +3691,9 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -4001,8 +3701,6 @@ /area/crew_quarters/heads/captain/private) "agT" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -4018,18 +3716,12 @@ req_access_txt = "20" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -4043,13 +3735,9 @@ "agV" = ( /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -4078,16 +3766,12 @@ /area/ai_monitored/turret_protected/ai) "agY" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/circuit/green, /area/ai_monitored/turret_protected/ai) "agZ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, @@ -4097,21 +3781,15 @@ /area/ai_monitored/turret_protected/ai) "aha" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/ai_slipper{ uses = 10 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/landmark/start/cyborg, @@ -4121,8 +3799,6 @@ /area/ai_monitored/turret_protected/ai) "ahb" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -4132,8 +3808,6 @@ /area/ai_monitored/turret_protected/ai) "ahc" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/circuit/green, @@ -4173,8 +3847,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -4219,8 +3891,6 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner, @@ -4429,8 +4099,6 @@ pixel_x = -24 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/vault, @@ -4438,18 +4106,12 @@ "ahC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/grimy, @@ -4460,13 +4122,9 @@ /obj/item/pen, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/grimy, @@ -4486,8 +4144,6 @@ pixel_y = -26 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/grimy, @@ -4506,8 +4162,6 @@ /area/security/detectives_office) "ahG" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -4612,8 +4266,6 @@ /area/ai_monitored/turret_protected/ai) "ahS" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -4659,8 +4311,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -4841,7 +4491,6 @@ /area/security/brig) "aiq" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -4850,8 +4499,6 @@ "air" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_security{ @@ -4867,13 +4514,9 @@ "ais" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/door/airlock/glass_security{ @@ -4888,7 +4531,6 @@ /area/security/brig) "ait" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -4912,8 +4554,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -4937,8 +4577,6 @@ req_access_txt = "12" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -4956,8 +4594,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -4992,8 +4628,6 @@ pixel_x = 28 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -5013,8 +4647,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -5033,7 +4665,6 @@ /area/hallway/primary/central) "aiE" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -5060,8 +4691,6 @@ dir = 2 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -5179,7 +4808,6 @@ /area/security/brig) "aiU" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -5199,8 +4827,6 @@ /area/security/brig) "aiX" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -5231,7 +4857,6 @@ /area/security/brig) "aiZ" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -5262,8 +4887,6 @@ }, /obj/structure/chair, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -5279,7 +4902,6 @@ /area/security/brig) "ajc" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -5307,8 +4929,6 @@ /area/hallway/primary/central) "aje" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -5352,8 +4972,6 @@ /area/hallway/primary/central) "ajj" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -5417,8 +5035,6 @@ /area/hallway/primary/central) "ajo" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -5470,8 +5086,6 @@ /area/hallway/primary/central) "ajt" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -5541,8 +5155,6 @@ /area/hallway/primary/central) "ajz" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -5576,8 +5188,6 @@ /area/hallway/primary/central) "ajC" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -5589,8 +5199,6 @@ /area/hallway/primary/central) "ajD" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -5721,8 +5329,6 @@ /area/security/brig) "ajS" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -5761,8 +5367,6 @@ pixel_y = -3 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -5773,7 +5377,6 @@ "ajU" = ( /obj/structure/cable/white, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -5800,13 +5403,9 @@ /area/security/brig) "ajX" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -5819,8 +5418,6 @@ /area/security/brig) "ajY" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -5832,13 +5429,9 @@ /area/security/brig) "ajZ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/window/brigdoor/security/cell/westright{ @@ -5854,8 +5447,6 @@ /area/security/brig) "aka" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -5865,13 +5456,9 @@ /area/security/brig) "akb" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/red/side{ @@ -5887,13 +5474,9 @@ "akd" = ( /obj/effect/landmark/lightsout, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -5903,8 +5486,6 @@ /area/hallway/primary/central) "ake" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -5917,8 +5498,6 @@ /area/hallway/primary/central) "akf" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -5930,8 +5509,6 @@ /area/hallway/primary/central) "akg" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -5944,8 +5521,6 @@ /area/hallway/primary/central) "akh" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -5959,13 +5534,9 @@ /area/hallway/primary/central) "aki" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -5976,8 +5547,6 @@ /area/hallway/primary/central) "akj" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6000,8 +5569,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -6011,13 +5578,9 @@ /area/hallway/primary/central) "akl" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6028,8 +5591,6 @@ /area/hallway/primary/central) "akm" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6041,13 +5602,9 @@ /area/hallway/primary/central) "akn" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6058,13 +5615,9 @@ /area/hallway/primary/central) "ako" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -6075,13 +5628,9 @@ /area/hallway/primary/central) "akp" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6094,8 +5643,6 @@ /area/hallway/primary/central) "akq" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6109,24 +5656,16 @@ /area/hallway/primary/central) "akr" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/neutral/corner{ @@ -6136,13 +5675,9 @@ /area/hallway/primary/central) "aks" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6155,16 +5690,12 @@ /area/hallway/primary/central) "akt" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel{ @@ -6173,8 +5704,6 @@ /area/hallway/primary/central) "aku" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6187,8 +5716,6 @@ /area/hallway/primary/central) "akv" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6196,8 +5723,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel{ @@ -6206,13 +5731,9 @@ /area/hallway/primary/central) "akw" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6220,8 +5741,6 @@ }, /obj/effect/landmark/lightsout, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel{ @@ -6230,8 +5749,6 @@ /area/hallway/primary/central) "akx" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, @@ -6241,8 +5758,6 @@ /area/hallway/primary/central) "aky" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -6254,16 +5769,12 @@ /area/hallway/primary/central) "akz" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel{ @@ -6272,8 +5783,6 @@ /area/hallway/primary/central) "akA" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6283,13 +5792,9 @@ /area/hallway/primary/central) "akB" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -6297,39 +5802,27 @@ /area/hallway/primary/central) "akC" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/neutral/corner, /area/hallway/primary/central) "akD" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6340,18 +5833,12 @@ /area/hallway/primary/central) "akE" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -6362,18 +5849,12 @@ /area/hallway/primary/central) "akF" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6384,13 +5865,9 @@ /area/hallway/primary/central) "akG" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6402,16 +5879,12 @@ /area/hallway/primary/central) "akH" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/corner{ @@ -6427,8 +5900,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner, @@ -6439,8 +5910,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -6453,14 +5922,10 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/delivery, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -6515,7 +5980,6 @@ pixel_x = -32 }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -6524,18 +5988,12 @@ "akU" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/door/airlock/security{ @@ -6550,7 +6008,6 @@ /area/security/brig) "akV" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -6569,7 +6026,6 @@ pixel_x = -26 }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plasteel/red/side{ @@ -6582,24 +6038,18 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/corner, /area/security/brig) "akY" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/neutral/side{ @@ -6634,8 +6084,6 @@ /area/hallway/primary/central) "alc" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -6685,8 +6133,6 @@ /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/command{ @@ -6724,8 +6170,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel{ @@ -6743,8 +6187,6 @@ "alo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel{ @@ -6778,8 +6220,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel{ @@ -6815,8 +6255,6 @@ /area/ai_monitored/storage/eva) "alw" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -6852,8 +6290,6 @@ "alz" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/brown/corner{ @@ -6904,8 +6340,6 @@ "alE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/landmark/lightsout, @@ -6920,7 +6354,6 @@ pixel_x = 26 }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/brown{ @@ -6964,8 +6397,6 @@ /area/security/brig) "alI" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -7020,8 +6451,6 @@ /area/security/brig) "alN" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, @@ -7062,8 +6491,6 @@ }, /obj/structure/chair, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -7087,8 +6514,6 @@ /area/hallway/primary/central) "alS" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/extinguisher_cabinet{ @@ -7177,13 +6602,9 @@ /area/teleporter) "amb" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -7195,8 +6616,6 @@ "amc" = ( /obj/machinery/shieldwallgen, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/camera{ @@ -7207,7 +6626,6 @@ /area/teleporter) "amd" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -7215,7 +6633,6 @@ /area/teleporter) "ame" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -7224,13 +6641,9 @@ "amf" = ( /obj/structure/closet/crate/bin, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/delivery, @@ -7245,8 +6658,6 @@ "amh" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/event_spawn, @@ -7267,13 +6678,9 @@ "aml" = ( /obj/structure/closet/emcloset, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/delivery, @@ -7281,7 +6688,6 @@ /area/hallway/primary/central) "amm" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -7289,7 +6695,6 @@ /area/hallway/primary/central) "amn" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -7309,8 +6714,6 @@ /obj/item/stock_parts/cell/high, /obj/item/stock_parts/cell/high, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ @@ -7320,13 +6723,9 @@ "amp" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -7386,8 +6785,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/brown/corner{ @@ -7428,8 +6825,6 @@ "amA" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/brown, @@ -7509,8 +6904,6 @@ "amI" = ( /obj/machinery/holopad, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -7542,13 +6935,9 @@ /area/security/brig) "amM" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -7561,13 +6950,9 @@ /area/security/brig) "amN" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/window/brigdoor/security/cell/westright{ @@ -7660,8 +7045,6 @@ /area/teleporter) "amW" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -7686,8 +7069,6 @@ pixel_y = -32 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/delivery, @@ -7696,8 +7077,6 @@ "ana" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner{ @@ -7718,8 +7097,6 @@ pixel_y = -32 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/turf_decal/delivery, @@ -7739,8 +7116,6 @@ "ang" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -7793,8 +7168,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -7828,8 +7201,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -7873,7 +7244,6 @@ /obj/structure/closet/secure_closet/miner, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/turf_decal/stripes/line{ @@ -7945,8 +7315,6 @@ /area/security/brig) "anz" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -8019,8 +7387,6 @@ /area/security/brig) "anE" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -8067,8 +7433,6 @@ "anI" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -8128,8 +7492,6 @@ "anO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -8161,8 +7523,6 @@ name = "Atrium" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -8218,8 +7578,6 @@ /area/ai_monitored/storage/eva) "anV" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -8269,8 +7627,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/brown/corner{ @@ -8328,8 +7684,6 @@ "aog" = ( /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/brown/corner{ @@ -8379,8 +7733,6 @@ "aok" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/start/shaft_miner, @@ -8457,13 +7809,9 @@ /area/security/brig) "aot" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -8475,8 +7823,6 @@ "aou" = ( /obj/machinery/computer/security, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -8619,8 +7965,6 @@ /area/teleporter) "aoH" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -8696,18 +8040,12 @@ "aoO" = ( /obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/neutral/corner{ @@ -8719,8 +8057,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral, @@ -8731,8 +8067,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -8745,8 +8079,6 @@ }, /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/bot, @@ -8762,8 +8094,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -8777,8 +8107,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -8789,8 +8117,6 @@ dir = 10 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/caution{ @@ -8852,18 +8178,12 @@ }, /obj/effect/landmark/lightsout, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/brown/corner, @@ -8874,8 +8194,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -8888,8 +8206,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/brown/corner{ @@ -8899,8 +8215,6 @@ "apd" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/brown/corner{ @@ -8912,8 +8226,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/event_spawn, @@ -8922,8 +8234,6 @@ "apf" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/brown/corner, @@ -8936,13 +8246,9 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/brown/corner, @@ -8953,8 +8259,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/bot, @@ -8970,8 +8274,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -8984,8 +8286,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -8996,8 +8296,6 @@ dir = 10 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/brown{ @@ -9007,8 +8305,6 @@ "apl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/purple/side{ @@ -9122,18 +8418,12 @@ "apx" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/door/airlock/glass_security{ @@ -9172,13 +8462,9 @@ /area/security/brig) "apA" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -9191,8 +8477,6 @@ /area/security/brig) "apB" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -9208,8 +8492,6 @@ req_access_txt = "63" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -9222,8 +8504,6 @@ /area/security/brig) "apD" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -9234,8 +8514,6 @@ /area/security/brig) "apE" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -9254,8 +8532,6 @@ req_access_txt = "63" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -9268,8 +8544,6 @@ /area/security/brig) "apG" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -9282,13 +8556,9 @@ /area/hallway/primary/central) "apH" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -9339,7 +8609,6 @@ pixel_y = -26 }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/turf_decal/stripes/line, @@ -9350,8 +8619,6 @@ pixel_y = -32 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/stripes/line{ @@ -9383,8 +8650,6 @@ /area/maintenance/port/central) "apQ" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -9399,8 +8664,6 @@ "apR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -9419,8 +8682,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -9437,8 +8698,6 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/bot, @@ -9450,18 +8709,12 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -9505,8 +8758,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/caution, @@ -9548,8 +8799,6 @@ pixel_y = -32 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/turf_decal/stripes/line{ @@ -9565,7 +8814,6 @@ pixel_y = -26 }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/turf_decal/stripes/line, @@ -9618,8 +8866,6 @@ "aqi" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/brown/corner, @@ -9849,8 +9095,6 @@ /area/security/brig) "aqJ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -9870,7 +9114,6 @@ /area/security/brig) "aqL" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, @@ -9896,8 +9139,6 @@ /area/security/brig) "aqO" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -9946,8 +9187,6 @@ /area/security/brig) "aqS" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -9972,7 +9211,6 @@ pixel_y = 3 }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/turf_decal/bot, @@ -10032,8 +9270,6 @@ /area/maintenance/port/central) "aqZ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -10055,8 +9291,6 @@ name = "Atrium" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -10099,8 +9333,6 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -10126,8 +9358,6 @@ "arj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner, @@ -10430,8 +9660,6 @@ /area/security/brig) "arE" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/landmark/start/security_officer, @@ -10444,8 +9672,6 @@ /area/security/brig) "arF" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -10456,8 +9682,6 @@ "arG" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_security{ @@ -10471,26 +9695,18 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel, /area/security/brig) "arH" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -10503,8 +9719,6 @@ /area/security/brig) "arI" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -10516,13 +9730,9 @@ /area/security/brig) "arJ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/landmark/start/security_officer, @@ -10533,8 +9743,6 @@ /area/security/brig) "arK" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -10547,13 +9755,9 @@ "arL" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_security{ @@ -10571,8 +9775,6 @@ "arM" = ( /obj/machinery/holopad, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/extinguisher_cabinet{ @@ -10619,8 +9821,6 @@ pixel_y = 38 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/landmark/start/security_officer, @@ -10658,8 +9858,6 @@ "arQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/yellow/side{ @@ -10696,8 +9894,6 @@ /area/storage/primary) "arV" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -10714,8 +9910,6 @@ req_access_txt = "12" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -10728,18 +9922,12 @@ /area/maintenance/port/central) "arX" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -10749,8 +9937,6 @@ /area/maintenance/port/central) "arY" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -10760,8 +9946,6 @@ /area/maintenance/port/central) "arZ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -10772,8 +9956,6 @@ "asa" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -10785,18 +9967,12 @@ /area/maintenance/port/central) "asb" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -10807,8 +9983,6 @@ "asc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -10840,8 +10014,6 @@ "asf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/redyellow, @@ -10871,8 +10043,6 @@ "ask" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plating, @@ -10882,8 +10052,6 @@ dir = 5 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner, @@ -10894,8 +10062,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -10907,8 +10073,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner, @@ -10919,8 +10083,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -10930,8 +10092,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -10942,8 +10102,6 @@ dir = 10 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/neutral/corner, @@ -11009,7 +10167,7 @@ "asz" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 2; - filter_type = /datum/gas/nitrogen; + filter_type = "n2"; name = "nitrogen filter"; on = 1 }, @@ -11172,8 +10330,6 @@ pixel_y = -32 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -11256,8 +10412,6 @@ pixel_y = -32 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -11269,16 +10423,12 @@ /area/security/brig) "asT" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/neutral/corner{ @@ -11295,8 +10445,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -11309,13 +10457,9 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/yellow/corner{ @@ -11331,8 +10475,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral, @@ -11343,8 +10485,6 @@ /obj/item/device/flashlight, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral, @@ -11354,8 +10494,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/yellow/side{ @@ -11369,8 +10507,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -11379,8 +10515,6 @@ "atb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -11397,8 +10531,6 @@ "atd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -11424,8 +10556,6 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -11486,8 +10616,6 @@ "ato" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner{ @@ -11499,8 +10627,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner, @@ -11658,7 +10784,6 @@ pixel_x = 26 }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/decal/cleanable/dirt, @@ -11693,8 +10818,6 @@ req_access_txt = "63" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -11717,8 +10840,6 @@ /area/hallway/primary/central) "atN" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -11885,8 +11006,6 @@ "atW" = ( /obj/effect/landmark/blobstart, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -11918,8 +11037,6 @@ "atZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/grimy, @@ -12052,8 +11169,6 @@ /obj/effect/landmark/blobstart, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -12075,8 +11190,6 @@ pixel_x = 24 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner, @@ -12184,8 +11297,6 @@ pixel_x = 24 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/caution{ @@ -12232,8 +11343,6 @@ /area/maintenance/port/fore) "auH" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/decal/cleanable/dirt, @@ -12245,8 +11354,6 @@ /area/maintenance/port/fore) "auI" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -12258,13 +11365,9 @@ /area/maintenance/port/fore) "auJ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/blood/splatter, @@ -12274,8 +11377,6 @@ /area/maintenance/port/fore) "auK" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -12290,24 +11391,18 @@ "auL" = ( /obj/effect/landmark/blobstart, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/red/corner, /area/maintenance/port/fore) "auM" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -12325,8 +11420,6 @@ /area/maintenance/port/fore) "auN" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -12338,21 +11431,15 @@ /area/hallway/primary/central) "auO" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/camera{ @@ -12365,8 +11452,6 @@ /area/hallway/primary/central) "auP" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -12378,8 +11463,6 @@ /area/hallway/primary/central) "auQ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -12391,8 +11474,6 @@ /area/hallway/primary/central) "auR" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -12405,8 +11486,6 @@ /area/hallway/primary/central) "auS" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -12475,8 +11554,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/carpet, @@ -12507,8 +11584,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/redyellow, @@ -12621,8 +11696,6 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -12642,8 +11715,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner, @@ -12747,8 +11818,6 @@ pixel_x = 26 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/caution{ @@ -12763,8 +11832,6 @@ /area/engine/atmos) "avI" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/decal/cleanable/dirt, @@ -12777,8 +11844,6 @@ "avJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -12788,8 +11853,6 @@ /area/maintenance/port/fore) "avK" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -12807,8 +11870,6 @@ /area/maintenance/port/fore) "avL" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -12822,15 +11883,12 @@ pixel_y = -26 }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plating, /area/maintenance/port/fore) "avM" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/decal/cleanable/dirt, @@ -12924,8 +11982,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner{ @@ -13059,8 +12115,6 @@ /obj/effect/landmark/start/clown, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/carpet, @@ -13085,8 +12139,6 @@ /obj/effect/landmark/start/assistant, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/redyellow, @@ -13133,8 +12185,6 @@ /obj/effect/landmark/start/bartender, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/black, @@ -13145,8 +12195,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ @@ -13163,8 +12211,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -13177,8 +12223,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ @@ -13188,8 +12232,6 @@ "awu" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ @@ -13204,8 +12246,6 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ @@ -13223,8 +12263,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -13237,18 +12275,12 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plating, @@ -13296,7 +12328,7 @@ "awD" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 2; - filter_type = /datum/gas/oxygen; + filter_type = "o2"; name = "oxygen filter"; on = 1 }, @@ -13363,8 +12395,6 @@ on = 0 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -13387,8 +12417,6 @@ /area/engine/atmos) "awM" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance_hatch{ @@ -13420,8 +12448,6 @@ /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -13447,8 +12473,6 @@ /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/carpet, @@ -13466,8 +12490,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/redyellow, @@ -13494,8 +12516,6 @@ /area/crew_quarters/bar/atrium) "awY" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/event_spawn, @@ -13560,8 +12580,6 @@ "axe" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -13656,8 +12674,6 @@ dir = 2 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/caution{ @@ -13683,8 +12699,6 @@ /area/engine/atmos) "axr" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -13806,8 +12820,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner{ @@ -13899,8 +12911,6 @@ /area/crew_quarters/dorms) "axL" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -13928,8 +12938,6 @@ /obj/effect/landmark/start/mime, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/carpet, @@ -13937,26 +12945,18 @@ "axO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "axP" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/redyellow, @@ -13964,16 +12964,12 @@ "axQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "axR" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/window/eastright{ @@ -13990,8 +12986,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/black, @@ -14021,8 +13015,6 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner, @@ -14109,7 +13101,7 @@ "ayf" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 1; - filter_type = /datum/gas/plasma; + filter_type = "plasma"; name = "waste filter"; on = 1 }, @@ -14153,8 +13145,6 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -14167,8 +13157,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -14230,8 +13218,6 @@ /obj/item/storage/belt/utility, /obj/item/device/t_scanner, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/decal/cleanable/dirt, @@ -14246,7 +13232,6 @@ name = "Atmospherics Lockdown Blast door" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -14254,8 +13239,6 @@ "ayt" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner{ @@ -14319,8 +13302,6 @@ /area/crew_quarters/dorms) "ayD" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -14346,8 +13327,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/carpet, @@ -14379,8 +13358,6 @@ "ayJ" = ( /obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/redyellow, @@ -14447,7 +13424,6 @@ dir = 1 }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc/highcap/five_k{ @@ -14489,7 +13465,6 @@ "ayW" = ( /obj/structure/table/reinforced, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -14506,7 +13481,6 @@ pixel_y = 23 }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plasteel/red/side{ @@ -14521,8 +13495,6 @@ pixel_y = 32 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side{ @@ -14539,8 +13511,6 @@ pixel_y = 24 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side{ @@ -14553,8 +13523,6 @@ pixel_y = 32 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/red/side{ @@ -14673,8 +13641,6 @@ "azp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -14684,8 +13650,6 @@ /area/engine/atmos) "azq" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -14706,7 +13670,6 @@ "azs" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -14722,8 +13685,6 @@ /area/engine/atmos) "azu" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -14733,8 +13694,6 @@ /area/engine/atmos) "azv" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -14744,8 +13703,6 @@ /area/engine/atmos) "azw" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -14755,13 +13712,9 @@ /area/engine/atmos) "azx" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -14773,8 +13726,6 @@ /area/engine/atmos) "azy" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -14785,18 +13736,12 @@ "azz" = ( /obj/machinery/computer/atmos_alert, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/caution{ @@ -14853,8 +13798,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/grimy, @@ -14888,8 +13831,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/redyellow, @@ -14933,8 +13874,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/side, @@ -14960,8 +13899,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -15018,8 +13955,6 @@ "azY" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -15163,8 +14098,6 @@ }, /obj/effect/landmark/start/atmospheric_technician, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/neutral, @@ -15174,8 +14107,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral, @@ -15185,36 +14116,24 @@ dir = 10 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/neutral, /area/engine/atmos) "aAt" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -15230,18 +14149,12 @@ req_access_txt = "24" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/stripes/line{ @@ -15251,8 +14164,6 @@ /area/engine/atmos) "aAv" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/caution/corner{ @@ -15261,13 +14172,9 @@ /area/engine/atmos) "aAw" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/neutral, @@ -15283,8 +14190,6 @@ "aAz" = ( /obj/machinery/holopad, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/bot, @@ -15300,8 +14205,6 @@ "aAB" = ( /obj/machinery/computer/station_alert, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/caution{ @@ -15391,8 +14294,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -15409,7 +14310,6 @@ pixel_y = 3 }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plasteel/redyellow, @@ -15417,28 +14317,18 @@ "aAO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/redyellow, @@ -15455,8 +14345,6 @@ /obj/item/kitchen/fork, /obj/effect/landmark/lightsout, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/redyellow, @@ -15466,8 +14354,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/redyellow, @@ -15477,8 +14363,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/redyellow, @@ -15488,8 +14372,6 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/redyellow, @@ -15503,8 +14385,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -15518,8 +14398,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -15530,13 +14408,9 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/neutral/side{ @@ -15551,8 +14425,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -15563,18 +14435,12 @@ "aAX" = ( /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plating, @@ -15600,8 +14466,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner, @@ -15633,8 +14497,6 @@ "aBf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/red/side, @@ -15808,8 +14670,6 @@ }, /obj/machinery/atmospherics/pipe/simple/cyan/visible, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line, @@ -15854,8 +14714,6 @@ dir = 10 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/caution, @@ -15874,8 +14732,6 @@ /obj/structure/chair/office/dark, /obj/effect/landmark/start/atmospheric_technician, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/caution, @@ -15917,13 +14773,9 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/neutral/corner{ @@ -15937,8 +14789,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner, @@ -15952,8 +14802,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -15966,8 +14814,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -15980,8 +14826,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral, @@ -15991,16 +14835,12 @@ dir = 10 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral, /area/crew_quarters/dorms) "aBQ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner, @@ -16014,7 +14854,6 @@ pixel_y = -26 }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/neutral/corner, @@ -16030,8 +14869,6 @@ /area/crew_quarters/dorms) "aBU" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -16064,7 +14901,6 @@ "aBX" = ( /obj/machinery/vending/autodrobe, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc/highcap/five_k{ @@ -16078,7 +14914,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plasteel/vault{ @@ -16160,7 +14995,6 @@ "aCi" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plating, @@ -16168,13 +15002,9 @@ "aCj" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/door/window/brigdoor/southright{ @@ -16184,8 +15014,6 @@ }, /obj/structure/table/reinforced, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/folder/red, @@ -16198,11 +15026,9 @@ "aCk" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -16211,13 +15037,9 @@ "aCl" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/door/airlock/glass_security{ @@ -16226,8 +15048,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -16238,7 +15058,6 @@ "aCm" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -16415,8 +15234,6 @@ dir = 5 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/bot, @@ -16452,7 +15269,6 @@ pixel_x = -32 }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plating, @@ -16469,13 +15285,9 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -16490,7 +15302,6 @@ name = "Atmospherics Lockdown Blast door" }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -16506,13 +15317,9 @@ }, /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/door/window/westright{ @@ -16531,8 +15338,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/camera{ @@ -16589,8 +15394,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/grimy, @@ -16602,8 +15405,6 @@ }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -16687,8 +15488,6 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/event_spawn, @@ -16716,8 +15515,6 @@ /area/hallway/secondary/exit) "aDe" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/escape{ @@ -16726,8 +15523,6 @@ /area/hallway/secondary/exit) "aDg" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -16830,8 +15625,6 @@ req_access_txt = "24" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -16867,8 +15660,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/caution{ @@ -16981,8 +15772,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/grimy, @@ -16992,13 +15781,9 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ @@ -17015,8 +15800,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -17030,18 +15813,12 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/redyellow, @@ -17133,8 +15910,6 @@ "aDZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner{ @@ -17363,12 +16138,9 @@ pixel_x = -32 }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/light/small{ @@ -17378,21 +16150,18 @@ /area/engine/engineering) "aEv" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/smes{ charge = 5e+006 }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/circuit/green, /area/engine/engineering) "aEw" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/smes{ @@ -17403,7 +16172,6 @@ pixel_x = 26 }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/circuit/green, @@ -17423,8 +16191,6 @@ "aEy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -17465,8 +16231,6 @@ dir = 9 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -17517,8 +16281,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner{ @@ -17677,8 +16439,6 @@ /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/redyellow, @@ -17724,8 +16484,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/red, @@ -17744,8 +16502,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/white, @@ -17753,8 +16509,6 @@ "aFd" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/deepfryer, @@ -17765,8 +16519,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/white, @@ -17782,8 +16534,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -17796,18 +16546,12 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/landmark/blobstart, @@ -17818,8 +16562,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner{ @@ -17930,8 +16672,6 @@ /area/engine/engineering) "aFw" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/extinguisher_cabinet{ @@ -17949,13 +16689,10 @@ dir = 1 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/stripes/line{ @@ -17973,7 +16710,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/camera{ @@ -18001,8 +16737,6 @@ /area/engine/engineering) "aFA" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -18050,18 +16784,12 @@ dir = 10 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/neutral, @@ -18069,8 +16797,6 @@ "aFE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral, @@ -18080,8 +16806,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/event_spawn, @@ -18093,8 +16817,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral, @@ -18104,8 +16826,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/yellow/corner, @@ -18119,8 +16839,6 @@ name = "Engineering Foyer" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -18133,8 +16851,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -18147,13 +16863,9 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -18176,8 +16888,6 @@ "aFM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -18239,8 +16949,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/event_spawn, @@ -18274,8 +16982,6 @@ /obj/effect/landmark/lightsout, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/bot, @@ -18369,13 +17075,9 @@ req_access_txt = "32" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/decal/cleanable/dirt, @@ -18392,12 +17094,9 @@ "aGl" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -18419,8 +17118,6 @@ req_access_txt = "10" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -18452,8 +17149,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/yellow/corner{ @@ -18503,8 +17198,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner{ @@ -18558,7 +17251,6 @@ /area/maintenance/port/central) "aGD" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc/highcap/five_k{ @@ -18577,8 +17269,6 @@ dir = 6 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, @@ -18586,8 +17276,6 @@ "aGF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -18598,8 +17286,6 @@ "aGG" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -18610,13 +17296,9 @@ "aGH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -18630,8 +17312,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -18642,13 +17322,9 @@ /area/maintenance/port/central) "aGJ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/delivery, @@ -18662,8 +17338,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -18677,8 +17351,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -18693,8 +17365,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -18707,18 +17377,12 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/redyellow, @@ -18786,8 +17450,6 @@ "aGT" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -18871,8 +17533,6 @@ /area/engine/engineering) "aHi" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/button/door{ @@ -18894,8 +17554,6 @@ /area/engine/engineering) "aHj" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -18909,8 +17567,6 @@ /area/engine/engineering) "aHk" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -18924,8 +17580,6 @@ /area/engine/engineering) "aHl" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -18938,8 +17592,6 @@ /area/engine/engineering) "aHm" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light{ @@ -18956,8 +17608,6 @@ /area/engine/engineering) "aHn" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/sign/electricshock{ @@ -18979,13 +17629,9 @@ /area/engine/engineering) "aHo" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/decal/cleanable/dirt, @@ -18997,13 +17643,9 @@ /area/engine/engineering) "aHp" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -19016,8 +17658,6 @@ /area/engine/engineering) "aHq" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light{ @@ -19036,8 +17676,6 @@ /area/engine/engineering) "aHr" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/firealarm{ @@ -19054,8 +17692,6 @@ /area/engine/engineering) "aHs" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -19068,13 +17704,9 @@ /area/engine/engineering) "aHt" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/decal/cleanable/dirt, @@ -19088,8 +17720,6 @@ /area/engine/engineering) "aHu" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/item/twohanded/required/kirbyplants{ @@ -19122,7 +17752,6 @@ dir = 4 }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plating, @@ -19141,13 +17770,9 @@ dir = 9 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -19163,7 +17788,6 @@ name = "Engineering Lockdown Shutters" }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -19179,13 +17803,9 @@ }, /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/door/window/westright{ @@ -19203,7 +17823,6 @@ name = "Engineering Lockdown Shutters" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -19226,13 +17845,9 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/neutral/corner{ @@ -19246,8 +17861,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner, @@ -19258,8 +17871,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/bot, @@ -19275,8 +17886,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -19289,8 +17898,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -19304,18 +17911,12 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/stripes/line{ @@ -19329,8 +17930,6 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -19344,8 +17943,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -19359,13 +17956,9 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plating, @@ -19375,13 +17968,9 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/neutral/corner, @@ -19406,8 +17995,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -19441,8 +18028,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/redyellow, @@ -19474,8 +18059,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -19486,8 +18069,6 @@ "aHX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner, @@ -19536,8 +18117,6 @@ /area/engine/gravity_generator) "aIf" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/sign/nosmoking_2{ @@ -19551,8 +18130,6 @@ /area/engine/engineering) "aIg" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/decal/cleanable/dirt, @@ -19565,8 +18142,6 @@ /area/engine/engineering) "aIh" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line, @@ -19577,8 +18152,6 @@ /area/engine/engineering) "aIi" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line, @@ -19589,8 +18162,6 @@ /area/engine/engineering) "aIj" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -19605,8 +18176,6 @@ /area/engine/engineering) "aIk" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/firealarm{ @@ -19627,8 +18196,6 @@ on = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line, @@ -19642,13 +18209,9 @@ req_access_txt = "24" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/stripes/line, @@ -19659,8 +18222,6 @@ /area/engine/engineering) "aIn" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -19675,8 +18236,6 @@ /area/engine/engineering) "aIo" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line, @@ -19687,8 +18246,6 @@ /area/engine/engineering) "aIp" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/start/station_engineer, @@ -19700,8 +18257,6 @@ /area/engine/engineering) "aIq" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/stripes/corner{ @@ -19714,8 +18269,6 @@ /area/engine/engineering) "aIr" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -19746,8 +18299,6 @@ /area/engine/engineering) "aIt" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/delivery, @@ -19778,14 +18329,10 @@ }, /obj/effect/landmark/start/station_engineer, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/bot, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel, @@ -19821,8 +18368,6 @@ "aIz" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner{ @@ -19850,8 +18395,6 @@ req_access_txt = "26" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -19878,8 +18421,6 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/delivery, @@ -19944,8 +18485,6 @@ "aIL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/delivery, @@ -20025,13 +18564,9 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/turf_decal/delivery, @@ -20047,8 +18582,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/stripes/line{ @@ -20102,8 +18635,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner{ @@ -20177,8 +18708,7 @@ "aJj" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plating, /area/engine/gravity_generator) @@ -20210,8 +18740,7 @@ pixel_y = 25 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/light{ dir = 1 @@ -20231,7 +18760,6 @@ pixel_y = 26 }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/turf_decal/stripes/line{ @@ -20250,15 +18778,13 @@ }, /obj/effect/turf_decal/bot, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plasteel, /area/engine/gravity_generator) "aJo" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -20268,8 +18794,6 @@ /area/engine/gravity_generator) "aJp" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -20282,8 +18806,6 @@ /area/engine/engineering) "aJq" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -20345,8 +18867,6 @@ /area/engine/engineering) "aJy" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -20358,8 +18878,6 @@ /area/engine/engineering) "aJz" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -20373,7 +18891,6 @@ "aJA" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -20407,8 +18924,6 @@ /area/engine/engineering) "aJC" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -20433,8 +18948,6 @@ /area/engine/engineering) "aJF" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, @@ -20449,8 +18962,6 @@ /area/engine/engineering) "aJH" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/computer/apc_control, @@ -20503,7 +19014,6 @@ pixel_y = 25 }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/turf_decal/bot, @@ -20513,8 +19023,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/delivery, @@ -20538,8 +19046,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -20579,8 +19085,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/greenblue/side{ @@ -20623,8 +19127,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/redyellow, @@ -20680,8 +19182,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/freezer, @@ -20691,8 +19191,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /mob/living/simple_animal/hostile/retaliate/goat{ @@ -20705,8 +19203,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -20715,18 +19211,12 @@ "aKf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -20815,13 +19305,9 @@ dir = 8 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel, @@ -20836,8 +19322,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -20849,13 +19333,9 @@ dir = 9 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -20864,8 +19344,6 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/turf_decal/stripes/line{ @@ -20876,14 +19354,10 @@ "aKw" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -20895,18 +19369,12 @@ req_access_txt = "10" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -20917,18 +19385,12 @@ /area/engine/gravity_generator) "aKy" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/stripes/line{ @@ -20987,8 +19449,6 @@ /area/engine/engineering) "aKF" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -20999,13 +19459,9 @@ /area/engine/engineering) "aKG" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/turf_decal/stripes/line{ @@ -21020,18 +19476,12 @@ req_access_txt = "10" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -21041,8 +19491,6 @@ /area/engine/engineering) "aKI" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/yellow/side{ @@ -21051,13 +19499,9 @@ /area/engine/engineering) "aKJ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral, @@ -21065,8 +19509,6 @@ "aKK" = ( /obj/structure/table/reinforced, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/clothing/gloves/color/yellow, @@ -21087,8 +19529,6 @@ /obj/item/electronics/airlock, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -21104,13 +19544,9 @@ /obj/item/folder/yellow, /obj/item/device/lightreplacer, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -21120,8 +19556,6 @@ /area/engine/engineering) "aKN" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral, @@ -21129,18 +19563,12 @@ "aKO" = ( /obj/machinery/computer/station_alert, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/yellow/side{ @@ -21166,13 +19594,9 @@ "aKQ" = ( /obj/effect/landmark/start/janitor, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/green/side{ @@ -21182,8 +19606,6 @@ "aKR" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/purple/side{ @@ -21210,8 +19632,6 @@ "aKU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -21274,8 +19694,6 @@ /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/bot, @@ -21543,14 +19961,10 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel, @@ -21561,8 +19975,6 @@ dir = 6 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -21581,8 +19993,6 @@ }, /obj/effect/turf_decal/bot, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel, @@ -21597,8 +20007,6 @@ /area/engine/gravity_generator) "aLM" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -21607,14 +20015,12 @@ }, /obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ dir = 1; - filter_type = /datum/gas/nitrogen + filter_type = "n2" }, /turf/open/floor/plasteel, /area/engine/engineering) "aLN" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -21671,8 +20077,6 @@ /area/engine/supermatter) "aLV" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -21688,8 +20092,6 @@ /area/engine/engineering) "aLW" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -21725,8 +20127,6 @@ /area/engine/engineering) "aMd" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/item/twohanded/required/kirbyplants{ @@ -21756,8 +20156,6 @@ "aMf" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/purple/side{ @@ -21801,8 +20199,6 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -21828,8 +20224,6 @@ /area/hydroponics) "aMm" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/greenblue/side, @@ -21840,8 +20234,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/greenblue/side, @@ -21851,8 +20243,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/greenblue/side, @@ -21862,8 +20252,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/greenblue/side, @@ -21905,13 +20293,9 @@ "aMu" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/redyellow, @@ -21926,8 +20310,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -21942,8 +20324,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -21954,8 +20334,6 @@ dir = 10 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plating, @@ -22082,8 +20460,6 @@ req_access_txt = "19; 61" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -22102,8 +20478,6 @@ /area/tcommsat/server) "aMO" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/newscaster{ @@ -22125,8 +20499,6 @@ /area/engine/engineering) "aMP" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/decal/cleanable/dirt, @@ -22140,8 +20512,6 @@ /area/engine/engineering) "aMQ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/poddoor/shutters/preopen{ @@ -22162,8 +20532,6 @@ pixel_x = 23 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/engine, @@ -22174,7 +20542,6 @@ }, /obj/machinery/power/rad_collector/anchored, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/window/plasma/reinforced{ @@ -22203,7 +20570,6 @@ }, /obj/machinery/power/rad_collector/anchored, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/structure/window/plasma/reinforced{ @@ -22213,16 +20579,12 @@ /area/engine/supermatter) "aMX" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/engine, /area/engine/supermatter) "aMY" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/poddoor/shutters/preopen{ @@ -22237,13 +20599,9 @@ /area/engine/supermatter) "aMZ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -22358,8 +20716,6 @@ pixel_x = -26 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/camera{ @@ -22394,8 +20750,6 @@ "aNk" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/delivery, @@ -22434,8 +20788,6 @@ /obj/effect/decal/cleanable/blood/splatter, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -22531,8 +20883,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -22557,8 +20907,6 @@ dir = 5 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plating, @@ -22569,8 +20917,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -22582,8 +20928,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -22594,13 +20938,9 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, @@ -22610,8 +20950,6 @@ dir = 9 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plating, @@ -22793,8 +21131,6 @@ /area/tcommsat/server) "aNV" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/grimy, @@ -22818,8 +21154,6 @@ /area/tcommsat/server) "aNY" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/airalarm{ @@ -22836,13 +21170,9 @@ /area/engine/engineering) "aNZ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -22857,8 +21187,6 @@ /area/engine/supermatter) "aOb" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/poddoor/shutters/preopen{ @@ -22874,13 +21202,9 @@ /area/engine/supermatter) "aOc" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -22914,8 +21238,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -22930,8 +21252,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -22975,8 +21295,6 @@ "aOn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/redyellow/side{ @@ -23031,8 +21349,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -23081,8 +21397,6 @@ /area/tcommsat/server) "aOz" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -23096,8 +21410,6 @@ /area/engine/engineering) "aOB" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/poddoor/shutters/preopen{ @@ -23115,7 +21427,6 @@ }, /obj/machinery/power/rad_collector/anchored, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/window/plasma/reinforced{ @@ -23129,7 +21440,6 @@ }, /obj/machinery/power/rad_collector/anchored, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/structure/window/plasma/reinforced{ @@ -23139,8 +21449,6 @@ /area/engine/supermatter) "aOE" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/poddoor/shutters/preopen{ @@ -23154,8 +21462,6 @@ /area/engine/supermatter) "aOF" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/decal/cleanable/dirt, @@ -23180,8 +21486,6 @@ /area/maintenance/port) "aOI" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -23192,8 +21496,6 @@ /area/maintenance/port) "aOJ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -23204,8 +21506,6 @@ "aOK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -23218,8 +21518,6 @@ /area/maintenance/port) "aOL" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -23236,8 +21534,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -23256,8 +21552,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -23274,8 +21568,6 @@ pixel_y = 32 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ @@ -23285,13 +21577,9 @@ "aOP" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -23305,8 +21593,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -23318,13 +21604,9 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -23336,8 +21618,6 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -23350,13 +21630,9 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -23368,8 +21644,6 @@ /obj/effect/landmark/lightsout, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -23385,8 +21659,6 @@ pixel_y = 26 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/camera{ @@ -23409,13 +21681,9 @@ pixel_y = 24 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/purple/corner{ @@ -23434,12 +21702,9 @@ pixel_y = 24 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/green/corner{ @@ -23449,13 +21714,9 @@ "aOY" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -23470,8 +21731,6 @@ pixel_y = 32 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -23487,8 +21746,6 @@ pixel_y = 32 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/green/corner{ @@ -23500,8 +21757,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/blue/corner{ @@ -23513,8 +21768,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/camera{ @@ -23531,8 +21784,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -23543,8 +21794,6 @@ "aPe" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/blue/corner{ @@ -23557,8 +21806,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/green/corner{ @@ -23573,8 +21820,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/green/corner{ @@ -23586,18 +21831,12 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel{ @@ -23609,8 +21848,6 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel{ @@ -23623,13 +21860,9 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel{ @@ -23641,8 +21874,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel{ @@ -23652,8 +21883,6 @@ "aPm" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel{ @@ -23666,8 +21895,6 @@ }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel{ @@ -23679,8 +21906,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel{ @@ -23692,8 +21917,6 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -23708,8 +21931,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -23725,8 +21946,6 @@ pixel_y = 24 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -23741,8 +21960,6 @@ pixel_y = 32 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -23757,8 +21974,6 @@ pixel_y = 32 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -23768,13 +21983,9 @@ "aPu" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -23787,8 +21998,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -23800,13 +22009,9 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/neutral/corner, @@ -23881,8 +22086,6 @@ /area/tcommsat/server) "aPI" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/extinguisher_cabinet{ @@ -23894,7 +22097,7 @@ }, /obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ dir = 1; - filter_type = /datum/gas/freon; + filter_type = "freon"; name = "gas filter (freon)" }, /turf/open/floor/plasteel, @@ -23954,8 +22157,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -24071,8 +22272,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner{ @@ -24180,8 +22379,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel{ @@ -24282,8 +22479,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner, @@ -24357,8 +22552,6 @@ /area/tcommsat/server) "aQH" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/command{ @@ -24480,8 +22673,6 @@ /area/maintenance/port) "aQV" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -24514,8 +22705,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -24541,8 +22730,6 @@ req_access_txt = "5" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -24645,8 +22832,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -24675,8 +22860,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -24712,8 +22895,6 @@ /area/tcommsat/server) "aRD" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/fans/tiny, @@ -24734,8 +22915,6 @@ /area/tcommsat/server) "aRF" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/item/device/radio/intercom{ @@ -24753,8 +22932,6 @@ /area/engine/engineering) "aRG" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -24769,8 +22946,6 @@ /area/engine/engineering) "aRH" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -24780,8 +22955,6 @@ /area/engine/engineering) "aRI" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -24791,8 +22964,6 @@ /area/engine/engineering) "aRJ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/general/visible{ @@ -24802,8 +22973,6 @@ /area/engine/engineering) "aRK" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -24817,8 +22986,6 @@ /area/engine/engineering) "aRL" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/general/visible{ @@ -24884,8 +23051,6 @@ "aRS" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -24970,8 +23135,6 @@ "aSb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/grimy, @@ -25002,8 +23165,6 @@ /area/medical/morgue) "aSf" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -25051,7 +23212,6 @@ pixel_y = 25 }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/item/twohanded/required/kirbyplants{ @@ -25104,8 +23264,6 @@ /area/hallway/primary/central) "aSu" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table, @@ -25183,8 +23341,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/end{ @@ -25207,8 +23363,6 @@ "aSC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner, @@ -25281,8 +23435,6 @@ req_access_txt = "61" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -25417,8 +23569,6 @@ /area/engine/engineering) "aTb" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -25494,8 +23644,6 @@ /area/medical/morgue) "aTk" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -25561,8 +23709,6 @@ /area/medical/chemistry) "aTr" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whiteyellow/corner{ @@ -25617,8 +23763,6 @@ "aTx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -25724,13 +23868,9 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/whitepurple/corner{ @@ -25743,8 +23883,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whitepurple/corner{ @@ -25761,8 +23899,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -25773,18 +23909,12 @@ "aTP" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -25797,8 +23927,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -25811,8 +23939,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -25823,8 +23949,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/blobstart, @@ -25836,8 +23960,6 @@ dir = 10 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/delivery, @@ -25879,8 +24001,6 @@ /area/tcommsat/server) "aTY" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/general/visible{ @@ -25908,8 +24028,6 @@ "aUb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -25925,7 +24043,6 @@ pixel_y = 3 }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plasteel/black, @@ -25935,8 +24052,6 @@ dir = 6 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/grimy, @@ -25944,8 +24059,6 @@ "aUe" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/grimy, @@ -25955,8 +24068,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/grimy, @@ -25966,8 +24077,6 @@ dir = 9 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/grimy, @@ -25975,21 +24084,15 @@ "aUh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/grimy, /area/library) "aUi" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/vault{ @@ -26014,8 +24117,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -26069,8 +24170,6 @@ /area/medical/chemistry) "aUt" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/whiteyellow/corner{ @@ -26079,8 +24178,6 @@ /area/medical/chemistry) "aUu" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/yellow, @@ -26088,8 +24185,6 @@ "aUv" = ( /obj/machinery/holopad, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/bot, @@ -26172,13 +24267,9 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/whitepurple/corner{ @@ -26196,7 +24287,6 @@ dir = 8 }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/whitepurple/corner{ @@ -26225,8 +24315,6 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner, @@ -26260,8 +24348,6 @@ /area/maintenance/starboard) "aUO" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/general/visible, @@ -26272,8 +24358,6 @@ "aUP" = ( /obj/machinery/blackbox_recorder, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/circuit/green/telecomms, @@ -26360,8 +24444,6 @@ dir = 10 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -26392,8 +24474,6 @@ "aVd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -26477,8 +24557,6 @@ /area/medical/chemistry) "aVm" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -26501,8 +24579,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -26539,7 +24615,6 @@ pixel_y = 3 }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/turf_decal/stripes/line{ @@ -26551,8 +24626,6 @@ /obj/effect/landmark/start/scientist, /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/stripes/line, @@ -26588,8 +24661,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitepurple/corner{ @@ -26645,8 +24716,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/delivery, @@ -26706,8 +24775,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -26768,8 +24835,6 @@ "aVW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -26800,8 +24865,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -26929,8 +24992,6 @@ /area/medical/chemistry) "aWi" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -26966,8 +25027,6 @@ "aWl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitepurple/corner, @@ -27011,8 +25070,6 @@ "aWq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitepurple/corner{ @@ -27053,8 +25110,6 @@ "aWv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -27131,8 +25186,6 @@ "aWF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -27157,7 +25210,6 @@ pixel_y = -26 }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plating, @@ -27167,8 +25219,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/old, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plating, @@ -27214,8 +25264,6 @@ req_access_txt = "5; 33" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -27287,8 +25335,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -27313,7 +25359,6 @@ /area/science/research) "aWY" = ( /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, @@ -27326,13 +25371,9 @@ /area/science/research) "aWZ" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/door/poddoor/preopen{ @@ -27350,7 +25391,6 @@ /area/science/research) "aXa" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -27363,8 +25403,6 @@ "aXb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -27380,8 +25418,6 @@ }) "aXd" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -27511,8 +25547,6 @@ /area/medical/medbay/zone3) "aXt" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -27575,8 +25609,6 @@ "aXz" = ( /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/whitepurple/corner{ @@ -27589,8 +25621,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whitepurple/corner{ @@ -27602,8 +25632,6 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whitepurple/corner{ @@ -27615,8 +25643,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whitepurple/corner{ @@ -27626,18 +25652,12 @@ "aXD" = ( /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/landmark/lightsout, @@ -27651,8 +25671,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whitepurple/side{ @@ -27666,8 +25684,6 @@ req_access_txt = "30" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -27681,8 +25697,6 @@ "aXG" = ( /obj/machinery/atmospherics/pipe/simple/general/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -27694,13 +25708,9 @@ /area/science/research) "aXH" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -27725,8 +25735,6 @@ "aXJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -27765,8 +25773,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -27885,8 +25891,6 @@ /area/medical/medbay/zone3) "aXY" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -27913,8 +25917,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -28034,8 +26036,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitepurple/corner, @@ -28086,8 +26086,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/vault{ @@ -28098,7 +26096,6 @@ /obj/machinery/computer/rdservercontrol, /obj/machinery/light, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/vault{ @@ -28110,8 +26107,6 @@ dir = 5 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/decal/cleanable/dirt, @@ -28127,8 +26122,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -28143,8 +26136,6 @@ dir = 10 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/decal/cleanable/dirt, @@ -28185,8 +26176,6 @@ /area/library) "aYz" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -28197,8 +26186,6 @@ "aYA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -28210,8 +26197,6 @@ /area/maintenance/port) "aYB" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -28224,8 +26209,6 @@ /area/maintenance/port) "aYC" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -28237,8 +26220,6 @@ "aYD" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -28251,13 +26232,9 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/delivery, @@ -28265,8 +26242,6 @@ /area/maintenance/port) "aYF" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -28368,8 +26343,6 @@ /area/medical/medbay/zone3) "aYR" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, @@ -28411,8 +26384,6 @@ "aYV" = ( /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -28482,8 +26453,6 @@ /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -28523,8 +26492,6 @@ "aZn" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -28574,8 +26541,6 @@ "aZt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -28625,8 +26590,6 @@ /area/library) "aZx" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -28688,8 +26651,6 @@ pixel_x = -32 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/delivery, @@ -28697,8 +26658,6 @@ /area/medical/medbay/zone3) "aZD" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -28706,8 +26665,6 @@ /area/medical/medbay/zone3) "aZE" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -28722,8 +26679,6 @@ req_access_txt = "5" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -28736,8 +26691,6 @@ /area/medical/medbay/zone3) "aZG" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -28748,8 +26701,6 @@ /area/medical/medbay/zone3) "aZH" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -28762,8 +26713,6 @@ /area/medical/medbay/zone3) "aZI" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, @@ -28771,21 +26720,15 @@ /area/medical/medbay/zone3) "aZJ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/landmark/lightsout, @@ -28794,8 +26737,6 @@ "aZK" = ( /obj/machinery/holopad, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -28807,8 +26748,6 @@ "aZL" = ( /obj/effect/landmark/start/medical_doctor, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -28818,8 +26757,6 @@ /area/medical/medbay/zone3) "aZM" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -28830,13 +26767,9 @@ /area/medical/medbay/zone3) "aZN" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -28848,8 +26781,6 @@ /area/medical/medbay/zone3) "aZO" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, @@ -28863,8 +26794,6 @@ req_access_txt = "5" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -28880,8 +26809,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/side{ @@ -28894,18 +26821,12 @@ pixel_x = 24 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/neutral, @@ -28928,7 +26849,6 @@ pixel_y = 28 }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/turf_decal/bot, @@ -28963,8 +26883,6 @@ "aZZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitepurple/corner{ @@ -29092,8 +27010,6 @@ "bai" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -29141,8 +27057,6 @@ "bao" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -29276,8 +27190,6 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -29320,8 +27232,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/camera{ @@ -29346,8 +27256,6 @@ /area/security/checkpoint) "baJ" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table/reinforced, @@ -29389,13 +27297,9 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/camera{ @@ -29411,8 +27315,6 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -29426,8 +27328,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -29440,8 +27340,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -29460,8 +27358,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -29475,8 +27371,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whitepurple/side{ @@ -29486,18 +27380,12 @@ "baT" = ( /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/whitepurple/corner{ @@ -29570,8 +27458,6 @@ "bbb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner{ @@ -29597,8 +27483,6 @@ /area/maintenance/port) "bbf" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -29609,8 +27493,6 @@ /area/maintenance/port) "bbg" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -29621,8 +27503,6 @@ "bbh" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -29633,8 +27513,6 @@ /area/maintenance/port) "bbi" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -29648,8 +27526,6 @@ "bbj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -29661,8 +27537,6 @@ "bbk" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -29702,8 +27576,6 @@ req_access_txt = "12" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -29724,8 +27596,6 @@ "bbq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whiteblue/corner, @@ -29772,8 +27642,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -29807,13 +27675,9 @@ /area/security/checkpoint) "bbz" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/holopad, @@ -29825,7 +27689,6 @@ /area/security/checkpoint) "bbA" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -29846,8 +27709,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/stripes/line{ @@ -29861,8 +27722,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/stripes/line{ @@ -29910,13 +27769,9 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/whitepurple/side{ @@ -29933,8 +27788,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -29947,8 +27800,6 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -29963,8 +27814,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/bot, @@ -30005,8 +27854,6 @@ "bbP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/blobstart, @@ -30102,8 +27949,6 @@ /area/maintenance/port) "bcb" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -30207,8 +28052,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -30216,7 +28059,6 @@ "bcm" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plating, @@ -30231,8 +28073,6 @@ /area/security/checkpoint) "bco" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -30258,8 +28098,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -30300,8 +28138,6 @@ "bcx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitepurple/corner, @@ -30318,8 +28154,6 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line, @@ -30442,13 +28276,9 @@ "bcS" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -30465,7 +28295,6 @@ dir = 4 }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -30572,13 +28401,9 @@ "bdd" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/turf_decal/stripes/line{ @@ -30588,8 +28413,6 @@ /area/security/checkpoint) "bde" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/table/reinforced, @@ -30607,21 +28430,15 @@ /area/security/checkpoint) "bdf" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/chair/office/dark{ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/neutral, @@ -30632,8 +28449,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red, @@ -30641,7 +28456,6 @@ "bdh" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -30652,8 +28466,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -30736,8 +28548,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitepurple/corner, @@ -30756,7 +28566,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/turf_decal/bot, @@ -30765,18 +28574,12 @@ "bdu" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/bot, @@ -30817,8 +28620,6 @@ /area/science/robotics/lab) "bdz" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -30971,8 +28772,6 @@ "bdO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -31047,8 +28846,6 @@ "bdV" = ( /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whiteblue/side, @@ -31137,8 +28934,6 @@ /area/security/checkpoint) "bed" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -31156,8 +28951,6 @@ "bef" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/corner{ @@ -31211,8 +29004,6 @@ "bel" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/delivery, @@ -31237,8 +29028,6 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/delivery, @@ -31414,8 +29203,6 @@ /area/maintenance/port) "beD" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -31436,8 +29223,6 @@ req_access_txt = "5" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -31464,8 +29249,6 @@ /area/security/checkpoint) "beI" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -31495,8 +29278,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/purple/corner, @@ -31530,8 +29311,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -31554,8 +29333,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -31572,8 +29349,6 @@ "beR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -31583,18 +29358,12 @@ /area/maintenance/port) "beS" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -31606,8 +29375,6 @@ "beT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -31618,8 +29385,6 @@ "beU" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -31629,18 +29394,12 @@ /area/maintenance/port) "beV" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -31651,8 +29410,6 @@ /area/maintenance/port) "beW" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -31665,8 +29422,6 @@ /area/maintenance/port) "beY" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -31680,8 +29435,6 @@ /area/maintenance/port) "beZ" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -31693,18 +29446,12 @@ "bfa" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -31714,8 +29461,6 @@ /area/maintenance/port) "bfb" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -31727,8 +29472,6 @@ /area/maintenance/port) "bfc" = ( /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -31756,8 +29499,6 @@ /area/hallway/primary/central) "bff" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -31775,13 +29516,9 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/purple/corner, @@ -31795,8 +29532,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -31809,8 +29544,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -31822,8 +29555,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/blobstart, @@ -31835,8 +29566,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -31845,23 +29574,15 @@ "bfm" = ( /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/decal/cleanable/dirt, @@ -31871,18 +29592,12 @@ "bfn" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/decal/cleanable/dirt, @@ -31895,8 +29610,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -31907,8 +29620,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -31918,8 +29629,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -31928,13 +29637,9 @@ "bfr" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -31946,8 +29651,6 @@ dir = 10 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -31956,7 +29659,6 @@ /area/maintenance/starboard) "bft" = ( /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -32022,8 +29724,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -32047,8 +29747,6 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -32071,13 +29769,9 @@ /area/maintenance/port) "bfE" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -32086,8 +29780,6 @@ /area/maintenance/port) "bfF" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -32098,8 +29790,6 @@ "bfG" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -32112,8 +29802,6 @@ req_access_txt = "12" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -32124,8 +29812,6 @@ "bfI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/blue/corner{ @@ -32137,18 +29823,12 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -32158,8 +29838,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral, @@ -32167,18 +29845,12 @@ "bfL" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/neutral, @@ -32195,12 +29867,9 @@ pixel_y = 24 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/neutral, @@ -32210,8 +29879,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/purple/corner, @@ -32250,8 +29917,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -32299,8 +29964,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -32313,8 +29976,6 @@ "bfW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -32344,7 +30005,6 @@ /obj/effect/landmark/start/assistant, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plasteel{ @@ -32416,8 +30076,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner{ @@ -32453,7 +30111,6 @@ "bgo" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plating, @@ -32484,8 +30141,6 @@ "bgr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line, @@ -32622,8 +30277,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -32647,16 +30300,12 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/grimy, /area/chapel/main) "bgI" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel{ @@ -32672,13 +30321,9 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel{ @@ -32730,8 +30375,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -32774,8 +30417,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -32837,8 +30478,6 @@ /area/science/xenobiology) "bha" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/door/window/brigdoor{ @@ -32851,8 +30490,6 @@ name = "Creature Cell #2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/vault{ @@ -32861,8 +30498,6 @@ /area/science/xenobiology) "bhb" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -32871,8 +30506,6 @@ "bhc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whitepurple/side{ @@ -32882,23 +30515,15 @@ "bhd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/whitepurple/side{ @@ -32916,13 +30541,9 @@ name = "Creature Cell #3" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/vault{ @@ -33014,8 +30635,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -33047,18 +30666,12 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/grimy, @@ -33068,8 +30681,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/grimy, @@ -33079,8 +30690,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ @@ -33096,8 +30705,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -33108,8 +30715,6 @@ "bhz" = ( /obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/side, @@ -33120,13 +30725,9 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/arrival, @@ -33151,7 +30752,6 @@ pixel_y = 25 }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plasteel/arrival, @@ -33172,8 +30772,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -33263,8 +30861,6 @@ "bhQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/event_spawn, @@ -33405,8 +31001,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -33452,8 +31046,6 @@ dir = 9 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel{ @@ -33514,8 +31106,6 @@ "biq" = ( /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/neutral/side{ @@ -33528,8 +31118,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/camera{ @@ -33545,18 +31133,12 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/neutral/side{ @@ -33571,8 +31153,6 @@ }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/arrival{ @@ -33584,8 +31164,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/side{ @@ -33595,8 +31173,6 @@ /area/hallway/secondary/entry) "biv" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -33679,8 +31255,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/end{ @@ -33745,8 +31319,6 @@ }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/vault{ @@ -33763,8 +31335,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -33778,8 +31348,6 @@ pixel_y = -24 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -33789,8 +31357,6 @@ /area/chapel/main) "biO" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -33803,8 +31369,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel{ @@ -33820,8 +31384,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel{ @@ -33903,7 +31465,6 @@ dir = 4 }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plating, @@ -33923,8 +31484,6 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitepurple/side{ @@ -34062,13 +31621,9 @@ name = "Creature Cell #1" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/vault{ @@ -34080,8 +31635,6 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whitepurple/side{ @@ -34091,13 +31644,9 @@ "bjr" = ( /obj/machinery/holopad, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/bot, @@ -34201,8 +31750,6 @@ /obj/structure/chair/office/light, /obj/effect/landmark/start/scientist, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/whitepurple/side, @@ -34340,8 +31887,6 @@ receive_ore_updates = 1 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/circuit/green, @@ -34359,8 +31904,6 @@ pixel_y = -32 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -34388,7 +31931,6 @@ pixel_y = -24 }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/turf_decal/stripes/line{ @@ -34958,8 +32500,6 @@ "blh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/camera{ @@ -34984,8 +32524,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/camera{ @@ -35033,8 +32571,6 @@ /area/hallway/primary/central) "bln" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/camera{ @@ -35052,8 +32588,6 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/camera{ @@ -35062,8 +32596,6 @@ network = list("SS13") }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -35089,8 +32621,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/camera{ @@ -35350,13 +32880,9 @@ "bsv" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/escape{ @@ -35370,8 +32896,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/bot, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -35387,8 +32911,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/bot, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -35399,13 +32921,9 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/neutral/corner{ @@ -35417,8 +32935,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -35434,8 +32950,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -35445,8 +32959,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -35459,8 +32971,6 @@ icon_state = "plant-21" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -35469,8 +32979,6 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /obj/machinery/light, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -35484,8 +32992,6 @@ icon_state = "plant-22" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -35495,13 +33001,9 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -35518,8 +33020,6 @@ dir = 8 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -35530,8 +33030,6 @@ }, /obj/effect/turf_decal/delivery, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -35541,8 +33039,6 @@ dir = 1 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral, @@ -35556,13 +33052,9 @@ }, /obj/effect/turf_decal/bot, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -35570,16 +33062,12 @@ "bsR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/neutral, /area/hallway/secondary/exit) "bsS" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -35587,8 +33075,6 @@ "bsT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral, @@ -35596,8 +33082,6 @@ "bsV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/escape, @@ -35613,16 +33097,12 @@ dir = 2 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, /area/hallway/secondary/exit) "bsY" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel, @@ -35634,16 +33114,12 @@ req_access_txt = "48;50" }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/hallway/secondary/exit) "bta" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/brown{ @@ -35655,8 +33131,6 @@ dir = 6 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/brown{ @@ -35669,8 +33143,6 @@ }, /obj/effect/turf_decal/delivery, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -35678,8 +33150,6 @@ "btd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/brown{ @@ -35782,8 +33252,7 @@ pixel_x = -26 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/circuit/green/telecomms, /area/tcommsat/server) @@ -35858,7 +33327,6 @@ /area/tcommsat/server) "buV" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/modular_computer/console/preset/research, @@ -35872,7 +33340,6 @@ "buZ" = ( /obj/machinery/power/rad_collector/anchored, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/circuit/green, @@ -36044,8 +33511,6 @@ /area/shuttle/transport) "bwV" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -36080,8 +33545,6 @@ /area/engine/supermatter) "bxb" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -36147,8 +33610,6 @@ /area/engine/engineering) "bxv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/decal/cleanable/dirt, @@ -36159,8 +33620,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -36170,8 +33629,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/landmark/event_spawn, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -36179,8 +33636,6 @@ "bxx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/event_spawn, @@ -36190,8 +33645,6 @@ /area/bridge) "bxy" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -36211,13 +33664,9 @@ /area/hallway/primary/central) "bxA" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/landmark/event_spawn, @@ -36237,8 +33686,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/event_spawn, @@ -36254,8 +33701,6 @@ "bxE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -36293,8 +33738,6 @@ /area/crew_quarters/dorms) "bxK" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/event_spawn, @@ -36310,8 +33753,6 @@ /area/hallway/secondary/exit) "bxN" = ( /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -36337,8 +33778,6 @@ /area/hallway/primary/central) "bxR" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -36363,8 +33802,6 @@ /area/medical/medbay/zone3) "bxU" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -36385,8 +33822,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, @@ -36470,8 +33905,6 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner{ @@ -36488,7 +33921,6 @@ /area/security/checkpoint) "byq" = ( /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm index 6a1285bcc9..a76e9c7390 100644 --- a/_maps/map_files/PubbyStation/PubbyStation.dmm +++ b/_maps/map_files/PubbyStation/PubbyStation.dmm @@ -1,4 +1,4 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aaa" = ( /turf/open/space/basic, /area/space) @@ -107,8 +107,6 @@ /area/ai_monitored/turret_protected/ai) "acj" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/landmark/tripai, @@ -131,8 +129,7 @@ charge = 5e+006 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/camera/motion{ c_tag = "MiniSat AI Chamber Center"; @@ -143,7 +140,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/ai_status_display{ @@ -153,7 +149,6 @@ /area/ai_monitored/turret_protected/ai) "acl" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -198,16 +193,12 @@ /area/ai_monitored/turret_protected/ai) "aco" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) "acp" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/heavy, @@ -219,8 +210,6 @@ /area/ai_monitored/turret_protected/ai) "acq" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/turretid{ @@ -288,8 +277,6 @@ /area/ai_monitored/turret_protected/ai) "acx" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/circuit, @@ -334,16 +321,12 @@ /area/ai_monitored/turret_protected/ai) "acz" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) "acA" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/circuit, @@ -392,8 +375,6 @@ /area/space) "acG" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/stripes/corner{ @@ -403,8 +384,6 @@ /area/ai_monitored/turret_protected/ai) "acH" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -414,13 +393,9 @@ /area/ai_monitored/turret_protected/ai) "acI" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/corner{ @@ -432,8 +407,6 @@ /area/ai_monitored/turret_protected/ai) "acJ" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/heavy, @@ -441,16 +414,12 @@ /area/ai_monitored/turret_protected/ai) "acK" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/white, /area/ai_monitored/turret_protected/ai) "acL" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/ai_slipper{ @@ -476,8 +445,6 @@ /area/ai_monitored/turret_protected/AIsatextAP) "acQ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/closed/wall/r_wall, @@ -488,8 +455,6 @@ /area/ai_monitored/turret_protected/ai) "acS" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -535,8 +500,6 @@ "adb" = ( /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_command{ @@ -607,8 +570,7 @@ /obj/structure/table, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/power/apc{ dir = 8; @@ -624,21 +586,15 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/grimy, /area/ai_monitored/turret_protected/aisat_interior) "adm" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/grimy, @@ -719,8 +675,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "ady" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/grimy, @@ -836,8 +790,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -916,8 +868,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -975,8 +925,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "aei" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -1001,9 +949,7 @@ "aen" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plating, /area/security/prison) @@ -1020,8 +966,6 @@ "aep" = ( /obj/item/cultivator, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/black, @@ -1029,8 +973,6 @@ "aeq" = ( /obj/machinery/hydroponics/constructable, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/seeds/glowshroom, @@ -1046,13 +988,9 @@ "aer" = ( /obj/item/reagent_containers/glass/bucket, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black, @@ -1061,8 +999,6 @@ /obj/structure/easel, /obj/item/canvas/nineteenXnineteen, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/sign/poster/official/random{ @@ -1072,13 +1008,9 @@ /area/security/prison) "aet" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -1118,8 +1050,6 @@ "aey" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -1172,8 +1102,6 @@ /area/security/prison) "aeH" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -1224,8 +1152,6 @@ }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -1279,8 +1205,7 @@ dir = 1 }, /obj/structure/cable/yellow{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/power/apc{ dir = 8; @@ -1295,8 +1220,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -1306,8 +1229,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/airalarm{ @@ -1325,8 +1246,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -1338,8 +1257,6 @@ }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -1349,8 +1266,6 @@ dir = 10 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black, @@ -1360,8 +1275,6 @@ pixel_y = 10 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/darkblue/side{ @@ -1370,13 +1283,9 @@ /area/ai_monitored/turret_protected/aisat_interior) "aff" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/darkblue/side{ @@ -1388,8 +1297,6 @@ pixel_y = 10 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/camera/motion{ @@ -1403,8 +1310,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "afh" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -1418,8 +1323,6 @@ req_access_txt = "65" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -1432,8 +1335,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -1443,8 +1344,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/airalarm{ @@ -1462,8 +1361,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -1471,7 +1368,6 @@ "afm" = ( /obj/structure/reagent_dispensers/fueltank, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -1618,8 +1514,6 @@ /area/security/prison) "afH" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -1918,8 +1812,6 @@ /area/security/prison) "agB" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/poddoor/preopen{ @@ -2048,8 +1940,6 @@ /area/security/prison) "agM" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -2173,8 +2063,6 @@ /area/security/prison) "aha" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -2271,8 +2159,6 @@ req_access_txt = "2" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -2302,9 +2188,7 @@ "ahu" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plating, /area/security/execution/transfer) @@ -2426,8 +2310,6 @@ /area/security/prison) "ahG" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, @@ -2452,13 +2334,9 @@ /area/security/prison) "ahH" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -2471,8 +2349,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/corner{ @@ -2487,7 +2363,6 @@ pixel_y = 24 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/red/side{ @@ -2548,8 +2423,7 @@ "ahS" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/cable, /turf/open/floor/plating, @@ -2563,8 +2437,6 @@ }, /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -2581,8 +2453,6 @@ }, /obj/item/wrench, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -2600,8 +2470,6 @@ dir = 5 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ @@ -2610,16 +2478,12 @@ /area/security/execution/transfer) "ahW" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black, @@ -2627,8 +2491,6 @@ "ahX" = ( /obj/machinery/atmospherics/pipe/simple/general/hidden, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ @@ -2638,8 +2500,6 @@ /area/security/execution/transfer) "ahY" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -2658,8 +2518,6 @@ /area/security/execution/transfer) "ahZ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ @@ -2669,8 +2527,6 @@ /area/security/prison) "aia" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ @@ -2680,8 +2536,6 @@ /area/security/prison) "aib" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -2689,21 +2543,15 @@ /area/security/prison) "aic" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/security/prison) "aid" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, @@ -2852,8 +2700,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -2897,8 +2743,6 @@ /area/security/prison) "aiG" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ @@ -2942,8 +2786,6 @@ /area/security/armory) "aiN" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/black, @@ -2959,7 +2801,6 @@ pixel_x = 24 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/black, @@ -3039,13 +2880,9 @@ /area/security/execution/transfer) "aja" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/black, @@ -3058,7 +2895,6 @@ pixel_x = 24 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/black, @@ -3078,8 +2914,7 @@ /area/security/prison) "aje" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/cable, /obj/effect/spawner/structure/window/reinforced, @@ -3142,8 +2977,6 @@ /area/security/armory) "aji" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -3354,8 +3187,6 @@ req_one_access_txt = "0" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -3377,8 +3208,6 @@ name = "prison blast door" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/delivery, @@ -3463,8 +3292,6 @@ /area/security/armory) "ajS" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -3485,8 +3312,7 @@ /area/security/armory) "ajU" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/power/apc{ dir = 8; @@ -3600,8 +3426,6 @@ /area/maintenance/department/crew_quarters/dorms) "akj" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/light/small{ @@ -3616,8 +3440,6 @@ /area/maintenance/department/crew_quarters/dorms) "akk" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -3630,8 +3452,6 @@ /area/maintenance/department/crew_quarters/dorms) "akl" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -3647,8 +3467,6 @@ /area/maintenance/department/crew_quarters/dorms) "akm" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -3661,8 +3479,6 @@ /area/maintenance/department/crew_quarters/dorms) "akn" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -3672,8 +3488,6 @@ /area/maintenance/department/crew_quarters/dorms) "ako" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -3687,8 +3501,6 @@ name = "space-bridge access" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -3701,8 +3513,6 @@ /area/maintenance/department/crew_quarters/dorms) "akq" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/light/small{ @@ -3774,13 +3584,9 @@ /area/security/processing/cremation) "aky" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/black, @@ -3796,7 +3602,6 @@ }, /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/black, @@ -3859,8 +3664,6 @@ /area/security/brig) "akG" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ @@ -3936,8 +3739,6 @@ /area/security/armory) "akO" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, @@ -3958,8 +3759,6 @@ /area/security/armory) "akQ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/newscaster{ @@ -3985,15 +3784,12 @@ "akT" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plating, /area/crew_quarters/heads/hos) "akU" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -4023,9 +3819,7 @@ "akZ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plating, /area/crew_quarters/heads/hos) @@ -4047,8 +3841,6 @@ /area/maintenance/department/crew_quarters/dorms) "ale" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -4114,8 +3906,6 @@ /area/security/processing/cremation) "aln" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -4198,8 +3988,6 @@ /area/security/brig) "alv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -4243,8 +4031,6 @@ /area/security/armory) "alB" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, @@ -4291,8 +4077,6 @@ /area/security/main) "alI" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, @@ -4321,9 +4105,7 @@ "alN" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /obj/structure/cable, /turf/open/floor/plating, @@ -4377,16 +4159,12 @@ "alW" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/black, /area/security/processing/cremation) "alX" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/black, @@ -4410,8 +4188,6 @@ /area/security/brig) "ama" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, @@ -4421,8 +4197,6 @@ /area/security/brig) "amb" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -4439,8 +4213,6 @@ req_access_txt = "0" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whitered/side{ @@ -4449,8 +4221,6 @@ /area/security/brig) "amd" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, @@ -4458,18 +4228,12 @@ /area/security/brig) "ame" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -4479,7 +4243,6 @@ /area/security/brig) "amf" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc/highcap/ten_k{ @@ -4499,8 +4262,7 @@ /area/security/warden) "amh" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -4514,8 +4276,6 @@ req_access_txt = "3" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -4523,11 +4283,9 @@ /area/security/warden) "amj" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -4542,13 +4300,9 @@ req_access_txt = "3" }, /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/cyan/hidden, @@ -4556,16 +4310,12 @@ /area/security/warden) "aml" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/closed/wall/r_wall, /area/security/warden) "amm" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -4627,8 +4377,6 @@ /area/security/main) "amr" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -4644,8 +4392,6 @@ /area/security/main) "ams" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -4662,8 +4408,6 @@ req_access_txt = "58" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -4676,21 +4420,15 @@ /area/crew_quarters/heads/hos) "amu" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ @@ -4700,8 +4438,6 @@ /area/crew_quarters/heads/hos) "amv" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -4790,8 +4526,6 @@ req_one_access_txt = "2;27" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -4826,8 +4560,6 @@ /area/security/processing/cremation) "amL" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -4837,8 +4569,6 @@ /area/security/brig) "amM" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -4878,8 +4608,6 @@ /area/security/brig) "amQ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -4904,9 +4632,7 @@ pixel_x = -24 }, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /obj/structure/reagent_dispensers/peppertank{ pixel_y = 30 @@ -4961,16 +4687,12 @@ /area/security/warden) "ana" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/closed/wall/r_wall, /area/security/warden) "anb" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, @@ -4995,8 +4717,6 @@ /area/security/main) "anf" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -5006,16 +4726,12 @@ /area/security/main) "ang" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, /area/crew_quarters/heads/hos) "anh" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/carpet, @@ -5051,8 +4767,6 @@ /area/shuttle/pod_1) "anp" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/robot_debris{ @@ -5067,8 +4781,6 @@ /area/maintenance/department/security/brig) "anr" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, @@ -5077,8 +4789,6 @@ /obj/item/wirecutters, /obj/effect/spawner/lootdrop/maintenance, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ @@ -5088,8 +4798,6 @@ /area/maintenance/department/security/brig) "ant" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ @@ -5103,13 +4811,9 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plating, @@ -5135,8 +4839,6 @@ req_one_access_txt = "0" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -5157,16 +4859,12 @@ /area/security/brig) "anz" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel, /area/security/brig) "anA" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -5176,17 +4874,12 @@ /area/security/brig) "anB" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -5194,8 +4887,6 @@ /area/security/warden) "anC" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/showroomfloor, @@ -5244,8 +4935,7 @@ /area/security/warden) "anK" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/cable, /obj/effect/spawner/structure/window/reinforced, @@ -5256,8 +4946,6 @@ /area/security/warden) "anL" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ @@ -5284,8 +4972,6 @@ /area/security/main) "anO" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -5307,8 +4993,7 @@ "anQ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -5317,8 +5002,6 @@ /area/crew_quarters/heads/hos) "anR" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -5333,8 +5016,6 @@ /area/crew_quarters/heads/hos) "anS" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/darkred/side{ @@ -5343,8 +5024,6 @@ /area/crew_quarters/heads/hos) "anT" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/darkred/side{ @@ -5353,8 +5032,6 @@ /area/crew_quarters/heads/hos) "anU" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/camera{ @@ -5373,7 +5050,6 @@ /area/crew_quarters/heads/hos) "anV" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -5382,8 +5058,7 @@ pixel_y = -24 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plasteel/darkred/side{ dir = 1 @@ -5392,7 +5067,6 @@ "anW" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable, @@ -5426,16 +5100,12 @@ /area/maintenance/department/security/brig) "aoe" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/department/security/brig) "aof" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/light/small{ @@ -5448,8 +5118,6 @@ dir = 5 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plating, @@ -5459,16 +5127,12 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/department/security/brig) "aoi" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -5478,8 +5142,6 @@ /area/maintenance/department/security/brig) "aoj" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -5543,26 +5205,18 @@ req_access_txt = "3" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) "aot" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/red/side{ @@ -5571,16 +5225,12 @@ /area/security/main) "aou" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/security/main) "aov" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -5594,8 +5244,6 @@ /area/security/main) "aow" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -5605,8 +5253,6 @@ /area/security/main) "aox" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/sortjunction{ @@ -5618,13 +5264,9 @@ /area/security/main) "aoy" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/light{ @@ -5715,8 +5357,6 @@ /area/maintenance/department/security/brig) "aoL" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -5761,8 +5401,7 @@ "aoQ" = ( /obj/structure/cable, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -5830,8 +5469,7 @@ /area/security/warden) "aoZ" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/cable, /obj/effect/spawner/structure/window/reinforced, @@ -5879,8 +5517,6 @@ /area/security/main) "apf" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -5902,8 +5538,6 @@ /area/security/main) "apg" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -5918,8 +5552,6 @@ /area/maintenance/fore) "aph" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -5934,11 +5566,9 @@ pixel_y = 24 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/disposalpipe/segment{ @@ -5948,8 +5578,6 @@ /area/maintenance/fore) "apj" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -5962,8 +5590,6 @@ /area/maintenance/fore) "apk" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -6035,8 +5661,6 @@ /area/maintenance/department/crew_quarters/dorms) "apu" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6046,8 +5670,6 @@ /area/maintenance/department/crew_quarters/dorms) "apv" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6059,8 +5681,6 @@ /area/maintenance/department/crew_quarters/dorms) "apw" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6127,25 +5747,19 @@ /area/security/brig) "apI" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/closed/wall/r_wall, /area/security/warden) "apJ" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -6153,12 +5767,10 @@ "apK" = ( /obj/structure/table/reinforced, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/door/window/brigdoor{ dir = 1; @@ -6180,12 +5792,10 @@ /area/security/warden) "apL" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -6197,8 +5807,6 @@ req_access_txt = "3" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, @@ -6207,16 +5815,12 @@ /area/security/warden) "apN" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/closed/wall/r_wall, /area/security/warden) "apO" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/closed/wall/r_wall, @@ -6234,8 +5838,6 @@ /area/security/main) "apQ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -6305,8 +5907,7 @@ /area/shuttle/pod_1) "aqa" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/power/solar{ id = "portsolar"; @@ -6317,20 +5918,15 @@ "aqb" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/space, /area/solar/port) "aqc" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/solar{ @@ -6341,7 +5937,6 @@ /area/solar/port) "aqd" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/solar{ @@ -6409,8 +6004,6 @@ /area/security/brig) "aqo" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -6542,8 +6135,6 @@ /area/security/brig) "aqE" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -6559,8 +6150,6 @@ /area/space) "aqH" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/closed/wall/r_wall, @@ -6568,11 +6157,9 @@ "aqI" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/door/poddoor/preopen{ @@ -6583,16 +6170,12 @@ /area/bridge) "aqJ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/closed/wall/r_wall, /area/bridge) "aqK" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/closed/wall/r_wall, @@ -6629,8 +6212,7 @@ pixel_y = 25 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/circuit/green{ luminosity = 2 @@ -6651,8 +6233,7 @@ pixel_x = -24 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 @@ -6662,8 +6243,6 @@ "aqR" = ( /obj/structure/window/reinforced, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -6677,8 +6256,6 @@ req_access_txt = "62" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, @@ -6736,18 +6313,12 @@ "ara" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/space, @@ -6992,8 +6563,6 @@ /area/space) "arG" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/closed/wall/r_wall, @@ -7115,8 +6684,6 @@ dir = 6 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/circuit/green{ @@ -7176,8 +6743,6 @@ /area/teleporter) "arZ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -7205,13 +6770,9 @@ /area/teleporter) "asb" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -7222,8 +6783,6 @@ /area/maintenance/department/crew_quarters/dorms) "asc" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance{ @@ -7234,8 +6793,6 @@ "asd" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/barber, @@ -7243,8 +6800,6 @@ "ase" = ( /obj/effect/landmark/event_spawn, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/barber, @@ -7253,8 +6808,6 @@ /obj/effect/landmark/start/assistant, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/barber, @@ -7265,8 +6818,6 @@ pixel_x = 32 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/barber, @@ -7292,8 +6843,6 @@ /area/maintenance/department/crew_quarters/dorms) "asm" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light{ @@ -7307,8 +6856,6 @@ /area/maintenance/department/crew_quarters/dorms) "asn" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -7321,14 +6868,10 @@ /area/maintenance/department/crew_quarters/dorms) "aso" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/vomit/old, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, @@ -7336,8 +6879,6 @@ "asp" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -7345,21 +6886,15 @@ "asq" = ( /obj/item/clothing/head/cone, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plating, /area/maintenance/department/security/brig) "asr" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plating, @@ -7401,8 +6936,6 @@ /area/security/brig) "asx" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light, @@ -7537,8 +7070,6 @@ /area/bridge) "asP" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/closed/wall/r_wall, @@ -7548,8 +7079,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/keycard_auth{ @@ -7581,8 +7110,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/button/door{ @@ -7605,8 +7132,6 @@ /area/bridge) "asU" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/closed/wall/r_wall, @@ -7657,8 +7182,6 @@ dir = 9 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/circuit/green{ @@ -7698,8 +7221,6 @@ pixel_x = -20 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -7709,8 +7230,6 @@ /area/teleporter) "atb" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -7720,8 +7239,6 @@ /area/teleporter) "atc" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/landmark/event_spawn, @@ -7814,8 +7331,6 @@ /area/maintenance/department/crew_quarters/dorms) "atp" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/circuit/green, @@ -7844,8 +7359,7 @@ /area/security/brig) "atv" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, @@ -7857,20 +7371,16 @@ name = "Cell 1" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side, /area/security/brig) "atx" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -7878,25 +7388,19 @@ /area/security/brig) "aty" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/closed/wall, /area/security/brig) "atz" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, @@ -7908,16 +7412,12 @@ name = "Cell 2" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side, /area/security/brig) "atB" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/closed/wall, @@ -7928,19 +7428,15 @@ name = "Cell 3" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/red/side, /area/security/brig) "atD" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, @@ -7955,8 +7451,6 @@ req_access_txt = "63" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -7966,12 +7460,10 @@ /area/security/brig) "atF" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -8008,8 +7500,6 @@ /area/security/brig) "atK" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -8055,9 +7545,7 @@ name = "Bridge Power Monitoring Console" }, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plasteel/darkpurple, /area/bridge) @@ -8067,8 +7555,6 @@ /area/bridge) "atR" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/darkpurple/side{ @@ -8098,8 +7584,6 @@ /area/bridge) "atW" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/darkyellow/side{ @@ -8146,8 +7630,6 @@ dir = 10 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/black, @@ -8160,8 +7642,6 @@ }, /obj/machinery/light, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/black, @@ -8180,8 +7660,6 @@ /area/ai_monitored/nuke_storage) "auf" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -8262,8 +7740,6 @@ /area/maintenance/department/crew_quarters/dorms) "auo" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -8273,8 +7749,6 @@ /area/maintenance/department/crew_quarters/dorms) "aup" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/grille/broken, @@ -8286,8 +7760,6 @@ "auq" = ( /obj/effect/spawner/lootdrop/maintenance, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -8436,8 +7908,6 @@ /area/crew_quarters/heads/captain) "auJ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -8467,8 +7937,6 @@ /area/bridge) "auN" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/airalarm{ @@ -8481,8 +7949,6 @@ /area/bridge) "auO" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/darkpurple/side{ @@ -8491,13 +7957,9 @@ /area/bridge) "auP" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/darkpurple/corner{ @@ -8559,8 +8021,6 @@ req_access_txt = "53" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -8579,8 +8039,6 @@ req_access_txt = "62" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -8712,8 +8170,6 @@ /area/crew_quarters/fitness/recreation) "avn" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -8973,8 +8429,6 @@ /area/bridge) "avT" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -9052,8 +8506,6 @@ dir = 5 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel, @@ -9066,8 +8518,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -9081,8 +8531,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -9092,8 +8540,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -9104,13 +8550,9 @@ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -9282,8 +8724,7 @@ pixel_y = 24 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) @@ -9292,13 +8733,9 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -9309,8 +8746,6 @@ /area/crew_quarters/fitness/recreation) "awE" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plating, @@ -9340,8 +8775,7 @@ /area/security/brig) "awI" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/door/poddoor/preopen{ id = "Secure Gate"; @@ -9352,12 +8786,10 @@ /area/security/brig) "awJ" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/door/poddoor/preopen{ id = "Secure Gate"; @@ -9368,11 +8800,9 @@ /area/security/brig) "awK" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/door/poddoor/preopen{ @@ -9391,8 +8821,6 @@ req_access_txt = "63" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -9402,7 +8830,6 @@ /area/security/brig) "awM" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable, @@ -9494,8 +8921,6 @@ /area/crew_quarters/heads/captain) "awT" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -9543,8 +8968,6 @@ /area/bridge) "awZ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -9574,8 +8997,6 @@ /area/bridge) "axd" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -9636,8 +9057,6 @@ /area/hallway/primary/central) "axm" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -9719,8 +9138,6 @@ /area/crew_quarters/fitness/recreation) "axA" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -9820,8 +9237,6 @@ /area/crew_quarters/heads/captain) "axR" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -9836,8 +9251,7 @@ pixel_y = 24 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain) @@ -9887,8 +9301,6 @@ /area/bridge) "axY" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -9961,8 +9373,6 @@ /area/bridge) "ayh" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -10089,8 +9499,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -10118,8 +9526,7 @@ track = 0 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plating, /area/maintenance/solars/port) @@ -10131,8 +9538,7 @@ /area/maintenance/solars/port) "ayC" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/power/apc{ dir = 1; @@ -10276,8 +9682,6 @@ /area/crew_quarters/heads/captain) "ayX" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment, @@ -10288,13 +9692,9 @@ /area/crew_quarters/heads/captain) "ayY" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -10327,8 +9727,6 @@ /area/crew_quarters/heads/captain) "azd" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -10338,13 +9736,9 @@ /area/bridge) "aze" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -10354,8 +9748,6 @@ /area/bridge) "azf" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -10371,8 +9763,6 @@ pixel_y = -32 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -10385,8 +9775,6 @@ light_color = "#e8eaff" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -10396,8 +9784,6 @@ /area/bridge) "azi" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/requests_console{ @@ -10414,13 +9800,9 @@ /area/bridge) "azj" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/holopad, @@ -10440,8 +9822,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -10454,8 +9834,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/newscaster{ @@ -10465,8 +9843,6 @@ /area/bridge) "azm" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -10481,21 +9857,15 @@ /area/bridge) "azn" = ( /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/scrubbers/hidden{ dir = 10 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/black, @@ -10509,7 +9879,6 @@ pixel_x = 24 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/darkblue/side{ @@ -10529,8 +9898,6 @@ "azq" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -10633,8 +10000,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/camera{ @@ -10646,16 +10011,13 @@ "azG" = ( /obj/machinery/power/tracker, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plasteel/airless/solarpanel, /area/solar/port) "azH" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/space, @@ -10663,7 +10025,6 @@ "azI" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/space, @@ -10679,16 +10040,13 @@ /area/solar/port) "azL" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port) "azM" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/external{ @@ -10701,16 +10059,12 @@ /area/maintenance/solars/port) "azN" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/solars/port) "azO" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/external{ @@ -10723,34 +10077,24 @@ /area/maintenance/solars/port) "azP" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/solars/port) "azQ" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plating, /area/maintenance/solars/port) "azR" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, @@ -10761,29 +10105,21 @@ req_access_txt = "10" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/solars/port) "azT" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plating, /area/maintenance/department/security/brig) "azU" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating{ @@ -10793,8 +10129,6 @@ /area/maintenance/department/security/brig) "azV" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/small{ @@ -10806,8 +10140,6 @@ /area/maintenance/department/security/brig) "azW" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/vending_refill/cigarette, @@ -10818,8 +10150,6 @@ /area/maintenance/department/security/brig) "azX" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/spawner/lootdrop/maintenance, @@ -10851,8 +10181,7 @@ pixel_x = -24 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plasteel/red/side{ dir = 8 @@ -10860,8 +10189,6 @@ /area/hallway/primary/fore) "aAc" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -10869,16 +10196,12 @@ "aAd" = ( /obj/machinery/light, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/hallway/primary/fore) "aAe" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -10987,8 +10310,6 @@ /area/crew_quarters/heads/captain) "aAu" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -11022,8 +10343,6 @@ /area/crew_quarters/heads/captain) "aAz" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -11046,8 +10365,6 @@ req_access_txt = "16" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -11058,8 +10375,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/black, @@ -11070,8 +10385,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/darkblue/side{ @@ -11109,8 +10422,6 @@ /area/hallway/primary/central) "aAK" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -11160,8 +10471,6 @@ /area/crew_quarters/fitness/recreation) "aAU" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -11172,9 +10481,7 @@ "aAV" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /turf/open/space, /area/solar/port) @@ -11210,8 +10517,6 @@ /area/maintenance/department/security/brig) "aBb" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating{ @@ -11221,8 +10526,6 @@ /area/maintenance/department/security/brig) "aBc" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -11288,8 +10591,6 @@ /area/crew_quarters/heads/captain) "aBl" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -11327,8 +10628,6 @@ req_access_txt = "19" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -11366,8 +10665,6 @@ "aBv" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/darkblue/side{ @@ -11376,8 +10673,6 @@ /area/ai_monitored/turret_protected/ai_upload) "aBw" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/darkblue/side{ @@ -11392,7 +10687,6 @@ pixel_y = 24 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/darkblue/side{ @@ -11402,8 +10696,6 @@ "aBy" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -11495,8 +10787,7 @@ pixel_x = -25 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, @@ -11507,8 +10798,6 @@ /area/hallway/primary/central) "aBJ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -11628,8 +10917,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -11643,18 +10930,12 @@ "aCa" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/space, @@ -11679,8 +10960,6 @@ /area/maintenance/department/security/brig) "aCe" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/small{ @@ -11690,13 +10969,9 @@ /area/maintenance/department/security/brig) "aCf" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -11706,8 +10981,6 @@ /area/maintenance/department/security/brig) "aCg" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -11717,8 +10990,6 @@ /area/maintenance/department/security/brig) "aCh" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -11889,8 +11160,6 @@ /area/crew_quarters/heads/captain) "aCz" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment, @@ -11899,8 +11168,6 @@ /area/crew_quarters/heads/captain) "aCA" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -11910,8 +11177,6 @@ /area/crew_quarters/heads/captain) "aCB" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -11921,8 +11186,6 @@ /area/crew_quarters/heads/captain) "aCC" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/camera{ @@ -11946,8 +11209,6 @@ /area/crew_quarters/heads/captain) "aCE" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -12037,8 +11298,6 @@ /area/ai_monitored/turret_protected/ai_upload) "aCO" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -12076,8 +11335,6 @@ /area/crew_quarters/heads/hop) "aCT" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -12088,8 +11345,6 @@ /area/crew_quarters/heads/hop) "aCU" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -12108,8 +11363,6 @@ req_access_txt = "57" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -12122,13 +11375,9 @@ /area/crew_quarters/heads/hop) "aCW" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/junction{ @@ -12142,8 +11391,6 @@ /area/hallway/primary/central) "aCX" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -12158,13 +11405,9 @@ "aCY" = ( /obj/machinery/holopad, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -12266,8 +11509,6 @@ /area/crew_quarters/dorms) "aDl" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -12278,8 +11519,6 @@ /area/maintenance/department/cargo) "aDm" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -12360,8 +11599,7 @@ /area/hallway/primary/fore) "aDw" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/power/apc{ dir = 8; @@ -12375,8 +11613,6 @@ /area/storage/primary) "aDx" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel, @@ -12438,8 +11674,6 @@ /area/crew_quarters/heads/captain) "aDG" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -12458,8 +11692,6 @@ req_access_txt = "20" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -12472,13 +11704,9 @@ /area/crew_quarters/heads/captain) "aDI" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -12541,8 +11769,6 @@ /area/bridge) "aDP" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -12567,8 +11793,6 @@ req_access_txt = "57" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -12578,8 +11802,6 @@ /area/crew_quarters/heads/hop) "aDR" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/sortjunction{ @@ -12594,8 +11816,6 @@ /area/crew_quarters/heads/hop) "aDS" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -12608,13 +11828,9 @@ /area/crew_quarters/heads/hop) "aDT" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -12627,8 +11843,6 @@ /area/crew_quarters/heads/hop) "aDU" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -12641,8 +11855,6 @@ /area/crew_quarters/heads/hop) "aDV" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -12652,29 +11864,21 @@ /area/crew_quarters/heads/hop) "aDW" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/carpet, /area/crew_quarters/heads/hop) "aDX" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -12690,7 +11894,6 @@ pixel_x = 24 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/carpet, @@ -12700,8 +11903,6 @@ /area/hallway/primary/central) "aEa" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -12768,8 +11969,6 @@ /area/maintenance/department/cargo) "aEk" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -12834,8 +12033,7 @@ pixel_x = 24 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) @@ -12864,8 +12062,6 @@ /area/storage/primary) "aEu" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -12919,8 +12115,6 @@ /area/crew_quarters/heads/captain) "aEB" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -13043,8 +12237,6 @@ icon_state = "plant-24" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/wood, @@ -13066,8 +12258,6 @@ "aEP" = ( /obj/machinery/computer/card, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/carpet, @@ -13259,8 +12449,6 @@ /area/security/detectives_office) "aFq" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/grimy, @@ -13290,8 +12478,6 @@ /area/storage/primary) "aFt" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -13338,8 +12524,7 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plating, /area/crew_quarters/heads/hop) @@ -13380,8 +12565,6 @@ /area/hallway/primary/central) "aFE" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/item/wrench, @@ -13399,7 +12582,6 @@ pixel_x = 24 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -13412,8 +12594,6 @@ /area/crew_quarters/toilet/restrooms) "aFH" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -13423,8 +12603,6 @@ /area/crew_quarters/toilet/restrooms) "aFI" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -13434,8 +12612,6 @@ /area/crew_quarters/toilet/restrooms) "aFJ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -13447,8 +12623,6 @@ req_access_txt = "0" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -13458,8 +12632,6 @@ /area/crew_quarters/toilet/restrooms) "aFL" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light{ @@ -13475,8 +12647,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -13559,8 +12729,6 @@ /area/security/detectives_office) "aFZ" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment, @@ -13569,8 +12737,6 @@ /area/security/detectives_office) "aGa" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/grimy, @@ -13726,8 +12892,6 @@ /area/hallway/primary/central) "aGv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/bot, @@ -13761,8 +12925,6 @@ /area/hallway/primary/central) "aGA" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -13804,8 +12966,6 @@ /area/crew_quarters/toilet/restrooms) "aGG" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -13832,8 +12992,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -13898,8 +13056,6 @@ req_access_txt = "4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -13930,8 +13086,6 @@ name = "Primary Tool Storage" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -13975,8 +13129,6 @@ }, /obj/machinery/door/firedoor, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -14004,9 +13156,7 @@ "aHf" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plating, /area/hallway/primary/central) @@ -14038,7 +13188,6 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plating, @@ -14046,11 +13195,9 @@ "aHj" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plating, @@ -14059,7 +13206,6 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -14073,8 +13219,6 @@ /area/hallway/primary/central) "aHm" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -14087,16 +13231,12 @@ req_access_txt = "0" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, /area/storage/emergency/starboard) "aHo" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -14174,8 +13314,6 @@ /area/hallway/secondary/exit/departure_lounge) "aHB" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -14185,8 +13323,6 @@ /area/maintenance/department/security/brig) "aHC" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/small{ @@ -14199,13 +13335,9 @@ /area/maintenance/department/security/brig) "aHD" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -14247,8 +13379,6 @@ /area/hallway/primary/central) "aHI" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -14365,8 +13495,6 @@ /area/hallway/primary/central) "aHT" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/junction, @@ -14406,8 +13534,6 @@ /area/hallway/primary/central) "aHX" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -14419,8 +13545,6 @@ /area/hallway/primary/central) "aHY" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -14493,8 +13617,6 @@ /area/hallway/primary/central) "aIe" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -14528,8 +13650,6 @@ /area/crew_quarters/dorms) "aIi" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -14555,9 +13675,7 @@ }, /obj/structure/cable, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/freezer, @@ -14601,13 +13719,9 @@ "aIr" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/space, @@ -14711,8 +13825,6 @@ /area/maintenance/department/security/brig) "aIJ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -14743,13 +13855,9 @@ /area/hallway/primary/central) "aIN" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -14757,16 +13865,12 @@ /area/hallway/primary/central) "aIO" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/hallway/primary/central) "aIP" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -14774,21 +13878,15 @@ /area/hallway/primary/central) "aIQ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel, /area/hallway/primary/central) "aIR" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -14796,8 +13894,6 @@ /area/hallway/primary/central) "aIS" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -14807,13 +13903,9 @@ /area/hallway/primary/central) "aIT" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -14825,8 +13917,6 @@ /area/hallway/primary/central) "aIU" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -14836,13 +13926,9 @@ /area/hallway/primary/central) "aIV" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -14853,50 +13939,34 @@ /area/hallway/primary/central) "aIW" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel, /area/hallway/primary/central) "aIX" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/observer_start, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel, /area/hallway/primary/central) "aIY" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel, @@ -14927,13 +13997,9 @@ /area/hallway/primary/central) "aJc" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/junction{ @@ -14947,8 +14013,6 @@ /area/hallway/primary/central) "aJd" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -14965,8 +14029,6 @@ /area/hallway/primary/central) "aJe" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -14984,8 +14046,6 @@ name = "Dormitory" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -14995,8 +14055,6 @@ /area/hallway/primary/central) "aJh" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -15007,13 +14065,9 @@ /area/hallway/primary/central) "aJi" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -15023,8 +14077,6 @@ /area/hallway/primary/central) "aJj" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -15038,8 +14090,6 @@ /area/hallway/primary/central) "aJk" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -15053,8 +14103,6 @@ /area/hallway/primary/central) "aJl" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -15065,8 +14113,6 @@ /area/hallway/primary/central) "aJm" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -15082,8 +14128,6 @@ req_access_txt = "0" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -15093,8 +14137,6 @@ /area/crew_quarters/toilet/restrooms) "aJo" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -15108,8 +14150,6 @@ /area/maintenance/department/cargo) "aJq" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -15129,8 +14169,6 @@ /area/maintenance/department/cargo) "aJr" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -15146,8 +14184,6 @@ /area/maintenance/department/cargo) "aJs" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -15160,8 +14196,6 @@ /area/maintenance/department/cargo) "aJt" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -15179,8 +14213,6 @@ "aJu" = ( /obj/structure/grille, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -15193,13 +14225,9 @@ /area/maintenance/department/cargo) "aJv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -15317,8 +14345,6 @@ /area/hallway/primary/central) "aJJ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -15333,8 +14359,6 @@ /area/hallway/primary/central) "aJL" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -15396,8 +14420,6 @@ /area/hallway/primary/central) "aJS" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -15469,8 +14491,6 @@ /area/hallway/primary/central) "aJY" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -15576,8 +14596,6 @@ /area/maintenance/department/cargo) "aKn" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -15717,8 +14735,6 @@ name = "Art Storage" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -15738,8 +14754,6 @@ name = "Lunchroom" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -15758,8 +14772,6 @@ req_access_txt = "0" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -15777,8 +14789,6 @@ req_access_txt = "12" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -15820,9 +14830,7 @@ "aLc" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plating, /area/teleporter) @@ -15859,8 +14867,6 @@ "aLj" = ( /obj/effect/spawner/lootdrop/grille_or_trash, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -15951,8 +14957,6 @@ /area/storage/art) "aLy" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -15985,8 +14989,6 @@ /area/crew_quarters/cafeteria/lunchroom) "aLC" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -16016,8 +15018,6 @@ /area/crew_quarters/toilet/auxiliary) "aLF" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -16028,8 +15028,6 @@ pixel_y = 32 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/button/door{ @@ -16118,8 +15116,7 @@ pixel_x = -24 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/airalarm{ pixel_y = 22 @@ -16131,18 +15128,12 @@ /area/teleporter) "aLX" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel, @@ -16150,16 +15141,12 @@ "aLY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/teleporter) "aLZ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel, @@ -16390,8 +15377,6 @@ /area/maintenance/department/cargo) "aMx" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -16404,8 +15389,6 @@ /area/maintenance/department/cargo) "aMy" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -16435,8 +15418,6 @@ /area/maintenance/department/cargo) "aMB" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -16450,8 +15431,6 @@ /area/maintenance/department/cargo) "aMC" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -16544,8 +15523,7 @@ pixel_y = 24 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plasteel/escape{ dir = 1 @@ -16565,8 +15543,6 @@ /area/hallway/secondary/exit/departure_lounge) "aMQ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -16620,8 +15596,6 @@ /area/storage/art) "aMW" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -16633,7 +15607,6 @@ /obj/structure/table, /obj/item/airlock_painter, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -16731,8 +15704,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating{ @@ -16742,8 +15713,6 @@ /area/maintenance/department/crew_quarters/bar) "aNj" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -16827,8 +15796,6 @@ /area/teleporter) "aNv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/corner{ @@ -17003,8 +15970,6 @@ /area/quartermaster/storage) "aNR" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -17150,8 +16115,6 @@ /area/hallway/secondary/exit/departure_lounge) "aOl" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/corner{ @@ -17191,8 +16154,6 @@ /area/hallway/secondary/exit/departure_lounge) "aOq" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -17263,13 +16224,9 @@ /area/maintenance/department/crew_quarters/bar) "aOx" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -17280,8 +16237,6 @@ /area/maintenance/department/crew_quarters/bar) "aOy" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -17291,8 +16246,6 @@ /area/maintenance/department/crew_quarters/bar) "aOz" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -17302,8 +16255,6 @@ /area/maintenance/department/crew_quarters/bar) "aOA" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/spawner/lootdrop/maintenance, @@ -17365,8 +16316,6 @@ "aOF" = ( /obj/structure/chair/stool, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -17380,8 +16329,6 @@ "aOG" = ( /obj/structure/chair/stool, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -17392,8 +16339,6 @@ /area/teleporter) "aOH" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -17404,8 +16349,6 @@ /area/teleporter) "aOI" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -17423,8 +16366,6 @@ name = "Teleporter Shutters" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -17435,8 +16376,6 @@ /area/teleporter) "aOK" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -17449,13 +16388,9 @@ /area/hallway/primary/central) "aOL" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment, @@ -17466,8 +16401,6 @@ /area/hallway/primary/central) "aOM" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -17480,16 +16413,12 @@ "aON" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/security/checkpoint/supply) "aOO" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/table, @@ -17705,8 +16634,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -17716,8 +16643,6 @@ /area/hallway/secondary/exit/departure_lounge) "aPs" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -17732,8 +16657,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -17742,8 +16665,6 @@ /area/hallway/secondary/exit/departure_lounge) "aPu" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -17751,8 +16672,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -17823,9 +16742,7 @@ pixel_y = 24 }, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/bar) @@ -17839,8 +16756,6 @@ /area/maintenance/department/crew_quarters/bar) "aPG" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -18139,8 +17054,6 @@ /area/hallway/secondary/exit/departure_lounge) "aQx" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -18212,8 +17125,6 @@ /area/maintenance/department/crew_quarters/bar) "aQF" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -18223,8 +17134,6 @@ /area/maintenance/department/crew_quarters/bar) "aQG" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -18234,13 +17143,9 @@ /area/maintenance/department/crew_quarters/bar) "aQH" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -18257,8 +17162,6 @@ /area/maintenance/department/crew_quarters/bar) "aQI" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -18274,8 +17177,6 @@ /obj/structure/closet, /obj/effect/spawner/lootdrop/maintenance, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -18289,8 +17190,6 @@ "aQK" = ( /obj/structure/grille, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -18301,8 +17200,6 @@ "aQL" = ( /obj/structure/grille/broken, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -18313,8 +17210,6 @@ "aQM" = ( /obj/item/reagent_containers/glass/bucket, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -18324,8 +17219,6 @@ /area/maintenance/department/crew_quarters/bar) "aQN" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -18335,16 +17228,12 @@ /area/maintenance/department/crew_quarters/bar) "aQO" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -18354,8 +17243,6 @@ /area/maintenance/department/crew_quarters/bar) "aQP" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -18368,13 +17255,9 @@ /area/maintenance/department/crew_quarters/bar) "aQQ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -18394,8 +17277,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -18439,8 +17320,6 @@ /area/maintenance/department/crew_quarters/bar) "aQX" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/broken_bottle, @@ -18466,8 +17345,7 @@ }, /obj/item/crowbar, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/power/apc{ dir = 2; @@ -18478,8 +17356,6 @@ /area/storage/eva) "aRa" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment, @@ -18754,8 +17630,6 @@ /area/hallway/secondary/exit/departure_lounge) "aRG" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -18775,8 +17649,6 @@ /area/hallway/primary/central) "aRJ" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -18784,8 +17656,6 @@ /area/maintenance/department/crew_quarters/bar) "aRK" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plating, @@ -18800,8 +17670,6 @@ req_access_txt = "35" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -18813,8 +17681,6 @@ /area/crew_quarters/kitchen) "aRO" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -18845,8 +17711,6 @@ /area/crew_quarters/bar) "aRR" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/chair/wood/normal{ @@ -18859,8 +17723,6 @@ /area/crew_quarters/bar) "aRS" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -18870,8 +17732,6 @@ /area/crew_quarters/bar) "aRT" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -18885,8 +17745,6 @@ req_access_txt = "25" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -18896,8 +17754,6 @@ /area/maintenance/department/crew_quarters/bar) "aRV" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -18907,13 +17763,9 @@ /area/maintenance/department/crew_quarters/bar) "aRW" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/chair, @@ -18926,8 +17778,6 @@ req_access_txt = "18" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -19039,9 +17889,7 @@ pixel_x = 24 }, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, @@ -19061,9 +17909,7 @@ pixel_x = 24 }, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, @@ -19148,8 +17994,6 @@ /area/hallway/secondary/exit/departure_lounge) "aSz" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -19167,8 +18011,6 @@ /area/hydroponics) "aSB" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -19219,8 +18061,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -19270,8 +18110,6 @@ /area/crew_quarters/bar) "aSO" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, @@ -19294,8 +18132,6 @@ /area/maintenance/department/crew_quarters/bar) "aSS" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -19305,13 +18141,9 @@ /area/maintenance/department/crew_quarters/bar) "aST" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -19322,8 +18154,6 @@ /area/maintenance/department/crew_quarters/bar) "aSV" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -19531,21 +18361,15 @@ /area/shuttle/supply) "aTu" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plating, /area/maintenance/department/cargo) "aTv" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -19556,13 +18380,9 @@ /area/maintenance/department/cargo) "aTw" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/junction{ @@ -19576,8 +18396,6 @@ /area/maintenance/department/cargo) "aTx" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -19594,8 +18412,6 @@ req_access_txt = "12" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -19608,8 +18424,6 @@ /area/maintenance/disposal) "aTz" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -19622,8 +18436,6 @@ /area/maintenance/disposal) "aTA" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -19636,8 +18448,6 @@ /area/maintenance/disposal) "aTB" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -19648,8 +18458,7 @@ /area/maintenance/disposal) "aTC" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/power/solar{ id = "portsolar"; @@ -19660,20 +18469,15 @@ "aTD" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/space, /area/solar/starboard) "aTE" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/solar{ @@ -19792,8 +18596,6 @@ /area/hydroponics) "aTR" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -19857,8 +18659,6 @@ /area/crew_quarters/kitchen) "aTY" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -19902,8 +18702,6 @@ /area/crew_quarters/bar) "aUd" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -20101,8 +18899,6 @@ /area/maintenance/department/cargo) "aUC" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -20112,18 +18908,12 @@ "aUD" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/space, @@ -20156,16 +18946,12 @@ /area/hallway/secondary/exit/departure_lounge) "aUH" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) "aUI" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/neutral/corner{ @@ -20178,16 +18964,12 @@ name = "Departure Lounge" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) "aUK" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -20197,13 +18979,9 @@ /area/hallway/primary/central) "aUL" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment, @@ -20214,8 +18992,6 @@ /area/hallway/primary/central) "aUM" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -20226,8 +19002,6 @@ /area/hallway/primary/central) "aUN" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -20240,8 +19014,6 @@ /area/maintenance/department/crew_quarters/bar) "aUO" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -20252,8 +19024,6 @@ /area/maintenance/department/crew_quarters/bar) "aUP" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -20295,8 +19065,6 @@ "aUT" = ( /obj/structure/closet/wardrobe/botanist, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/hydrofloor, @@ -20307,7 +19075,6 @@ pixel_y = -24 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/hydrofloor, @@ -20328,8 +19095,6 @@ /area/crew_quarters/kitchen) "aUY" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/showroomfloor, @@ -20376,8 +19141,6 @@ req_access_txt = "25" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -20508,8 +19271,6 @@ req_access_txt = "46" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -20676,8 +19437,6 @@ /area/shuttle/supply) "aVE" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -20884,8 +19643,6 @@ /area/crew_quarters/bar) "aWe" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -20893,8 +19650,6 @@ /area/crew_quarters/bar) "aWf" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/requests_console{ @@ -20918,8 +19673,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -20932,8 +19685,6 @@ dir = 10 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/item/device/radio/intercom{ @@ -20971,15 +19722,12 @@ pixel_x = -25 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plasteel/redblue, /area/crew_quarters/theatre) "aWo" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark/start/mime, @@ -20990,8 +19738,6 @@ /area/crew_quarters/theatre) "aWp" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -21004,8 +19750,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -21020,8 +19764,6 @@ /area/crew_quarters/theatre) "aWr" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment, @@ -22293,8 +21035,6 @@ /area/shuttle/supply) "aZv" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -22308,8 +21048,6 @@ /area/maintenance/department/cargo) "aZw" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -22428,8 +21166,6 @@ /area/security/checkpoint/customs) "aZJ" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -22446,8 +21182,6 @@ req_access_txt = "1" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -22457,8 +21191,6 @@ /area/security/checkpoint/customs) "aZL" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -22469,13 +21201,9 @@ /area/hallway/primary/central) "aZM" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment, @@ -22513,8 +21241,7 @@ pixel_y = 24 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plasteel/floorgrime, /area/janitor) @@ -22703,8 +21430,7 @@ /area/quartermaster/office) "bav" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/power/apc{ dir = 2; @@ -22717,8 +21443,6 @@ /area/quartermaster/office) "baw" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment, @@ -22740,8 +21464,6 @@ /area/quartermaster/office) "baA" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment, @@ -22752,8 +21474,6 @@ /area/quartermaster/storage) "baB" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -22771,19 +21491,15 @@ pixel_y = -24 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel, /area/quartermaster/storage) "baD" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light, @@ -22799,8 +21515,6 @@ /area/quartermaster/storage) "baE" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/sortjunction{ @@ -22829,7 +21543,6 @@ /area/maintenance/solars/starboard) "baI" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/solar{ @@ -22932,8 +21645,6 @@ /area/security/checkpoint/customs) "baV" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -22972,8 +21683,6 @@ req_access_txt = "26" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/floorgrime, @@ -22983,8 +21692,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/floorgrime, @@ -22997,8 +21704,6 @@ pixel_x = 32 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/floorgrime, @@ -23174,8 +21879,6 @@ req_access_txt = "50" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -23216,8 +21919,6 @@ req_access_txt = "41" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -23234,8 +21935,6 @@ "bbJ" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -23250,9 +21949,7 @@ "bbL" = ( /obj/machinery/power/smes, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plating, /area/maintenance/solars/starboard) @@ -23261,9 +21958,7 @@ dir = 8 }, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/light/small{ dir = 1 @@ -23352,8 +22047,6 @@ /obj/structure/janitorialcart, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/floorgrime, @@ -23546,8 +22239,6 @@ /area/maintenance/department/cargo) "bcz" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -23567,8 +22258,6 @@ /area/quartermaster/qm) "bcB" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -23603,8 +22292,6 @@ /area/quartermaster/miningdock) "bcE" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -23631,13 +22318,9 @@ /area/quartermaster/miningdock) "bcH" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -23646,16 +22329,12 @@ /area/maintenance/department/cargo) "bcI" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/department/cargo) "bcJ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/engineering{ @@ -23666,42 +22345,30 @@ /area/maintenance/solars/starboard) "bcK" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plating, /area/maintenance/solars/starboard) "bcL" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plating, /area/maintenance/solars/starboard) "bcM" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/solars/starboard) "bcN" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/external{ @@ -23714,16 +22381,12 @@ /area/maintenance/solars/starboard) "bcO" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/solars/starboard) "bcP" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/external{ @@ -23737,8 +22400,6 @@ "bcQ" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/space, @@ -23746,7 +22407,6 @@ "bcR" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/space, @@ -23763,15 +22423,13 @@ "bcU" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/space, /area/solar/starboard) "bcV" = ( /obj/machinery/power/tracker, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/airless/solarpanel, @@ -23844,8 +22502,6 @@ dir = 6 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/floorgrime, @@ -23957,8 +22613,6 @@ /area/maintenance/department/cargo) "bdB" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -23969,8 +22623,6 @@ /area/maintenance/department/cargo) "bdC" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -23980,8 +22632,6 @@ /area/maintenance/department/cargo) "bdD" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -23994,8 +22644,6 @@ /area/maintenance/department/cargo) "bdE" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -24006,8 +22654,7 @@ /area/maintenance/department/cargo) "bdF" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/power/apc{ dir = 8; @@ -24024,8 +22671,6 @@ /area/quartermaster/qm) "bdG" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel, @@ -24054,8 +22699,6 @@ }, /obj/effect/landmark/start/shaft_miner, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -24097,8 +22740,6 @@ /area/shuttle/labor) "bdQ" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -24138,9 +22779,7 @@ "bdU" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /turf/open/space, /area/solar/starboard) @@ -24194,8 +22833,6 @@ /area/hallway/primary/central) "bec" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -24500,8 +23137,6 @@ /area/quartermaster/miningdock) "beN" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -24525,8 +23160,6 @@ /area/shuttle/labor) "beR" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/spawner/lootdrop/maintenance, @@ -24548,18 +23181,12 @@ "beU" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/space, @@ -24614,8 +23241,6 @@ /area/hallway/secondary/entry) "bfc" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -24623,8 +23248,6 @@ /area/hallway/secondary/entry) "bfd" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -24638,8 +23261,6 @@ name = "Central Access" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -24650,8 +23271,6 @@ "bff" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -24666,8 +23285,6 @@ /area/hallway/primary/central) "bfg" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -24677,13 +23294,9 @@ /area/hallway/primary/central) "bfh" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment, @@ -24696,8 +23309,6 @@ req_access_txt = "26" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -24797,8 +23408,7 @@ pixel_y = 24 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plasteel/black, /area/science/robotics/mechbay) @@ -24814,8 +23424,7 @@ "bfy" = ( /obj/machinery/mech_bay_recharge_port, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/status_display{ pixel_y = 30 @@ -24828,8 +23437,7 @@ "bfA" = ( /obj/machinery/computer/mech_bay_power_console, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plasteel/black, /area/science/robotics/mechbay) @@ -24893,8 +23501,6 @@ /area/quartermaster/miningdock) "bfF" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/start/shaft_miner, @@ -25056,8 +23662,6 @@ name = "Lounge" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -25103,8 +23707,6 @@ /area/hallway/primary/central) "bgg" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -25315,8 +23917,6 @@ /area/science/robotics/mechbay) "bgF" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/corner{ @@ -25332,8 +23932,6 @@ /area/science/robotics/mechbay) "bgH" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/circuit/green, @@ -25343,8 +23941,6 @@ /area/science/robotics/mechbay) "bgJ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -25358,8 +23954,7 @@ /area/science/robotics/mechbay) "bgK" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/power/apc{ dir = 8; @@ -25372,8 +23967,6 @@ /area/quartermaster/miningdock) "bgL" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -25446,8 +24039,6 @@ /area/crew_quarters/lounge) "bgW" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -25476,13 +24067,9 @@ /area/crew_quarters/lounge) "bgZ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/sortjunction{ @@ -25494,8 +24081,6 @@ /area/hallway/primary/central) "bha" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -25508,8 +24093,6 @@ /area/hallway/primary/central) "bhb" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -25523,8 +24106,6 @@ /area/hallway/primary/central) "bhc" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -25609,13 +24190,9 @@ /area/science/robotics/mechbay) "bhl" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -25629,8 +24206,6 @@ /area/science/robotics/mechbay) "bhm" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -25646,18 +24221,12 @@ /area/science/robotics/mechbay) "bhn" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -25667,8 +24236,6 @@ /area/science/robotics/mechbay) "bho" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -25682,8 +24249,6 @@ req_access_txt = "29" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -25693,13 +24258,9 @@ /area/maintenance/department/cargo) "bhq" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -25714,8 +24275,6 @@ req_access_txt = "48" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -25728,13 +24287,9 @@ /area/maintenance/department/cargo) "bhs" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -25750,8 +24305,6 @@ "bht" = ( /obj/structure/closet/secure_closet/miner, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -25797,13 +24350,9 @@ /area/shuttle/labor) "bhz" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment, @@ -25812,8 +24361,6 @@ /area/maintenance/department/cargo) "bhA" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/grille/broken, @@ -25821,8 +24368,6 @@ /area/maintenance/department/cargo) "bhB" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plating, @@ -25858,8 +24403,6 @@ /area/crew_quarters/lounge) "bhH" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/carpet, @@ -25886,8 +24429,6 @@ /area/hallway/primary/central) "bhK" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -25957,8 +24498,6 @@ /area/science/robotics/mechbay) "bhS" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -26030,16 +24569,12 @@ "bic" = ( /obj/effect/landmark/start/assistant, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/carpet, /area/crew_quarters/lounge) "bid" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/carpet, @@ -26049,8 +24584,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/grimy, @@ -26195,8 +24728,6 @@ /area/science/robotics/mechbay) "bix" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/decal/cleanable/robot_debris{ @@ -26206,8 +24737,6 @@ /area/maintenance/department/cargo) "biy" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/small{ @@ -26217,13 +24746,9 @@ /area/maintenance/department/cargo) "biz" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -26237,8 +24762,6 @@ /area/maintenance/department/cargo) "biA" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -26252,13 +24775,9 @@ /area/maintenance/department/cargo) "biB" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/junction{ @@ -26275,8 +24794,6 @@ /area/maintenance/department/cargo) "biC" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -26395,8 +24912,6 @@ /area/hallway/primary/central) "biP" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -26575,8 +25090,6 @@ /area/maintenance/department/cargo) "bjy" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -26590,8 +25103,6 @@ /area/maintenance/department/cargo) "bjz" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -26607,8 +25118,6 @@ /area/maintenance/department/cargo) "bjA" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -26634,8 +25143,6 @@ /area/maintenance/department/cargo) "bjD" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -26645,8 +25152,6 @@ /area/maintenance/department/cargo) "bjE" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -26690,8 +25195,6 @@ "bjM" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -26751,8 +25254,6 @@ dir = 9 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/black, @@ -26765,7 +25266,6 @@ pixel_y = 24 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/black, @@ -26968,8 +25468,6 @@ "bkw" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -27014,8 +25512,6 @@ req_access_txt = "47" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -27062,8 +25558,6 @@ /area/maintenance/department/cargo) "bkK" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -27073,8 +25567,6 @@ /area/maintenance/department/cargo) "bkL" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/item/reagent_containers/food/snacks/deadmouse, @@ -27102,13 +25594,9 @@ "bkP" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/space, @@ -27160,8 +25648,6 @@ pixel_x = -28 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/freezer, @@ -27217,8 +25703,6 @@ /area/medical/morgue) "blf" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -27467,13 +25951,9 @@ sortType = 14 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -27491,7 +25971,6 @@ pixel_y = 25 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/green/side{ @@ -27565,15 +26044,12 @@ pixel_y = 25 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/engine, /area/science/explab) "blU" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment, @@ -27628,8 +26104,6 @@ /area/science/xenobiology) "bma" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -27652,8 +26126,6 @@ /area/hallway/secondary/entry) "bmd" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating{ @@ -27663,8 +26135,6 @@ /area/maintenance/department/engine) "bme" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/spawner/lootdrop/maintenance, @@ -27675,16 +26145,12 @@ /area/maintenance/department/engine) "bmf" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/department/engine) "bmg" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance{ @@ -27709,24 +26175,18 @@ pixel_y = -24 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/freezer, /area/storage/emergency/port) "bmi" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -27741,8 +26201,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/freezer, @@ -27810,8 +26268,7 @@ pixel_x = -25 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/camera{ c_tag = "Medbay Security Post"; @@ -27825,8 +26282,6 @@ /area/security/checkpoint/medical) "bmt" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -27944,8 +26399,6 @@ "bmP" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -28181,8 +26634,6 @@ /area/hallway/secondary/entry) "bnu" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating{ @@ -28202,8 +26653,6 @@ req_one_access_txt = "5;9" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -28260,8 +26709,6 @@ req_access_txt = "63" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -28368,8 +26815,6 @@ "bnR" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -28561,8 +27006,6 @@ /area/hallway/secondary/entry) "boq" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -28602,8 +27045,6 @@ /area/medical/genetics) "box" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -28664,8 +27105,6 @@ /area/medical/medbay/central) "boF" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -29008,8 +27447,6 @@ "bpu" = ( /obj/effect/spawner/lootdrop/maintenance, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -29055,8 +27492,6 @@ /area/medical/genetics) "bpA" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -29089,8 +27524,6 @@ /area/medical/medbay/zone3) "bpE" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -29100,8 +27533,6 @@ /area/medical/medbay/zone3) "bpF" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -29117,8 +27548,6 @@ req_access_txt = "6" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -29128,8 +27557,6 @@ /area/medical/morgue) "bpH" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -29139,8 +27566,6 @@ /area/medical/morgue) "bpI" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -29148,8 +27573,6 @@ /area/medical/morgue) "bpJ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light{ @@ -29163,13 +27586,9 @@ /area/medical/morgue) "bpK" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -29180,8 +27599,6 @@ "bpM" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/centcom{ @@ -29199,13 +27616,9 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/whiteblue/side{ @@ -29214,8 +27627,6 @@ /area/medical/medbay/central) "bpO" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -29393,8 +27804,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel, @@ -29404,8 +27813,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -29416,8 +27823,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel, @@ -29435,15 +27840,12 @@ pixel_x = -25 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plasteel/black, /area/science/server) "bqm" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, @@ -29529,20 +27931,17 @@ /area/science/xenobiology) "bqy" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/shieldwallgen/xenobiologyaccess, /turf/open/floor/plating, /area/science/xenobiology) "bqz" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/door/poddoor/preopen{ @@ -29553,12 +27952,10 @@ /area/science/xenobiology) "bqA" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/door/poddoor/preopen{ id = "misclab"; @@ -29574,8 +27971,6 @@ req_access_txt = "55" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/poddoor/preopen{ @@ -29587,12 +27982,10 @@ "bqC" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/door/poddoor/preopen{ id = "misclab"; @@ -29603,7 +27996,6 @@ /area/science/xenobiology) "bqD" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/door/poddoor/preopen{ @@ -29612,19 +28004,15 @@ }, /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/engine, /area/science/xenobiology) "bqE" = ( /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/shieldwallgen/xenobiologyaccess, @@ -29641,8 +28029,7 @@ }, /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/disposalpipe/segment, /turf/open/floor/engine, @@ -29660,8 +28047,6 @@ name = "containment blast door" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/engine, @@ -29673,12 +28058,9 @@ }, /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/engine, @@ -29690,8 +28072,7 @@ }, /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/disposalpipe/segment, /turf/open/floor/engine, @@ -29709,8 +28090,6 @@ name = "containment blast door" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/engine, @@ -29722,20 +28101,15 @@ }, /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/engine, /area/science/xenobiology) "bqM" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -29780,9 +28154,7 @@ pixel_x = 24 }, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, /turf/open/floor/plasteel/neutral/corner, @@ -29823,13 +28195,9 @@ "bqX" = ( /obj/machinery/holopad, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -29841,8 +28209,6 @@ /area/medical/genetics) "bqY" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/sortjunction{ @@ -29854,8 +28220,6 @@ /area/medical/genetics) "bqZ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -29872,8 +28236,6 @@ req_one_access_txt = "5;9" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -29887,8 +28249,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whiteblue/side{ @@ -29897,18 +28257,12 @@ /area/medical/medbay/zone3) "brc" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -29927,7 +28281,6 @@ pixel_x = 24 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/whiteblue/corner{ @@ -30111,8 +28464,6 @@ /area/science/robotics/lab) "brx" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -30199,8 +28550,6 @@ /area/science/server) "brE" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -30366,8 +28715,6 @@ /area/science/xenobiology) "brY" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/binary/pump{ @@ -30422,8 +28769,6 @@ layer = 2.9 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -30455,8 +28800,6 @@ layer = 2.9 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -30470,8 +28813,6 @@ req_one_access_txt = "12; 55" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -30516,8 +28857,6 @@ /area/hallway/secondary/entry) "bsm" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/camera{ @@ -30574,8 +28913,6 @@ /area/medical/genetics) "bst" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -30615,8 +28952,6 @@ /area/medical/medbay/zone3) "bsy" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -30797,9 +29132,7 @@ pixel_x = 26 }, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plasteel/white, /area/science/explab) @@ -30830,8 +29163,6 @@ /area/science/robotics/lab) "bsX" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -30911,8 +29242,6 @@ req_access_txt = "30" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -31024,8 +29353,6 @@ /area/science/xenobiology) "btu" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -31056,8 +29383,6 @@ /area/science/xenobiology) "btx" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -31086,8 +29411,6 @@ /area/science/xenobiology) "btz" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -31115,8 +29438,6 @@ /area/science/xenobiology) "btB" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -31209,8 +29530,6 @@ /area/hallway/secondary/entry) "btN" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ @@ -31220,8 +29539,6 @@ /area/hallway/secondary/entry) "btO" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance{ @@ -31234,8 +29551,6 @@ /area/maintenance/department/engine) "btP" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ @@ -31248,13 +29563,9 @@ dir = 10 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -31288,8 +29599,6 @@ /area/medical/genetics) "btW" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -31481,8 +29790,6 @@ /area/science/explab) "bus" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/camera{ @@ -31518,8 +29825,6 @@ "buv" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -31543,8 +29848,6 @@ "bux" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -31645,8 +29948,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/black, @@ -31656,8 +29957,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -31670,8 +29969,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -31684,8 +29981,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black, @@ -31695,18 +29990,12 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black, @@ -31716,18 +30005,12 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/black, @@ -31737,8 +30020,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -31751,18 +30032,12 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -31775,8 +30050,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -31794,8 +30067,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -31806,8 +30077,6 @@ /area/science/xenobiology) "buU" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -31815,8 +30084,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -31870,8 +30137,6 @@ "bvb" = ( /obj/machinery/atmospherics/pipe/simple/cyan/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -31885,8 +30150,6 @@ req_access_txt = "9" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -31909,8 +30172,6 @@ /area/medical/medbay/zone3) "bvg" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -32070,8 +30331,6 @@ /area/science/explab) "bvz" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/white, @@ -32105,9 +30364,7 @@ pixel_y = 25 }, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plasteel/green/side{ dir = 1 @@ -32127,8 +30384,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -32212,9 +30467,7 @@ pixel_y = 25 }, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 @@ -32237,8 +30490,6 @@ /area/science/research) "bvN" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -32406,8 +30657,6 @@ /area/science/xenobiology) "bwf" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -32451,8 +30700,7 @@ /area/science/xenobiology) "bwk" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/power/apc/highcap/five_k{ dir = 8; @@ -32470,13 +30718,9 @@ /area/science/xenobiology) "bwl" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -32534,8 +30778,6 @@ "bwt" = ( /obj/machinery/atmospherics/pipe/simple/cyan/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating{ @@ -32575,8 +30817,6 @@ /area/medical/genetics) "bwy" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -32626,16 +30866,12 @@ /area/medical/medbay/zone3) "bwC" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/white, @@ -32645,8 +30881,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment, @@ -32658,8 +30892,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/white, @@ -32669,16 +30901,12 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/whiteblue/side, /area/medical/sleeper) "bwG" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -32850,8 +31078,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/sortjunction{ @@ -32863,8 +31089,6 @@ /area/science/explab) "bxe" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/sortjunction{ @@ -32882,8 +31106,6 @@ /area/science/explab) "bxf" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -32899,13 +31121,9 @@ /area/science/explab) "bxg" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -32919,8 +31137,6 @@ "bxh" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -32939,8 +31155,6 @@ /area/science/explab) "bxi" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -32955,8 +31169,6 @@ /area/science/research/lobby) "bxj" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -32971,32 +31183,24 @@ icon_state = "pipe-j1" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/science/research/lobby) "bxl" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel, /area/science/research/lobby) "bxm" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -33013,16 +31217,12 @@ dir = 8 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -33033,8 +31233,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -33053,8 +31251,6 @@ }, /obj/machinery/door/firedoor/heavy, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -33071,8 +31267,6 @@ req_access_txt = "47" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -33082,8 +31276,6 @@ /area/science/research/lobby) "bxr" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, @@ -33094,8 +31286,6 @@ /area/science/research) "bxs" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -33113,8 +31303,6 @@ req_access_txt = "47" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -33124,13 +31312,9 @@ /area/science/research) "bxu" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -33141,8 +31325,6 @@ /area/science/research) "bxv" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -33152,8 +31334,6 @@ /area/science/research) "bxw" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -33161,8 +31341,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black, @@ -33175,8 +31353,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black, @@ -33187,16 +31363,12 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black, /area/science/research) "bxz" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black, @@ -33204,8 +31376,6 @@ "bxA" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/black, @@ -33359,8 +31529,6 @@ layer = 2.9 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -33398,8 +31566,6 @@ layer = 2.9 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -33433,8 +31599,6 @@ layer = 2.9 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -33468,8 +31632,6 @@ layer = 2.9 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -33483,8 +31645,6 @@ req_one_access_txt = "12; 55" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -33525,8 +31685,6 @@ "byc" = ( /obj/machinery/atmospherics/pipe/simple/cyan/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating{ @@ -33577,8 +31735,6 @@ /area/medical/genetics) "byi" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -33622,8 +31778,6 @@ /area/medical/medbay/zone3) "bym" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -33656,8 +31810,6 @@ req_access_txt = "5" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -33703,8 +31855,7 @@ pixel_x = -24 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/whiteyellow/side{ @@ -33713,8 +31864,6 @@ /area/medical/chemistry) "byx" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment, @@ -33809,8 +31958,6 @@ "byG" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -33857,8 +32004,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -34003,8 +32148,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -34092,8 +32235,7 @@ }, /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/disposalpipe/segment, /turf/open/floor/engine, @@ -34111,8 +32253,6 @@ req_access_txt = "55" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/engine, @@ -34124,7 +32264,6 @@ }, /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable, @@ -34137,8 +32276,7 @@ }, /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/disposalpipe/segment, /turf/open/floor/engine, @@ -34156,8 +32294,6 @@ req_access_txt = "55" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/engine, @@ -34170,7 +32306,6 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/engine, @@ -34182,8 +32317,7 @@ }, /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/disposalpipe/segment, /turf/open/floor/engine, @@ -34201,8 +32335,6 @@ req_access_txt = "55" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/engine, @@ -34214,7 +32346,6 @@ }, /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable, @@ -34227,8 +32358,7 @@ }, /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/disposalpipe/segment, /turf/open/floor/engine, @@ -34246,8 +32376,6 @@ req_access_txt = "55" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/engine, @@ -34260,15 +32388,12 @@ /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/engine, /area/science/xenobiology) "bzw" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/light/small{ @@ -34281,8 +32406,6 @@ /area/maintenance/department/cargo) "bzx" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -34331,8 +32454,6 @@ /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light/small{ @@ -34380,8 +32501,6 @@ /area/medical/genetics) "bzJ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -34418,8 +32537,6 @@ /area/medical/medbay/zone3) "bzN" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -34448,8 +32565,6 @@ /area/medical/sleeper) "bzQ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -34573,8 +32688,6 @@ /area/medical/chemistry) "bAf" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -34670,8 +32783,6 @@ /area/science/explab) "bAp" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/window{ @@ -34741,8 +32852,6 @@ "bAw" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -34783,8 +32892,6 @@ "bAD" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -34839,8 +32946,6 @@ "bAM" = ( /obj/machinery/atmospherics/pipe/simple/cyan/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/extinguisher, @@ -34899,8 +33004,6 @@ /area/medical/genetics) "bAT" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -34943,8 +33046,6 @@ req_access_txt = "39" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/doorButtons/access_button{ @@ -34965,8 +33066,6 @@ /obj/effect/turf_decal/stripes/corner, /obj/structure/chair, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/white, @@ -35060,8 +33159,6 @@ req_access_txt = "5; 33" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -35095,7 +33192,6 @@ pixel_x = -25 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plasteel/darkpurple/side{ @@ -35192,8 +33288,6 @@ "bBz" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -35260,8 +33354,6 @@ /area/science/research) "bBI" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -35323,8 +33415,7 @@ /area/science/mixing) "bBQ" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/power/apc{ dir = 1; @@ -35426,8 +33517,6 @@ /area/medical/genetics) "bCc" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/whitepurple/corner{ @@ -35436,8 +33525,6 @@ /area/medical/genetics) "bCd" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/white, @@ -35449,7 +33536,6 @@ pixel_x = 27 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/whitepurple/side{ @@ -35470,8 +33556,6 @@ /area/medical/virology) "bCg" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -35611,8 +33695,6 @@ /area/crew_quarters/heads/cmo) "bCv" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/sortjunction{ @@ -35631,8 +33713,6 @@ req_access_txt = "40" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -35645,8 +33725,6 @@ /area/maintenance/department/engine) "bCx" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -35662,13 +33740,9 @@ /area/maintenance/department/engine) "bCy" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/sortjunction{ @@ -35681,8 +33755,6 @@ /area/maintenance/department/engine) "bCz" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -35695,8 +33767,6 @@ /area/maintenance/department/engine) "bCA" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/small{ @@ -35712,8 +33782,6 @@ /area/maintenance/department/engine) "bCB" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -35842,8 +33910,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -35885,8 +33951,6 @@ /area/science/mixing) "bDa" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -35960,8 +34024,6 @@ /obj/effect/decal/cleanable/deadcockroach, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -36003,8 +34065,6 @@ /area/medical/virology) "bDp" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -36073,8 +34133,6 @@ /area/medical/exam_room) "bDz" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -36186,8 +34244,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/engine, @@ -36195,8 +34251,6 @@ "bDQ" = ( /obj/machinery/door/firedoor/heavy, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -36210,8 +34264,6 @@ /area/science/storage) "bDR" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -36223,24 +34275,18 @@ /area/science/research) "bDS" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/black, /area/science/research) "bDT" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -36257,8 +34303,6 @@ req_access_txt = "8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -36268,8 +34312,6 @@ /area/science/mixing) "bDV" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -36279,8 +34321,6 @@ /area/science/mixing) "bDW" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -36290,16 +34330,12 @@ /area/science/mixing) "bDX" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/white, /area/science/mixing) "bDY" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -36309,8 +34345,6 @@ /area/science/mixing) "bDZ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -36320,13 +34354,9 @@ /area/science/mixing) "bEa" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/stripes/line{ @@ -36386,8 +34416,6 @@ /area/science/mineral_storeroom) "bEh" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/trash/sosjerky, @@ -36432,8 +34460,6 @@ /area/maintenance/department/engine) "bEo" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ @@ -36443,8 +34469,6 @@ /area/maintenance/department/engine) "bEp" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/spawner/lootdrop/maintenance, @@ -36452,8 +34476,6 @@ /area/maintenance/department/engine) "bEq" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plating, @@ -36477,8 +34499,6 @@ /area/medical/virology) "bEt" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -36633,8 +34653,6 @@ /area/crew_quarters/heads/cmo) "bEI" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/closet, @@ -36651,8 +34669,6 @@ /area/medical/exam_room) "bEJ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/small{ @@ -36671,8 +34687,6 @@ /area/medical/exam_room) "bEK" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/button/door{ @@ -36696,8 +34710,6 @@ req_access_txt = "40" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -36707,14 +34719,10 @@ /area/medical/exam_room) "bEM" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -36843,8 +34851,6 @@ "bEX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/red/side, @@ -36858,7 +34864,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/red/side{ @@ -36894,8 +34899,6 @@ /area/science/storage) "bFd" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/engine, @@ -36964,8 +34967,6 @@ /area/science/mixing) "bFm" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/turf_decal/stripes/line{ @@ -36976,8 +34977,6 @@ "bFn" = ( /obj/machinery/atmospherics/pipe/simple/general/visible, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -36989,8 +34988,6 @@ /area/science/mixing) "bFo" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ @@ -37000,8 +34997,6 @@ "bFp" = ( /obj/machinery/atmospherics/pipe/simple/general/visible, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -37013,16 +35008,12 @@ /area/science/mixing) "bFq" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/closed/wall, /area/science/mixing) "bFr" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/closet/emcloset, @@ -37030,8 +35021,6 @@ /area/science/mineral_storeroom) "bFs" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/closet/firecloset, @@ -37040,8 +35029,6 @@ "bFt" = ( /obj/machinery/suit_storage_unit/rd, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light{ @@ -37055,8 +35042,6 @@ "bFu" = ( /obj/structure/ore_box, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -37065,8 +35050,6 @@ "bFv" = ( /obj/structure/ore_box, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/camera{ @@ -37084,8 +35067,6 @@ /area/science/mineral_storeroom) "bFw" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -37095,8 +35076,6 @@ /area/science/mineral_storeroom) "bFx" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light{ @@ -37109,8 +35088,6 @@ /area/science/mineral_storeroom) "bFy" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -37125,11 +35102,9 @@ pixel_y = 25 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -37143,8 +35118,6 @@ req_access_txt = "8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -37154,8 +35127,6 @@ /area/maintenance/department/cargo) "bFB" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/cigbutt/cigarbutt, @@ -37166,8 +35137,6 @@ /area/maintenance/department/cargo) "bFC" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/small{ @@ -37180,8 +35149,6 @@ /area/maintenance/department/cargo) "bFD" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -37208,8 +35175,6 @@ /area/maintenance/department/engine) "bFG" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ @@ -37263,8 +35228,6 @@ req_access_txt = "39" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/doorButtons/access_button{ @@ -37367,8 +35330,6 @@ /area/medical/exam_room) "bFY" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -37397,8 +35358,6 @@ req_access_txt = "63" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -37451,8 +35410,6 @@ /area/science/storage) "bGi" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/camera{ @@ -37670,8 +35627,6 @@ /area/maintenance/department/engine) "bGN" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, @@ -37721,8 +35676,6 @@ /area/medical/virology) "bGT" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -37735,7 +35688,6 @@ pixel_y = 24 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, @@ -37926,8 +35878,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/purple/side{ @@ -37967,8 +35917,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -38001,8 +35949,6 @@ /area/science/storage) "bHv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/sign/poster/random{ @@ -38405,8 +36351,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel, @@ -38417,8 +36361,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -38432,8 +36374,6 @@ name = "Research Division" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/delivery, @@ -38444,8 +36384,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -38458,8 +36396,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -38471,16 +36407,12 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/science/research/lobby) "bIz" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -38488,13 +36420,9 @@ "bIA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel, @@ -38502,16 +36430,12 @@ "bIC" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/science/research/lobby) "bID" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -38532,7 +36456,6 @@ pixel_x = -25 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/effect/turf_decal/stripes/line, @@ -38540,13 +36463,9 @@ /area/science/storage) "bIG" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line, @@ -38555,8 +36474,6 @@ "bIH" = ( /obj/machinery/light, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line, @@ -38564,8 +36481,6 @@ /area/science/storage) "bII" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/sign/nosmoking_2{ @@ -38869,8 +36784,6 @@ /area/medical/surgery) "bJy" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -38886,8 +36799,6 @@ req_access_txt = "45" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -38897,13 +36808,9 @@ /area/maintenance/department/engine) "bJA" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment, @@ -38914,8 +36821,6 @@ /area/maintenance/department/engine) "bJB" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -39030,8 +36935,6 @@ req_access_txt = "24" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -39158,16 +37061,12 @@ "bKb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/black, /area/chapel/dock) "bKc" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black, @@ -39179,7 +37078,6 @@ pixel_x = 24 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -39401,8 +37299,6 @@ /area/medical/surgery) "bKH" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -39418,8 +37314,6 @@ "bKJ" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -39474,7 +37368,6 @@ pixel_x = -24 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /turf/open/floor/plasteel/yellow/side{ @@ -39490,8 +37383,6 @@ pixel_y = 22 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/yellow/side{ @@ -39510,8 +37401,6 @@ pixel_y = 30 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/yellow/side{ @@ -39528,8 +37417,6 @@ pixel_y = 26 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light{ @@ -39547,8 +37434,6 @@ icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/yellow/side{ @@ -39698,8 +37583,6 @@ "bLo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -40054,8 +37937,6 @@ /area/engine/atmos) "bMg" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -40161,8 +38042,6 @@ /area/space) "bMs" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -40332,8 +38211,6 @@ /area/medical/surgery) "bMS" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -40476,8 +38353,6 @@ dir = 6 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -40562,8 +38437,6 @@ dir = 9 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -40745,13 +38618,9 @@ /area/maintenance/department/engine) "bNY" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment, @@ -40762,8 +38631,6 @@ /area/maintenance/department/engine) "bNZ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -40776,8 +38643,6 @@ /area/maintenance/department/engine) "bOa" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -40790,13 +38655,9 @@ /area/hallway/primary/aft) "bOb" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -40914,8 +38775,6 @@ on = 0 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -40972,8 +38831,6 @@ }) "bOx" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault, @@ -41013,8 +38870,6 @@ /area/medical/virology) "bOF" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -41025,8 +38880,6 @@ /area/maintenance/department/engine) "bOG" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -41036,8 +38889,6 @@ /area/maintenance/department/engine) "bOH" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -41048,8 +38899,6 @@ /area/maintenance/department/engine) "bOI" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -41062,8 +38911,6 @@ /area/maintenance/department/engine) "bOJ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -41232,8 +39079,6 @@ "bPc" = ( /obj/machinery/atmospherics/pipe/manifold4w/yellow/visible, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -41306,8 +39151,6 @@ opacity = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -41342,8 +39185,6 @@ /area/maintenance/department/engine) "bPs" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ @@ -41356,8 +39197,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plating, @@ -41440,8 +39279,6 @@ /area/hallway/primary/aft) "bPH" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/holopad, @@ -41532,8 +39369,6 @@ "bPV" = ( /obj/machinery/atmospherics/pipe/simple/yellow/visible, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -41603,8 +39438,6 @@ }) "bQf" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/asteroid{ @@ -41817,8 +39650,7 @@ pixel_y = 1 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/yellow/corner{ @@ -41827,13 +39659,9 @@ /area/hallway/primary/aft) "bQC" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/navbeacon{ @@ -41924,7 +39752,7 @@ "bQN" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 1; - filter_type = /datum/gas/nitrous_oxide; + filter_type = "n2o"; on = 1 }, /turf/open/floor/plasteel, @@ -41974,8 +39802,6 @@ /area/maintenance/department/engine) "bQU" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -41987,8 +39813,6 @@ "bQV" = ( /obj/machinery/atmospherics/pipe/simple/cyan/hidden, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -41998,8 +39822,6 @@ /area/maintenance/department/engine) "bQW" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -42014,13 +39836,9 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -42031,8 +39849,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plating, @@ -42444,8 +40260,6 @@ /area/storage/tech) "bRT" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -42459,8 +40273,6 @@ req_access_txt = "23" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -42470,8 +40282,6 @@ /area/storage/tech) "bRV" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -42483,29 +40293,21 @@ /area/hallway/primary/aft) "bRW" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel, /area/hallway/primary/aft) "bRX" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/hallway/primary/aft) "bRY" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -42515,8 +40317,6 @@ /area/hallway/primary/aft) "bRZ" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel, @@ -42574,8 +40374,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -42796,8 +40594,6 @@ /area/storage/tech) "bSK" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -42835,8 +40631,6 @@ /area/hallway/primary/aft) "bSO" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -43066,8 +40860,7 @@ dir = 8 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/light, /obj/effect/turf_decal/stripes/line{ @@ -43077,7 +40870,6 @@ /area/engine/gravity_generator) "bTs" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/smes{ @@ -43214,8 +41006,6 @@ req_one_access_txt = "10;24" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -43351,7 +41141,7 @@ "bTU" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 1; - filter_type = /datum/gas/plasma; + filter_type = "plasma"; on = 1 }, /turf/open/floor/plasteel, @@ -43470,8 +41260,6 @@ /area/engine/engineering) "bUm" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -43559,8 +41347,6 @@ "bUw" = ( /obj/machinery/atmospherics/pipe/simple/yellow/visible, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/purple/visible{ @@ -43730,20 +41516,16 @@ /area/storage/tech) "bUP" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/closed/wall, /area/engine/engine_smes) "bUQ" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/power/smes/engineering, /turf/open/floor/plasteel/darkyellow/side{ @@ -43752,12 +41534,10 @@ /area/engine/engine_smes) "bUR" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/power/smes/engineering, /obj/machinery/camera{ @@ -43771,7 +41551,6 @@ /area/engine/engine_smes) "bUS" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/smes/engineering, @@ -43808,8 +41587,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/landmark/start/depsec/engineering, @@ -43820,8 +41597,6 @@ /area/security/checkpoint/engineering) "bUX" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -43837,8 +41612,6 @@ req_access_txt = "63" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -43848,8 +41621,6 @@ /area/security/checkpoint/engineering) "bUZ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -43863,13 +41634,9 @@ /area/engine/engineering) "bVa" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -43964,8 +41731,6 @@ /area/engine/atmos) "bVj" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/yellow/visible, @@ -44179,7 +41944,6 @@ pixel_x = 28 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/yellow/side{ @@ -44223,8 +41987,6 @@ }, /obj/item/storage/box/lights/mixed, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/airalarm{ @@ -44242,7 +42004,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/effect/turf_decal/stripes/line{ @@ -44268,8 +42029,7 @@ pixel_x = -24 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plasteel/red/side{ dir = 8 @@ -44277,8 +42037,6 @@ /area/security/checkpoint/engineering) "bVP" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -44310,8 +42068,6 @@ /area/engine/engineering) "bVT" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -44483,8 +42239,6 @@ "bWq" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -44568,13 +42322,9 @@ layer = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -44595,13 +42345,9 @@ /area/engine/engine_smes) "bWw" = ( /obj/structure/cable/yellow{ - icon_state = "1-4"; - d1 = 1; - d2 = 4 + icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -44611,18 +42357,12 @@ /area/engine/engine_smes) "bWx" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/landmark/start/station_engineer, @@ -44633,8 +42373,6 @@ /area/engine/engine_smes) "bWy" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -44696,8 +42434,6 @@ }, /obj/machinery/door/firedoor, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -44738,7 +42474,7 @@ "bWK" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 4; - filter_type = /datum/gas/oxygen; + filter_type = "o2"; on = 1 }, /turf/open/floor/plasteel, @@ -44777,7 +42513,7 @@ "bWQ" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 1; - filter_type = /datum/gas/carbon_dioxide; + filter_type = "co2"; on = 1 }, /turf/open/floor/plasteel, @@ -44816,8 +42552,6 @@ opacity = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -44875,8 +42609,6 @@ /area/crew_quarters/heads/chief) "bXi" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -44933,16 +42665,12 @@ /area/engine/engine_smes) "bXm" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, /area/engine/engine_smes) "bXn" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -44959,8 +42687,6 @@ req_access_txt = "10" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -45054,8 +42780,6 @@ /area/engine/atmos) "bXD" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/cyan/visible{ @@ -45069,8 +42793,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/yellow/side, @@ -45091,8 +42813,6 @@ /area/engine/atmos) "bXI" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -45163,8 +42883,6 @@ /area/maintenance/department/engine) "bXW" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -45175,8 +42893,6 @@ /area/maintenance/department/engine) "bXX" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -45200,8 +42916,6 @@ req_access_txt = "56" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -45217,8 +42931,7 @@ /area/engine/engineering) "bYd" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/modular_computer/console/preset/engineering, /turf/open/floor/plasteel/black, @@ -45239,8 +42952,6 @@ "bYg" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -45253,8 +42964,6 @@ req_one_access_txt = "0" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -45285,8 +42994,6 @@ /area/engine/engineering) "bYn" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -45333,8 +43040,6 @@ dir = 9 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/atmos{ @@ -45388,20 +43093,15 @@ pixel_y = 1 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plating, /area/maintenance/department/engine) "bYH" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -45417,8 +43117,6 @@ req_access_txt = "10" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -45428,8 +43126,6 @@ /area/maintenance/department/engine) "bYJ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -45442,8 +43138,6 @@ /area/engine/engineering) "bYK" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -45457,13 +43151,9 @@ /area/engine/engineering) "bYL" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/sortjunction{ @@ -45476,13 +43166,9 @@ /area/engine/engineering) "bYM" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -45495,8 +43181,6 @@ /area/engine/engineering) "bYN" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -45518,8 +43202,6 @@ /area/engine/engineering) "bYO" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -45532,13 +43214,9 @@ /area/engine/engineering) "bYP" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -45551,8 +43229,6 @@ /area/engine/engineering) "bYQ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -45565,8 +43241,6 @@ /area/engine/engineering) "bYR" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -45586,8 +43260,6 @@ /area/engine/engineering) "bYS" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -45603,13 +43275,9 @@ /area/engine/engineering) "bYT" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -45625,13 +43293,9 @@ /area/engine/engineering) "bYU" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -45648,8 +43312,6 @@ /area/engine/engineering) "bYV" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -45663,8 +43325,6 @@ /area/engine/engineering) "bYW" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -45680,8 +43340,6 @@ /area/engine/engineering) "bYX" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -45701,8 +43359,6 @@ /area/engine/engineering) "bYY" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -45725,13 +43381,9 @@ /area/engine/engineering) "bYZ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/sortjunction{ @@ -45746,8 +43398,6 @@ /area/engine/engineering) "bZa" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -45758,8 +43408,6 @@ dir = 9 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -45767,8 +43415,6 @@ "bZb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -45780,7 +43426,6 @@ pixel_x = 28 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel, @@ -45802,7 +43447,6 @@ pixel_x = -24 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/airalarm{ @@ -45818,20 +43462,15 @@ /area/maintenance/disposal/incinerator) "bZg" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/power/terminal{ dir = 4 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plasteel/black, @@ -45839,7 +43478,6 @@ "bZh" = ( /obj/machinery/power/smes, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/darkyellow/side{ @@ -45877,8 +43515,6 @@ /area/chapel/main/monastery) "bZn" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/carpet, @@ -45959,8 +43595,6 @@ /area/engine/engineering) "bZB" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -45984,8 +43618,6 @@ "bZE" = ( /obj/machinery/holopad, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -46000,8 +43632,6 @@ /area/engine/engineering) "bZG" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -46079,8 +43709,6 @@ /area/maintenance/disposal/incinerator) "bZP" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -46227,8 +43855,6 @@ /area/engine/engineering) "caj" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -46282,8 +43908,6 @@ /area/engine/engineering) "caq" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/stripes/line, @@ -46291,8 +43915,6 @@ /area/engine/engineering) "car" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/camera{ @@ -46306,8 +43928,6 @@ /area/engine/engineering) "cas" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/stripes/line, @@ -46356,8 +43976,6 @@ /obj/item/stock_parts/cell/high/plus, /obj/item/stock_parts/cell/high/plus, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/stack/cable_coil, @@ -46466,16 +44084,12 @@ /area/maintenance/disposal/incinerator) "caJ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/black, /area/maintenance/disposal/incinerator) "caK" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, @@ -46485,8 +44099,6 @@ /area/maintenance/disposal/incinerator) "caL" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass{ @@ -46504,16 +44116,12 @@ /area/maintenance/disposal/incinerator) "caM" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/engine, /area/maintenance/disposal/incinerator) "caN" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass{ @@ -46531,8 +44139,6 @@ /area/maintenance/disposal/incinerator) "caO" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/igniter{ @@ -46545,12 +44151,10 @@ /area/maintenance/disposal/incinerator) "caP" = ( /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/yellow{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/power/compressor{ comp_id = "incineratorturbine"; @@ -46566,7 +44170,6 @@ /area/maintenance/disposal/incinerator) "caQ" = ( /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/turbine{ @@ -46664,8 +44267,6 @@ /obj/item/book/manual/wiki/engineering_construction, /obj/item/clothing/gloves/color/yellow, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -46719,8 +44320,6 @@ name = "radiation shutters" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/bot{ @@ -46755,8 +44354,6 @@ /obj/structure/table, /obj/machinery/cell_charger, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -46894,8 +44491,6 @@ /obj/structure/table/wood, /obj/item/storage/book/bible, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/carpet, @@ -46976,8 +44571,6 @@ /area/engine/engineering) "ccb" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -47004,8 +44597,6 @@ /area/engine/engineering) "cce" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -47069,8 +44660,6 @@ pixel_x = -2 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -47136,8 +44725,6 @@ /area/chapel/office) "ccE" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -47227,8 +44814,6 @@ /area/engine/engineering) "ccS" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -47236,21 +44821,15 @@ /area/engine/engineering) "ccT" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel, /area/engine/engineering) "ccU" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel, @@ -47274,8 +44853,6 @@ /area/engine/engineering) "ccX" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/turf_decal/stripes/line{ @@ -47285,13 +44862,9 @@ /area/engine/engineering) "ccY" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plating, @@ -47306,8 +44879,6 @@ /area/engine/engineering) "cdb" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -47323,29 +44894,21 @@ /area/engine/engineering) "cdd" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/engine/engineering) "cde" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel, /area/engine/engineering) "cdf" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -47540,8 +45103,6 @@ /area/engine/engineering) "cdO" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -47581,8 +45142,6 @@ req_access_txt = "11" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -47639,8 +45198,6 @@ /area/engine/engineering) "cdZ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line, @@ -47668,8 +45225,6 @@ /area/maintenance/disposal/incinerator) "cee" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/small{ @@ -47679,8 +45234,6 @@ /area/chapel/office) "cef" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/asteroid, @@ -47692,8 +45245,6 @@ req_access_txt = "22" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -47714,8 +45265,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black, @@ -47777,8 +45326,6 @@ /area/engine/engineering) "ces" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/external{ @@ -47812,8 +45359,6 @@ }, /obj/item/crowbar, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -47841,8 +45386,6 @@ /area/engine/engineering) "cez" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/external{ @@ -47892,8 +45435,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -47903,8 +45444,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/black, @@ -47979,8 +45518,6 @@ /area/engine/engineering) "ceX" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/sign/securearea{ @@ -48013,8 +45550,6 @@ /area/engine/engineering) "cfb" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line{ @@ -48036,8 +45571,6 @@ /area/engine/engineering) "cff" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/sign/securearea{ @@ -48069,8 +45602,6 @@ opacity = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/black, @@ -48131,8 +45662,6 @@ /area/engine/engineering) "cft" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/external{ @@ -48146,9 +45675,7 @@ /area/engine/engineering) "cfu" = ( /obj/structure/cable/yellow{ - icon_state = "1-4"; - d1 = 1; - d2 = 4 + icon_state = "1-4" }, /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -48157,8 +45684,6 @@ /area/engine/engineering) "cfv" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line, @@ -48167,8 +45692,6 @@ "cfw" = ( /obj/item/wirecutters, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/turf_decal/stripes/line, @@ -48186,8 +45709,6 @@ /area/engine/engineering) "cfz" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/external{ @@ -48204,8 +45725,6 @@ /area/chapel/main/monastery) "cfD" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -48227,7 +45746,6 @@ pixel_y = 24 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plasteel/vault{ @@ -48306,8 +45824,6 @@ "cfR" = ( /obj/structure/grille, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -48317,8 +45833,6 @@ /area/engine/engineering) "cfS" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -48344,8 +45858,6 @@ "cfW" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -48360,8 +45872,6 @@ /area/engine/engineering) "cfY" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plating/airless, @@ -48369,8 +45879,6 @@ "cfZ" = ( /obj/structure/grille, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plating/airless, @@ -48471,45 +45979,33 @@ "cgt" = ( /obj/structure/grille, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating/airless, /area/engine/engineering) "cgu" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating/airless, /area/engine/engineering) "cgv" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating/airless, /area/engine/engineering) "cgw" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - icon_state = "1-4"; - d1 = 1; - d2 = 4 + icon_state = "1-4" }, /turf/open/floor/plating/airless, /area/engine/engineering) "cgx" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plating/airless, @@ -48600,13 +46096,9 @@ "cgR" = ( /obj/structure/grille, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plating/airless, @@ -48617,7 +46109,6 @@ state = 2 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating/airless, @@ -48630,8 +46121,6 @@ /area/engine/engineering) "cgU" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating/airless, @@ -48661,21 +46150,16 @@ state = 2 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plating/airless, /area/engine/engineering) "cha" = ( /obj/structure/grille, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plating/airless, @@ -48701,8 +46185,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -48715,8 +46197,6 @@ /area/hydroponics/garden/monastery) "chj" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/grass, @@ -48793,20 +46273,15 @@ /area/engine/engineering) "chw" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - icon_state = "1-4"; - d1 = 1; - d2 = 4 + icon_state = "1-4" }, /turf/open/floor/plating/airless, /area/engine/engineering) "chx" = ( /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/tesla_coil, @@ -48821,8 +46296,7 @@ /area/space/nearstation) "chz" = ( /obj/structure/cable/yellow{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/power/tesla_coil, /obj/structure/window/plasma/reinforced{ @@ -48832,13 +46306,9 @@ /area/engine/engineering) "chA" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plating/airless, @@ -48927,8 +46397,6 @@ /area/chapel/main/monastery) "chO" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/grille, @@ -48936,8 +46404,6 @@ /area/engine/engineering) "chP" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/grille, @@ -48949,15 +46415,12 @@ }, /obj/machinery/power/rad_collector/anchored, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating/airless, /area/engine/engineering) "chR" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/grille, @@ -48965,8 +46428,6 @@ /area/engine/engineering) "chS" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/grille, @@ -49044,8 +46505,6 @@ /area/space) "cih" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/grille, @@ -49118,8 +46577,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/grille, @@ -49147,8 +46604,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/grille, @@ -49180,8 +46635,6 @@ /area/chapel/main/monastery) "ciD" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -49255,8 +46708,6 @@ /area/chapel/main/monastery) "ciR" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -49418,16 +46869,12 @@ /area/hydroponics/garden/monastery) "cjs" = ( /obj/structure/cable/yellow{ - icon_state = "1-4"; - d1 = 1; - d2 = 4 + icon_state = "1-4" }, /turf/open/floor/plating/airless, /area/engine/engineering) "cjt" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plating/airless, @@ -49491,7 +46938,6 @@ port_direction = 4; preferred_direction = 1; roundstart_move = "whiteship_away"; - timid = null; width = 9 }, /obj/docking_port/stationary{ @@ -49556,8 +47002,6 @@ /area/library) "cjR" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -49566,8 +47010,6 @@ "cjT" = ( /obj/structure/grille, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plating/airless, @@ -49575,8 +47017,6 @@ "cjU" = ( /obj/structure/grille, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plating/airless, @@ -49667,8 +47107,7 @@ }, /obj/structure/cable, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plating, /area/maintenance/department/chapel/monastery) @@ -49825,8 +47264,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ @@ -50298,8 +47735,6 @@ /area/tcommsat/computer) "cmi" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -50325,8 +47760,6 @@ req_access_txt = "19; 61" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -50344,7 +47777,6 @@ pixel_y = 25 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -50387,8 +47819,6 @@ /area/tcommsat/computer) "cmp" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply, @@ -50459,8 +47889,6 @@ req_access_txt = "61" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -50492,8 +47920,6 @@ /area/space) "cmA" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/vault{ @@ -50505,8 +47931,6 @@ /area/tcommsat/server) "cmC" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/closed/wall/r_wall, @@ -50516,11 +47940,9 @@ charge = 5e+006 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/circuit/telecomms/mainframe, @@ -50528,8 +47950,6 @@ "cmE" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -50541,8 +47961,6 @@ req_access_txt = "61" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/vault{ @@ -50873,8 +48291,7 @@ pixel_y = 25 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /obj/structure/sign/poster/official/random{ pixel_x = 32 @@ -50970,8 +48387,6 @@ /area/hallway/primary/central) "cou" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -50998,8 +48413,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel/blue/corner{ @@ -51011,8 +48424,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/camera{ @@ -51025,8 +48436,6 @@ /area/hallway/primary/central) "coF" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -51039,8 +48448,6 @@ /area/maintenance/department/crew_quarters/bar) "coG" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -51054,8 +48461,6 @@ /area/maintenance/department/crew_quarters/bar) "coH" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -51068,8 +48473,6 @@ /area/maintenance/department/crew_quarters/bar) "coJ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -51098,8 +48501,6 @@ /area/hallway/primary/central) "coW" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, @@ -51532,8 +48933,6 @@ "cqv" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -51543,8 +48942,6 @@ /area/science/research/lobby) "cqw" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, @@ -51552,8 +48949,6 @@ /area/science/research/lobby) "cqx" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -51620,8 +49015,6 @@ }, /obj/effect/landmark/start/chief_engineer, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel, @@ -51863,8 +49256,7 @@ pixel_x = 24 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plasteel/black, /area/chapel/office) @@ -51911,8 +49303,6 @@ /area/chapel/office) "csh" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, @@ -51974,8 +49364,6 @@ /area/chapel/office) "csr" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -52041,24 +49429,18 @@ /area/chapel/office) "csF" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/darkred, /area/chapel/office) "csG" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/darkred, /area/chapel/office) "csI" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/centcom{ @@ -52070,8 +49452,6 @@ /area/chapel/office) "csM" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/camera{ @@ -52083,8 +49463,6 @@ /area/chapel/office) "csN" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, @@ -52092,24 +49470,18 @@ /area/chapel/main/monastery) "csO" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel/black, /area/chapel/main/monastery) "csQ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -52239,8 +49611,6 @@ /area/chapel/office) "ctK" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -52253,16 +49623,12 @@ /area/chapel/main/monastery) "ctL" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ @@ -52481,8 +49847,6 @@ /area/chapel/main/monastery) "cuz" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -52549,9 +49913,7 @@ pixel_x = -24 }, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/light/small{ dir = 8 @@ -52607,13 +49969,9 @@ /area/chapel/main/monastery) "cuV" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -52623,8 +49981,6 @@ /area/chapel/main/monastery) "cuW" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -52632,8 +49988,6 @@ /area/chapel/main/monastery) "cuX" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock{ @@ -52763,8 +50117,6 @@ /area/chapel/main/monastery) "cvu" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -52823,8 +50175,6 @@ /area/chapel/main/monastery) "cvE" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -52835,8 +50185,6 @@ /area/chapel/main/monastery) "cvF" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -52848,13 +50196,9 @@ /area/chapel/main/monastery) "cvH" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -52867,8 +50211,6 @@ "cvI" = ( /obj/machinery/light/small, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -52887,8 +50229,6 @@ "cvJ" = ( /obj/machinery/light/small, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -52904,8 +50244,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/vault{ @@ -52963,24 +50301,18 @@ /area/chapel/main/monastery) "cvX" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/closed/wall/mineral/iron, /area/maintenance/department/chapel/monastery) "cvY" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/closed/wall/mineral/iron, /area/maintenance/department/chapel/monastery) "cvZ" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/closed/wall/mineral/iron, @@ -52990,8 +50322,6 @@ /area/maintenance/department/chapel/monastery) "cwc" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance{ @@ -53010,8 +50340,6 @@ name = "Library" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -53042,8 +50370,6 @@ "cwm" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -53053,8 +50379,6 @@ /area/maintenance/department/chapel/monastery) "cwn" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/storage/toolbox/mechanical, @@ -53073,12 +50397,10 @@ pixel_y = 24 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -53088,8 +50410,6 @@ "cwp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -53102,7 +50422,6 @@ icon_state = "plant-22" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -53811,8 +51130,6 @@ /area/library) "cBi" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/power/apc{ @@ -53821,7 +51138,6 @@ pixel_y = 24 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/open/floor/plating, @@ -53913,8 +51229,6 @@ /area/maintenance/department/crew_quarters/dorms) "cBx" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -53933,8 +51247,6 @@ /area/maintenance/department/crew_quarters/dorms) "cBy" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -54001,7 +51313,7 @@ /obj/effect/spawner/structure/window/shuttle, /turf/open/floor/plating, /area/shuttle/escape) -"YXG" = ( +"cBO" = ( /obj/docking_port/stationary{ dheight = 9; dir = 2; @@ -54014,79 +51326,31 @@ }, /turf/open/space/basic, /area/space) -"YXH" = ( +"cBP" = ( /obj/machinery/smoke_machine, /turf/open/floor/plasteel/white, /area/medical/chemistry) -"YXI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Singularity"; - name = "radiation shutters" - }, -/obj/effect/turf_decal/bot{ - dir = 2 - }, -/turf/open/floor/plasteel/black, -/area/engine/engineering) -"YXJ" = ( +"cBQ" = ( /obj/machinery/power/rad_collector/anchored, /turf/open/floor/plating, /area/engine/engineering) -"YXK" = ( -/obj/machinery/power/rad_collector/anchored, -/turf/open/floor/plating, -/area/engine/engineering) -"YXL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"YXM" = ( +"cBR" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - icon_state = "1-4"; - d1 = 1; - d2 = 4 + icon_state = "1-4" }, /obj/item/tank/internals/plasma, /turf/open/floor/plating/airless, /area/engine/engineering) -"YXN" = ( +"cBS" = ( /obj/structure/window/plasma/reinforced{ dir = 8 }, /obj/machinery/power/rad_collector/anchored, /obj/structure/cable/yellow{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"YXO" = ( -/obj/structure/window/plasma/reinforced{ - dir = 8 - }, -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable/yellow{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"YXP" = ( -/obj/structure/window/plasma/reinforced{ - dir = 8 - }, -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable/yellow{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plating/airless, /area/engine/engineering) @@ -62877,7 +60141,7 @@ aaa aaa aaa aaa -aaa +cBO aaa aaa aaa @@ -63880,7 +61144,7 @@ aaa aaa aaa aaa -YXG +aaa aaa aaa aaa @@ -81758,7 +79022,7 @@ bOG bva bDi bXk -YXJ +cBQ cbX cdK bXk @@ -82015,7 +79279,7 @@ bOG bTE cae bXk -YXK +cBQ cbX cdK bXk @@ -83824,7 +81088,7 @@ cfU cgu cgU chw -YXM +cBR chw chw chw @@ -85324,7 +82588,7 @@ brl bsL bul bwU -YXH +cBP bsK bAg bpY @@ -85612,8 +82876,8 @@ bYi bYV bZA cdN -YXI -YXL +ccW +ceY cda cdV cex @@ -86651,11 +83915,11 @@ cfV cgv cfV chz -YXN +cBS chz -YXO +cBS chz -YXP +cBS chz cfV cfV @@ -110450,7 +107714,7 @@ aaa aaa aaa aaa -aaa +ajA aaa aaa aaa @@ -110959,7 +108223,7 @@ aaa aaa aaa aaa -ajA +aaa aaa aaa aaa diff --git a/_maps/map_files/debug/runtimestation.dmm b/_maps/map_files/debug/runtimestation.dmm index 399dc6427b..136e2b880e 100644 --- a/_maps/map_files/debug/runtimestation.dmm +++ b/_maps/map_files/debug/runtimestation.dmm @@ -53,8 +53,6 @@ "an" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/space, @@ -62,13 +60,9 @@ "ao" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/space, @@ -85,16 +79,13 @@ }, /obj/structure/closet/secure_closet/engineering_electrical, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plating, /area/engine/engineering) "aq" = ( /obj/machinery/computer/monitor, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plating, @@ -113,8 +104,7 @@ pixel_y = 23 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + icon_state = "0-4" }, /turf/open/floor/plasteel, /obj/effect/turf_decal/stripes/line{ @@ -128,12 +118,10 @@ pixel_y = 25 }, /obj/structure/cable{ - icon_state = "0-8"; - d2 = 8 + icon_state = "0-8" }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + icon_state = "0-2" }, /turf/open/floor/plasteel, /obj/effect/turf_decal/stripes/line{ @@ -176,18 +164,12 @@ "aA" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/space, @@ -195,8 +177,6 @@ "aB" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/space, @@ -204,29 +184,21 @@ "aC" = ( /obj/machinery/door/airlock, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/engine/engineering) "aD" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/engine/engineering) "aE" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plating, @@ -248,8 +220,6 @@ /area/engine/gravity_generator) "aH" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -308,8 +278,6 @@ "aQ" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/space, @@ -320,8 +288,6 @@ icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/space, @@ -336,13 +302,9 @@ /area/engine/engineering) "aT" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, @@ -354,16 +316,12 @@ req_one_access_txt = "0" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/engine/gravity_generator) "aV" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -430,8 +388,6 @@ /area/engine/engineering) "be" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -464,9 +420,7 @@ pixel_x = -24 }, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/light, /obj/structure/table, @@ -528,8 +482,6 @@ /area/engine/gravity_generator) "bs" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/closed/wall/r_wall, @@ -553,8 +505,6 @@ "bx" = ( /obj/machinery/door/airlock, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plating, @@ -578,9 +528,7 @@ }, /obj/structure/cable, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /obj/machinery/airalarm{ frequency = 1439; @@ -620,9 +568,7 @@ pixel_x = -24 }, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /obj/structure/closet/secure_closet/captains, /turf/open/floor/plasteel/blue/side{ @@ -669,8 +615,6 @@ /area/hallway/primary/central) "bO" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/plasteel, @@ -706,9 +650,7 @@ pixel_x = -24 }, /obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 + icon_state = "0-2" }, /obj/structure/closet/firecloset/full, /turf/open/floor/plasteel/arrival{ @@ -746,21 +688,15 @@ /area/hallway/primary/central) "ca" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plasteel, /area/hallway/primary/central) "cb" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -768,8 +704,6 @@ /area/hallway/primary/central) "cc" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, @@ -777,21 +711,15 @@ "cd" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plating, /area/bridge) "ce" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/open/floor/plasteel/blue/side{ @@ -800,16 +728,12 @@ /area/bridge) "cf" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/bridge) "cg" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/blue/side{ @@ -819,13 +743,9 @@ "ch" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/plating, @@ -833,16 +753,12 @@ "ci" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel, /area/hallway/primary/central) "cj" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ @@ -852,16 +768,12 @@ /area/hallway/primary/central) "ck" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/closed/wall/r_wall, /area/hallway/secondary/entry) "cl" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/open/floor/plasteel/arrival{ @@ -899,8 +811,6 @@ /area/bridge) "cs" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/closed/wall/r_wall, @@ -970,8 +880,6 @@ /area/hallway/primary/central) "cE" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -1047,8 +955,6 @@ /area/construction) "cO" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/closed/wall/r_wall, @@ -1070,8 +976,6 @@ /area/storage/primary) "cT" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/closed/wall/r_wall, diff --git a/_maps/map_files/generic/CentCom.dmm b/_maps/map_files/generic/CentCom.dmm index 6182250fd3..f99ab6cf9f 100644 --- a/_maps/map_files/generic/CentCom.dmm +++ b/_maps/map_files/generic/CentCom.dmm @@ -1,4 +1,4 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aa" = ( /turf/open/space/basic, /area/space) @@ -47,14 +47,14 @@ "aj" = ( /turf/open/floor/holofloor/asteroid, /area/holodeck/rec_center/bunker) -"al" = ( +"ak" = ( /obj/structure/table, /obj/item/stack/medical/ointment{ heal_burn = 10 }, /turf/open/floor/holofloor/asteroid, /area/holodeck/rec_center/bunker) -"am" = ( +"al" = ( /obj/structure/table/wood{ layer = 3.3 }, @@ -67,20 +67,20 @@ dir = 9 }, /area/holodeck/rec_center/lounge) -"an" = ( +"am" = ( /obj/structure/closet/crate/bin, /turf/open/floor/holofloor{ icon_state = "wood"; dir = 9 }, /area/holodeck/rec_center/lounge) -"ao" = ( +"an" = ( /turf/open/floor/holofloor{ icon_state = "wood"; dir = 9 }, /area/holodeck/rec_center/lounge) -"ap" = ( +"ao" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green{ layer = 3.3 @@ -90,44 +90,44 @@ dir = 9 }, /area/holodeck/rec_center/lounge) -"aq" = ( +"ap" = ( /turf/open/floor/holofloor/plating, /area/holodeck/rec_center/wildlife) -"ar" = ( +"aq" = ( /turf/open/floor/holofloor/plating, /area/holodeck/rec_center/offline) -"as" = ( +"ar" = ( /turf/open/floor/holofloor/plating/burnmix, /area/holodeck/rec_center/burn) -"at" = ( +"as" = ( /turf/open/floor/holofloor{ dir = 9; icon_state = "red" }, /area/holodeck/rec_center/court) -"au" = ( +"at" = ( /turf/open/floor/holofloor{ dir = 1; icon_state = "red" }, /area/holodeck/rec_center/court) -"av" = ( +"au" = ( /turf/open/floor/holofloor{ dir = 5; icon_state = "red" }, /area/holodeck/rec_center/court) -"aw" = ( +"av" = ( /obj/structure/window/reinforced{ dir = 8 }, /turf/closed/indestructible/riveted, /area/space) -"ax" = ( +"aw" = ( /obj/structure/flora/bush, /turf/open/floor/holofloor/snow, /area/holodeck/rec_center/winterwonderland) -"ay" = ( +"ax" = ( /obj/effect/holodeck_effect/mobspawner/penguin, /obj/effect/holodeck_effect/mobspawner/penguin, /obj/item/toy/snowball{ @@ -141,12 +141,12 @@ }, /turf/open/floor/holofloor/snow, /area/holodeck/rec_center/winterwonderland) -"aA" = ( +"ay" = ( /obj/structure/table, /obj/machinery/recharger, /turf/open/floor/holofloor/asteroid, /area/holodeck/rec_center/bunker) -"aB" = ( +"az" = ( /obj/structure/table/wood, /obj/item/storage/box/matches{ pixel_x = -4; @@ -157,46 +157,46 @@ dir = 9 }, /area/holodeck/rec_center/lounge) -"aC" = ( +"aA" = ( /obj/structure/chair/wood/normal, /turf/open/floor/holofloor{ icon_state = "wood"; dir = 9 }, /area/holodeck/rec_center/lounge) -"aD" = ( +"aB" = ( /obj/effect/holodeck_effect/mobspawner, /turf/open/floor/holofloor/plating, /area/holodeck/rec_center/wildlife) -"aE" = ( +"aC" = ( /obj/effect/holodeck_effect/sparks, /turf/open/floor/holofloor/plating/burnmix, /area/holodeck/rec_center/burn) -"aF" = ( +"aD" = ( /turf/open/floor/holofloor{ dir = 8; icon_state = "red" }, /area/holodeck/rec_center/court) -"aG" = ( +"aE" = ( /turf/open/floor/holofloor, /area/holodeck/rec_center/court) -"aH" = ( +"aF" = ( /turf/open/floor/holofloor{ dir = 4; icon_state = "red" }, /area/holodeck/rec_center/court) -"aI" = ( +"aG" = ( /obj/structure/flora/grass/brown, /turf/open/floor/holofloor/snow, /area/holodeck/rec_center/winterwonderland) -"aJ" = ( +"aH" = ( /obj/structure/table, /obj/item/gun/energy/laser, /turf/open/floor/holofloor/asteroid, /area/holodeck/rec_center/bunker) -"aK" = ( +"aI" = ( /obj/structure/chair/wood/normal{ dir = 4 }, @@ -205,7 +205,7 @@ dir = 9 }, /area/holodeck/rec_center/lounge) -"aL" = ( +"aJ" = ( /obj/structure/table/wood/poker, /obj/item/clothing/mask/cigarette/pipe, /turf/open/floor/holofloor{ @@ -213,7 +213,7 @@ dir = 9 }, /area/holodeck/rec_center/lounge) -"aM" = ( +"aK" = ( /obj/structure/table/wood/poker, /obj/structure/table/wood/poker, /obj/effect/holodeck_effect/cards, @@ -222,7 +222,7 @@ dir = 9 }, /area/holodeck/rec_center/lounge) -"aN" = ( +"aL" = ( /obj/structure/chair/wood/normal{ dir = 8 }, @@ -231,13 +231,13 @@ dir = 9 }, /area/holodeck/rec_center/lounge) -"aO" = ( +"aM" = ( /obj/structure/statue/snow/snowman{ anchored = 1 }, /turf/open/floor/holofloor/snow, /area/holodeck/rec_center/winterwonderland) -"aP" = ( +"aN" = ( /obj/structure/chair/wood/normal{ dir = 1 }, @@ -246,11 +246,11 @@ dir = 9 }, /area/holodeck/rec_center/lounge) -"aQ" = ( +"aO" = ( /obj/structure/chair/wood/wings, /turf/open/floor/holofloor/snow, /area/holodeck/rec_center/winterwonderland) -"aR" = ( +"aP" = ( /obj/structure/window/reinforced/tinted{ dir = 4 }, @@ -259,23 +259,23 @@ dir = 9 }, /area/holodeck/rec_center/lounge) -"aS" = ( +"aQ" = ( /obj/structure/window/reinforced, /turf/open/floor/holofloor{ icon_state = "wood"; dir = 9 }, /area/holodeck/rec_center/lounge) -"aT" = ( +"aR" = ( /obj/effect/holodeck_effect/mobspawner/penguin_baby, /obj/structure/flora/tree/pine, /turf/open/floor/holofloor/snow, /area/holodeck/rec_center/winterwonderland) -"aU" = ( +"aS" = ( /obj/structure/chair/wood, /turf/open/floor/holofloor/snow, /area/holodeck/rec_center/winterwonderland) -"aV" = ( +"aT" = ( /obj/structure/table/wood, /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-05"; @@ -286,132 +286,132 @@ dir = 9 }, /area/holodeck/rec_center/lounge) -"aW" = ( +"aU" = ( /turf/open/floor/holofloor{ dir = 9; icon_state = "stairs-l" }, /area/holodeck/rec_center/lounge) -"aX" = ( +"aV" = ( /turf/open/floor/holofloor{ dir = 9; icon_state = "stairs-r" }, /area/holodeck/rec_center/lounge) -"aY" = ( +"aW" = ( /turf/open/floor/holofloor{ dir = 8; icon_state = "green" }, /area/holodeck/rec_center/court) -"aZ" = ( +"aX" = ( /turf/open/floor/holofloor{ dir = 4; icon_state = "green" }, /area/holodeck/rec_center/court) -"ba" = ( +"aY" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green{ pixel_y = 4 }, /turf/open/floor/holofloor/carpet, /area/holodeck/rec_center/lounge) -"bb" = ( +"aZ" = ( /turf/open/floor/holofloor/carpet, /area/holodeck/rec_center/lounge) -"bc" = ( +"ba" = ( /obj/structure/chair/comfy/brown{ dir = 4 }, /turf/open/floor/holofloor/carpet, /area/holodeck/rec_center/lounge) -"bd" = ( +"bb" = ( /obj/structure/chair/comfy/brown{ dir = 8 }, /turf/open/floor/holofloor/carpet, /area/holodeck/rec_center/lounge) -"be" = ( +"bc" = ( /obj/structure/table, /obj/item/stack/medical/bruise_pack{ heal_brute = 10 }, /turf/open/floor/holofloor/asteroid, /area/holodeck/rec_center/bunker) -"bf" = ( +"bd" = ( /obj/structure/table/wood, /obj/item/device/instrument/violin, /turf/open/floor/holofloor/carpet, /area/holodeck/rec_center/lounge) -"bg" = ( +"be" = ( /obj/structure/chair/comfy/brown{ buildstackamount = 0; dir = 1 }, /turf/open/floor/holofloor/carpet, /area/holodeck/rec_center/lounge) -"bh" = ( +"bf" = ( /obj/structure/table/wood, /obj/item/book/manual/barman_recipes, /obj/item/clothing/mask/cigarette/pipe, /turf/open/floor/holofloor/carpet, /area/holodeck/rec_center/lounge) -"bi" = ( +"bg" = ( /turf/open/floor/holofloor{ dir = 10; icon_state = "green" }, /area/holodeck/rec_center/court) -"bj" = ( +"bh" = ( /turf/open/floor/holofloor{ dir = 2; icon_state = "green" }, /area/holodeck/rec_center/court) -"bk" = ( +"bi" = ( /turf/open/floor/holofloor{ dir = 6; icon_state = "green" }, /area/holodeck/rec_center/court) -"bl" = ( +"bj" = ( /obj/structure/window/reinforced{ dir = 1 }, /obj/structure/window/reinforced, /turf/closed/indestructible/riveted, /area/space) -"bm" = ( +"bk" = ( /obj/effect/holodeck_effect/mobspawner/bee, /turf/open/floor/holofloor/asteroid, /area/holodeck/rec_center/anthophila) -"bn" = ( +"bl" = ( /turf/open/floor/holofloor/grass, /area/holodeck/rec_center/pet_lounge) -"bo" = ( +"bm" = ( /obj/structure/flora/ausbushes/sunnybush, /turf/open/floor/holofloor/grass, /area/holodeck/rec_center/pet_lounge) -"bp" = ( +"bn" = ( /obj/structure/flora/ausbushes/genericbush, /turf/open/floor/holofloor/grass, /area/holodeck/rec_center/pet_lounge) -"bq" = ( +"bo" = ( /obj/structure/table/glass, /obj/item/surgicaldrill, /turf/open/floor/holofloor{ icon_state = "white" }, /area/holodeck/rec_center/medical) -"br" = ( +"bp" = ( /obj/structure/table/glass, /obj/item/hemostat, /turf/open/floor/holofloor{ icon_state = "white" }, /area/holodeck/rec_center/medical) -"bs" = ( +"bq" = ( /obj/structure/table/glass, /obj/item/scalpel{ pixel_y = 10 @@ -421,14 +421,14 @@ icon_state = "white" }, /area/holodeck/rec_center/medical) -"bt" = ( +"br" = ( /obj/structure/table/glass, /obj/item/retractor, /turf/open/floor/holofloor{ icon_state = "white" }, /area/holodeck/rec_center/medical) -"bu" = ( +"bs" = ( /obj/structure/table/glass, /obj/item/stack/medical/gauze, /obj/item/cautery, @@ -436,13 +436,13 @@ icon_state = "white" }, /area/holodeck/rec_center/medical) -"bv" = ( +"bt" = ( /turf/open/floor/holofloor{ dir = 9; icon_state = "red" }, /area/holodeck/rec_center/basketball) -"bw" = ( +"bu" = ( /obj/structure/holohoop{ layer = 3.9 }, @@ -451,21 +451,21 @@ icon_state = "red" }, /area/holodeck/rec_center/basketball) -"bx" = ( +"bv" = ( /turf/open/floor/holofloor{ dir = 5; icon_state = "red" }, /area/holodeck/rec_center/basketball) -"by" = ( +"bw" = ( /turf/open/floor/holofloor/beach, /area/holodeck/rec_center/beach) -"bz" = ( +"bx" = ( /obj/structure/table, /obj/machinery/readybutton, /turf/open/floor/holofloor/basalt, /area/holodeck/rec_center/thunderdome) -"bA" = ( +"by" = ( /obj/structure/table, /obj/item/clothing/head/helmet/thunderdome, /obj/item/clothing/suit/armor/tdome/red, @@ -473,43 +473,43 @@ /obj/item/holo/esword/red, /turf/open/floor/holofloor/basalt, /area/holodeck/rec_center/thunderdome) -"bB" = ( +"bz" = ( /obj/structure/table, /turf/open/floor/holofloor/basalt, /area/holodeck/rec_center/thunderdome) -"bC" = ( +"bA" = ( /obj/machinery/readybutton, /turf/open/floor/holofloor{ dir = 9; icon_state = "red" }, /area/holodeck/rec_center/dodgeball) -"bD" = ( +"bB" = ( /turf/open/floor/holofloor{ dir = 1; icon_state = "red" }, /area/holodeck/rec_center/dodgeball) -"bE" = ( +"bC" = ( /turf/open/floor/holofloor{ dir = 5; icon_state = "red" }, /area/holodeck/rec_center/dodgeball) -"bF" = ( +"bD" = ( /obj/effect/holodeck_effect/mobspawner/pet, /turf/open/floor/holofloor/grass, /area/holodeck/rec_center/pet_lounge) -"bG" = ( +"bE" = ( /obj/structure/flora/ausbushes/ppflowers, /turf/open/floor/holofloor/grass, /area/holodeck/rec_center/pet_lounge) -"bH" = ( +"bF" = ( /obj/effect/holodeck_effect/mobspawner/pet, /obj/structure/flora/ausbushes/brflowers, /turf/open/floor/holofloor/grass, /area/holodeck/rec_center/pet_lounge) -"bI" = ( +"bG" = ( /obj/structure/table/glass, /obj/item/surgical_drapes, /obj/item/razor, @@ -517,58 +517,58 @@ icon_state = "white" }, /area/holodeck/rec_center/medical) -"bJ" = ( +"bH" = ( /turf/open/floor/holofloor{ icon_state = "white" }, /area/holodeck/rec_center/medical) -"bL" = ( +"bI" = ( /turf/open/floor/holofloor{ dir = 8; icon_state = "red" }, /area/holodeck/rec_center/basketball) -"bM" = ( +"bJ" = ( /turf/open/floor/holofloor, /area/holodeck/rec_center/basketball) -"bN" = ( +"bK" = ( /turf/open/floor/holofloor{ dir = 4; icon_state = "red" }, /area/holodeck/rec_center/basketball) -"bO" = ( +"bL" = ( /obj/effect/overlay/palmtree_r, /turf/open/floor/holofloor/beach, /area/holodeck/rec_center/beach) -"bP" = ( +"bM" = ( /obj/effect/overlay/palmtree_l, /obj/effect/overlay/coconut, /turf/open/floor/holofloor/beach, /area/holodeck/rec_center/beach) -"bQ" = ( +"bN" = ( /turf/open/floor/holofloor/basalt, /area/holodeck/rec_center/thunderdome) -"bR" = ( +"bO" = ( /turf/open/floor/holofloor{ dir = 8; icon_state = "red" }, /area/holodeck/rec_center/dodgeball) -"bS" = ( +"bP" = ( /turf/open/floor/holofloor, /area/holodeck/rec_center/dodgeball) -"bT" = ( +"bQ" = ( /turf/open/floor/holofloor{ dir = 4; icon_state = "red" }, /area/holodeck/rec_center/dodgeball) -"bU" = ( +"bR" = ( /obj/structure/flora/ausbushes/brflowers, /turf/open/floor/holofloor/grass, /area/holodeck/rec_center/pet_lounge) -"bV" = ( +"bS" = ( /obj/item/storage/bag/easterbasket{ name = "picnic basket"; pixel_y = 6 @@ -577,25 +577,25 @@ icon_state = "redbluefull" }, /area/holodeck/rec_center/pet_lounge) -"bW" = ( +"bT" = ( /obj/item/trash/plate, /turf/open/floor/holofloor{ icon_state = "redbluefull" }, /area/holodeck/rec_center/pet_lounge) -"bZ" = ( +"bU" = ( /obj/structure/table/optable, /turf/open/floor/holofloor{ icon_state = "white" }, /area/holodeck/rec_center/medical) -"ca" = ( +"bV" = ( /obj/machinery/computer/operating, /turf/open/floor/holofloor{ icon_state = "white" }, /area/holodeck/rec_center/medical) -"cb" = ( +"bW" = ( /obj/structure/table/glass, /obj/item/clothing/gloves/color/latex/nitrile, /obj/item/clothing/suit/apron/surgical, @@ -604,33 +604,33 @@ icon_state = "white" }, /area/holodeck/rec_center/medical) -"cc" = ( +"bX" = ( /turf/open/floor/holofloor{ dir = 1; icon_state = "red" }, /area/holodeck/rec_center/basketball) -"cd" = ( +"bY" = ( /obj/effect/holodeck_effect/mobspawner/monkey, /turf/open/floor/holofloor/beach, /area/holodeck/rec_center/beach) -"ce" = ( +"bZ" = ( /turf/open/floor/holofloor{ dir = 2; icon_state = "red" }, /area/holodeck/rec_center/dodgeball) -"cf" = ( +"ca" = ( /obj/structure/flora/ausbushes/palebush, /turf/open/floor/holofloor/grass, /area/holodeck/rec_center/pet_lounge) -"cg" = ( +"cb" = ( /obj/effect/holodeck_effect/mobspawner/pet, /turf/open/floor/holofloor{ icon_state = "redbluefull" }, /area/holodeck/rec_center/pet_lounge) -"ch" = ( +"cc" = ( /obj/item/shovel/spade{ pixel_x = 2; pixel_y = -2 @@ -639,7 +639,7 @@ icon_state = "redbluefull" }, /area/holodeck/rec_center/pet_lounge) -"ci" = ( +"cd" = ( /obj/structure/window{ dir = 1 }, @@ -647,19 +647,19 @@ icon_state = "white" }, /area/holodeck/rec_center/medical) -"cj" = ( +"ce" = ( /obj/effect/holodeck_effect/mobspawner/bee, /obj/item/clothing/head/beekeeper_head, /turf/open/floor/holofloor/asteroid, /area/holodeck/rec_center/anthophila) -"ck" = ( +"cf" = ( /obj/structure/table/glass, /obj/machinery/reagentgrinder, /turf/open/floor/holofloor{ icon_state = "white" }, /area/holodeck/rec_center/medical) -"cm" = ( +"cg" = ( /obj/structure/table/glass, /obj/item/storage/box/syringes{ pixel_x = 4; @@ -670,40 +670,40 @@ icon_state = "white" }, /area/holodeck/rec_center/medical) -"cn" = ( +"ch" = ( /obj/machinery/washing_machine, /turf/open/floor/holofloor{ icon_state = "white" }, /area/holodeck/rec_center/medical) -"co" = ( +"ci" = ( /turf/open/floor/holofloor{ dir = 10; icon_state = "red" }, /area/holodeck/rec_center/basketball) -"cp" = ( +"cj" = ( /turf/open/floor/holofloor{ dir = 2; icon_state = "red" }, /area/holodeck/rec_center/basketball) -"cq" = ( +"ck" = ( /turf/open/floor/holofloor{ dir = 6; icon_state = "red" }, /area/holodeck/rec_center/basketball) -"cr" = ( +"cl" = ( /obj/item/clothing/under/color/rainbow, /obj/item/clothing/glasses/sunglasses, /turf/open/floor/holofloor/beach, /area/holodeck/rec_center/beach) -"cs" = ( +"cm" = ( /obj/structure/window, /turf/open/floor/holofloor/basalt, /area/holodeck/rec_center/thunderdome) -"ct" = ( +"cn" = ( /obj/structure/window{ dir = 1 }, @@ -713,7 +713,7 @@ icon_state = "red" }, /area/holodeck/rec_center/dodgeball) -"cu" = ( +"co" = ( /obj/structure/window{ dir = 1 }, @@ -723,7 +723,7 @@ icon_state = "red" }, /area/holodeck/rec_center/dodgeball) -"cv" = ( +"cp" = ( /obj/structure/window{ dir = 1 }, @@ -733,65 +733,65 @@ icon_state = "red" }, /area/holodeck/rec_center/dodgeball) -"cw" = ( +"cq" = ( /obj/effect/holodeck_effect/mobspawner/bee, /obj/effect/decal/remains/human, /obj/item/clothing/suit/beekeeper_suit, /turf/open/floor/holofloor/asteroid, /area/holodeck/rec_center/anthophila) -"cx" = ( +"cr" = ( /obj/effect/holodeck_effect/mobspawner/bee, /obj/item/melee/flyswatter, /turf/open/floor/holofloor/asteroid, /area/holodeck/rec_center/anthophila) -"cy" = ( +"cs" = ( /obj/machinery/chem_master, /turf/open/floor/holofloor{ icon_state = "white" }, /area/holodeck/rec_center/medical) -"cA" = ( +"ct" = ( /obj/structure/table/glass, /obj/item/device/healthanalyzer, /turf/open/floor/holofloor{ icon_state = "white" }, /area/holodeck/rec_center/medical) -"cB" = ( +"cu" = ( /obj/structure/closet/wardrobe/white, /turf/open/floor/holofloor{ icon_state = "white" }, /area/holodeck/rec_center/medical) -"cC" = ( +"cv" = ( /turf/open/floor/holofloor{ dir = 9; icon_state = "green" }, /area/holodeck/rec_center/basketball) -"cD" = ( +"cw" = ( /turf/open/floor/holofloor{ dir = 1; icon_state = "green" }, /area/holodeck/rec_center/basketball) -"cE" = ( +"cx" = ( /turf/open/floor/holofloor{ dir = 5; icon_state = "green" }, /area/holodeck/rec_center/basketball) -"cF" = ( +"cy" = ( /obj/item/toy/beach_ball, /turf/open/floor/holofloor/beach, /area/holodeck/rec_center/beach) -"cG" = ( +"cz" = ( /obj/structure/window{ dir = 1 }, /turf/open/floor/holofloor/basalt, /area/holodeck/rec_center/thunderdome) -"cH" = ( +"cA" = ( /obj/structure/window, /obj/item/toy/beach_ball/holoball/dodgeball, /turf/open/floor/holofloor{ @@ -799,7 +799,7 @@ icon_state = "green" }, /area/holodeck/rec_center/dodgeball) -"cI" = ( +"cB" = ( /obj/structure/window, /obj/item/toy/beach_ball/holoball/dodgeball, /turf/open/floor/holofloor{ @@ -807,7 +807,7 @@ icon_state = "green" }, /area/holodeck/rec_center/dodgeball) -"cJ" = ( +"cC" = ( /obj/structure/window, /obj/item/toy/beach_ball/holoball/dodgeball, /turf/open/floor/holofloor{ @@ -815,61 +815,61 @@ icon_state = "green" }, /area/holodeck/rec_center/dodgeball) -"cK" = ( +"cD" = ( /obj/structure/sink/puddle, /turf/open/floor/holofloor/grass, /area/holodeck/rec_center/pet_lounge) -"cL" = ( +"cE" = ( /obj/item/reagent_containers/glass/bucket, /turf/open/floor/holofloor/grass, /area/holodeck/rec_center/pet_lounge) -"cM" = ( +"cF" = ( /turf/open/floor/holofloor{ dir = 8; icon_state = "green" }, /area/holodeck/rec_center/basketball) -"cN" = ( +"cG" = ( /obj/item/toy/beach_ball/holoball, /turf/open/floor/holofloor, /area/holodeck/rec_center/basketball) -"cO" = ( +"cH" = ( /turf/open/floor/holofloor{ dir = 4; icon_state = "green" }, /area/holodeck/rec_center/basketball) -"cP" = ( +"cI" = ( /turf/open/floor/holofloor{ dir = 8; icon_state = "green" }, /area/holodeck/rec_center/dodgeball) -"cQ" = ( +"cJ" = ( /turf/open/floor/holofloor{ dir = 4; icon_state = "green" }, /area/holodeck/rec_center/dodgeball) -"cR" = ( +"cK" = ( /obj/machinery/hydroponics/soil, /turf/open/floor/holofloor/grass, /area/holodeck/rec_center/pet_lounge) -"cS" = ( +"cL" = ( /obj/machinery/hydroponics/soil, /obj/item/cultivator, /turf/open/floor/holofloor/grass, /area/holodeck/rec_center/pet_lounge) -"cT" = ( +"cM" = ( /obj/machinery/hydroponics/soil, /obj/effect/holodeck_effect/mobspawner/pet, /turf/open/floor/holofloor/grass, /area/holodeck/rec_center/pet_lounge) -"cU" = ( +"cN" = ( /obj/structure/flora/ausbushes/grassybush, /turf/open/floor/holofloor/grass, /area/holodeck/rec_center/pet_lounge) -"cV" = ( +"cO" = ( /obj/structure/bed, /obj/item/bedsheet/medical, /obj/structure/window{ @@ -879,7 +879,7 @@ icon_state = "white" }, /area/holodeck/rec_center/medical) -"cW" = ( +"cP" = ( /obj/structure/window{ dir = 8 }, @@ -892,7 +892,7 @@ icon_state = "white" }, /area/holodeck/rec_center/medical) -"cX" = ( +"cQ" = ( /obj/structure/window{ dir = 8 }, @@ -901,51 +901,43 @@ icon_state = "white" }, /area/holodeck/rec_center/medical) -"cY" = ( +"cR" = ( /turf/open/floor/holofloor{ dir = 2; icon_state = "green" }, /area/holodeck/rec_center/basketball) -"cZ" = ( +"cS" = ( /turf/open/floor/holofloor/beach/coast_t, /area/holodeck/rec_center/beach) -"da" = ( +"cT" = ( /obj/item/reagent_containers/glass/bucket, /turf/open/floor/holofloor/beach/coast_t, /area/holodeck/rec_center/beach) -"db" = ( +"cU" = ( /obj/item/shovel/spade, /turf/open/floor/holofloor/beach/coast_t, /area/holodeck/rec_center/beach) -"dc" = ( +"cV" = ( /turf/open/floor/holofloor{ dir = 1; icon_state = "green" }, /area/holodeck/rec_center/dodgeball) -"dd" = ( +"cW" = ( /obj/structure/flora/ausbushes/pointybush, /turf/open/floor/holofloor/grass, /area/holodeck/rec_center/pet_lounge) -"de" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate/hallway) -"dg" = ( +"cX" = ( /obj/machinery/door/window/westleft, /turf/open/floor/holofloor{ icon_state = "white" }, /area/holodeck/rec_center/medical) -"di" = ( +"cY" = ( /turf/open/floor/holofloor/beach/coast_b, /area/holodeck/rec_center/beach) -"dj" = ( +"cZ" = ( /obj/structure/bed, /obj/item/bedsheet/medical, /obj/machinery/iv_drip, @@ -953,7 +945,7 @@ icon_state = "white" }, /area/holodeck/rec_center/medical) -"dk" = ( +"da" = ( /obj/structure/window{ dir = 8 }, @@ -964,7 +956,7 @@ icon_state = "white" }, /area/holodeck/rec_center/medical) -"dl" = ( +"db" = ( /obj/structure/window{ dir = 8 }, @@ -975,13 +967,13 @@ icon_state = "white" }, /area/holodeck/rec_center/medical) -"dm" = ( +"dc" = ( /obj/machinery/iv_drip, /turf/open/floor/holofloor{ icon_state = "white" }, /area/holodeck/rec_center/medical) -"dn" = ( +"dd" = ( /obj/machinery/sleeper{ dir = 1 }, @@ -989,13 +981,13 @@ icon_state = "white" }, /area/holodeck/rec_center/medical) -"do" = ( +"de" = ( /turf/open/floor/holofloor{ dir = 10; icon_state = "green" }, /area/holodeck/rec_center/basketball) -"dp" = ( +"df" = ( /obj/structure/holohoop{ dir = 1; layer = 4.1 @@ -1005,16 +997,16 @@ icon_state = "green" }, /area/holodeck/rec_center/basketball) -"dq" = ( +"dg" = ( /turf/open/floor/holofloor{ dir = 6; icon_state = "green" }, /area/holodeck/rec_center/basketball) -"dr" = ( +"dh" = ( /turf/open/floor/holofloor/beach/water, /area/holodeck/rec_center/beach) -"dt" = ( +"di" = ( /obj/structure/table, /obj/item/clothing/head/helmet/thunderdome, /obj/item/clothing/suit/armor/tdome/green, @@ -1022,68 +1014,68 @@ /obj/item/holo/esword/green, /turf/open/floor/holofloor/basalt, /area/holodeck/rec_center/thunderdome) -"dv" = ( +"dj" = ( /turf/open/floor/holofloor{ dir = 10; icon_state = "green" }, /area/holodeck/rec_center/dodgeball) -"dw" = ( +"dk" = ( /turf/open/floor/holofloor{ dir = 2; icon_state = "green" }, /area/holodeck/rec_center/dodgeball) -"dx" = ( +"dl" = ( /obj/machinery/readybutton, /turf/open/floor/holofloor{ dir = 6; icon_state = "green" }, /area/holodeck/rec_center/dodgeball) -"dy" = ( +"dm" = ( /turf/open/floor/holofloor/plating, /area/holodeck/rec_center/refuel) -"dz" = ( +"dn" = ( /turf/open/floor/holofloor/plating, /area/holodeck/rec_center/spacechess) -"dA" = ( +"do" = ( /obj/item/banner/blue, /turf/open/floor/holofloor/grass, /area/holodeck/rec_center/thunderdome1218) -"dB" = ( +"dp" = ( /obj/structure/table/wood/fancy, /obj/item/clothing/suit/armor/riot/knight/blue, /obj/item/clothing/head/helmet/knight/blue, /obj/item/claymore/weak, /turf/open/floor/holofloor/grass, /area/holodeck/rec_center/thunderdome1218) -"dC" = ( +"dq" = ( /obj/structure/table/wood/fancy, /obj/item/clothing/head/crown/fancy{ pixel_y = 6 }, /turf/open/floor/holofloor/grass, /area/holodeck/rec_center/thunderdome1218) -"dD" = ( +"dr" = ( /obj/structure/table/wood/fancy, /obj/item/clothing/suit/armor/riot/knight/red, /obj/item/clothing/head/helmet/knight/red, /obj/item/claymore/weak, /turf/open/floor/holofloor/grass, /area/holodeck/rec_center/thunderdome1218) -"dE" = ( +"ds" = ( /obj/item/banner/red, /turf/open/floor/holofloor/grass, /area/holodeck/rec_center/thunderdome1218) -"dF" = ( +"dt" = ( /turf/open/floor/holofloor/hyperspace, /area/holodeck/rec_center/kobayashi) -"dG" = ( +"du" = ( /obj/structure/window/reinforced, /turf/open/floor/holofloor/hyperspace, /area/holodeck/rec_center/kobayashi) -"dH" = ( +"dv" = ( /obj/structure/closet{ density = 0; opened = 1 @@ -1095,7 +1087,7 @@ icon_state = "dark" }, /area/holodeck/rec_center/chapelcourt) -"dI" = ( +"dw" = ( /obj/structure/table/wood/fancy, /obj/item/clothing/suit/nun, /obj/item/clothing/head/nun_hood, @@ -1105,7 +1097,7 @@ icon_state = "dark" }, /area/holodeck/rec_center/chapelcourt) -"dJ" = ( +"dx" = ( /obj/structure/table/wood/fancy, /obj/item/storage/book/bible, /turf/open/floor/holofloor{ @@ -1113,7 +1105,7 @@ icon_state = "dark" }, /area/holodeck/rec_center/chapelcourt) -"dK" = ( +"dy" = ( /obj/structure/table/wood/fancy, /obj/item/book/manual/wiki/security_space_law, /turf/open/floor/holofloor{ @@ -1121,7 +1113,7 @@ icon_state = "dark" }, /area/holodeck/rec_center/chapelcourt) -"dL" = ( +"dz" = ( /obj/structure/closet{ name = "Evidence Closet" }, @@ -1130,16 +1122,16 @@ icon_state = "dark" }, /area/holodeck/rec_center/chapelcourt) -"dM" = ( +"dA" = ( /turf/open/floor/holofloor, /area/holodeck/rec_center/school) -"dP" = ( +"dB" = ( /turf/open/floor/holofloor{ dir = 8; icon_state = "green" }, /area/holodeck/rec_center/firingrange) -"dQ" = ( +"dC" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -1150,7 +1142,7 @@ icon_state = "white" }, /area/holodeck/rec_center/firingrange) -"dR" = ( +"dD" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -1158,7 +1150,7 @@ icon_state = "white" }, /area/holodeck/rec_center/firingrange) -"dS" = ( +"dE" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -1169,17 +1161,17 @@ icon_state = "white" }, /area/holodeck/rec_center/firingrange) -"dT" = ( +"dF" = ( /turf/open/floor/holofloor{ dir = 4; icon_state = "green" }, /area/holodeck/rec_center/firingrange) -"dU" = ( +"dG" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/holofloor/plating, /area/holodeck/rec_center/refuel) -"dV" = ( +"dH" = ( /obj/item/cardboard_cutout/adaptive{ color = "#9999BB"; icon_state = "cutout_viva"; @@ -1190,7 +1182,7 @@ icon_state = "dark" }, /area/holodeck/rec_center/spacechess) -"dW" = ( +"dI" = ( /obj/item/cardboard_cutout/adaptive{ color = "#9999BB"; icon_state = "cutout_mime"; @@ -1200,7 +1192,7 @@ icon_state = "white" }, /area/holodeck/rec_center/spacechess) -"dX" = ( +"dJ" = ( /obj/item/cardboard_cutout/adaptive{ color = "#9999BB"; icon_state = "cutout_clown"; @@ -1211,7 +1203,7 @@ icon_state = "dark" }, /area/holodeck/rec_center/spacechess) -"dY" = ( +"dK" = ( /obj/item/cardboard_cutout/adaptive{ color = "#9999BB"; icon_state = "cutout_ian"; @@ -1221,14 +1213,14 @@ icon_state = "white" }, /area/holodeck/rec_center/spacechess) -"dZ" = ( +"dL" = ( /turf/open/floor/holofloor/grass, /area/holodeck/rec_center/thunderdome1218) -"ea" = ( +"dM" = ( /obj/structure/chair/wood/wings, /turf/open/floor/holofloor/grass, /area/holodeck/rec_center/thunderdome1218) -"eb" = ( +"dN" = ( /obj/structure/window/reinforced, /obj/machinery/mass_driver{ dir = 1; @@ -1245,7 +1237,7 @@ }, /turf/open/floor/holofloor/hyperspace, /area/holodeck/rec_center/kobayashi) -"ec" = ( +"dO" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -1260,7 +1252,7 @@ }, /turf/open/floor/holofloor/plating, /area/holodeck/rec_center/kobayashi) -"ed" = ( +"dP" = ( /obj/machinery/button/massdriver{ id = "trektorpedo1"; layer = 3.9; @@ -1286,7 +1278,7 @@ }, /turf/open/floor/holofloor/plating, /area/holodeck/rec_center/kobayashi) -"ee" = ( +"dQ" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -1301,7 +1293,7 @@ }, /turf/open/floor/holofloor/plating, /area/holodeck/rec_center/kobayashi) -"ef" = ( +"dR" = ( /obj/structure/window/reinforced, /obj/machinery/mass_driver{ dir = 1; @@ -1318,7 +1310,7 @@ }, /turf/open/floor/holofloor/hyperspace, /area/holodeck/rec_center/kobayashi) -"eg" = ( +"dS" = ( /obj/structure/chair{ dir = 4 }, @@ -1327,26 +1319,26 @@ dir = 1 }, /area/holodeck/rec_center/chapelcourt) -"eh" = ( +"dT" = ( /turf/open/floor/holofloor{ icon_state = "chapel"; dir = 4 }, /area/holodeck/rec_center/chapelcourt) -"ei" = ( +"dU" = ( /obj/structure/chair, /turf/open/floor/holofloor{ dir = 8; icon_state = "dark" }, /area/holodeck/rec_center/chapelcourt) -"ej" = ( +"dV" = ( /turf/open/floor/holofloor{ icon_state = "chapel"; dir = 1 }, /area/holodeck/rec_center/chapelcourt) -"ek" = ( +"dW" = ( /obj/structure/chair{ dir = 8 }, @@ -1355,13 +1347,23 @@ dir = 4 }, /area/holodeck/rec_center/chapelcourt) -"em" = ( +"dX" = ( /obj/structure/table/wood, /obj/item/folder, /obj/item/melee/classic_baton/telescopic, /turf/open/floor/holofloor, /area/holodeck/rec_center/school) -"eo" = ( +"dY" = ( +/obj/structure/table/wood, +/obj/item/toy/crayon/white, +/turf/open/floor/holofloor, +/area/holodeck/rec_center/school) +"dZ" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/grown/apple, +/turf/open/floor/holofloor, +/area/holodeck/rec_center/school) +"ea" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -1370,14 +1372,14 @@ dir = 8 }, /area/holodeck/rec_center/firingrange) -"ep" = ( +"eb" = ( /obj/structure/target_stake, /obj/machinery/magnetic_module, /turf/open/floor/holofloor{ icon_state = "white" }, /area/holodeck/rec_center/firingrange) -"eq" = ( +"ec" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -1386,7 +1388,7 @@ dir = 4 }, /area/holodeck/rec_center/firingrange) -"er" = ( +"ed" = ( /obj/item/cardboard_cutout/adaptive{ color = "#9999BB"; icon_state = "cutout_greytide"; @@ -1396,7 +1398,7 @@ icon_state = "white" }, /area/holodeck/rec_center/spacechess) -"es" = ( +"ee" = ( /obj/item/cardboard_cutout/adaptive{ color = "#9999BB"; icon_state = "cutout_greytide"; @@ -1407,43 +1409,43 @@ icon_state = "dark" }, /area/holodeck/rec_center/spacechess) -"et" = ( +"ef" = ( /obj/machinery/door/window/westleft{ dir = 2; icon_state = "right" }, /turf/open/floor/holofloor/grass, /area/holodeck/rec_center/thunderdome1218) -"eu" = ( +"eg" = ( /obj/structure/window/reinforced, /turf/open/floor/holofloor/grass, /area/holodeck/rec_center/thunderdome1218) -"ev" = ( +"eh" = ( /obj/machinery/door/window/westleft{ dir = 2 }, /turf/open/floor/holofloor/grass, /area/holodeck/rec_center/thunderdome1218) -"ew" = ( +"ei" = ( /obj/structure/table/glass, /obj/machinery/recharger, /turf/open/floor/holofloor/plating, /area/holodeck/rec_center/kobayashi) -"ex" = ( +"ej" = ( /turf/open/floor/holofloor/plating, /area/holodeck/rec_center/kobayashi) -"ey" = ( +"ek" = ( /obj/structure/chair/comfy{ dir = 1 }, /turf/open/floor/holofloor/plating, /area/holodeck/rec_center/kobayashi) -"ez" = ( +"el" = ( /obj/structure/table/glass, /obj/item/gun/energy/e_gun/mini/practice_phaser, /turf/open/floor/holofloor/plating, /area/holodeck/rec_center/kobayashi) -"eA" = ( +"em" = ( /obj/structure/chair{ dir = 4 }, @@ -1452,13 +1454,13 @@ icon_state = "chapel" }, /area/holodeck/rec_center/chapelcourt) -"eB" = ( +"en" = ( /turf/open/floor/holofloor{ icon_state = "chapel"; dir = 2 }, /area/holodeck/rec_center/chapelcourt) -"eC" = ( +"eo" = ( /obj/item/gavelblock, /obj/item/gavelhammer, /obj/structure/table/wood, @@ -1467,13 +1469,13 @@ icon_state = "dark" }, /area/holodeck/rec_center/chapelcourt) -"eD" = ( +"ep" = ( /turf/open/floor/holofloor{ dir = 8; icon_state = "chapel" }, /area/holodeck/rec_center/chapelcourt) -"eE" = ( +"eq" = ( /obj/structure/chair{ dir = 8 }, @@ -1482,7 +1484,7 @@ dir = 2 }, /area/holodeck/rec_center/chapelcourt) -"eG" = ( +"er" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -1491,12 +1493,12 @@ dir = 10 }, /area/holodeck/rec_center/firingrange) -"eH" = ( +"es" = ( /turf/open/floor/holofloor{ icon_state = "white" }, /area/holodeck/rec_center/firingrange) -"eI" = ( +"et" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -1505,28 +1507,28 @@ dir = 6 }, /area/holodeck/rec_center/firingrange) -"eJ" = ( +"eu" = ( /obj/item/weldingtool, /turf/open/floor/holofloor/plating, /area/holodeck/rec_center/refuel) -"eK" = ( +"ev" = ( /turf/open/floor/holofloor{ dir = 8; icon_state = "dark" }, /area/holodeck/rec_center/spacechess) -"eL" = ( +"ew" = ( /turf/open/floor/holofloor{ icon_state = "white" }, /area/holodeck/rec_center/spacechess) -"eM" = ( +"ex" = ( /turf/open/floor/holofloor{ icon_state = "stairs-old"; dir = 8 }, /area/holodeck/rec_center/thunderdome1218) -"eN" = ( +"ey" = ( /obj/structure/table/wood, /obj/item/melee/chainofcommand{ name = "chain whip" @@ -1534,25 +1536,39 @@ /obj/item/twohanded/spear, /turf/open/floor/holofloor/asteroid, /area/holodeck/rec_center/thunderdome1218) -"eO" = ( +"ez" = ( /obj/structure/table/wood, /obj/item/scythe, /obj/item/twohanded/spear, /turf/open/floor/holofloor/asteroid, /area/holodeck/rec_center/thunderdome1218) -"eP" = ( +"eA" = ( /obj/structure/table/wood, /obj/item/tailclub, /obj/item/twohanded/spear, /turf/open/floor/holofloor/asteroid, /area/holodeck/rec_center/thunderdome1218) -"eQ" = ( +"eB" = ( /turf/open/floor/holofloor{ dir = 8; icon_state = "dark" }, /area/holodeck/rec_center/chapelcourt) -"eR" = ( +"eC" = ( +/obj/structure/table, +/obj/item/paper, +/obj/item/pen, +/obj/item/clothing/under/schoolgirl, +/turf/open/floor/holofloor, +/area/holodeck/rec_center/school) +"eD" = ( +/obj/structure/table, +/obj/item/paper, +/obj/item/pen, +/obj/item/clothing/under/schoolgirl/green, +/turf/open/floor/holofloor, +/area/holodeck/rec_center/school) +"eE" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -1561,10 +1577,10 @@ icon_state = "red" }, /area/holodeck/rec_center/firingrange) -"eS" = ( +"eF" = ( /turf/open/floor/holofloor, /area/holodeck/rec_center/firingrange) -"eT" = ( +"eG" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -1573,30 +1589,30 @@ icon_state = "red" }, /area/holodeck/rec_center/firingrange) -"eU" = ( +"eH" = ( /turf/open/floor/holofloor/asteroid, /area/holodeck/rec_center/thunderdome1218) -"eV" = ( +"eI" = ( /obj/machinery/modular_computer/console/preset/civilian, /turf/open/floor/holofloor/plating, /area/holodeck/rec_center/kobayashi) -"eW" = ( +"eJ" = ( /obj/structure/chair/office/dark{ dir = 8 }, /turf/open/floor/holofloor/plating, /area/holodeck/rec_center/kobayashi) -"eX" = ( +"eK" = ( /obj/structure/chair/office/dark{ dir = 4 }, /turf/open/floor/holofloor/plating, /area/holodeck/rec_center/kobayashi) -"eY" = ( +"eL" = ( /obj/machinery/computer/station_alert, /turf/open/floor/holofloor/plating, /area/holodeck/rec_center/kobayashi) -"eZ" = ( +"eM" = ( /obj/structure/chair{ dir = 1 }, @@ -1605,7 +1621,7 @@ dir = 1 }, /area/holodeck/rec_center/chapelcourt) -"fa" = ( +"eN" = ( /obj/structure/chair{ dir = 1 }, @@ -1614,17 +1630,23 @@ dir = 4 }, /area/holodeck/rec_center/chapelcourt) -"fb" = ( +"eO" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/holofloor, +/area/holodeck/rec_center/school) +"eP" = ( /obj/machinery/modular_computer/console/preset/civilian, /obj/structure/window/reinforced, /turf/open/floor/holofloor/plating, /area/holodeck/rec_center/kobayashi) -"fc" = ( +"eQ" = ( /obj/machinery/computer/atmos_alert, /obj/structure/window/reinforced, /turf/open/floor/holofloor/plating, /area/holodeck/rec_center/kobayashi) -"fd" = ( +"eR" = ( /obj/structure/chair{ dir = 1 }, @@ -1633,7 +1655,7 @@ icon_state = "chapel" }, /area/holodeck/rec_center/chapelcourt) -"fe" = ( +"eS" = ( /obj/structure/chair{ dir = 1 }, @@ -1642,18 +1664,25 @@ dir = 2 }, /area/holodeck/rec_center/chapelcourt) -"fg" = ( +"eT" = ( /obj/structure/table, /obj/item/paper, /obj/item/pen, /obj/item/clothing/under/schoolgirl/orange, /turf/open/floor/holofloor, /area/holodeck/rec_center/school) -"fh" = ( +"eU" = ( +/obj/structure/table, +/obj/item/paper, +/obj/item/pen, +/obj/item/clothing/under/schoolgirl/red, +/turf/open/floor/holofloor, +/area/holodeck/rec_center/school) +"eV" = ( /obj/structure/window/reinforced, /turf/open/floor/holofloor/plating, /area/holodeck/rec_center/kobayashi) -"fi" = ( +"eW" = ( /obj/item/cardboard_cutout/adaptive{ icon_state = "cutout_greytide"; name = "White Pawn" @@ -1663,7 +1692,7 @@ icon_state = "dark" }, /area/holodeck/rec_center/spacechess) -"fj" = ( +"eX" = ( /obj/item/cardboard_cutout/adaptive{ icon_state = "cutout_greytide"; name = "White Pawn" @@ -1672,24 +1701,24 @@ icon_state = "white" }, /area/holodeck/rec_center/spacechess) -"fk" = ( +"eY" = ( /obj/structure/window/reinforced, /turf/open/floor/holofloor/asteroid, /area/holodeck/rec_center/thunderdome1218) -"fl" = ( +"eZ" = ( /obj/machinery/door/window/westleft{ dir = 2 }, /turf/open/floor/holofloor/asteroid, /area/holodeck/rec_center/thunderdome1218) -"fm" = ( +"fa" = ( /obj/machinery/door/window/westleft{ dir = 2; icon_state = "right" }, /turf/open/floor/holofloor/plating, /area/holodeck/rec_center/kobayashi) -"fn" = ( +"fb" = ( /obj/structure/table, /obj/item/folder, /obj/item/pen/blue, @@ -1701,7 +1730,7 @@ dir = 1 }, /area/holodeck/rec_center/kobayashi) -"fo" = ( +"fc" = ( /obj/structure/table, /obj/item/folder, /obj/item/pen, @@ -1710,7 +1739,7 @@ dir = 1 }, /area/holodeck/rec_center/kobayashi) -"fp" = ( +"fd" = ( /obj/structure/table, /obj/structure/window/reinforced{ dir = 4 @@ -1722,13 +1751,13 @@ dir = 1 }, /area/holodeck/rec_center/kobayashi) -"fq" = ( +"fe" = ( /obj/machinery/door/window/westleft{ dir = 2 }, /turf/open/floor/holofloor/plating, /area/holodeck/rec_center/kobayashi) -"fr" = ( +"ff" = ( /obj/structure/table, /obj/item/paper, /obj/item/pen, @@ -1736,7 +1765,7 @@ /obj/item/toy/katana, /turf/open/floor/holofloor, /area/holodeck/rec_center/school) -"fs" = ( +"fg" = ( /obj/structure/table/reinforced, /obj/machinery/recharger, /obj/structure/window/reinforced{ @@ -1750,11 +1779,11 @@ icon_state = "red" }, /area/holodeck/rec_center/firingrange) -"ft" = ( +"fh" = ( /obj/item/paper/guides/jobs/security/range, /turf/open/floor/holofloor, /area/holodeck/rec_center/firingrange) -"fu" = ( +"fi" = ( /obj/structure/table/reinforced, /obj/machinery/magnetic_controller{ autolink = 1 @@ -1770,7 +1799,7 @@ icon_state = "red" }, /area/holodeck/rec_center/firingrange) -"fv" = ( +"fj" = ( /obj/item/cardboard_cutout/adaptive{ icon_state = "cutout_viva"; name = "White Rook" @@ -1779,7 +1808,7 @@ icon_state = "white" }, /area/holodeck/rec_center/spacechess) -"fw" = ( +"fk" = ( /obj/item/cardboard_cutout/adaptive{ icon_state = "cutout_mime"; name = "White Queen" @@ -1789,7 +1818,7 @@ icon_state = "dark" }, /area/holodeck/rec_center/spacechess) -"fx" = ( +"fl" = ( /obj/item/cardboard_cutout/adaptive{ icon_state = "cutout_clown"; name = "White King" @@ -1798,7 +1827,7 @@ icon_state = "white" }, /area/holodeck/rec_center/spacechess) -"fy" = ( +"fm" = ( /obj/item/cardboard_cutout/adaptive{ icon_state = "cutout_ian"; name = "White Knight" @@ -1808,37 +1837,31 @@ icon_state = "dark" }, /area/holodeck/rec_center/spacechess) -"fz" = ( +"fn" = ( /turf/open/floor/holofloor{ icon_state = "neutral"; dir = 1 }, /area/holodeck/rec_center/kobayashi) -"fA" = ( +"fo" = ( /obj/structure/chair{ dir = 1 }, /turf/open/floor/holofloor, /area/holodeck/rec_center/kobayashi) -"fB" = ( +"fp" = ( /turf/open/floor/holofloor{ dir = 1; icon_state = "green" }, /area/holodeck/rec_center/firingrange) -"fC" = ( -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate/bridge) -"fD" = ( +"fq" = ( /obj/structure/chair/wood/normal{ dir = 1 }, /turf/open/floor/holofloor/grass, /area/holodeck/rec_center/thunderdome1218) -"fE" = ( +"fr" = ( /obj/structure/rack, /obj/item/clothing/under/trek/medsci, /obj/item/clothing/under/trek/medsci, @@ -1848,13 +1871,13 @@ dir = 1 }, /area/holodeck/rec_center/kobayashi) -"fF" = ( +"fs" = ( /turf/open/floor/holofloor{ icon_state = "neutral"; dir = 2 }, /area/holodeck/rec_center/kobayashi) -"fG" = ( +"ft" = ( /obj/structure/rack, /obj/item/clothing/under/trek/engsec, /obj/item/clothing/under/trek/engsec, @@ -1863,49 +1886,41 @@ dir = 1 }, /area/holodeck/rec_center/kobayashi) -"fH" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 30 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate/medical) -"fK" = ( +"fu" = ( /obj/item/target, /obj/item/target/clown, /turf/open/floor/holofloor, /area/holodeck/rec_center/firingrange) -"fL" = ( +"fv" = ( /obj/item/target, /obj/item/target/syndicate, /turf/open/floor/holofloor, /area/holodeck/rec_center/firingrange) -"fM" = ( +"fw" = ( /obj/structure/rack, /obj/item/gun/energy/laser/practice, /obj/item/clothing/ears/earmuffs, /turf/open/floor/holofloor, /area/holodeck/rec_center/firingrange) -"fN" = ( +"fx" = ( /obj/structure/window/reinforced{ dir = 1 }, /turf/closed/indestructible/riveted, /area/space) -"fP" = ( +"fy" = ( /obj/machinery/igniter, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/tdome/arena_source) -"fQ" = ( +"fz" = ( /turf/open/floor/plasteel, /area/tdome/arena_source) -"fR" = ( +"fA" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/tdome/arena_source) +"fB" = ( /obj/structure/rack, /obj/item/clothing/under/color/red, /obj/item/clothing/shoes/sneakers/brown, @@ -1918,31 +1933,48 @@ }, /turf/open/floor/plasteel, /area/tdome/arena_source) -"fS" = ( +"fC" = ( /obj/machinery/door/poddoor{ id = "thunderdomegen"; name = "General Supply" }, /turf/open/floor/plasteel/black, /area/tdome/arena_source) -"fT" = ( +"fD" = ( /obj/machinery/door/poddoor{ id = "thunderdome"; name = "Thunderdome Blast Door" }, /turf/open/floor/plasteel, /area/tdome/arena_source) -"fU" = ( +"fE" = ( /turf/open/floor/plasteel/red/side{ dir = 8 }, /area/tdome/arena_source) -"fV" = ( +"fF" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/tdome/arena_source) +"fG" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/tdome/arena_source) +"fH" = ( +/turf/open/floor/plasteel/neutral, +/area/tdome/arena_source) +"fI" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/tdome/arena_source) +"fJ" = ( /turf/open/floor/plasteel/green/side{ dir = 4 }, /area/tdome/arena_source) -"fW" = ( +"fK" = ( /obj/structure/rack, /obj/item/clothing/under/color/green, /obj/item/clothing/shoes/sneakers/brown, @@ -1955,24 +1987,60 @@ }, /turf/open/floor/plasteel, /area/tdome/arena_source) -"fX" = ( +"fL" = ( +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/tdome/arena_source) +"fM" = ( +/turf/open/floor/plasteel/green/corner{ + dir = 4 + }, +/area/tdome/arena_source) +"fN" = ( +/turf/open/floor/plasteel/loadingarea{ + dir = 4 + }, +/area/tdome/arena_source) +"fO" = ( /turf/open/floor/circuit/green, /area/tdome/arena_source) -"fY" = ( +"fP" = ( /obj/machinery/flasher{ id = "tdomeflash"; name = "Thunderdome Flash" }, /turf/open/floor/circuit/green, /area/tdome/arena_source) -"fZ" = ( +"fQ" = ( +/turf/open/floor/plasteel/loadingarea{ + dir = 8 + }, +/area/tdome/arena_source) +"fR" = ( +/obj/machinery/camera{ + pixel_x = 10; + network = list("thunder"); + c_tag = "Arena" + }, +/turf/open/floor/circuit/green, +/area/tdome/arena_source) +"fS" = ( +/turf/open/floor/plasteel/red/corner{ + dir = 8 + }, +/area/tdome/arena_source) +"fT" = ( +/turf/open/floor/plasteel/green/corner, +/area/tdome/arena_source) +"fU" = ( /obj/machinery/door/poddoor{ id = "thunderdomehea"; name = "Heavy Supply" }, /turf/open/floor/plasteel/black, /area/tdome/arena_source) -"ga" = ( +"fV" = ( /obj/structure/rack, /obj/item/clothing/under/color/red, /obj/item/clothing/shoes/sneakers/brown, @@ -1984,7 +2052,7 @@ }, /turf/open/floor/plasteel, /area/tdome/arena_source) -"gb" = ( +"fW" = ( /obj/structure/rack, /obj/item/clothing/under/color/green, /obj/item/clothing/shoes/sneakers/brown, @@ -1996,131 +2064,131 @@ }, /turf/open/floor/plasteel, /area/tdome/arena_source) -"gc" = ( +"fX" = ( /turf/closed/indestructible/riveted, /area/start) -"gd" = ( +"fY" = ( /obj/effect/landmark/start/new_player, /turf/open/floor/plating, /area/start) -"ge" = ( +"fZ" = ( /turf/closed/indestructible/riveted, /area/ctf) -"gf" = ( +"ga" = ( /turf/open/floor/plasteel/darkblue/side{ dir = 9 }, /area/ctf) +"gb" = ( +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/ctf) +"gc" = ( +/turf/open/floor/plasteel/darkblue/side{ + dir = 5 + }, +/area/ctf) +"gd" = ( +/turf/open/floor/plasteel/darkred/side{ + dir = 9 + }, +/area/ctf) +"ge" = ( +/turf/open/floor/plasteel/darkred/side{ + dir = 1 + }, +/area/ctf) +"gf" = ( +/turf/open/floor/plasteel/darkred/side{ + dir = 5 + }, +/area/ctf) "gg" = ( /turf/open/floor/plasteel/darkblue/side{ - dir = 1 + dir = 8 }, /area/ctf) "gh" = ( -/turf/open/floor/plasteel/darkblue/side{ - dir = 5 - }, +/turf/open/floor/plasteel/black, /area/ctf) "gi" = ( -/turf/open/floor/plasteel/darkred/side{ - dir = 9 +/turf/open/floor/plasteel/darkblue/side{ + dir = 4 }, /area/ctf) "gj" = ( -/turf/open/floor/plasteel/darkred/side{ - dir = 1 - }, -/area/ctf) -"gk" = ( -/turf/open/floor/plasteel/darkred/side{ - dir = 5 - }, -/area/ctf) -"gl" = ( -/turf/open/floor/plasteel/darkblue/side{ - dir = 8 - }, -/area/ctf) -"gm" = ( -/turf/open/floor/plasteel/black, -/area/ctf) -"gn" = ( -/turf/open/floor/plasteel/darkblue/side{ - dir = 4 - }, -/area/ctf) -"go" = ( /turf/open/floor/plasteel/blue, /area/ctf) -"gp" = ( +"gk" = ( /turf/open/floor/plasteel/darkblue, /area/ctf) -"gq" = ( +"gl" = ( /obj/structure/barricade/security/ctf, /turf/open/floor/circuit, /area/ctf) -"gr" = ( +"gm" = ( /obj/structure/table/reinforced, /turf/open/floor/plasteel/bluespace, /area/ctf) -"gs" = ( +"gn" = ( /obj/structure/barricade/security/ctf, /turf/open/floor/plasteel/bluespace, /area/ctf) -"gt" = ( +"go" = ( /turf/open/floor/plasteel/bluespace, /area/ctf) -"gu" = ( +"gp" = ( /turf/open/floor/plasteel/darkred/side{ dir = 8 }, /area/ctf) -"gv" = ( +"gq" = ( /obj/structure/barricade/security/ctf, /turf/open/floor/circuit/red, /area/ctf) -"gw" = ( +"gr" = ( /turf/open/floor/plasteel/darkred/side{ dir = 4 }, /area/ctf) -"gx" = ( +"gs" = ( /turf/open/floor/plasteel/red, /area/ctf) -"gy" = ( +"gt" = ( /obj/structure/kitchenspike, /turf/open/floor/plasteel/black, /area/ctf) -"gz" = ( +"gu" = ( /turf/closed/indestructible/splashscreen, /area/start) -"gA" = ( +"gv" = ( /turf/open/floor/plasteel/darkblue/side{ dir = 10 }, /area/ctf) +"gw" = ( +/turf/open/floor/plasteel/darkblue/side, +/area/ctf) +"gx" = ( +/turf/open/floor/plasteel/darkblue/side{ + dir = 6 + }, +/area/ctf) +"gy" = ( +/turf/open/floor/plasteel/darkred/side{ + dir = 10 + }, +/area/ctf) +"gz" = ( +/turf/open/floor/plasteel/darkred/side, +/area/ctf) +"gA" = ( +/turf/open/floor/plasteel/darkred/side{ + dir = 6 + }, +/area/ctf) "gB" = ( -/turf/open/floor/plasteel/darkblue/side, -/area/ctf) -"gC" = ( -/turf/open/floor/plasteel/darkblue/side{ - dir = 6 - }, -/area/ctf) -"gD" = ( -/turf/open/floor/plasteel/darkred/side{ - dir = 10 - }, -/area/ctf) -"gE" = ( -/turf/open/floor/plasteel/darkred/side, -/area/ctf) -"gF" = ( -/turf/open/floor/plasteel/darkred/side{ - dir = 6 - }, -/area/ctf) -"gG" = ( /obj/structure/window/reinforced/fulltile{ obj_integrity = 5000; max_integrity = 5000; @@ -2128,11 +2196,11 @@ }, /turf/open/floor/plating, /area/ctf) -"gH" = ( +"gC" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel/black, /area/ctf) -"gI" = ( +"gD" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -2141,7 +2209,7 @@ }, /turf/open/floor/plasteel/darkblue/corner, /area/ctf) -"gJ" = ( +"gE" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -2149,19 +2217,19 @@ dir = 8 }, /area/ctf) -"gK" = ( +"gF" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel/black, /area/ctf) -"gL" = ( +"gG" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel/darkblue/corner, /area/ctf) -"gM" = ( +"gH" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -2170,13 +2238,41 @@ }, /turf/open/floor/plasteel/black, /area/ctf) -"gN" = ( +"gI" = ( /obj/machinery/power/emitter/energycannon, /turf/open/floor/plating, /area/ctf) +"gJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/black, +/area/ctf) +"gK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 4 + }, +/area/ctf) +"gL" = ( +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/ctf) +"gM" = ( +/turf/open/floor/plasteel/darkblue/corner{ + dir = 4 + }, +/area/ctf) +"gN" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/ctf) "gO" = ( /obj/effect/turf_decal/stripes/line{ - dir = 4 + dir = 8 }, /turf/open/floor/plasteel/black, /area/ctf) @@ -2184,40 +2280,12 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 4 - }, +/turf/open/floor/plating, /area/ctf) "gQ" = ( -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, +/turf/open/floor/plating, /area/ctf) "gR" = ( -/turf/open/floor/plasteel/darkblue/corner{ - dir = 4 - }, -/area/ctf) -"gS" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/ctf) -"gT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/black, -/area/ctf) -"gU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ctf) -"gV" = ( -/turf/open/floor/plating, -/area/ctf) -"gW" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, @@ -2225,27 +2293,27 @@ luminosity = 2 }, /area/ctf) -"gX" = ( +"gS" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel/darkblue/corner, /area/ctf) -"gY" = ( +"gT" = ( /turf/open/floor/plasteel/darkblue/corner{ dir = 1 }, /area/ctf) -"gZ" = ( +"gU" = ( /turf/open/floor/plasteel/darkblue/corner, /area/ctf) -"ha" = ( +"gV" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plating, /area/ctf) -"hb" = ( +"gW" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, @@ -2253,106 +2321,106 @@ dir = 4 }, /area/ctf) -"hc" = ( +"gX" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel/darkblue/corner{ dir = 1 }, /area/ctf) -"hd" = ( +"gY" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel/darkblue/corner{ dir = 4 }, /area/ctf) -"he" = ( +"gZ" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/open/floor/plasteel/black, /area/ctf) -"hf" = ( +"ha" = ( /obj/machinery/power/emitter/energycannon{ dir = 1 }, /turf/open/floor/plating, /area/ctf) -"hg" = ( +"hb" = ( /obj/structure/trap/ctf/blue, /turf/open/floor/plasteel/blue, /area/ctf) -"hh" = ( +"hc" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 }, /turf/open/floor/circuit, /area/ctf) -"hi" = ( +"hd" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/circuit, /area/ctf) +"he" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/circuit, +/area/ctf) +"hf" = ( +/turf/open/floor/plasteel/darkred, +/area/ctf) +"hg" = ( +/obj/structure/trap/ctf/red, +/turf/open/floor/plasteel/darkred, +/area/ctf) +"hh" = ( +/turf/closed/indestructible/rock/snow, +/area/syndicate_mothership) +"hi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/circuit, +/area/ctf) "hj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, /turf/open/floor/circuit, /area/ctf) "hk" = ( -/turf/open/floor/plasteel/darkred, -/area/ctf) -"hl" = ( -/obj/structure/trap/ctf/red, -/turf/open/floor/plasteel/darkred, -/area/ctf) -"hm" = ( -/turf/closed/indestructible/rock/snow, -/area/syndicate_mothership) -"hn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/circuit, -/area/ctf) -"ho" = ( -/turf/open/floor/circuit, -/area/ctf) -"hp" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/circuit, /area/ctf) -"hq" = ( +"hl" = ( /turf/open/floor/plating/asteroid/snow/airless, /area/syndicate_mothership) -"hr" = ( +"hm" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/circuit, /area/ctf) -"hs" = ( +"hn" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/circuit, /area/ctf) -"ht" = ( +"ho" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/open/floor/circuit, /area/ctf) -"hu" = ( +"hp" = ( /obj/structure/barricade/security/ctf, /turf/open/floor/circuit/green/off, /area/ctf) -"hv" = ( +"hq" = ( /obj/structure/trap/ctf/red, /turf/open/floor/plasteel/red, /area/ctf) -"hw" = ( +"hr" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 }, @@ -2360,98 +2428,98 @@ dir = 9 }, /area/ctf) +"hs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/ctf) +"ht" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 5 + }, +/area/ctf) +"hu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/circuit/green/off, +/area/ctf) +"hv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/darkred/side{ + dir = 9 + }, +/area/ctf) +"hw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/darkred/side{ + dir = 1 + }, +/area/ctf) "hx" = ( /obj/effect/turf_decal/stripes/line{ - dir = 1 + dir = 5 }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 +/turf/open/floor/plasteel/darkred/side{ + dir = 5 }, /area/ctf) "hy" = ( /obj/effect/turf_decal/stripes/line{ - dir = 1 + dir = 8 }, /turf/open/floor/plasteel/darkblue/side{ - dir = 5 + dir = 8 }, /area/ctf) "hz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, /turf/open/floor/circuit/green/off, /area/ctf) "hA" = ( /obj/effect/turf_decal/stripes/line{ - dir = 1 + dir = 4 }, /turf/open/floor/plasteel/darkred/side{ - dir = 9 + dir = 4 }, /area/ctf) "hB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/darkred/side{ - dir = 1 - }, -/area/ctf) -"hC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/darkred/side{ - dir = 5 - }, -/area/ctf) -"hD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 8 - }, -/area/ctf) -"hE" = ( -/turf/open/floor/circuit/green/off, -/area/ctf) -"hF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/darkred/side{ - dir = 4 - }, -/area/ctf) -"hG" = ( /turf/open/floor/circuit/red, /area/ctf) -"hH" = ( +"hC" = ( /turf/open/floor/circuit/green/anim, /area/ctf) -"hI" = ( +"hD" = ( /obj/machinery/capture_the_flag/blue, /turf/open/floor/circuit/green/anim, /area/ctf) -"hJ" = ( +"hE" = ( /obj/item/twohanded/ctf/blue, /turf/open/floor/circuit/green/anim, /area/ctf) -"hK" = ( +"hF" = ( /obj/item/twohanded/ctf/red, /turf/open/floor/circuit/green/anim, /area/ctf) -"hL" = ( +"hG" = ( /obj/machinery/capture_the_flag/red, /turf/open/floor/circuit/green/anim, /area/ctf) -"hM" = ( +"hH" = ( /obj/effect/landmark/shuttle_import, /turf/open/space, /area/space) -"hN" = ( +"hI" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, @@ -2459,31 +2527,31 @@ dir = 10 }, /area/ctf) -"hO" = ( +"hJ" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel/darkblue/side, /area/ctf) -"hP" = ( +"hK" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel/darkblue/side{ dir = 6 }, /area/ctf) -"hQ" = ( +"hL" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/circuit/green/off, /area/ctf) -"hR" = ( +"hM" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel/darkred/side{ dir = 10 }, /area/ctf) -"hS" = ( +"hN" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel/darkred/side, /area/ctf) -"hT" = ( +"hO" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 }, @@ -2491,53 +2559,53 @@ dir = 6 }, /area/ctf) -"hU" = ( +"hP" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 }, /turf/open/floor/circuit/red, /area/ctf) +"hQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/circuit/red, +/area/ctf) +"hR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/circuit/red, +/area/ctf) +"hS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/circuit/red, +/area/ctf) +"hT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/circuit/red, +/area/ctf) +"hU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/circuit/red, +/area/ctf) "hV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, +/obj/effect/turf_decal/stripes/line, /turf/open/floor/circuit/red, /area/ctf) "hW" = ( /obj/effect/turf_decal/stripes/line{ - dir = 5 + dir = 6 }, /turf/open/floor/circuit/red, /area/ctf) "hX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/circuit/red, -/area/ctf) -"hY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/circuit/red, -/area/ctf) -"hZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/circuit/red, -/area/ctf) -"ia" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/circuit/red, -/area/ctf) -"ib" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/circuit/red, -/area/ctf) -"ic" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, @@ -2546,13 +2614,13 @@ }, /turf/open/floor/plasteel/black, /area/ctf) -"id" = ( +"hY" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel/darkred/corner, /area/ctf) -"ie" = ( +"hZ" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -2560,7 +2628,7 @@ dir = 8 }, /area/ctf) -"if" = ( +"ia" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 }, @@ -2568,59 +2636,59 @@ dir = 8 }, /area/ctf) -"ig" = ( +"ib" = ( /turf/open/floor/plasteel/darkred/corner, /area/ctf) +"ic" = ( +/turf/open/floor/plasteel/darkred/corner{ + dir = 1 + }, +/area/ctf) +"id" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/darkred/corner{ + dir = 1 + }, +/area/ctf) +"ie" = ( +/turf/open/floor/plasteel/darkred/corner{ + dir = 4 + }, +/area/ctf) +"if" = ( +/turf/open/floor/plasteel/darkred/corner{ + dir = 8 + }, +/area/ctf) +"ig" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/darkred/corner{ + dir = 8 + }, +/area/ctf) "ih" = ( -/turf/open/floor/plasteel/darkred/corner{ - dir = 1 - }, -/area/ctf) -"ii" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/darkred/corner{ - dir = 1 - }, -/area/ctf) -"ij" = ( -/turf/open/floor/plasteel/darkred/corner{ - dir = 4 - }, -/area/ctf) -"ik" = ( -/turf/open/floor/plasteel/darkred/corner{ - dir = 8 - }, -/area/ctf) -"il" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/darkred/corner{ - dir = 8 - }, -/area/ctf) -"im" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/plasteel/black, /area/ctf) -"in" = ( +"ii" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel/darkred/corner{ dir = 4 }, /area/ctf) -"io" = ( +"ij" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel/darkred/corner{ dir = 1 }, /area/ctf) -"ip" = ( +"ik" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 }, @@ -2628,44 +2696,44 @@ dir = 1 }, /area/ctf) -"iq" = ( +"il" = ( /turf/closed/indestructible/riveted, /area/centcom/prison) -"ir" = ( +"im" = ( /obj/machinery/status_display, /turf/closed/indestructible/riveted, /area/centcom/control) -"is" = ( +"in" = ( /obj/structure/sign/nanotrasen, /turf/closed/indestructible/riveted, /area/centcom/control) -"it" = ( +"io" = ( /turf/closed/indestructible/riveted, /area/centcom/control) -"iu" = ( +"ip" = ( /obj/machinery/ai_status_display, /turf/closed/indestructible/riveted, /area/centcom/control) -"iv" = ( +"iq" = ( /obj/effect/landmark/prisonwarp, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/prison) -"iw" = ( +"ir" = ( /turf/closed/indestructible/fakeglass{ icon_state = "fakewindows2"; dir = 6 }, /area/centcom/prison) -"ix" = ( +"is" = ( /obj/structure/table/reinforced, /obj/item/paper_bin, /obj/item/pen, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/centcom/control) -"iy" = ( +"it" = ( /obj/structure/table/reinforced, /obj/item/crowbar/red, /obj/item/tank/internals/emergency_oxygen/engi, @@ -2673,11 +2741,11 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/centcom/control) -"iz" = ( +"iu" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/centcom/control) -"iA" = ( +"iv" = ( /obj/structure/table/reinforced, /obj/item/device/radio{ pixel_x = 5; @@ -2694,7 +2762,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/centcom/control) -"iB" = ( +"iw" = ( /obj/structure/table/reinforced, /obj/item/storage/lockbox/loyalty, /obj/machinery/light{ @@ -2703,7 +2771,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/centcom/control) -"iC" = ( +"ix" = ( /obj/item/storage/box/emps{ pixel_x = 3; pixel_y = 3 @@ -2720,35 +2788,35 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/centcom/control) -"iD" = ( +"iy" = ( /obj/structure/table/reinforced, /obj/item/restraints/handcuffs/cable/zipties, /obj/item/device/assembly/flash/handheld, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/centcom/control) -"iE" = ( +"iz" = ( /obj/structure/table/reinforced, /obj/item/storage/fancy/donut_box, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/centcom/control) -"iF" = ( +"iA" = ( /turf/open/floor/plasteel/vault{ dir = 5 }, /area/centcom/prison) -"iG" = ( +"iB" = ( /turf/closed/indestructible/fakedoor{ name = "CentCom Cell" }, /area/centcom/prison) -"iH" = ( +"iC" = ( /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/control) -"iI" = ( +"iD" = ( /obj/structure/closet/secure_closet/security, /obj/item/storage/belt/security/full, /obj/item/gun/ballistic/automatic/wt550, @@ -2759,7 +2827,7 @@ }, /turf/open/floor/plasteel, /area/centcom/control) -"iJ" = ( +"iE" = ( /obj/structure/closet/secure_closet/security, /obj/item/storage/belt/security/full, /obj/item/gun/ballistic/automatic/wt550, @@ -2770,56 +2838,82 @@ }, /turf/open/floor/plasteel, /area/centcom/control) -"iK" = ( +"iF" = ( /turf/closed/indestructible/riveted, /area/centcom/supply) -"iL" = ( +"iG" = ( /turf/closed/indestructible/fakedoor{ name = "CentCom Warehouse" }, /area/centcom/supply) -"iM" = ( +"iH" = ( /obj/structure/sign/nanotrasen, /turf/closed/indestructible/riveted, /area/centcom/prison) -"iN" = ( +"iI" = ( /obj/structure/sign/securearea, /turf/closed/indestructible/riveted, /area/centcom/prison) -"iO" = ( +"iJ" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 }, +/obj/machinery/light{ + dir = 8 + }, /turf/open/floor/plasteel, /area/centcom/control) -"iP" = ( +"iK" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 }, /turf/open/floor/plasteel, /area/centcom/control) -"iQ" = ( +"iL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"iM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"iN" = ( /obj/machinery/status_display{ name = "cargo display"; supply_display = 1 }, /turf/closed/indestructible/riveted, /area/centcom/supply) -"iR" = ( +"iO" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/centcom/supply) -"iS" = ( +"iP" = ( /turf/open/floor/plasteel/loadingarea{ dir = 4 }, /area/centcom/supply) -"iT" = ( +"iQ" = ( +/obj/machinery/light{ + dir = 1 + }, /turf/open/floor/plasteel/brown{ dir = 1 }, /area/centcom/supply) -"iU" = ( +"iR" = ( +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/centcom/supply) +"iS" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 @@ -2828,19 +2922,19 @@ dir = 5 }, /area/centcom/supply) -"iV" = ( +"iT" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/centcom/control) -"iW" = ( +"iU" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/plasteel, /area/centcom/control) -"iX" = ( +"iV" = ( /obj/structure/closet/secure_closet/security, /obj/item/storage/belt/security/full, /obj/item/gun/ballistic/automatic/wt550, @@ -2851,7 +2945,7 @@ }, /turf/open/floor/plasteel, /area/centcom/control) -"iY" = ( +"iW" = ( /obj/structure/closet/secure_closet/security, /obj/item/storage/belt/security/full, /obj/item/gun/ballistic/automatic/wt550, @@ -2862,19 +2956,19 @@ }, /turf/open/floor/plasteel, /area/centcom/control) -"iZ" = ( +"iX" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/centcom/supply) -"ja" = ( +"iY" = ( /turf/open/floor/plasteel/neutral, /area/centcom/supply) -"jb" = ( +"iZ" = ( /turf/open/floor/plasteel/brown{ dir = 4 }, /area/centcom/supply) -"jc" = ( +"ja" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/centcom{ name = "CentCom"; @@ -2886,7 +2980,7 @@ }, /turf/open/floor/plasteel, /area/centcom/control) -"jd" = ( +"jb" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; @@ -2896,7 +2990,7 @@ }, /turf/open/floor/plating, /area/centcom/supply) -"je" = ( +"jc" = ( /obj/machinery/conveyor{ dir = 1; id = "XCCQMLoad2"; @@ -2907,7 +3001,7 @@ }, /turf/open/floor/plasteel, /area/centcom/supply) -"jf" = ( +"jd" = ( /obj/machinery/conveyor_switch/oneway{ convdir = 1; id = "XCCQMLoad2"; @@ -2917,12 +3011,20 @@ dir = 8 }, /area/centcom/supply) -"jg" = ( +"je" = ( /turf/open/floor/plasteel/yellowsiding{ dir = 1 }, /area/centcom/supply) -"jh" = ( +"jf" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/centcom/supply) +"jg" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_x = -32 }, @@ -2934,7 +3036,7 @@ }, /turf/open/floor/plasteel, /area/centcom/control) -"ji" = ( +"jh" = ( /obj/structure/table/reinforced, /obj/machinery/recharger, /obj/effect/turf_decal/stripes/line{ @@ -2942,7 +3044,7 @@ }, /turf/open/floor/plasteel, /area/centcom/control) -"jj" = ( +"ji" = ( /obj/machinery/vending/security, /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -2950,7 +3052,7 @@ /obj/machinery/light, /turf/open/floor/plasteel, /area/centcom/control) -"jk" = ( +"jj" = ( /obj/structure/extinguisher_cabinet{ dir = 4; pixel_x = 24 @@ -2963,7 +3065,7 @@ }, /turf/open/floor/plasteel, /area/centcom/control) -"jl" = ( +"jk" = ( /obj/machinery/door/poddoor{ density = 1; icon_state = "closed"; @@ -2981,7 +3083,7 @@ }, /turf/open/floor/plasteel, /area/centcom/supply) -"jm" = ( +"jl" = ( /obj/structure/plasticflaps, /obj/machinery/conveyor{ dir = 4; @@ -2993,7 +3095,7 @@ }, /turf/open/floor/plasteel, /area/centcom/supply) -"jn" = ( +"jm" = ( /obj/machinery/door/poddoor{ density = 1; icon_state = "closed"; @@ -3011,7 +3113,7 @@ }, /turf/open/floor/plasteel, /area/centcom/supply) -"jo" = ( +"jn" = ( /obj/machinery/conveyor{ dir = 1; id = "XCCQMLoad2"; @@ -3020,24 +3122,24 @@ /obj/effect/turf_decal/stripes/end, /turf/open/floor/plasteel, /area/centcom/supply) -"jp" = ( +"jo" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 }, /turf/open/floor/plasteel, /area/centcom/supply) -"jq" = ( +"jp" = ( /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/centcom/supply) -"jr" = ( +"jq" = ( /obj/item/stack/packageWrap, /obj/item/hand_labeler, /obj/structure/table, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/centcom/supply) -"js" = ( +"jr" = ( /obj/machinery/door/airlock/external{ name = "Supply Shuttle"; req_access_txt = "106" @@ -3047,42 +3149,42 @@ }, /turf/open/floor/plasteel, /area/centcom/supply) -"jt" = ( +"js" = ( /obj/structure/fans/tiny, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/centcom/supply) -"ju" = ( +"jt" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/plasteel, /area/centcom/supply) -"jv" = ( +"ju" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/filingcabinet/filingcabinet, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/centcom/supply) -"jw" = ( +"jv" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 }, /turf/open/floor/plasteel, /area/centcom/control) -"jx" = ( +"jw" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel, /area/centcom/control) -"jy" = ( +"jx" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 }, /turf/open/floor/plasteel, /area/centcom/control) -"jz" = ( +"jy" = ( /obj/machinery/button/door{ id = "XCCQMLoaddoor"; layer = 4; @@ -3102,7 +3204,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/centcom/supply) -"jA" = ( +"jz" = ( /obj/machinery/airalarm{ dir = 4; pixel_x = -23 @@ -3115,12 +3217,12 @@ }, /turf/open/floor/plasteel, /area/centcom/control) -"jB" = ( +"jA" = ( /turf/open/floor/plasteel/vault{ dir = 5 }, /area/centcom/control) -"jC" = ( +"jB" = ( /obj/structure/noticeboard{ dir = 8; pixel_x = 32 @@ -3133,7 +3235,7 @@ }, /turf/open/floor/plasteel, /area/centcom/control) -"jD" = ( +"jC" = ( /obj/docking_port/stationary{ dir = 8; dwidth = 5; @@ -3144,30 +3246,30 @@ }, /turf/open/space, /area/space) -"jE" = ( +"jD" = ( /turf/open/floor/plasteel/loadingarea{ dir = 8 }, /area/centcom/supply) -"jF" = ( +"jE" = ( /obj/machinery/status_display, /turf/closed/indestructible/riveted, /area/centcom/supply) -"jG" = ( +"jF" = ( /obj/effect/turf_decal/stripes/corner, /turf/open/floor/plasteel, /area/centcom/control) -"jH" = ( +"jG" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/centcom/control) -"jI" = ( +"jH" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 }, /turf/open/floor/plasteel, /area/centcom/control) -"jJ" = ( +"jI" = ( /obj/machinery/door/poddoor{ density = 1; icon_state = "closed"; @@ -3184,7 +3286,7 @@ }, /turf/open/floor/plasteel, /area/centcom/supply) -"jK" = ( +"jJ" = ( /obj/structure/plasticflaps, /obj/machinery/conveyor{ dir = 8; @@ -3195,7 +3297,7 @@ }, /turf/open/floor/plasteel, /area/centcom/supply) -"jL" = ( +"jK" = ( /obj/machinery/door/poddoor{ density = 1; icon_state = "closed"; @@ -3212,7 +3314,7 @@ }, /turf/open/floor/plasteel, /area/centcom/supply) -"jM" = ( +"jL" = ( /obj/machinery/conveyor{ dir = 8; id = "XCCQMLoad" @@ -3222,18 +3324,18 @@ }, /turf/open/floor/plasteel, /area/centcom/supply) -"jN" = ( +"jM" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/open/floor/plasteel, /area/centcom/supply) -"jO" = ( +"jN" = ( /obj/structure/closet/wardrobe/cargotech, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/centcom/supply) -"jP" = ( +"jO" = ( /obj/machinery/conveyor{ dir = 1; id = "XCCQMLoad"; @@ -3244,7 +3346,7 @@ }, /turf/open/floor/plasteel, /area/centcom/supply) -"jQ" = ( +"jP" = ( /obj/machinery/conveyor_switch/oneway{ convdir = 1; id = "XCCQMLoad"; @@ -3254,7 +3356,7 @@ dir = 8 }, /area/centcom/supply) -"jR" = ( +"jQ" = ( /obj/structure/closet/secure_closet/quartermaster, /obj/machinery/airalarm{ dir = 8; @@ -3263,7 +3365,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/centcom/supply) -"jS" = ( +"jR" = ( /obj/machinery/newscaster/security_unit{ pixel_x = -32 }, @@ -3275,12 +3377,12 @@ }, /turf/open/floor/plasteel, /area/centcom/control) -"jT" = ( +"jS" = ( /obj/machinery/computer/prisoner, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/centcom/control) -"jU" = ( +"jT" = ( /obj/machinery/computer/security, /obj/effect/turf_decal/stripes/line, /obj/machinery/light{ @@ -3288,12 +3390,12 @@ }, /turf/open/floor/plasteel, /area/centcom/control) -"jV" = ( +"jU" = ( /obj/machinery/computer/secure_data, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/centcom/control) -"jW" = ( +"jV" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 @@ -3306,43 +3408,25 @@ }, /turf/open/floor/plasteel, /area/centcom/control) -"jX" = ( -/obj/docking_port/stationary{ - area_type = /area/syndicate_mothership; - dir = 1; - dwidth = 25; - height = 50; - id = "emergency_syndicate"; - name = "Syndicate Auxillary Shuttle Dock"; - turf_type = /turf/open/floor/plating/asteroid/snow; - width = 50 - }, -/turf/open/floor/plating/asteroid/snow/airless, -/area/syndicate_mothership) -"jY" = ( -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/centcom/supply) -"jZ" = ( +"jW" = ( /obj/structure/closet/secure_closet/contraband/heads, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/control) -"ka" = ( +"jX" = ( /obj/structure/closet/secure_closet/courtroom, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/control) -"kb" = ( +"jY" = ( /obj/structure/closet/lawcloset, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/control) -"kc" = ( +"jZ" = ( /obj/item/storage/box/handcuffs, /obj/item/crowbar/red, /obj/structure/table/wood, @@ -3350,13 +3434,13 @@ dir = 8 }, /area/centcom/control) -"kd" = ( +"ka" = ( /obj/structure/bookcase/random, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/control) -"ke" = ( +"kb" = ( /obj/structure/bookcase/random, /obj/machinery/light{ dir = 1 @@ -3365,7 +3449,7 @@ dir = 8 }, /area/centcom/control) -"kf" = ( +"kc" = ( /obj/item/book/manual/wiki/security_space_law, /obj/item/device/taperecorder, /obj/structure/table/wood, @@ -3373,7 +3457,7 @@ dir = 8 }, /area/centcom/control) -"kg" = ( +"kd" = ( /obj/item/wrench, /obj/item/restraints/handcuffs, /obj/item/device/assembly/flash/handheld, @@ -3382,7 +3466,7 @@ dir = 8 }, /area/centcom/control) -"kh" = ( +"ke" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-21" }, @@ -3390,7 +3474,7 @@ dir = 8 }, /area/centcom/control) -"ki" = ( +"kf" = ( /obj/structure/table/wood, /obj/item/phone{ desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; @@ -3410,7 +3494,7 @@ dir = 8 }, /area/centcom/control) -"kj" = ( +"kg" = ( /obj/item/clipboard, /obj/item/folder/red, /obj/item/stamp/denied{ @@ -3423,7 +3507,7 @@ dir = 8 }, /area/centcom/control) -"kk" = ( +"kh" = ( /obj/item/storage/briefcase{ pixel_x = -3; pixel_y = 3 @@ -3434,35 +3518,25 @@ dir = 8 }, /area/centcom/control) -"kl" = ( -/turf/closed/indestructible/riveted, -/area/syndicate_mothership/control) -"km" = ( -/obj/machinery/door/poddoor/shuttledock{ - checkdir = 1; - name = "syndicate blast door"; - turftype = /turf/open/floor/plating/asteroid/snow +"ki" = ( +/obj/docking_port/stationary{ + area_type = /area/syndicate_mothership; + dir = 1; + dwidth = 25; + height = 50; + id = "emergency_syndicate"; + name = "Syndicate Auxillary Shuttle Dock"; + turf_type = /turf/open/floor/plating/asteroid/snow; + width = 50 + }, +/turf/open/floor/plating/asteroid/snow/airless, +/area/syndicate_mothership) +"kj" = ( +/turf/open/floor/plasteel/brown{ + dir = 8 }, -/turf/open/floor/plating, -/area/syndicate_mothership/control) -"kn" = ( -/turf/open/floor/plasteel/yellowsiding, /area/centcom/supply) -"ko" = ( -/obj/structure/filingcabinet/medical, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"kp" = ( -/obj/structure/filingcabinet/security, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"kq" = ( +"kk" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-22" }, @@ -3470,13 +3544,13 @@ dir = 8 }, /area/centcom/control) -"kr" = ( +"kl" = ( /turf/open/floor/wood, /area/centcom/control) -"ks" = ( +"km" = ( /turf/open/floor/plasteel/grimy, /area/centcom/control) -"kt" = ( +"kn" = ( /obj/machinery/newscaster/security_unit{ pixel_x = 32 }, @@ -3484,30 +3558,67 @@ dir = 8 }, /area/centcom/control) +"ko" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien20" + }, +/area/abductor_ship) +"kp" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien21" + }, +/area/abductor_ship) +"kq" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien22" + }, +/area/abductor_ship) +"kr" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien23" + }, +/area/abductor_ship) +"ks" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien24" + }, +/area/abductor_ship) +"kt" = ( +/obj/effect/light_emitter{ + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/floor/plating/asteroid/snow/airless, +/area/syndicate_mothership) "ku" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/turf/closed/indestructible/riveted, +/area/syndicate_mothership/control) +"kv" = ( +/obj/machinery/door/poddoor/shuttledock{ + checkdir = 1; + name = "syndicate blast door"; + turftype = /turf/open/floor/plating/asteroid/snow }, /turf/open/floor/plating, /area/syndicate_mothership/control) -"kv" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/handcuffs, -/obj/item/crowbar/red, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/control) "kw" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, +/turf/open/floor/plasteel/yellowsiding, +/area/centcom/supply) +"kx" = ( +/obj/structure/filingcabinet/medical, /obj/effect/turf_decal/stripes/line{ - dir = 8 + dir = 5 }, /turf/open/floor/plasteel, /area/centcom/control) -"kx" = ( +"ky" = ( +/obj/structure/filingcabinet/security, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"kz" = ( /obj/item/clipboard, /obj/item/folder/red, /obj/item/stamp/denied{ @@ -3518,11 +3629,11 @@ /obj/structure/table/wood, /turf/open/floor/plasteel/grimy, /area/centcom/control) -"ky" = ( +"kA" = ( /obj/structure/chair/comfy/brown, /turf/open/floor/plasteel/grimy, /area/centcom/control) -"kz" = ( +"kB" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-22" }, @@ -3534,7 +3645,7 @@ dir = 8 }, /area/centcom/control) -"kA" = ( +"kC" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -3543,7 +3654,7 @@ }, /turf/open/floor/plasteel/grimy, /area/centcom/control) -"kB" = ( +"kD" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -3552,14 +3663,14 @@ }, /turf/open/floor/plasteel/grimy, /area/centcom/control) -"kC" = ( +"kE" = ( /obj/structure/chair, /obj/structure/window/reinforced{ dir = 1 }, /turf/open/floor/plasteel/grimy, /area/centcom/control) -"kD" = ( +"kF" = ( /obj/structure/table/wood, /obj/structure/window/reinforced{ dir = 8 @@ -3568,14 +3679,14 @@ /obj/item/pen/fourcolor, /turf/open/floor/plasteel/grimy, /area/centcom/control) -"kE" = ( +"kG" = ( /obj/structure/chair/comfy/brown{ color = "#596479"; dir = 2 }, /turf/open/floor/plasteel/grimy, /area/centcom/control) -"kF" = ( +"kH" = ( /obj/structure/table/wood, /obj/structure/window/reinforced{ dir = 4 @@ -3585,7 +3696,7 @@ /obj/item/stamp/law, /turf/open/floor/plasteel/grimy, /area/centcom/control) -"kG" = ( +"kI" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -3594,7 +3705,7 @@ }, /turf/open/floor/plasteel/grimy, /area/centcom/control) -"kH" = ( +"kJ" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-22" }, @@ -3606,74 +3717,107 @@ dir = 8 }, /area/centcom/control) -"kI" = ( +"kK" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien16" + }, +/area/abductor_ship) +"kL" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien17" + }, +/area/abductor_ship) +"kM" = ( +/obj/machinery/abductor/experiment{ + team_number = 4 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"kN" = ( +/obj/machinery/abductor/console{ + team_number = 4 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"kO" = ( +/obj/machinery/abductor/pad{ + team_number = 4 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"kP" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien18" + }, +/area/abductor_ship) +"kQ" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien19" + }, +/area/abductor_ship) +"kR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, /turf/open/floor/plating, /area/syndicate_mothership/control) -"kJ" = ( -/turf/open/floor/plasteel/brown, -/area/centcom/supply) -"kK" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/turf/open/floor/plasteel/brown, -/area/centcom/supply) -"kL" = ( -/turf/open/floor/plasteel/brown{ - dir = 6 - }, -/area/centcom/supply) -"kM" = ( -/turf/closed/indestructible/fakedoor{ - name = "CentCom" - }, -/area/centcom/control) -"kN" = ( +"kS" = ( /obj/effect/turf_decal/stripes/line{ - dir = 10 + dir = 8 + }, +/obj/machinery/light{ + dir = 8 }, /turf/open/floor/plasteel, /area/centcom/control) -"kO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"kP" = ( +"kT" = ( /obj/structure/table/reinforced, -/obj/item/wrench, -/obj/item/restraints/handcuffs, -/obj/item/device/assembly/flash/handheld, +/obj/item/storage/box/handcuffs, +/obj/item/crowbar/red, /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/plasteel, /area/centcom/control) -"kQ" = ( +"kU" = ( /obj/structure/table/reinforced, -/obj/item/gun/ballistic/automatic/wt550, -/obj/item/device/flashlight/seclite, +/obj/machinery/recharger, /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/centcom/control) -"kR" = ( +"kV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"kW" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"kX" = ( /obj/structure/table/wood, /obj/item/paper_bin, /obj/item/pen/fourcolor, /turf/open/floor/plasteel/grimy, /area/centcom/control) -"kS" = ( +"kY" = ( /obj/structure/table/wood, /obj/item/clipboard, /obj/item/folder/blue, /obj/item/stamp/law, /turf/open/floor/plasteel/grimy, /area/centcom/control) -"kT" = ( +"kZ" = ( /obj/machinery/door/airlock/centcom{ name = "CentCom Security"; opacity = 1; @@ -3684,7 +3828,7 @@ }, /turf/open/floor/plasteel, /area/centcom/control) -"kU" = ( +"la" = ( /obj/machinery/door/window/brigdoor{ base_state = "rightsecure"; dir = 2; @@ -3697,7 +3841,7 @@ }, /turf/open/floor/plasteel/grimy, /area/centcom/control) -"kV" = ( +"lb" = ( /obj/structure/table/wood, /obj/machinery/door/window, /obj/item/device/radio/intercom{ @@ -3706,7 +3850,7 @@ }, /turf/open/floor/plasteel/grimy, /area/centcom/control) -"kW" = ( +"lc" = ( /obj/structure/table/wood, /obj/structure/window/reinforced{ dir = 8 @@ -3716,7 +3860,7 @@ /obj/structure/window/reinforced, /turf/open/floor/plasteel/grimy, /area/centcom/control) -"kX" = ( +"ld" = ( /obj/structure/table/wood, /obj/item/device/radio/intercom{ desc = "Talk smack through this."; @@ -3731,7 +3875,7 @@ }, /turf/open/floor/plasteel/grimy, /area/centcom/control) -"kY" = ( +"le" = ( /obj/structure/table/wood, /obj/structure/window/reinforced{ dir = 4 @@ -3740,7 +3884,7 @@ /obj/structure/window/reinforced, /turf/open/floor/plasteel/grimy, /area/centcom/control) -"kZ" = ( +"lf" = ( /obj/machinery/door/window/brigdoor{ base_state = "rightsecure"; dir = 2; @@ -3753,10 +3897,162 @@ }, /turf/open/floor/plasteel/grimy, /area/centcom/control) -"la" = ( +"lg" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien14" + }, +/area/abductor_ship) +"lh" = ( +/obj/machinery/computer/camera_advanced/abductor{ + team_number = 4 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"li" = ( +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"lj" = ( +/obj/structure/closet/abductor, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"lk" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien15" + }, +/area/abductor_ship) +"ll" = ( +/turf/open/floor/plating, +/area/syndicate_mothership/control) +"lm" = ( +/obj/machinery/light, +/turf/open/floor/plating, +/area/syndicate_mothership/control) +"ln" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/brown, +/area/centcom/supply) +"lo" = ( +/turf/open/floor/plasteel/brown, +/area/centcom/supply) +"lp" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/plasteel/brown, +/area/centcom/supply) +"lq" = ( +/turf/open/floor/plasteel/brown{ + dir = 6 + }, +/area/centcom/supply) +"lr" = ( +/turf/closed/indestructible/fakedoor{ + name = "CentCom" + }, +/area/centcom/control) +"ls" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"lt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"lu" = ( +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/restraints/handcuffs, +/obj/item/device/assembly/flash/handheld, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"lv" = ( +/obj/structure/table/reinforced, +/obj/item/gun/ballistic/automatic/wt550, +/obj/item/device/flashlight/seclite, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"lw" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/centcom/control) +"lx" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/turf/open/floor/plasteel/vault, +/area/centcom/control) +"ly" = ( +/turf/open/floor/plasteel/vault, +/area/centcom/control) +"lz" = ( +/obj/structure/table/wood, +/obj/item/storage/briefcase, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"lA" = ( +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 32 + }, +/turf/open/floor/plasteel/vault, +/area/centcom/control) +"lB" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien12" + }, +/area/abductor_ship) +"lC" = ( +/obj/item/retractor/alien, +/obj/item/hemostat/alien, +/obj/structure/table/abductor, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"lD" = ( +/obj/effect/landmark/abductor/scientist{ + team_number = 4 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"lE" = ( +/obj/structure/table/optable/abductor, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"lF" = ( +/obj/effect/landmark/abductor/agent{ + team_number = 4 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"lG" = ( +/obj/structure/table/abductor, +/obj/item/storage/box/alienhandcuffs, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"lH" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien13" + }, +/area/abductor_ship) +"lI" = ( /turf/open/space/transit, /area/space) -"lb" = ( +"lJ" = ( /obj/machinery/door/airlock/centcom{ name = "Shuttle Control Office"; opacity = 1; @@ -3767,7 +4063,7 @@ }, /turf/open/floor/plasteel, /area/centcom/supply) -"lc" = ( +"lK" = ( /obj/machinery/door/airlock/centcom{ name = "CentCom Supply"; req_access_txt = "106" @@ -3777,7 +4073,7 @@ }, /turf/open/floor/plasteel, /area/centcom/supply) -"ld" = ( +"lL" = ( /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/ywflowers, @@ -3785,12 +4081,12 @@ /obj/structure/flora/ausbushes/palebush, /turf/open/floor/plating/asteroid, /area/centcom/control) -"le" = ( +"lM" = ( /obj/machinery/door/poddoor/shutters, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/centcom/control) -"lf" = ( +"lN" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/grassybush, /obj/structure/flora/ausbushes/fernybush, @@ -3800,7 +4096,7 @@ name = "sand" }, /area/centcom/control) -"lg" = ( +"lO" = ( /obj/structure/table/reinforced, /obj/item/clipboard, /obj/item/folder/red, @@ -3810,7 +4106,7 @@ }, /turf/open/floor/plasteel, /area/centcom/control) -"lh" = ( +"lP" = ( /obj/structure/table/reinforced, /obj/item/storage/box/handcuffs, /obj/item/crowbar/red, @@ -3821,124 +4117,7 @@ }, /turf/open/floor/plasteel, /area/centcom/control) -"li" = ( -/obj/structure/chair/comfy/brown{ - buildstackamount = 0; - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/centcom/control) -"lj" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/turf/open/floor/plasteel/vault, -/area/centcom/control) -"lk" = ( -/turf/open/floor/plasteel/vault, -/area/centcom/control) -"ll" = ( -/obj/structure/table/wood, -/obj/item/storage/briefcase, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"lm" = ( -/obj/structure/noticeboard{ - dir = 8; - pixel_x = 32 - }, -/turf/open/floor/plasteel/vault, -/area/centcom/control) -"ln" = ( -/obj/structure/flora/grass/both, -/turf/open/floor/plating/asteroid/snow/airless, -/area/syndicate_mothership) -"lo" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/stockexchange, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/supply) -"lp" = ( -/obj/machinery/computer/auxillary_base{ - pixel_y = 32 - }, -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/item/pen/red, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/supply) -"lq" = ( -/obj/machinery/computer/shuttle/labor, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/centcom/supply) -"lr" = ( -/obj/machinery/computer/shuttle/mining, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/centcom/supply) -"ls" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/item/clothing/mask/gas, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/supply) -"lt" = ( -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/supply) -"lu" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/supply) -"lv" = ( -/turf/open/floor/plasteel/brown{ - dir = 9 - }, -/area/centcom/supply) -"lw" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/brown{ - dir = 5 - }, -/area/centcom/supply) -"lx" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: BLAST DOORS" - }, -/turf/open/floor/plating, -/area/centcom/control) -"ly" = ( +"lQ" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-21" }, @@ -3950,17 +4129,17 @@ dir = 8 }, /area/centcom/control) -"lz" = ( +"lR" = ( /turf/open/floor/plasteel/darkred/side{ dir = 8 }, /area/centcom/control) -"lA" = ( +"lS" = ( /turf/open/floor/plasteel/vault{ dir = 9 }, /area/centcom/control) -"lB" = ( +"lT" = ( /obj/machinery/door/airlock/centcom{ name = "CentCom Security"; opacity = 1; @@ -3971,13 +4150,13 @@ }, /turf/open/floor/plasteel, /area/centcom/control) -"lC" = ( +"lU" = ( /obj/structure/table/wood, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/control) -"lD" = ( +"lV" = ( /obj/structure/chair{ dir = 8 }, @@ -3988,27 +4167,220 @@ }, /turf/open/floor/plasteel/grimy, /area/centcom/control) -"lE" = ( +"lW" = ( /obj/structure/chair{ dir = 8 }, /turf/open/floor/plasteel/grimy, /area/centcom/control) -"lF" = ( +"lX" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien10" + }, +/area/abductor_ship) +"lY" = ( +/obj/item/surgical_drapes, +/obj/item/paper/guides/antag/abductor, +/obj/item/scalpel/alien, +/obj/structure/table/abductor, +/obj/item/cautery/alien, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"lZ" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien11" + }, +/area/abductor_ship) +"ma" = ( +/obj/structure/flora/grass/both, +/obj/effect/light_emitter{ + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/floor/plating/asteroid/snow/airless, +/area/syndicate_mothership) +"mb" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/stockexchange, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/supply) +"mc" = ( +/obj/machinery/computer/auxillary_base{ + pixel_y = 32 + }, +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/item/pen/red, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/supply) +"md" = ( +/obj/machinery/computer/shuttle/labor, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/centcom/supply) +"me" = ( +/obj/machinery/computer/shuttle/mining, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/centcom/supply) +"mf" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/supply) +"mg" = ( +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/supply) +"mh" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/supply) +"mi" = ( +/turf/open/floor/plasteel/brown{ + dir = 9 + }, +/area/centcom/supply) +"mj" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/brown{ + dir = 5 + }, +/area/centcom/supply) +"mk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: BLAST DOORS" + }, +/turf/open/floor/plating, +/area/centcom/control) +"ml" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/darkred/side{ + dir = 8 + }, +/area/centcom/control) +"mm" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"mn" = ( +/obj/structure/table/wood, +/obj/item/device/radio/intercom{ + desc = "Talk smack through this."; + syndie = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/centcom/control) +"mo" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel/grimy, +/area/centcom/control) +"mp" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen/red, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"mq" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/centcom/control) +"mr" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien6" + }, +/area/abductor_ship) +"ms" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien7" + }, +/area/abductor_ship) +"mt" = ( +/obj/machinery/abductor/gland_dispenser, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"mu" = ( +/obj/structure/table/abductor, +/obj/item/surgicaldrill/alien, +/obj/item/circular_saw/alien, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"mv" = ( +/obj/structure/bed/abductor, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"mw" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien8" + }, +/area/abductor_ship) +"mx" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien9" + }, +/area/abductor_ship) +"my" = ( /obj/structure/flora/grass/brown, /turf/open/floor/plating/asteroid/snow/airless, /area/syndicate_mothership) -"lG" = ( +"mz" = ( /obj/structure/flora/tree/pine, /turf/open/floor/plating/asteroid/snow/airless, /area/syndicate_mothership) -"lH" = ( +"mA" = ( +/obj/structure/flora/grass/both, +/turf/open/floor/plating/asteroid/snow/airless, +/area/syndicate_mothership) +"mB" = ( /turf/closed/indestructible/fakeglass{ icon_state = "fakewindows"; dir = 1 }, /area/syndicate_mothership/control) -"lI" = ( +"mC" = ( /obj/item/disk/data, /obj/effect/light_emitter{ set_cap = 1; @@ -4016,25 +4388,25 @@ }, /turf/open/floor/plating/asteroid/snow/airless, /area/syndicate_mothership) -"lJ" = ( +"mD" = ( /turf/closed/indestructible/riveted, /area/centcom/ferry) -"lK" = ( +"mE" = ( /obj/machinery/computer/security/telescreen/entertainment, /turf/closed/indestructible/riveted, /area/centcom/ferry) -"lL" = ( +"mF" = ( /obj/machinery/ai_status_display, /turf/closed/indestructible/riveted, /area/centcom/supply) -"lM" = ( +"mG" = ( /obj/machinery/computer/cargo, /obj/effect/turf_decal/stripes/line{ dir = 5 }, /turf/open/floor/plasteel, /area/centcom/supply) -"lN" = ( +"mH" = ( /obj/structure/chair/office/dark{ dir = 8 }, @@ -4042,7 +4414,7 @@ dir = 9 }, /area/centcom/supply) -"lO" = ( +"mI" = ( /obj/structure/chair/office/dark{ dir = 1 }, @@ -4050,7 +4422,7 @@ dir = 1 }, /area/centcom/supply) -"lP" = ( +"mJ" = ( /obj/structure/noticeboard{ dir = 8; pixel_x = 32 @@ -4059,7 +4431,7 @@ dir = 5 }, /area/centcom/supply) -"lQ" = ( +"mK" = ( /obj/structure/table, /obj/item/clipboard, /obj/item/stack/packageWrap, @@ -4069,7 +4441,7 @@ dir = 9 }, /area/centcom/control) -"lR" = ( +"mL" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-22" }, @@ -4077,7 +4449,7 @@ dir = 1 }, /area/centcom/control) -"lS" = ( +"mM" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-21"; pixel_x = -3; @@ -4087,25 +4459,25 @@ dir = 1 }, /area/centcom/control) -"lT" = ( +"mN" = ( /turf/open/floor/plasteel/green/side{ dir = 1 }, /area/centcom/control) -"lU" = ( +"mO" = ( /obj/structure/chair, /turf/open/floor/plasteel/green/side{ dir = 1 }, /area/centcom/control) -"lV" = ( +"mP" = ( /obj/item/storage/firstaid/regular, /obj/structure/table, /turf/open/floor/plasteel/green/side{ dir = 5 }, /area/centcom/control) -"lW" = ( +"mQ" = ( /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/fullgrass, @@ -4113,14 +4485,14 @@ /obj/structure/flora/ausbushes/genericbush, /turf/open/floor/grass, /area/centcom/control) -"lX" = ( +"mR" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plasteel, /area/centcom/control) -"lY" = ( +"mS" = ( /obj/structure/table/reinforced, /obj/item/clipboard, /obj/item/folder/red, @@ -4136,7 +4508,7 @@ }, /turf/open/floor/plasteel, /area/centcom/control) -"lZ" = ( +"mT" = ( /obj/structure/table/reinforced, /obj/machinery/recharger, /obj/machinery/button/door{ @@ -4151,67 +4523,100 @@ }, /turf/open/floor/plasteel, /area/centcom/control) -"ma" = ( -/obj/machinery/light{ +"mU" = ( +/obj/item/book/manual/wiki/security_space_law, +/obj/structure/table/wood, +/turf/open/floor/plasteel/vault{ dir = 8 }, +/area/centcom/control) +"mV" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"mW" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -32 + }, /turf/open/floor/plasteel/darkred/side{ dir = 8 }, /area/centcom/control) -"mb" = ( -/obj/machinery/computer/secure_data, +"mX" = ( +/obj/structure/table/reinforced, +/obj/item/restraints/handcuffs/cable/zipties, +/obj/item/device/assembly/flash/handheld, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/control) -"mc" = ( -/obj/structure/table/wood, -/obj/item/device/radio/intercom{ - desc = "Talk smack through this."; - syndie = 1 +"mY" = ( +/obj/structure/chair{ + dir = 1 }, /turf/open/floor/plasteel/grimy, /area/centcom/control) -"md" = ( +"mZ" = ( /obj/structure/table/wood, -/turf/open/floor/plasteel/grimy, -/area/centcom/control) -"me" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen/red, +/obj/item/paper_bin, +/obj/item/pen, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/control) -"mf" = ( +"na" = ( /obj/structure/chair{ dir = 8 }, /obj/machinery/newscaster{ pixel_x = 32 }, -/obj/machinery/light{ - dir = 4 - }, /turf/open/floor/plasteel/grimy, /area/centcom/control) -"mg" = ( +"nb" = ( +/turf/closed/indestructible/abductor, +/area/abductor_ship) +"nc" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien2" + }, +/area/abductor_ship) +"nd" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien3" + }, +/area/abductor_ship) +"ne" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien4" + }, +/area/abductor_ship) +"nf" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien5" + }, +/area/abductor_ship) +"ng" = ( /turf/closed/indestructible/fakeglass{ icon_state = "fakewindows2"; dir = 1 }, /area/syndicate_mothership/control) -"mh" = ( +"nh" = ( /obj/item/toy/figure/syndie, +/obj/effect/light_emitter{ + set_cap = 1; + set_luminosity = 4 + }, /turf/open/floor/plating/asteroid/snow/airless, /area/syndicate_mothership) -"mi" = ( +"ni" = ( /obj/machinery/newscaster/security_unit, /turf/closed/indestructible/riveted, /area/centcom/ferry) -"mj" = ( +"nj" = ( /obj/structure/toilet{ dir = 4 }, @@ -4220,7 +4625,7 @@ }, /turf/open/floor/plasteel/white, /area/centcom/ferry) -"mk" = ( +"nk" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -4235,23 +4640,23 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/white, /area/centcom/ferry) -"ml" = ( +"nl" = ( /obj/machinery/computer/security/mining, /obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/open/floor/plasteel, /area/centcom/supply) -"mm" = ( +"nm" = ( /turf/open/floor/plasteel/brown{ dir = 10 }, /area/centcom/supply) -"mn" = ( +"nn" = ( /obj/structure/chair/office/dark, /turf/open/floor/plasteel/brown, /area/centcom/supply) -"mo" = ( +"no" = ( /obj/structure/plasticflaps{ opacity = 1 }, @@ -4259,14 +4664,14 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/centcom/supply) -"mp" = ( +"np" = ( /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/centcom/control) -"mq" = ( +"nq" = ( /turf/open/floor/plasteel/neutral, /area/centcom/control) -"mr" = ( +"nr" = ( /obj/structure/chair{ dir = 8 }, @@ -4277,76 +4682,70 @@ dir = 4 }, /area/centcom/control) -"ms" = ( -/obj/item/book/manual/wiki/security_space_law, +"ns" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"nt" = ( +/obj/structure/table/wood, +/obj/item/storage/photo_album, +/obj/item/device/camera, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"nu" = ( +/obj/item/paper/pamphlet/centcom/visitor_info, +/obj/item/paper/pamphlet/centcom/visitor_info, +/obj/item/paper/pamphlet/centcom/visitor_info, /obj/structure/table/wood, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/control) -"mt" = ( -/obj/machinery/vending/cola, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"mu" = ( -/obj/structure/reagent_dispensers/peppertank{ +"nv" = ( +/obj/machinery/newscaster/security_unit{ pixel_x = -32 }, /turf/open/floor/plasteel/darkred/side{ dir = 8 }, /area/centcom/control) -"mv" = ( +"nw" = ( /obj/structure/table/reinforced, -/obj/item/restraints/handcuffs/cable/zipties, -/obj/item/device/assembly/flash/handheld, +/obj/machinery/recharger, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/control) -"mw" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/centcom/control) -"mx" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"my" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/grimy, -/area/centcom/control) -"mz" = ( +"nx" = ( /obj/structure/flora/bush, /turf/open/floor/plating/asteroid/snow/airless, /area/syndicate_mothership) -"mA" = ( +"ny" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating, +/area/syndicate_mothership/control) +"nz" = ( /turf/closed/indestructible/fakeglass, /area/syndicate_mothership/control) -"mB" = ( +"nA" = ( /obj/structure/sign/nosmoking_2, /turf/closed/indestructible/riveted, /area/centcom/ferry) -"mC" = ( +"nB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/open/floor/plasteel/white, /area/centcom/ferry) -"mD" = ( +"nC" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 @@ -4359,7 +4758,7 @@ }, /turf/open/floor/plasteel/white, /area/centcom/ferry) -"mE" = ( +"nD" = ( /obj/item/clipboard, /obj/item/stamp/denied{ pixel_x = 3; @@ -4371,7 +4770,7 @@ dir = 8 }, /area/centcom/supply) -"mF" = ( +"nE" = ( /obj/machinery/keycard_auth{ pixel_y = -24 }, @@ -4383,7 +4782,7 @@ dir = 8 }, /area/centcom/supply) -"mG" = ( +"nF" = ( /obj/machinery/newscaster/security_unit{ pixel_y = -32 }, @@ -4393,21 +4792,21 @@ }, /turf/open/floor/plasteel, /area/centcom/supply) -"mH" = ( +"nG" = ( /obj/machinery/computer/security/mining, /obj/effect/turf_decal/stripes/line{ dir = 5 }, /turf/open/floor/plasteel, /area/centcom/supply) -"mI" = ( +"nH" = ( /obj/machinery/light, /obj/structure/filingcabinet/chestdrawer, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/supply) -"mJ" = ( +"nI" = ( /obj/machinery/firealarm{ dir = 1; pixel_y = -24 @@ -4420,7 +4819,7 @@ dir = 4 }, /area/centcom/supply) -"mK" = ( +"nJ" = ( /obj/machinery/firealarm{ dir = 1; pixel_y = -26 @@ -4429,12 +4828,12 @@ dir = 6 }, /area/centcom/supply) -"mL" = ( +"nK" = ( /turf/open/floor/plasteel/loadingarea{ dir = 1 }, /area/centcom/control) -"mM" = ( +"nL" = ( /obj/structure/chair{ dir = 8 }, @@ -4442,7 +4841,7 @@ dir = 4 }, /area/centcom/control) -"mN" = ( +"nM" = ( /obj/machinery/door/poddoor/shutters{ id = "XCCsecdepartment"; name = "XCC Security Checkpoint Shutters" @@ -4450,103 +4849,25 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/centcom/control) -"mO" = ( +"nN" = ( /obj/structure/chair/office/dark, /turf/open/floor/plasteel/grimy, /area/centcom/control) -"mP" = ( -/obj/structure/table/wood, -/obj/item/storage/photo_album, -/obj/item/device/camera, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"mQ" = ( -/obj/item/paper/pamphlet/centcom/visitor_info, -/obj/item/paper/pamphlet/centcom/visitor_info, -/obj/item/paper/pamphlet/centcom/visitor_info, -/obj/structure/table/wood, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"mR" = ( -/obj/machinery/newscaster/security_unit{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/darkred/side{ - dir = 8 - }, -/area/centcom/control) -"mS" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"mT" = ( -/obj/machinery/door/airlock/silver{ - name = "Bathroom" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/centcom/ferry) -"mU" = ( -/obj/machinery/ai_status_display, -/turf/closed/indestructible/riveted, -/area/centcom/ferry) -"mV" = ( -/obj/machinery/status_display, -/turf/closed/indestructible/riveted, -/area/centcom/ferry) -"mW" = ( -/obj/structure/chair{ +"nO" = ( +/obj/structure/chair/comfy/black{ dir = 4 }, -/turf/open/floor/plasteel/brown{ +/turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/control) -"mX" = ( -/obj/machinery/vending/cola, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/centcom/control) -"mY" = ( -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/centcom/control) -"mZ" = ( -/obj/machinery/computer/prisoner, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"na" = ( -/obj/machinery/computer/security, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"nb" = ( -/obj/machinery/computer/secure_data, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"nc" = ( +"nP" = ( /obj/machinery/vending/snack, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/control) -"nd" = ( +"nQ" = ( /obj/machinery/door/window/brigdoor{ base_state = "rightsecure"; dir = 2; @@ -4562,7 +4883,7 @@ dir = 8 }, /area/centcom/control) -"ne" = ( +"nR" = ( /obj/machinery/door/window/brigdoor{ base_state = "rightsecure"; dir = 2; @@ -4578,11 +4899,88 @@ dir = 8 }, /area/centcom/control) -"nf" = ( +"nS" = ( +/obj/machinery/door/airlock/silver{ + name = "Bathroom" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/centcom/ferry) +"nT" = ( +/obj/machinery/ai_status_display, +/turf/closed/indestructible/riveted, +/area/centcom/ferry) +"nU" = ( +/obj/machinery/status_display, +/turf/closed/indestructible/riveted, +/area/centcom/ferry) +"nV" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/centcom/control) +"nW" = ( +/obj/machinery/vending/cola, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/centcom/control) +"nX" = ( +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/centcom/control) +"nY" = ( +/obj/machinery/computer/prisoner, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"nZ" = ( +/obj/machinery/computer/security, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"oa" = ( +/obj/machinery/computer/secure_data, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"ob" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen/fourcolor, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"oc" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/vault, +/area/centcom/control) +"od" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/vault, +/area/centcom/control) +"oe" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/centcom/ferry) -"ng" = ( +"of" = ( /obj/structure/table/wood, /obj/item/device/taperecorder, /obj/item/storage/box/handcuffs, @@ -4594,7 +4992,7 @@ dir = 8 }, /area/centcom/ferry) -"nh" = ( +"og" = ( /obj/structure/table/wood, /obj/item/storage/photo_album, /obj/item/device/camera, @@ -4605,7 +5003,7 @@ dir = 8 }, /area/centcom/ferry) -"ni" = ( +"oh" = ( /obj/machinery/ai_status_display{ pixel_y = 32 }, @@ -4618,11 +5016,11 @@ dir = 6 }, /area/centcom/ferry) -"nj" = ( +"oi" = ( /obj/structure/fireplace, /turf/open/floor/plasteel/vault, /area/centcom/ferry) -"nk" = ( +"oj" = ( /obj/machinery/status_display{ pixel_y = 32 }, @@ -4630,13 +5028,13 @@ dir = 10 }, /area/centcom/ferry) -"nl" = ( +"ok" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/ferry) -"nm" = ( +"ol" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp, /obj/machinery/requests_console{ @@ -4648,16 +5046,16 @@ }, /turf/open/floor/plasteel/grimy, /area/centcom/ferry) -"nn" = ( +"om" = ( /obj/machinery/computer/card/centcom, /obj/item/card/id/centcom, /turf/open/floor/plasteel/grimy, /area/centcom/ferry) -"no" = ( +"on" = ( /obj/machinery/computer/communications, /turf/open/floor/plasteel/grimy, /area/centcom/ferry) -"np" = ( +"oo" = ( /obj/structure/table/wood, /obj/item/paper_bin, /obj/item/pen/fourcolor, @@ -4669,7 +5067,7 @@ }, /turf/open/floor/plasteel/vault, /area/centcom/ferry) -"nq" = ( +"op" = ( /obj/structure/table/wood, /obj/item/clipboard, /obj/item/folder/blue, @@ -4680,7 +5078,7 @@ }, /turf/open/floor/plasteel/vault, /area/centcom/ferry) -"nr" = ( +"oq" = ( /obj/structure/table/wood, /obj/machinery/computer/security/wooden_tv, /obj/item/storage/secure/safe{ @@ -4689,14 +5087,14 @@ }, /turf/open/floor/plasteel/vault, /area/centcom/ferry) -"ns" = ( +"or" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/filingcabinet/chestdrawer, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/supply) -"nt" = ( +"os" = ( /obj/structure/table/reinforced, /obj/item/paper_bin, /obj/item/pen/red, @@ -4705,7 +5103,7 @@ }, /turf/open/floor/plasteel, /area/centcom/supply) -"nu" = ( +"ot" = ( /obj/structure/table/reinforced, /obj/item/stack/packageWrap, /obj/item/hand_labeler, @@ -4715,21 +5113,21 @@ }, /turf/open/floor/plasteel, /area/centcom/supply) -"nv" = ( +"ou" = ( /obj/machinery/photocopier, /obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/open/floor/plasteel, /area/centcom/supply) -"nw" = ( +"ov" = ( /obj/machinery/computer/cargo, /obj/effect/turf_decal/stripes/line{ dir = 9 }, /turf/open/floor/plasteel, /area/centcom/supply) -"nx" = ( +"ow" = ( /obj/structure/table, /obj/item/paper_bin, /obj/item/pen, @@ -4737,7 +5135,7 @@ dir = 8 }, /area/centcom/control) -"ny" = ( +"ox" = ( /obj/structure/table, /obj/item/paper/pamphlet/centcom/visitor_info, /obj/item/paper/pamphlet/centcom/visitor_info, @@ -4745,7 +5143,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/centcom/control) -"nz" = ( +"oy" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-21"; pixel_x = -3; @@ -4755,27 +5153,19 @@ dir = 4 }, /area/centcom/control) -"nA" = ( +"oz" = ( /obj/structure/table/wood, /obj/item/paper_bin, /obj/item/pen/fourcolor, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/control) -"nB" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/vault, -/area/centcom/control) -"nC" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/vault, -/area/centcom/control) -"nD" = ( +"oA" = ( /obj/item/storage/briefcase{ pixel_x = -3; pixel_y = 3 @@ -4786,10 +5176,10 @@ dir = 8 }, /area/centcom/ferry) -"nE" = ( +"oB" = ( /turf/open/floor/wood, /area/centcom/ferry) -"nF" = ( +"oC" = ( /obj/structure/chair/comfy/brown{ color = "#c45c57"; dir = 4; @@ -4797,22 +5187,22 @@ }, /turf/open/floor/plasteel/grimy, /area/centcom/ferry) -"nG" = ( +"oD" = ( /obj/structure/table/wood, /obj/item/storage/fancy/donut_box, /turf/open/floor/plasteel/grimy, /area/centcom/ferry) -"nH" = ( +"oE" = ( /obj/structure/chair/comfy/black{ dir = 8 }, /turf/open/floor/plasteel/grimy, /area/centcom/ferry) -"nI" = ( +"oF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/centcom/ferry) -"nJ" = ( +"oG" = ( /obj/structure/table/wood, /obj/item/clipboard, /obj/item/folder/red, @@ -4823,7 +5213,7 @@ /obj/item/stamp, /turf/open/floor/plasteel/grimy, /area/centcom/ferry) -"nK" = ( +"oH" = ( /obj/structure/chair/comfy/brown{ color = "#c45c57"; dir = 8; @@ -4834,13 +5224,13 @@ }, /turf/open/floor/plasteel/grimy, /area/centcom/ferry) -"nL" = ( +"oI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/grimy, /area/centcom/ferry) -"nM" = ( +"oJ" = ( /obj/machinery/door/airlock/centcom{ name = "Administrative Office"; opacity = 1; @@ -4853,7 +5243,7 @@ dir = 8 }, /area/centcom/ferry) -"nN" = ( +"oK" = ( /obj/structure/chair/comfy/brown{ color = "#596479"; dir = 1 @@ -4863,13 +5253,13 @@ }, /turf/open/floor/plasteel/grimy, /area/centcom/ferry) -"nO" = ( +"oL" = ( /obj/machinery/modular_computer/console/preset/command, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/ferry) -"nP" = ( +"oM" = ( /obj/structure/table/reinforced, /obj/machinery/computer/stockexchange, /obj/effect/turf_decal/stripes/line{ @@ -4877,36 +5267,79 @@ }, /turf/open/floor/plasteel, /area/centcom/supply) -"nQ" = ( +"oN" = ( /turf/open/floor/plasteel/brown{ dir = 5 }, /area/centcom/supply) -"nR" = ( +"oO" = ( /obj/machinery/computer/security/mining, /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/plasteel, /area/centcom/supply) -"nS" = ( +"oP" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/centcom/control) +"oQ" = ( /obj/machinery/vending/snack, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/centcom/control) -"nT" = ( +"oR" = ( +/obj/item/storage/briefcase{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/secure/briefcase, /obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen/fourcolor, -/obj/machinery/airalarm{ +/obj/structure/noticeboard{ dir = 8; - pixel_x = 24 + pixel_x = 32 }, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/control) -"nU" = ( +"oS" = ( +/obj/machinery/porta_turret/syndicate{ + dir = 9 + }, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/bridge) +"oT" = ( +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/bridge) +"oU" = ( +/obj/structure/window/plastitanium, +/obj/machinery/door/poddoor/shutters{ + id = "syndieshutters"; + name = "blast shutters" + }, +/obj/structure/grille, +/turf/open/floor/plating, +/area/shuttle/syndicate/bridge) +"oV" = ( +/obj/machinery/porta_turret/syndicate{ + dir = 5 + }, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/bridge) +"oW" = ( +/obj/structure/flora/bush, +/obj/effect/light_emitter{ + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/floor/plating/asteroid/snow/airless, +/area/syndicate_mothership) +"oX" = ( /obj/structure/bookcase/random, /obj/machinery/light{ dir = 8 @@ -4915,13 +5348,13 @@ dir = 5 }, /area/centcom/ferry) -"nV" = ( +"oY" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /turf/open/floor/wood, /area/centcom/ferry) -"nW" = ( +"oZ" = ( /obj/structure/chair/comfy/black{ dir = 4 }, @@ -4930,7 +5363,7 @@ }, /turf/open/floor/plasteel/grimy, /area/centcom/ferry) -"nX" = ( +"pa" = ( /obj/structure/table/wood, /obj/item/phone{ desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; @@ -4951,7 +5384,7 @@ }, /turf/open/floor/plasteel/grimy, /area/centcom/ferry) -"nY" = ( +"pb" = ( /obj/structure/chair/comfy/brown{ color = "#c45c57"; dir = 8; @@ -4959,19 +5392,19 @@ }, /turf/open/floor/plasteel/grimy, /area/centcom/ferry) -"nZ" = ( +"pc" = ( /obj/structure/table/wood, /obj/item/paper_bin, /obj/item/pen/fourcolor, /turf/open/floor/plasteel/grimy, /area/centcom/ferry) -"oa" = ( +"pd" = ( /obj/structure/table/wood, /obj/machinery/computer/security/wooden_tv, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/grimy, /area/centcom/ferry) -"ob" = ( +"pe" = ( /obj/machinery/light{ dir = 4 }, @@ -4980,16 +5413,16 @@ }, /turf/open/floor/plasteel/grimy, /area/centcom/ferry) -"oc" = ( +"pf" = ( /obj/machinery/light_switch{ pixel_x = -24 }, /turf/open/floor/plasteel/grimy, /area/centcom/ferry) -"od" = ( +"pg" = ( /turf/open/floor/plasteel/grimy, /area/centcom/ferry) -"oe" = ( +"ph" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-21" }, @@ -5003,7 +5436,7 @@ dir = 8 }, /area/centcom/ferry) -"of" = ( +"pi" = ( /obj/structure/table/reinforced, /obj/item/folder/yellow, /obj/item/stamp/qm, @@ -5012,7 +5445,7 @@ }, /turf/open/floor/plasteel, /area/centcom/supply) -"og" = ( +"pj" = ( /obj/structure/chair/office/dark{ dir = 8 }, @@ -5020,7 +5453,7 @@ dir = 8 }, /area/centcom/supply) -"oh" = ( +"pk" = ( /obj/structure/chair/office/dark{ dir = 4 }, @@ -5028,7 +5461,7 @@ dir = 8 }, /area/centcom/supply) -"oi" = ( +"pl" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, /obj/machinery/door/window/brigdoor{ @@ -5044,36 +5477,153 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/centcom/supply) -"oj" = ( +"pm" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/centcom/control) +"pn" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"po" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"pp" = ( /obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"pq" = ( +/obj/structure/bookcase/random, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"pr" = ( +/obj/structure/bookcase/random, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"ps" = ( +/obj/structure/bookcase/random, +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"pt" = ( +/obj/machinery/vending/coffee, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 1 + }, +/area/centcom/control) +"pu" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/obj/machinery/light, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"pv" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault{ dir = 4 }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, /area/centcom/control) -"ok" = ( -/obj/item/storage/briefcase{ - pixel_x = -3; - pixel_y = 3 +"pw" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" }, -/obj/item/storage/secure/briefcase, -/obj/structure/table/wood, -/obj/structure/noticeboard{ - dir = 8; - pixel_x = 32 +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 }, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/control) -"ol" = ( +"px" = ( +/obj/machinery/computer/med_data/syndie, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/bridge) +"py" = ( +/obj/machinery/computer/crew/syndie, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/bridge) +"pz" = ( +/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/bridge) +"pA" = ( +/obj/machinery/computer/shuttle/syndicate, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/bridge) +"pB" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/bridge) +"pC" = ( +/obj/machinery/computer/camera_advanced/syndie, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/bridge) +"pD" = ( +/obj/machinery/computer/secure_data/syndie, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/bridge) +"pE" = ( /turf/closed/indestructible/fakeglass{ icon_state = "fakewindows2"; dir = 6 }, /area/syndicate_mothership/control) -"om" = ( +"pF" = ( /obj/machinery/door/airlock/centcom{ name = "Auxillary Dock"; opacity = 1; @@ -5081,34 +5631,42 @@ }, /turf/open/floor/plating, /area/syndicate_mothership/control) -"on" = ( +"pG" = ( +/obj/structure/flora/tree/pine, +/obj/effect/light_emitter{ + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/floor/plating/asteroid/snow/airless, +/area/syndicate_mothership) +"pH" = ( /obj/structure/table/wood, /obj/machinery/recharger, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/ferry) -"oo" = ( +"pI" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /turf/open/floor/wood, /area/centcom/ferry) -"op" = ( +"pJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/wood, /area/centcom/ferry) -"oq" = ( +"pK" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/wood, /area/centcom/ferry) -"or" = ( +"pL" = ( /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /turf/open/floor/plasteel/grimy, /area/centcom/ferry) -"os" = ( +"pM" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 @@ -5118,7 +5676,7 @@ }, /turf/open/floor/plasteel/grimy, /area/centcom/ferry) -"ot" = ( +"pN" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/item/clothing/under/rank/curator/treasure_hunter, /obj/item/clothing/under/skirt/black, @@ -5142,7 +5700,7 @@ }, /turf/open/floor/plasteel/grimy, /area/centcom/ferry) -"ou" = ( +"pO" = ( /obj/structure/destructible/cult/tome, /obj/item/book/codex_gigas, /obj/machinery/airalarm{ @@ -5153,7 +5711,7 @@ dir = 8 }, /area/centcom/ferry) -"ov" = ( +"pP" = ( /obj/structure/table/reinforced, /obj/item/cartridge/quartermaster{ pixel_x = -6 @@ -5170,7 +5728,7 @@ }, /turf/open/floor/plasteel, /area/centcom/supply) -"ow" = ( +"pQ" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ @@ -5181,88 +5739,66 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/centcom/supply) -"ox" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"oy" = ( -/obj/structure/chair/comfy/brown{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"oA" = ( -/obj/structure/bookcase/random, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"oB" = ( -/obj/structure/bookcase/random, +"pR" = ( +/obj/structure/table/reinforced, /obj/machinery/status_display{ - pixel_y = -32 + pixel_x = -32 }, +/obj/item/clipboard, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/folder/red, +/obj/item/toy/figure/syndie, /turf/open/floor/plasteel/vault{ dir = 8 }, -/area/centcom/control) -"oC" = ( -/obj/structure/bookcase/random, -/obj/structure/noticeboard{ +/area/shuttle/syndicate/bridge) +"pS" = ( +/obj/structure/chair/office/dark{ + dir = 8; + name = "tactical swivel chair" + }, +/turf/open/floor/plasteel/black, +/area/shuttle/syndicate/bridge) +"pT" = ( +/turf/open/floor/plasteel/black, +/area/shuttle/syndicate/bridge) +"pU" = ( +/obj/structure/chair/office/dark{ dir = 1; - pixel_y = -32 + name = "tactical swivel chair" }, -/turf/open/floor/plasteel/vault{ - dir = 8 +/obj/machinery/button/door{ + id = "syndieshutters"; + name = "Cockpit View Control"; + pixel_x = 32; + pixel_y = 32; + req_access_txt = "150" }, -/area/centcom/control) -"oD" = ( -/obj/machinery/vending/coffee, -/obj/machinery/newscaster{ - pixel_y = -32 +/turf/open/floor/plasteel/black, +/area/shuttle/syndicate/bridge) +"pV" = ( +/obj/structure/chair/office/dark{ + dir = 4; + name = "tactical swivel chair" }, -/turf/open/floor/plasteel/vault{ - dir = 1 +/turf/open/floor/plasteel/black, +/area/shuttle/syndicate/bridge) +"pW" = ( +/obj/structure/table/reinforced, +/obj/machinery/ai_status_display{ + pixel_x = 32 }, -/area/centcom/control) -"oE" = ( -/obj/structure/table/wood, /obj/item/storage/fancy/donut_box, -/obj/machinery/light, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"oF" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault{ +/obj/machinery/light{ dir = 4 }, -/area/centcom/control) -"oG" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, /turf/open/floor/plasteel/vault{ dir = 8 }, -/area/centcom/control) -"oH" = ( +/area/shuttle/syndicate/bridge) +"pX" = ( /obj/item/storage/crayons, /obj/structure/table, /obj/item/storage/crayons, @@ -5270,18 +5806,26 @@ dir = 2 }, /area/syndicate_mothership/control) -"oI" = ( +"pY" = ( /obj/machinery/washing_machine, /turf/open/floor/plasteel/freezer{ dir = 2 }, /area/syndicate_mothership/control) -"oJ" = ( +"pZ" = ( /turf/open/floor/plasteel/bar{ dir = 2 }, /area/syndicate_mothership/control) -"oK" = ( +"qa" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/bar{ + dir = 2 + }, +/area/syndicate_mothership/control) +"qb" = ( /obj/structure/table/wood, /obj/item/folder/red, /obj/item/book/manual/wiki/security_space_law, @@ -5295,7 +5839,7 @@ dir = 8 }, /area/centcom/ferry) -"oL" = ( +"qc" = ( /obj/structure/table/wood, /obj/item/folder/red, /obj/item/lighter, @@ -5307,13 +5851,13 @@ dir = 8 }, /area/centcom/ferry) -"oM" = ( +"qd" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-21" }, /turf/open/floor/wood, /area/centcom/ferry) -"oN" = ( +"qe" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-22" }, @@ -5322,12 +5866,12 @@ }, /turf/open/floor/wood, /area/centcom/ferry) -"oO" = ( +"qf" = ( /obj/structure/closet/crate/bin, /obj/machinery/light, /turf/open/floor/wood, /area/centcom/ferry) -"oP" = ( +"qg" = ( /obj/structure/table/wood, /obj/item/clipboard, /obj/item/toy/figure/dsquad, @@ -5335,11 +5879,11 @@ dir = 8 }, /area/centcom/ferry) -"oQ" = ( +"qh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/vault, /area/centcom/ferry) -"oR" = ( +"qi" = ( /obj/structure/table/wood, /obj/item/storage/secure/briefcase{ pixel_x = 5; @@ -5353,19 +5897,19 @@ dir = 8 }, /area/centcom/ferry) -"oS" = ( +"qj" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp, /turf/open/floor/plasteel/vault, /area/centcom/ferry) -"oT" = ( +"qk" = ( /obj/structure/bed, /obj/item/bedsheet/black, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/ferry) -"oU" = ( +"ql" = ( /obj/structure/dresser, /obj/structure/sign/goldenplaque/captain{ pixel_x = 32 @@ -5374,13 +5918,13 @@ dir = 8 }, /area/centcom/ferry) -"oV" = ( +"qm" = ( /obj/structure/filingcabinet/filingcabinet, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/supply) -"oW" = ( +"qn" = ( /obj/structure/filingcabinet/filingcabinet, /obj/machinery/airalarm{ dir = 1; @@ -5391,7 +5935,7 @@ }, /turf/open/floor/plasteel, /area/centcom/supply) -"oX" = ( +"qo" = ( /obj/structure/table/reinforced, /obj/item/folder, /obj/item/stamp/denied{ @@ -5405,7 +5949,7 @@ /obj/machinery/light, /turf/open/floor/plasteel, /area/centcom/supply) -"oY" = ( +"qp" = ( /obj/machinery/firealarm{ dir = 1; pixel_y = -26 @@ -5414,7 +5958,7 @@ dir = 8 }, /area/centcom/supply) -"oZ" = ( +"qq" = ( /obj/machinery/button/door{ id = "XCCsec3"; name = "XCC Shutter 3 Control"; @@ -5425,22 +5969,22 @@ dir = 8 }, /area/centcom/supply) -"pa" = ( +"qr" = ( /obj/structure/closet/crate/bin, /turf/open/floor/plasteel/green/side{ dir = 10 }, /area/centcom/control) -"pb" = ( +"qs" = ( /obj/structure/chair{ dir = 1 }, /turf/open/floor/plasteel/green/side, /area/centcom/control) -"pc" = ( +"qt" = ( /turf/open/floor/plasteel/green/side, /area/centcom/control) -"pd" = ( +"qu" = ( /obj/structure/table, /obj/item/paper_bin, /obj/item/pen, @@ -5448,7 +5992,7 @@ dir = 6 }, /area/centcom/control) -"pe" = ( +"qv" = ( /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/fullgrass, /obj/structure/flora/ausbushes/ywflowers, @@ -5456,7 +6000,7 @@ /obj/structure/flora/ausbushes/palebush, /turf/open/floor/plating/asteroid, /area/centcom/control) -"pf" = ( +"qw" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/fernybush, @@ -5465,57 +6009,103 @@ icon_state = "asteroid5" }, /area/centcom/control) -"pg" = ( +"qx" = ( +/turf/closed/indestructible/riveted, +/area/centcom/evac) +"qy" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/genericbush, +/turf/open/floor/grass, +/area/centcom/evac) +"qz" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/pointybush, +/turf/open/floor/grass, +/area/centcom/evac) +"qA" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/pointybush, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/grass, +/area/centcom/evac) +"qB" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/grass, +/area/centcom/evac) +"qC" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/grass, +/area/centcom/evac) +"qD" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/grass, +/area/centcom/evac) +"qE" = ( /turf/closed/indestructible/riveted/uranium, /area/wizard_station) -"ph" = ( +"qF" = ( /turf/closed/indestructible/fakeglass{ color = "#008000"; dir = 8; icon_state = "fakewindows" }, /area/wizard_station) -"pi" = ( +"qG" = ( /turf/closed/indestructible/fakeglass{ color = "#008000"; dir = 8; icon_state = "fakewindows2" }, /area/wizard_station) -"pj" = ( +"qH" = ( /turf/closed/indestructible/fakeglass{ color = "#008000"; dir = 4; icon_state = "fakewindows" }, /area/wizard_station) -"pk" = ( -/obj/machinery/door/airlock/hatch{ - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate/medical) -"pl" = ( +"qI" = ( +/turf/open/floor/plasteel/vault, +/area/shuttle/syndicate/bridge) +"qJ" = ( /obj/machinery/computer/shuttle/syndicate/recall, /turf/open/floor/plasteel/bar{ dir = 2 }, /area/syndicate_mothership/control) -"pm" = ( +"qK" = ( /obj/machinery/vending/coffee, /turf/open/floor/plasteel/bar{ dir = 2 }, /area/syndicate_mothership/control) -"pn" = ( +"qL" = ( /obj/machinery/vending/cola, /turf/open/floor/plasteel/bar{ dir = 2 }, /area/syndicate_mothership/control) -"po" = ( +"qM" = ( /obj/machinery/vending/cigarette{ products = list(/obj/item/storage/fancy/cigarettes/cigpack_syndicate = 7, /obj/item/storage/fancy/cigarettes/cigpack_uplift = 3, /obj/item/storage/fancy/cigarettes/cigpack_robust = 2, /obj/item/storage/fancy/cigarettes/cigpack_carp = 3, /obj/item/storage/fancy/cigarettes/cigpack_midori = 1, /obj/item/storage/box/matches = 10, /obj/item/lighter/greyscale = 4, /obj/item/storage/fancy/rollingpapers = 5) }, @@ -5523,7 +6113,7 @@ dir = 2 }, /area/syndicate_mothership/control) -"pp" = ( +"qN" = ( /obj/structure/urinal{ pixel_y = 28 }, @@ -5531,7 +6121,7 @@ dir = 2 }, /area/syndicate_mothership/control) -"pq" = ( +"qO" = ( /obj/item/soap/syndie, /obj/structure/mopbucket, /obj/machinery/light/small{ @@ -5541,7 +6131,7 @@ dir = 2 }, /area/syndicate_mothership/control) -"pr" = ( +"qP" = ( /obj/structure/mirror{ pixel_x = 28 }, @@ -5550,7 +6140,7 @@ dir = 2 }, /area/syndicate_mothership/control) -"ps" = ( +"qQ" = ( /obj/machinery/door/airlock/centcom{ name = "Administrative Office"; opacity = 1; @@ -5562,11 +6152,11 @@ }, /turf/open/floor/plasteel, /area/centcom/ferry) -"pt" = ( +"qR" = ( /obj/structure/sign/nanotrasen, /turf/closed/indestructible/riveted, /area/centcom/ferry) -"pu" = ( +"qS" = ( /obj/machinery/door/airlock/centcom{ name = "CentCom Security"; opacity = 1; @@ -5577,7 +6167,7 @@ }, /turf/open/floor/plasteel, /area/centcom/supply) -"pv" = ( +"qT" = ( /obj/machinery/door/airlock/centcom{ name = "CentCom"; opacity = 1; @@ -5588,23 +6178,61 @@ }, /turf/open/floor/plasteel, /area/centcom/control) -"pw" = ( +"qU" = ( /obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ywflowers, /obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/plating/asteroid, +/area/centcom/evac) +"qV" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/centcom/evac) +"qW" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, /turf/open/floor/grass, -/area/centcom/control) -"px" = ( +/area/centcom/evac) +"qX" = ( +/obj/structure/fluff/arc, +/turf/open/floor/grass, +/area/centcom/evac) +"qY" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/centcom/evac) +"qZ" = ( /turf/open/floor/engine/cult, /area/wizard_station) -"py" = ( +"ra" = ( /obj/machinery/computer/shuttle, /turf/open/floor/engine/cult, /area/wizard_station) -"pz" = ( +"rb" = ( +/obj/machinery/status_display, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/bridge) +"rc" = ( +/obj/machinery/door/airlock/hatch{ + name = "Cockpit"; + req_access_txt = "150" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/bridge) +"rd" = ( +/obj/structure/flora/grass/brown, +/obj/effect/light_emitter{ + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/floor/plating/asteroid/snow/airless, +/area/syndicate_mothership) +"re" = ( /obj/item/paper/fluff/stations/centcom/disk_memo, /obj/structure/noticeboard{ pixel_x = -32 @@ -5613,19 +6241,19 @@ dir = 2 }, /area/syndicate_mothership/control) -"pA" = ( +"rf" = ( /obj/structure/chair/stool, /turf/open/floor/plasteel/bar{ dir = 2 }, /area/syndicate_mothership/control) -"pB" = ( +"rg" = ( /mob/living/simple_animal/hostile/carp/cayenne, /turf/open/floor/plasteel/bar{ dir = 2 }, /area/syndicate_mothership/control) -"pC" = ( +"rh" = ( /obj/machinery/door/airlock/centcom{ name = "Restroom"; opacity = 1; @@ -5635,12 +6263,12 @@ dir = 2 }, /area/syndicate_mothership/control) -"pD" = ( +"ri" = ( /turf/open/floor/plasteel/freezer{ dir = 2 }, /area/syndicate_mothership/control) -"pE" = ( +"rj" = ( /obj/structure/mirror{ pixel_x = 28 }, @@ -5652,7 +6280,7 @@ dir = 2 }, /area/syndicate_mothership/control) -"pF" = ( +"rk" = ( /obj/structure/table/reinforced, /obj/item/book/manual/wiki/security_space_law, /obj/item/device/taperecorder, @@ -5660,7 +6288,7 @@ dir = 8 }, /area/centcom/ferry) -"pG" = ( +"rl" = ( /obj/machinery/computer/auxillary_base{ pixel_y = 32 }, @@ -5671,21 +6299,21 @@ dir = 8 }, /area/centcom/ferry) -"pH" = ( +"rm" = ( /obj/machinery/computer/shuttle/labor, /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/plasteel, /area/centcom/ferry) -"pI" = ( +"rn" = ( /obj/machinery/computer/shuttle/mining, /obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/open/floor/plasteel, /area/centcom/ferry) -"pJ" = ( +"ro" = ( /obj/machinery/light{ dir = 1 }, @@ -5697,13 +6325,13 @@ dir = 8 }, /area/centcom/ferry) -"pK" = ( +"rp" = ( /obj/structure/filingcabinet/filingcabinet, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/ferry) -"pL" = ( +"rq" = ( /obj/machinery/airalarm{ dir = 8; pixel_x = 24 @@ -5713,7 +6341,7 @@ dir = 8 }, /area/centcom/ferry) -"pM" = ( +"rr" = ( /obj/structure/reagent_dispensers/fueltank, /obj/item/weldingtool/experimental, /obj/effect/decal/cleanable/oil, @@ -5721,7 +6349,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/centcom/ferry) -"pN" = ( +"rs" = ( /obj/structure/table/reinforced, /obj/item/stack/sheet/metal{ amount = 50 @@ -5745,7 +6373,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/centcom/ferry) -"pO" = ( +"rt" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-22" }, @@ -5754,13 +6382,13 @@ }, /turf/open/floor/plasteel/vault, /area/centcom/ferry) -"pP" = ( +"ru" = ( /obj/machinery/light_switch{ pixel_y = 24 }, /turf/open/floor/wood, /area/centcom/ferry) -"pQ" = ( +"rv" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-21" }, @@ -5769,18 +6397,18 @@ }, /turf/open/floor/wood, /area/centcom/ferry) -"pR" = ( +"rw" = ( /obj/item/device/flashlight/lamp, /obj/structure/table/reinforced, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/ferry) -"pS" = ( +"rx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/grimy, /area/centcom/ferry) -"pT" = ( +"ry" = ( /obj/machinery/computer/card/centcom, /obj/item/card/id/centcom, /obj/machinery/computer/security/telescreen{ @@ -5791,24 +6419,23 @@ }, /turf/open/floor/plasteel/grimy, /area/centcom/ferry) -"pU" = ( +"rz" = ( /obj/structure/sign/securearea, /turf/closed/indestructible/riveted, /area/centcom/ferry) -"pV" = ( +"rA" = ( /obj/machinery/power/smes/magical, /obj/machinery/light{ dir = 1 }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/centcom/ferry) -"pW" = ( +"rB" = ( /obj/machinery/power/apc{ dir = 4; name = "Commander's Office APC"; @@ -5836,17 +6463,15 @@ /obj/item/screwdriver/power, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/centcom/ferry) -"pX" = ( +"rC" = ( /obj/structure/table/reinforced, /obj/item/clothing/suit/space/hardsuit/deathsquad{ pixel_y = 5 @@ -5857,7 +6482,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/centcom/ferry) -"pY" = ( +"rD" = ( /obj/structure/table/reinforced, /obj/item/storage/lockbox/loyalty, /obj/item/gun/ballistic/automatic/ar, @@ -5867,7 +6492,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/centcom/ferry) -"pZ" = ( +"rE" = ( /obj/structure/table/reinforced, /obj/item/storage/box/handcuffs, /obj/item/crowbar/red, @@ -5879,7 +6504,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/centcom/ferry) -"qa" = ( +"rF" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/grassybush, /obj/structure/flora/ausbushes/fernybush, @@ -5889,13 +6514,25 @@ name = "sand" }, /area/centcom/supply) -"qb" = ( +"rG" = ( /obj/structure/fans/tiny, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/supply) -"qc" = ( +"rH" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/fernybush, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + name = "plating"; + icon_state = "asteroid5" + }, +/area/centcom/control) +"rI" = ( /obj/machinery/door/poddoor/shutters{ id = "XCCsec3"; name = "XCC Checkpoint 3 Shutters" @@ -5903,7 +6540,27 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/centcom/control) -"qd" = ( +"rJ" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/genericbush, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/grass, +/area/centcom/control) +"rK" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/pointybush, +/turf/open/floor/grass, +/area/centcom/control) +"rL" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-21" }, @@ -5914,19 +6571,19 @@ dir = 8 }, /area/centcom/control) -"qe" = ( +"rM" = ( /obj/structure/filingcabinet/medical, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/control) -"qf" = ( +"rN" = ( /obj/structure/filingcabinet/security, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/control) -"qg" = ( +"rO" = ( /obj/structure/table/reinforced, /obj/item/paper_bin, /obj/item/pen, @@ -5937,7 +6594,7 @@ dir = 8 }, /area/centcom/control) -"qh" = ( +"rP" = ( /obj/structure/table/reinforced, /obj/item/wrench, /obj/item/restraints/handcuffs, @@ -5946,7 +6603,7 @@ dir = 8 }, /area/centcom/control) -"qi" = ( +"rQ" = ( /obj/structure/table/reinforced, /obj/item/storage/box/handcuffs, /obj/item/crowbar/red, @@ -5954,7 +6611,7 @@ dir = 8 }, /area/centcom/control) -"qj" = ( +"rR" = ( /obj/item/storage/box/ids{ pixel_x = 3; pixel_y = 3 @@ -5971,45 +6628,116 @@ dir = 8 }, /area/centcom/control) -"qk" = ( -/turf/closed/indestructible/riveted, -/area/centcom/evac) -"ql" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/centcom/evac) -"qm" = ( +"rS" = ( /obj/machinery/status_display, /turf/closed/indestructible/riveted, /area/centcom/evac) -"qn" = ( +"rT" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/window/reinforced, +/turf/open/floor/grass, +/area/centcom/evac) +"rU" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/window/reinforced, +/turf/open/floor/grass, +/area/centcom/evac) +"rV" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/window/reinforced, +/turf/open/floor/grass, +/area/centcom/evac) +"rW" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"rX" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"rY" = ( +/obj/machinery/porta_turret/syndicate{ + dir = 10 + }, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/hallway) +"rZ" = ( +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/hallway) +"sa" = ( +/obj/structure/table/reinforced, +/obj/item/stack/cable_coil/white, +/obj/item/stack/cable_coil/white, +/obj/item/crowbar/red, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/syndicate/hallway) +"sb" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/syndicate/hallway) +"sc" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/handcuffs{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/zipties, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/syndicate/hallway) +"sd" = ( +/obj/machinery/porta_turret/syndicate{ + dir = 6 + }, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/hallway) +"se" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/bar{ + dir = 2 + }, +/area/syndicate_mothership/control) +"sf" = ( /obj/structure/table/wood, /obj/item/device/paicard, /turf/open/floor/plasteel/bar{ dir = 2 }, /area/syndicate_mothership/control) -"qo" = ( +"sg" = ( /obj/structure/table/wood, /obj/item/pizzabox, /turf/open/floor/plasteel/bar{ dir = 2 }, /area/syndicate_mothership/control) -"qp" = ( +"sh" = ( /obj/structure/chair/stool, /obj/effect/landmark/start/nukeop, /turf/open/floor/plasteel/bar{ dir = 2 }, /area/syndicate_mothership/control) -"qq" = ( +"si" = ( /obj/machinery/computer/telecrystals/uplinker, /turf/open/floor/plasteel/podhatch{ dir = 9 }, /area/syndicate_mothership/control) -"qr" = ( +"sj" = ( /obj/structure/toilet{ dir = 8 }, @@ -6026,23 +6754,46 @@ dir = 2 }, /area/syndicate_mothership/control) -"qs" = ( +"sk" = ( /turf/open/floor/plating/airless, /area/syndicate_mothership/control) -"qt" = ( +"sl" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating/airless, +/area/syndicate_mothership/control) +"sm" = ( /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plating/airless, /area/syndicate_mothership/control) -"qu" = ( +"sn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/syndicate_mothership/control) +"so" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/syndicate_mothership/control) +"sp" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/syndicate_mothership/control) +"sq" = ( /obj/machinery/computer/shuttle/white_ship, /obj/effect/turf_decal/stripes/line{ dir = 5 }, /turf/open/floor/plasteel, /area/centcom/ferry) -"qv" = ( +"sr" = ( /obj/structure/chair/office/dark{ dir = 8 }, @@ -6050,12 +6801,12 @@ dir = 9 }, /area/centcom/ferry) -"qw" = ( +"ss" = ( /turf/open/floor/plasteel/green/corner{ dir = 1 }, /area/centcom/ferry) -"qx" = ( +"st" = ( /obj/structure/chair/office/dark{ dir = 1 }, @@ -6063,12 +6814,12 @@ dir = 1 }, /area/centcom/ferry) -"qy" = ( +"su" = ( /turf/open/floor/plasteel/green/corner{ dir = 4 }, /area/centcom/ferry) -"qz" = ( +"sv" = ( /obj/structure/noticeboard{ dir = 8; pixel_x = 32 @@ -6077,12 +6828,12 @@ dir = 5 }, /area/centcom/ferry) -"qA" = ( +"sw" = ( /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/ferry) -"qB" = ( +"sx" = ( /obj/structure/chair/comfy/black, /obj/machinery/computer/security/telescreen/entertainment{ pixel_x = -32 @@ -6095,12 +6846,12 @@ }, /turf/open/floor/plasteel/grimy, /area/centcom/ferry) -"qC" = ( +"sy" = ( /obj/structure/chair/comfy/black, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/plasteel/grimy, /area/centcom/ferry) -"qD" = ( +"sz" = ( /obj/structure/chair/office/dark{ dir = 4 }, @@ -6108,13 +6859,11 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/open/floor/wood, /area/centcom/ferry) -"qE" = ( +"sA" = ( /obj/item/clipboard, /obj/structure/table/reinforced, /obj/item/device/detective_scanner, @@ -6122,38 +6871,32 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/ferry) -"qF" = ( +"sB" = ( /obj/structure/chair/office/dark{ dir = 8 }, /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/grimy, /area/centcom/ferry) -"qG" = ( +"sC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/open/floor/plasteel/grimy, /area/centcom/ferry) -"qH" = ( +"sD" = ( /obj/machinery/door/airlock/centcom{ name = "Administrative Storage"; req_access_txt = "106" @@ -6162,8 +6905,6 @@ dir = 4 }, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ @@ -6171,26 +6912,22 @@ }, /turf/open/floor/plasteel, /area/centcom/ferry) -"qI" = ( +"sE" = ( /obj/machinery/atmospherics/pipe/manifold/supply/visible{ dir = 1 }, /obj/machinery/meter, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/ferry) -"qJ" = ( +"sF" = ( /obj/machinery/power/terminal{ dir = 1 }, @@ -6198,46 +6935,37 @@ dir = 1 }, /obj/structure/cable/white{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/white{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/white{ - d2 = 2; icon_state = "0-2" }, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/ferry) -"qK" = ( +"sG" = ( /obj/machinery/atmospherics/pipe/manifold/supply/visible{ dir = 1 }, /obj/machinery/meter, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/white{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/ferry) -"qL" = ( +"sH" = ( /obj/machinery/door/airlock/vault{ locked = 1; name = "Vault Door"; @@ -6251,7 +6979,7 @@ }, /turf/open/floor/plasteel, /area/centcom/ferry) -"qM" = ( +"sI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -6259,7 +6987,7 @@ dir = 8 }, /area/centcom/ferry) -"qN" = ( +"sJ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -6267,18 +6995,12 @@ dir = 8 }, /area/centcom/ferry) -"qO" = ( +"sK" = ( /turf/open/floor/plasteel/darkred/side{ dir = 1 }, /area/centcom/control) -"qP" = ( -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"qQ" = ( +"sL" = ( /obj/machinery/door/airlock/centcom{ name = "CentCom Security"; opacity = 1; @@ -6289,26 +7011,25 @@ }, /turf/open/floor/plasteel, /area/centcom/evac) -"qR" = ( +"sM" = ( +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/evac) +"sN" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 }, /turf/open/floor/plasteel, /area/centcom/evac) -"qS" = ( +"sO" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel, /area/centcom/evac) -"qT" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/evac) -"qU" = ( +"sP" = ( /obj/structure/table, /obj/item/paper_bin, /obj/item/pen, @@ -6317,15 +7038,24 @@ }, /turf/open/floor/plasteel, /area/centcom/evac) -"qW" = ( -/obj/structure/rack, -/obj/item/clothing/suit/space/syndicate/black/red, -/obj/item/clothing/head/helmet/space/syndicate/black/red, -/turf/open/floor/plasteel/vault{ - dir = 8 +"sQ" = ( +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/area/shuttle/syndicate/airlock) -"qX" = ( +/turf/open/floor/plasteel, +/area/centcom/evac) +"sR" = ( +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/evac) +"sS" = ( /obj/structure/table, /obj/item/toy/katana, /obj/item/toy/plush/carpplushie, @@ -6334,18 +7064,25 @@ }, /turf/open/floor/plasteel, /area/centcom/evac) -"qZ" = ( +"sT" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 }, /turf/open/floor/plasteel, /area/centcom/evac) -"ra" = ( +"sU" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/evac) +"sV" = ( /obj/machinery/door/poddoor/shuttledock, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/centcom/evac) -"rb" = ( +"sW" = ( /obj/structure/showcase{ desc = "A strange machine supposedly from another world. The Wizard Federation has been meddling with it for years."; icon = 'icons/obj/machines/telecomms.dmi'; @@ -6354,7 +7091,7 @@ }, /turf/open/floor/engine/cult, /area/wizard_station) -"rc" = ( +"sX" = ( /obj/structure/showcase{ desc = "A historical figure of great importance to the wizard federation. He spent his long life learning magic, stealing artifacts, and harassing idiots with swords. May he rest forever, Rodney."; icon = 'icons/mob/mob.dmi'; @@ -6363,32 +7100,53 @@ }, /turf/open/floor/engine/cult, /area/wizard_station) -"rd" = ( +"sY" = ( +/obj/structure/chair{ + dir = 4; + name = "tactical chair" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/syndicate/hallway) +"sZ" = ( +/turf/open/floor/plasteel/black, +/area/shuttle/syndicate/hallway) +"ta" = ( +/obj/structure/chair{ + dir = 8; + name = "tactical chair" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/syndicate/hallway) +"tb" = ( /turf/closed/indestructible/fakeglass{ icon_state = "fakewindows"; dir = 9 }, /area/syndicate_mothership/control) -"re" = ( +"tc" = ( /turf/closed/indestructible/fakeglass{ icon_state = "fakewindows2"; dir = 8 }, /area/syndicate_mothership/control) -"rf" = ( +"td" = ( /turf/closed/indestructible/fakeglass{ icon_state = "fakewindows"; dir = 4 }, /area/syndicate_mothership/control) -"rg" = ( +"te" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/snacks/pizzaslice/mushroom, /turf/open/floor/plasteel/bar{ dir = 2 }, /area/syndicate_mothership/control) -"rh" = ( +"tf" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/drinks/beer{ pixel_x = 5; @@ -6403,24 +7161,24 @@ dir = 2 }, /area/syndicate_mothership/control) -"ri" = ( +"tg" = ( /obj/machinery/computer/telecrystals/uplinker, /turf/open/floor/plasteel/podhatch{ dir = 8 }, /area/syndicate_mothership/control) -"rj" = ( +"th" = ( /obj/structure/closet/cardboard, /obj/effect/turf_decal/stripes/corner, /turf/open/floor/plating/airless, /area/syndicate_mothership/control) -"rk" = ( +"ti" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/open/floor/plating/airless, /area/syndicate_mothership/control) -"rl" = ( +"tj" = ( /turf/open/floor/plating/asteroid/snow/airless, /obj/machinery/porta_turret/syndicate/pod, /turf/closed/wall/mineral/plastitanium{ @@ -6428,10 +7186,10 @@ icon_state = "diagonalWall3" }, /area/shuttle/assault_pod) -"rm" = ( +"tk" = ( /turf/closed/wall/mineral/plastitanium, /area/shuttle/assault_pod) -"rn" = ( +"tl" = ( /obj/machinery/door/airlock/centcom{ name = "Assault Pod"; opacity = 1; @@ -6439,7 +7197,7 @@ }, /turf/open/floor/plating, /area/shuttle/assault_pod) -"ro" = ( +"tm" = ( /turf/open/floor/plating/asteroid/snow/airless, /obj/machinery/porta_turret/syndicate/pod, /turf/closed/wall/mineral/plastitanium{ @@ -6447,44 +7205,44 @@ icon_state = "diagonalWall3" }, /area/shuttle/assault_pod) -"rp" = ( +"tn" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/plating/airless, /area/syndicate_mothership/control) -"rq" = ( +"to" = ( /obj/machinery/computer/shuttle/ferry, /obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/open/floor/plasteel, /area/centcom/ferry) -"rr" = ( +"tp" = ( /turf/open/floor/plasteel/green/side{ dir = 10 }, /area/centcom/ferry) -"rs" = ( +"tq" = ( /obj/structure/chair/office/dark, /turf/open/floor/plasteel/green/corner{ dir = 8 }, /area/centcom/ferry) -"rt" = ( +"tr" = ( /turf/open/floor/plasteel/green/corner{ dir = 8 }, /area/centcom/ferry) -"ru" = ( +"ts" = ( /turf/open/floor/plasteel/green/corner, /area/centcom/ferry) -"rv" = ( +"tt" = ( /turf/open/floor/plasteel/green/side{ dir = 6 }, /area/centcom/ferry) -"rw" = ( +"tu" = ( /obj/machinery/door/airlock/centcom{ name = "CentCom Supply"; req_access_txt = "106" @@ -6494,22 +7252,22 @@ }, /turf/open/floor/plasteel, /area/centcom/ferry) -"rx" = ( +"tv" = ( /turf/open/floor/plasteel/vault{ dir = 9 }, /area/centcom/ferry) -"ry" = ( +"tw" = ( /turf/open/floor/plasteel/vault{ dir = 5 }, /area/centcom/ferry) -"rz" = ( +"tx" = ( /obj/structure/table/wood, /obj/item/storage/pill_bottle/dice, /turf/open/floor/plasteel/grimy, /area/centcom/ferry) -"rA" = ( +"ty" = ( /obj/structure/table/wood, /obj/item/toy/cards/deck/cas{ pixel_x = -5; @@ -6521,18 +7279,16 @@ }, /turf/open/floor/plasteel/grimy, /area/centcom/ferry) -"rB" = ( +"tz" = ( /obj/structure/chair/office/dark{ dir = 4 }, /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/wood, /area/centcom/ferry) -"rC" = ( +"tA" = ( /obj/structure/table/reinforced, /obj/item/folder/red, /obj/item/restraints/handcuffs, @@ -6541,7 +7297,7 @@ dir = 8 }, /area/centcom/ferry) -"rD" = ( +"tB" = ( /obj/item/storage/fancy/donut_box, /obj/structure/table/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -6549,7 +7305,7 @@ dir = 8 }, /area/centcom/ferry) -"rE" = ( +"tC" = ( /obj/item/paper_bin, /obj/item/pen/fourcolor, /obj/structure/table/reinforced, @@ -6563,7 +7319,7 @@ dir = 8 }, /area/centcom/ferry) -"rF" = ( +"tD" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 }, @@ -6575,8 +7331,6 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/portable_atmospherics/canister/air, /obj/structure/cable/white{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/turf_decal/stripes/line{ @@ -6584,20 +7338,16 @@ }, /turf/open/floor/plasteel, /area/centcom/ferry) -"rG" = ( +"tE" = ( /obj/machinery/computer/monitor, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/stripes/line{ @@ -6605,7 +7355,7 @@ }, /turf/open/floor/plasteel, /area/centcom/ferry) -"rH" = ( +"tF" = ( /obj/machinery/atmospherics/components/unary/tank/air{ dir = 1 }, @@ -6615,8 +7365,6 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/turf_decal/stripes/line{ @@ -6624,7 +7372,7 @@ }, /turf/open/floor/plasteel, /area/centcom/ferry) -"rI" = ( +"tG" = ( /obj/item/storage/box/handcuffs, /obj/item/ammo_box/a357, /obj/item/ammo_box/a357, @@ -6639,7 +7387,7 @@ }, /turf/open/floor/plasteel, /area/centcom/ferry) -"rJ" = ( +"tH" = ( /obj/item/gun/energy/pulse/carbine/loyalpin, /obj/item/device/flashlight/seclite, /obj/structure/table/reinforced, @@ -6652,7 +7400,7 @@ }, /turf/open/floor/plasteel, /area/centcom/ferry) -"rK" = ( +"tI" = ( /obj/item/storage/box/emps{ pixel_x = 3; pixel_y = 3 @@ -6671,7 +7419,7 @@ }, /turf/open/floor/plasteel, /area/centcom/ferry) -"rL" = ( +"tJ" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-22" }, @@ -6679,30 +7427,30 @@ dir = 1 }, /area/centcom/control) -"rM" = ( +"tK" = ( /turf/open/floor/plasteel/green/corner{ dir = 1 }, /area/centcom/control) -"rN" = ( +"tL" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/centcom/control) -"rO" = ( +"tM" = ( /turf/open/floor/plasteel/neutral/side{ dir = 1; heat_capacity = 1e+006 }, /area/centcom/control) -"rP" = ( +"tN" = ( /turf/open/floor/plasteel/green/corner{ dir = 4 }, /area/centcom/control) -"rQ" = ( +"tO" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-21" }, @@ -6710,11 +7458,11 @@ dir = 4 }, /area/centcom/control) -"rR" = ( +"tP" = ( /obj/structure/sign/securearea, /turf/closed/indestructible/riveted, /area/centcom/control) -"rS" = ( +"tQ" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-22" }, @@ -6722,7 +7470,11 @@ dir = 5 }, /area/centcom/control) -"rT" = ( +"tR" = ( +/obj/machinery/ai_status_display, +/turf/closed/indestructible/riveted, +/area/centcom/evac) +"tS" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-21" }, @@ -6734,78 +7486,109 @@ }, /turf/open/floor/plasteel, /area/centcom/evac) -"rU" = ( +"tT" = ( /turf/open/floor/plasteel/yellowsiding{ dir = 1 }, /area/centcom/evac) -"rV" = ( +"tU" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/plasteel, /area/centcom/evac) -"rW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/centcom{ - name = "CentCom"; - opacity = 1; - req_access_txt = "0" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, +"tV" = ( +/obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/centcom/evac) -"rX" = ( +"tW" = ( /turf/closed/indestructible/fakeglass{ color = "#008000"; dir = 6; icon_state = "fakewindows2" }, /area/wizard_station) -"rY" = ( +"tX" = ( /obj/machinery/door/airlock{ icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; name = "Cockpit" }, /turf/open/floor/engine/cult, /area/wizard_station) -"rZ" = ( +"tY" = ( +/obj/machinery/porta_turret/syndicate{ + dir = 9 + }, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/eva) +"tZ" = ( +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/eva) +"ua" = ( +/obj/structure/chair{ + dir = 4; + name = "tactical chair" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/syndicate/hallway) +"ub" = ( +/obj/structure/chair{ + dir = 8; + name = "tactical chair" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/syndicate/hallway) +"uc" = ( +/obj/machinery/porta_turret/syndicate{ + dir = 4 + }, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/hallway) +"ud" = ( /obj/machinery/door/poddoor/shutters{ id = "nukeop_ready"; name = "shuttle dock" }, /turf/open/floor/plating, /area/syndicate_mothership/control) -"sa" = ( +"ue" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/plating/airless, /area/syndicate_mothership/control) -"sb" = ( +"uf" = ( /obj/structure/chair{ dir = 4 }, /turf/open/floor/mineral/plastitanium, /area/shuttle/assault_pod) -"sc" = ( +"ug" = ( /turf/open/floor/mineral/plastitanium, /area/shuttle/assault_pod) -"sd" = ( +"uh" = ( /obj/structure/chair{ dir = 8 }, /turf/open/floor/mineral/plastitanium, /area/shuttle/assault_pod) -"se" = ( +"ui" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plating/airless, /area/syndicate_mothership/control) -"sf" = ( +"uj" = ( /obj/item/clipboard, /obj/item/folder/red, /obj/item/stamp/denied{ @@ -6818,7 +7601,7 @@ dir = 8 }, /area/centcom/ferry) -"sg" = ( +"uk" = ( /obj/machinery/keycard_auth{ pixel_y = -24 }, @@ -6834,7 +7617,7 @@ dir = 8 }, /area/centcom/ferry) -"sh" = ( +"ul" = ( /obj/machinery/computer/emergency_shuttle, /obj/machinery/newscaster/security_unit{ pixel_y = -32 @@ -6844,21 +7627,21 @@ }, /turf/open/floor/plasteel, /area/centcom/ferry) -"si" = ( +"um" = ( /obj/machinery/computer/communications, /obj/effect/turf_decal/stripes/line{ dir = 5 }, /turf/open/floor/plasteel, /area/centcom/ferry) -"sj" = ( +"un" = ( /obj/machinery/light, /obj/structure/filingcabinet/chestdrawer, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/ferry) -"sk" = ( +"uo" = ( /obj/machinery/firealarm{ dir = 1; pixel_y = -24 @@ -6871,7 +7654,7 @@ dir = 4 }, /area/centcom/ferry) -"sl" = ( +"up" = ( /obj/structure/chair/comfy/black{ dir = 1 }, @@ -6880,27 +7663,31 @@ }, /turf/open/floor/plasteel/grimy, /area/centcom/ferry) -"sm" = ( +"uq" = ( /obj/structure/chair/comfy/black{ dir = 1 }, /turf/open/floor/plasteel/grimy, /area/centcom/ferry) -"sn" = ( +"ur" = ( /obj/structure/cable/white{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/open/floor/wood, /area/centcom/ferry) -"so" = ( +"us" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/wood, /area/centcom/ferry) -"sp" = ( +"ut" = ( +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"uu" = ( /obj/machinery/firealarm{ dir = 1; pixel_y = -24 @@ -6909,17 +7696,17 @@ dir = 9 }, /area/centcom/control) -"sq" = ( +"uv" = ( /obj/machinery/computer/security, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/control) -"sr" = ( +"uw" = ( /obj/structure/chair/office/dark, /turf/open/floor/plasteel/darkred/side, /area/centcom/control) -"ss" = ( +"ux" = ( /obj/machinery/computer/card/centcom, /obj/machinery/button/door{ id = "XCCcustoms1"; @@ -6937,7 +7724,7 @@ }, /turf/open/floor/plasteel/darkred/side, /area/centcom/control) -"st" = ( +"uy" = ( /obj/machinery/computer/security, /obj/machinery/airalarm{ dir = 8; @@ -6947,7 +7734,16 @@ dir = 8 }, /area/centcom/control) -"su" = ( +"uz" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/palebush, +/obj/machinery/light, +/turf/open/floor/plating/asteroid, +/area/centcom/evac) +"uA" = ( /obj/structure/chair{ dir = 4 }, @@ -6956,23 +7752,14 @@ }, /turf/open/floor/plasteel, /area/centcom/evac) -"sv" = ( +"uB" = ( /turf/open/floor/plasteel/neutral, /area/centcom/evac) -"sw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: BLAST DOORS" - }, -/turf/open/floor/plating, -/area/centcom/evac) -"sx" = ( +"uC" = ( /obj/machinery/computer/camera_advanced, /turf/open/floor/wood, /area/wizard_station) -"sy" = ( +"uD" = ( /obj/structure/table/wood/fancy, /obj/item/device/radio/intercom{ desc = "Talk smack through this."; @@ -6980,26 +7767,43 @@ }, /turf/open/floor/wood, /area/wizard_station) -"sz" = ( +"uE" = ( /turf/open/floor/carpet, /area/wizard_station) -"sA" = ( +"uF" = ( /obj/structure/chair/wood/wings, /turf/open/floor/carpet, /area/wizard_station) -"sB" = ( +"uG" = ( +/obj/machinery/suit_storage_unit/syndicate, +/turf/open/floor/plasteel/podhatch{ + dir = 5 + }, +/area/shuttle/syndicate/eva) +"uH" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/syndicate/eva) +"uI" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/eva) +"uJ" = ( /obj/machinery/door/airlock/external{ req_access_txt = "150" }, /turf/open/floor/plating, /area/syndicate_mothership/control) -"sC" = ( +"uK" = ( /turf/closed/indestructible/fakeglass{ icon_state = "fakewindows"; dir = 8 }, /area/syndicate_mothership/control) -"sD" = ( +"uL" = ( /obj/machinery/button/door{ id = "nukeop_ready"; name = "mission launch control"; @@ -7010,20 +7814,20 @@ dir = 2 }, /area/syndicate_mothership/control) -"sE" = ( +"uM" = ( /obj/machinery/computer/telecrystals/uplinker, /turf/open/floor/plasteel/podhatch{ dir = 10 }, /area/syndicate_mothership/control) -"sF" = ( +"uN" = ( /obj/structure/chair{ dir = 1 }, /obj/machinery/light, /turf/open/floor/mineral/plastitanium, /area/shuttle/assault_pod) -"sG" = ( +"uO" = ( /obj/machinery/door/airlock/centcom{ name = "Shuttle Control Office"; opacity = 1; @@ -7034,7 +7838,7 @@ }, /turf/open/floor/plasteel, /area/centcom/ferry) -"sH" = ( +"uP" = ( /obj/structure/table/reinforced, /obj/item/stack/packageWrap, /obj/item/crowbar/power, @@ -7045,20 +7849,20 @@ }, /turf/open/floor/plasteel, /area/centcom/ferry) -"sI" = ( +"uQ" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel, /area/centcom/ferry) -"sJ" = ( +"uR" = ( /obj/structure/bookcase/random, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/centcom/ferry) -"sK" = ( +"uS" = ( /obj/structure/table/wood, /obj/item/paper_bin, /obj/item/pen/fourcolor, @@ -7070,7 +7874,7 @@ dir = 8 }, /area/centcom/ferry) -"sL" = ( +"uT" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-22" }, @@ -7078,11 +7882,11 @@ dir = 6 }, /area/centcom/ferry) -"sM" = ( +"uU" = ( /obj/structure/cable/white, /turf/open/floor/plasteel/vault, /area/centcom/ferry) -"sN" = ( +"uV" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-21" }, @@ -7090,7 +7894,7 @@ dir = 10 }, /area/centcom/ferry) -"sO" = ( +"uW" = ( /obj/structure/closet/crate/bin, /obj/machinery/light_switch{ pixel_y = -24 @@ -7099,7 +7903,7 @@ dir = 8 }, /area/centcom/ferry) -"sP" = ( +"uX" = ( /obj/structure/table/wood, /obj/item/dice/d20{ pixel_x = 3; @@ -7119,7 +7923,7 @@ dir = 8 }, /area/centcom/ferry) -"sQ" = ( +"uY" = ( /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/fullgrass, @@ -7128,7 +7932,7 @@ /obj/structure/flora/ausbushes/leafybush, /turf/open/floor/grass, /area/centcom/ferry) -"sR" = ( +"uZ" = ( /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/fullgrass, @@ -7136,7 +7940,7 @@ /obj/structure/flora/ausbushes/pointybush, /turf/open/floor/grass, /area/centcom/ferry) -"sS" = ( +"va" = ( /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/fullgrass, @@ -7144,7 +7948,7 @@ /obj/structure/flora/ausbushes/genericbush, /turf/open/floor/grass, /area/centcom/ferry) -"sT" = ( +"vb" = ( /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/fullgrass, @@ -7153,11 +7957,11 @@ /obj/structure/flora/ausbushes/pointybush, /turf/open/floor/grass, /area/centcom/ferry) -"sU" = ( +"vc" = ( /obj/machinery/newscaster, /turf/closed/indestructible/riveted, /area/centcom/control) -"sV" = ( +"vd" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, /obj/item/folder/red, @@ -7173,21 +7977,21 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/centcom/control) -"sW" = ( +"ve" = ( /turf/open/floor/plasteel/blue/corner, /area/centcom/evac) -"sX" = ( +"vf" = ( /turf/open/floor/plasteel/blue/side, /area/centcom/evac) -"sY" = ( +"vg" = ( /turf/open/floor/plasteel/blue/corner{ dir = 8 }, /area/centcom/evac) -"sZ" = ( +"vh" = ( /turf/open/floor/plasteel, /area/centcom/evac) -"ta" = ( +"vi" = ( /obj/docking_port/stationary{ dir = 4; dwidth = 25; @@ -7198,6458 +8002,51 @@ }, /turf/open/space, /area/space) -"tb" = ( +"vj" = ( /turf/open/floor/wood, /area/wizard_station) -"tc" = ( +"vk" = ( /obj/structure/chair/wood/wings{ icon_state = "wooden_chair_wings"; dir = 1 }, /turf/open/floor/wood, /area/wizard_station) -"td" = ( +"vl" = ( /obj/structure/chair/wood/wings{ icon_state = "wooden_chair_wings"; dir = 4 }, /turf/open/floor/carpet, /area/wizard_station) -"te" = ( +"vm" = ( /obj/structure/table/wood/poker, /obj/item/toy/figure/wizard, /turf/open/floor/carpet, /area/wizard_station) -"tf" = ( -/obj/structure/chair/wood/wings{ - icon_state = "wooden_chair_wings"; - dir = 8 - }, -/turf/open/floor/carpet, -/area/wizard_station) -"tg" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/shuttle/syndicate/medical) -"th" = ( -/obj/item/storage/box/drinkingglasses, -/obj/item/reagent_containers/food/drinks/bottle/rum, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/syndicate_mothership/control) -"ti" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/syndicate_mothership/control) -"tj" = ( -/obj/structure/table/wood, -/obj/item/device/syndicatedetonator{ - desc = "This gaudy button can be used to instantly detonate syndicate bombs that have been activated on the station. It is also fun to press." - }, -/turf/open/floor/wood, -/area/syndicate_mothership/control) -"tk" = ( -/obj/structure/table/wood, -/obj/item/toy/nuke, -/turf/open/floor/wood, -/area/syndicate_mothership/control) -"tl" = ( -/obj/machinery/door/airlock/centcom{ - aiControlDisabled = 1; - name = "Assault Pod"; - opacity = 1; - req_access_txt = "150" - }, -/turf/open/floor/plating, -/area/shuttle/assault_pod) -"tm" = ( -/obj/machinery/computer/shuttle/syndicate/drop_pod, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/assault_pod) -"tn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK" - }, -/turf/open/floor/plating, -/area/centcom/ferry) -"to" = ( -/obj/structure/closet/emcloset, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"tp" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"tq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"tr" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"ts" = ( -/obj/machinery/door/airlock/centcom{ - name = "Administrative Office"; - opacity = 1; - req_access_txt = "109" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"tt" = ( -/obj/machinery/door/poddoor/shutters{ - id = "XCCsec1"; - name = "XCC Checkpoint 1 Shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"tu" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/green/corner{ - dir = 1 - }, -/area/centcom/control) -"tv" = ( -/obj/machinery/pdapainter, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"tw" = ( -/obj/machinery/photocopier, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "XCCFerry"; - name = "Hanger Bay Shutters"; - pixel_x = -8; - pixel_y = 24; - req_access_txt = "2" - }, -/obj/machinery/button/door{ - id = "XCCsec3"; - name = "CC Main Access Control"; - pixel_x = 8; - pixel_y = 24 - }, -/obj/machinery/button/door{ - id = "XCCsec1"; - name = "CC Shutter 1 Control"; - pixel_x = 8; - pixel_y = 38 - }, -/obj/machinery/button/door{ - id = "XCCsec3"; - name = "XCC Shutter 3 Control"; - pixel_x = -8; - pixel_y = 38 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"tx" = ( -/obj/structure/table/reinforced, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"ty" = ( -/obj/item/device/flashlight/lamp, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"tz" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"tA" = ( -/obj/structure/filingcabinet/medical, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"tB" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/green/corner{ - dir = 4 - }, -/area/centcom/control) -"tC" = ( -/obj/machinery/door/poddoor/shutters{ - id = "XCCcustoms2"; - name = "XCC Customs 2 Shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"tD" = ( -/obj/structure/table, -/obj/item/paper/pamphlet/centcom/visitor_info, -/obj/item/paper/pamphlet/centcom/visitor_info, -/obj/item/paper/pamphlet/centcom/visitor_info, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/green/side{ - dir = 9 - }, -/area/centcom/control) -"tE" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/centcom/control) -"tF" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/centcom/control) -"tG" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/green/side{ - dir = 5 - }, -/area/centcom/control) -"tH" = ( -/obj/machinery/door/poddoor/shutters{ - id = "XCCcustoms1"; - name = "XCC Customs 1 Shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/evac) -"tI" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 10 - }, -/area/centcom/evac) -"tJ" = ( -/turf/open/floor/plasteel/blue/side{ - dir = 5 - }, -/area/centcom/evac) -"tK" = ( -/turf/open/floor/plasteel/blue, -/area/centcom/evac) -"tL" = ( -/turf/open/floor/plasteel/blue/side{ - dir = 4 - }, -/area/centcom/evac) -"tM" = ( -/turf/open/floor/plasteel/blue/side{ - dir = 8 - }, -/area/centcom/evac) -"tO" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; - name = "Observation Room" - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"tP" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; - name = "Game Room" - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"tQ" = ( -/obj/structure/chair/wood/wings{ - icon_state = "wooden_chair_wings"; - dir = 1 - }, -/turf/open/floor/carpet, -/area/wizard_station) -"tR" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'FOURTH WALL'."; - name = "\improper FOURTH WALL"; - pixel_x = -32 - }, -/turf/open/floor/plating/asteroid/snow/airless, -/area/syndicate_mothership) -"tS" = ( -/turf/open/floor/wood, -/area/syndicate_mothership/control) -"tT" = ( -/obj/effect/landmark/start/nukeop_leader, -/turf/open/floor/wood, -/area/syndicate_mothership/control) -"tU" = ( -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Uplink Management Control"; - req_access_txt = "151" - }, -/turf/open/floor/wood, -/area/syndicate_mothership/control) -"tV" = ( -/obj/structure/chair, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/assault_pod) -"tW" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"tX" = ( -/turf/open/floor/plasteel/neutral, -/area/centcom/ferry) -"tY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"tZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/centcom{ - name = "CentCom Security"; - opacity = 1; - req_access_txt = "101" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"ua" = ( -/obj/machinery/door/poddoor/shutters{ - id = "XCCFerry"; - name = "XCC Ferry Hangar" - }, -/turf/open/floor/plasteel/loadingarea{ - dir = 4 - }, -/area/centcom/ferry) -"ub" = ( -/obj/machinery/button/door{ - id = "XCCFerry"; - name = "Hanger Bay Shutters"; - pixel_y = 24; - req_access_txt = "2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"uc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"ud" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"ue" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"uf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"ug" = ( -/obj/machinery/door/airlock/centcom{ - name = "CentCom Customs"; - opacity = 1; - req_access_txt = "109" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"uh" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/folder/blue{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/lighter, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"ui" = ( -/obj/structure/chair/comfy/brown{ - color = "#596479"; - dir = 2 - }, -/turf/open/floor/plasteel/vault, -/area/centcom/control) -"uj" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/med_data/laptop, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"uk" = ( -/turf/open/floor/plasteel/green/side{ - dir = 8 - }, -/area/centcom/control) -"ul" = ( -/turf/open/floor/plasteel/loadingarea, -/area/centcom/control) -"um" = ( -/turf/open/floor/plasteel/green/side{ - dir = 4 - }, -/area/centcom/control) -"un" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/evac) -"uo" = ( -/turf/open/floor/plasteel/blue/side{ - dir = 6 - }, -/area/centcom/evac) -"uq" = ( -/obj/structure/chair/wood/wings{ - icon_state = "wooden_chair_wings"; - dir = 8 - }, -/turf/open/floor/wood, -/area/wizard_station) -"ur" = ( -/obj/structure/table/wood/fancy, -/obj/item/device/camera/spooky, -/turf/open/floor/carpet, -/area/wizard_station) -"us" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck, -/turf/open/floor/carpet, -/area/wizard_station) -"ut" = ( -/obj/machinery/computer/telecrystals/boss, -/turf/open/floor/plasteel/podhatch{ - dir = 5 - }, -/area/syndicate_mothership/control) -"uu" = ( -/obj/structure/sign/map/left{ - pixel_y = -32 - }, -/obj/structure/rack{ - icon = 'icons/obj/stationobjs.dmi'; - icon_state = "minibar_left"; - name = "skeletal minibar" - }, -/obj/item/reagent_containers/food/drinks/bottle/vodka, -/turf/open/floor/wood, -/area/syndicate_mothership/control) -"uv" = ( -/obj/structure/sign/map/right{ - pixel_y = -32 - }, -/obj/structure/rack{ - icon = 'icons/obj/stationobjs.dmi'; - icon_state = "minibar_right"; - name = "skeletal minibar" - }, -/obj/item/reagent_containers/food/drinks/bottle/gin, -/turf/open/floor/wood, -/area/syndicate_mothership/control) -"uw" = ( -/obj/machinery/door/airlock/centcom{ - name = "Equipment Room"; - opacity = 1; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/bar{ - dir = 2 - }, -/area/syndicate_mothership/control) -"ux" = ( -/turf/open/floor/plating/asteroid/snow/airless, -/obj/machinery/porta_turret/syndicate/pod, -/turf/closed/wall/mineral/plastitanium{ - icon_state = "diagonalWall3" - }, -/area/shuttle/assault_pod) -"uy" = ( -/turf/open/floor/plating/asteroid/snow/airless, -/obj/machinery/porta_turret/syndicate/pod, -/turf/closed/wall/mineral/plastitanium{ - dir = 4; - icon_state = "diagonalWall3" - }, -/area/shuttle/assault_pod) -"uz" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 2; - height = 13; - id = "ferry_away"; - name = "CentCom Ferry Dock"; - width = 5 - }, -/turf/open/space, -/area/space) -"uA" = ( -/obj/machinery/door/airlock/external{ - name = "Ferry Airlock"; - req_access_txt = "0" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"uB" = ( -/obj/structure/fans/tiny, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"uC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"uD" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"uE" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"uF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: BLAST DOORS" - }, -/turf/open/floor/plating, -/area/centcom/ferry) -"uG" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"uH" = ( -/turf/open/floor/plasteel/green/side{ - dir = 8 - }, -/area/centcom/ferry) -"uI" = ( -/turf/open/floor/plasteel/green/side{ - dir = 4 - }, -/area/centcom/ferry) -"uJ" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/centcom/control) -"uK" = ( -/obj/machinery/computer/med_data, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"uL" = ( -/obj/machinery/computer/card/centcom, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"uM" = ( -/turf/open/floor/plasteel/green/corner, -/area/centcom/control) -"uN" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/green/side{ - dir = 8 - }, -/area/centcom/control) -"uO" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/green/side{ - dir = 4 - }, -/area/centcom/control) -"uP" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/evac) -"uQ" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 5 - }, -/area/centcom/evac) -"uR" = ( -/obj/item/statuebust{ - pixel_y = 12 - }, -/obj/structure/table/wood/fancy, -/turf/open/floor/wood, -/area/wizard_station) -"uS" = ( -/obj/machinery/vending/magivend, -/turf/open/floor/engine/cult, -/area/wizard_station) -"uT" = ( -/obj/machinery/vending/snack, -/turf/open/floor/engine/cult, -/area/wizard_station) -"uU" = ( -/obj/structure/table/wood/fancy, -/obj/item/storage/pill_bottle/dice{ - icon_state = "magicdicebag" - }, -/turf/open/floor/carpet, -/area/wizard_station) -"uV" = ( -/obj/structure/table/wood/fancy, -/obj/item/storage/photo_album, -/obj/machinery/light, -/turf/open/floor/carpet, -/area/wizard_station) -"uW" = ( -/turf/open/floor/plasteel/black, -/area/syndicate_mothership/control) -"uX" = ( -/obj/machinery/mech_bay_recharge_port, -/turf/open/floor/plating, -/area/syndicate_mothership/control) -"uY" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mech_bay_recharge_floor, -/area/syndicate_mothership/control) -"uZ" = ( -/obj/machinery/computer/mech_bay_power_console, -/turf/open/floor/plating, -/area/syndicate_mothership/control) -"va" = ( -/obj/machinery/vending/tool, -/turf/open/floor/plasteel/black, -/area/syndicate_mothership/control) -"vb" = ( -/obj/structure/closet/cardboard/metal, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/syndicate_mothership/control) -"vc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/syndicate_mothership/control) -"vd" = ( -/obj/machinery/door/airlock/centcom{ - aiControlDisabled = 1; - name = "Assault Pod"; - opacity = 1; - req_access_txt = "150" - }, -/obj/docking_port/mobile/assault_pod{ - dwidth = 3; - name = "steel rain"; - port_direction = 4; - preferred_direction = 4 - }, -/turf/open/floor/plating, -/area/shuttle/assault_pod) -"ve" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/syndicate_mothership/control) -"vf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"vg" = ( -/obj/machinery/button/door{ - id = "XCCsec1"; - name = "CC Shutter 1 Control"; - pixel_y = -24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"vh" = ( -/turf/open/floor/plasteel/green/corner{ - dir = 8 - }, -/area/centcom/control) -"vi" = ( -/obj/machinery/computer/crew, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"vj" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/wood, -/area/centcom/control) -"vk" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/wood, -/area/centcom/control) -"vl" = ( -/obj/machinery/computer/communications, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"vm" = ( -/turf/open/floor/plasteel/blue/side{ - dir = 9 - }, -/area/centcom/evac) "vn" = ( -/turf/open/floor/plasteel/blue/side{ - dir = 10 - }, -/area/centcom/evac) -"vo" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; - name = "Study" - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"vp" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; - name = "Break Room" - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"vq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/syndicate_mothership/control) -"vr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/vacuum, -/turf/open/floor/plating, -/area/centcom/ferry) -"vs" = ( -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"vt" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"vu" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -28 - }, -/obj/structure/sign/securearea{ - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"vv" = ( -/obj/machinery/door/airlock/centcom{ - name = "Briefing Room"; - opacity = 1; - req_access_txt = "101" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"vw" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/green/corner{ - dir = 8 - }, -/area/centcom/control) -"vx" = ( -/obj/item/storage/box/ids{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/silver_ids, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"vy" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/folder/white, -/obj/item/pen/blue, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"vz" = ( -/obj/machinery/computer/prisoner, -/obj/machinery/light, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"vA" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/light, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"vB" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/folder/red, -/obj/item/pen/red, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"vC" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/green/corner, -/area/centcom/control) -"vD" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/blue/side, -/area/centcom/control) -"vE" = ( -/obj/item/storage/firstaid/regular, -/obj/structure/table, -/turf/open/floor/plasteel/green/side{ - dir = 6 - }, -/area/centcom/control) -"vF" = ( -/turf/open/floor/plasteel/blue/corner{ - dir = 4 - }, -/area/centcom/evac) -"vG" = ( -/obj/structure/chair/wood/wings, -/turf/open/floor/engine/cult, -/area/wizard_station) -"vH" = ( -/obj/structure/table/wood, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/turf/open/floor/engine/cult, -/area/wizard_station) -"vI" = ( -/obj/structure/table/wood, -/obj/item/retractor, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"vJ" = ( -/obj/structure/table/wood, -/obj/item/clothing/suit/wizrobe/magusblue, -/obj/item/clothing/head/wizard/magus, -/obj/item/staff, -/obj/structure/mirror/magic{ - pixel_y = 28 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"vK" = ( -/obj/structure/table/wood, -/obj/item/clothing/suit/wizrobe/magusred, -/obj/item/clothing/head/wizard/magus, -/obj/item/staff, -/turf/open/floor/engine/cult, -/area/wizard_station) -"vL" = ( -/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/lizard, -/turf/open/floor/grass, -/area/wizard_station) -"vM" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/grass, -/area/wizard_station) -"vN" = ( -/obj/effect/decal/remains/xeno/larva, -/turf/open/floor/grass, -/area/wizard_station) -"vO" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/grass, -/area/wizard_station) -"vP" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/black, -/area/syndicate_mothership/control) -"vQ" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"vR" = ( -/obj/structure/table/wood, -/obj/item/phone{ - desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/mask/cigarette/cigar/cohiba{ - pixel_x = 6 - }, -/obj/item/clothing/mask/cigarette/cigar/havana{ - pixel_x = 2 - }, -/obj/item/clothing/mask/cigarette/cigar{ - pixel_x = 4.5 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"vS" = ( -/obj/structure/bookcase/random, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"vT" = ( -/obj/structure/table/wood, -/obj/machinery/computer/med_data/laptop, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"vU" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"vV" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"vW" = ( -/obj/structure/closet/secure_closet/ertEngi, -/obj/structure/sign/directions/engineering{ - pixel_y = 24 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"vX" = ( -/obj/structure/closet/secure_closet/ertEngi, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"vY" = ( -/obj/structure/table/reinforced, -/obj/item/gun/ballistic/automatic/wt550, -/obj/item/device/flashlight/seclite, -/obj/structure/noticeboard{ - pixel_y = 28 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"vZ" = ( -/obj/structure/table/reinforced, -/obj/item/grenade/plastic/c4{ - pixel_x = 6 - }, -/obj/item/grenade/plastic/c4{ - pixel_x = -4 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"wa" = ( -/obj/structure/rack, -/obj/item/gun/energy/e_gun{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/energy/e_gun, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"wb" = ( -/obj/structure/closet/secure_closet/ertCom, -/obj/structure/sign/directions/engineering{ - desc = "A direction sign, pointing out which way the Command department is."; - dir = 2; - icon_state = "direction_bridge"; - name = "command department"; - pixel_y = 24 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"wc" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Infirmary" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"wd" = ( -/turf/open/floor/plasteel/blue/corner{ - dir = 1 - }, -/area/centcom/evac) -"we" = ( -/turf/open/floor/plasteel/blue/side{ - dir = 1 - }, -/area/centcom/evac) -"wf" = ( -/turf/closed/indestructible/fakeglass{ - color = "#008000"; - dir = 1; - icon_state = "fakewindows" - }, -/area/wizard_station) -"wg" = ( -/obj/structure/destructible/cult/tome, -/turf/open/floor/engine/cult, -/area/wizard_station) -"wh" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 - }, -/obj/item/clothing/suit/wizrobe/red, -/obj/item/clothing/head/wizard/red, -/obj/item/staff, -/obj/item/clothing/shoes/sandal/magic, -/turf/open/floor/engine/cult, -/area/wizard_station) -"wi" = ( -/turf/open/floor/grass, -/area/wizard_station) -"wj" = ( -/obj/item/reagent_containers/food/snacks/meat/slab/corgi, -/turf/open/floor/grass, -/area/wizard_station) -"wk" = ( -/obj/structure/closet/syndicate/personal, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/black, -/area/syndicate_mothership/control) -"wl" = ( -/obj/structure/table, -/obj/item/gun/energy/ionrifle{ - pin = /obj/item/device/firing_pin - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/black, -/area/syndicate_mothership/control) -"wm" = ( -/obj/structure/table/wood, -/obj/item/storage/box/drinkingglasses, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_y = 5 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"wn" = ( -/turf/open/floor/plasteel/black, -/area/centcom/ferry) -"wo" = ( -/obj/structure/chair/office/dark, -/obj/effect/landmark/ert_spawn, -/turf/open/floor/plasteel/black, -/area/centcom/ferry) -"wp" = ( -/obj/structure/chair/office/dark, -/obj/effect/landmark/ert_spawn, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/centcom/ferry) -"wq" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"wr" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"ws" = ( -/turf/open/floor/plasteel/red/corner{ - dir = 8 - }, -/area/centcom/control) -"wt" = ( -/turf/open/floor/plasteel/blue/corner, -/area/centcom/control) -"wu" = ( -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/item/circular_saw, -/obj/item/retractor{ - pixel_x = 4 - }, -/obj/item/hemostat{ - pixel_x = -4 - }, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/cmo, -/area/centcom/control) -"wv" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/cmo, -/area/centcom/control) -"ww" = ( -/turf/open/floor/plasteel/cmo, -/area/centcom/control) -"wx" = ( -/obj/machinery/computer/med_data, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/cmo, -/area/centcom/control) -"wy" = ( -/turf/closed/indestructible/fakeglass{ - color = "#008000"; - dir = 1; - icon_state = "fakewindows2" - }, -/area/wizard_station) -"wz" = ( -/obj/structure/bookcase/random/reference, -/turf/open/floor/engine/cult, -/area/wizard_station) -"wA" = ( -/obj/structure/destructible/cult/talisman{ - desc = "An altar dedicated to the Wizards' Federation" - }, -/obj/item/kitchen/knife/ritual, -/turf/open/floor/engine/cult, -/area/wizard_station) -"wB" = ( -/obj/item/clothing/shoes/sandal/marisa, -/obj/item/clothing/suit/wizrobe/marisa, -/obj/item/clothing/head/wizard/marisa, -/obj/item/staff/broom, -/turf/open/floor/engine/cult, -/area/wizard_station) -"wC" = ( -/obj/effect/decal/cleanable/blood/splatter, -/mob/living/simple_animal/hostile/creature{ - name = "Experiment 35b" - }, -/turf/open/floor/grass, -/area/wizard_station) -"wD" = ( -/obj/machinery/photocopier, -/turf/open/floor/plasteel/grimy, -/area/centcom/ferry) -"wE" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/folder/blue{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/lighter, -/turf/open/floor/plasteel/grimy, -/area/centcom/ferry) -"wF" = ( -/obj/structure/table/reinforced, -/obj/item/storage/secure/briefcase, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"wG" = ( -/obj/structure/table/reinforced, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"wH" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/folder/white, -/obj/item/pen/blue, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"wI" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"wJ" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/ert_spawn, -/turf/open/floor/plasteel/black, -/area/centcom/ferry) -"wK" = ( -/obj/machinery/door/poddoor/ert, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"wM" = ( -/obj/structure/table/reinforced, -/obj/item/restraints/handcuffs, -/obj/item/device/radio, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"wN" = ( -/obj/structure/table/reinforced, -/obj/item/storage/firstaid/regular, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"wO" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"wP" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/red/corner{ - dir = 8 - }, -/area/centcom/control) -"wQ" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/green/corner{ - dir = 8 - }, -/area/centcom/control) -"wR" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/green/corner, -/area/centcom/control) -"wS" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel/blue/corner, -/area/centcom/control) -"wT" = ( -/obj/structure/table/optable, -/obj/item/surgical_drapes, -/turf/open/floor/plasteel/cmo, -/area/centcom/control) -"wU" = ( -/turf/open/floor/plasteel/blue, -/area/centcom/control) -"wV" = ( -/obj/machinery/computer/communications, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24 - }, -/turf/open/floor/plasteel/cmo, -/area/centcom/control) -"wW" = ( -/turf/open/floor/plasteel/yellowsiding, -/area/centcom/evac) -"wX" = ( -/turf/closed/indestructible/fakeglass{ - color = "#008000" - }, -/area/wizard_station) -"wY" = ( -/obj/effect/landmark/start/wizard, -/turf/open/floor/engine/cult, -/area/wizard_station) -"wZ" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/grass, -/area/wizard_station) -"xa" = ( -/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/slime, -/turf/open/floor/grass, -/area/wizard_station) -"xb" = ( -/obj/effect/decal/remains/xeno, -/turf/open/floor/grass, -/area/wizard_station) -"xc" = ( -/obj/structure/chair/comfy/brown{ - color = "#596479"; - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/centcom/ferry) -"xd" = ( -/obj/item/clipboard, -/obj/item/folder/red, -/obj/item/stamp/denied{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stamp, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/grimy, -/area/centcom/ferry) -"xe" = ( -/obj/structure/table/reinforced, -/obj/item/device/flashlight/seclite, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"xf" = ( -/obj/machinery/shuttle_manipulator, -/turf/open/floor/circuit/green, -/area/centcom/ferry) -"xg" = ( -/turf/open/floor/circuit/green, -/area/centcom/ferry) -"xh" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/folder/red, -/obj/item/pen/red, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"xi" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/ert_spawn, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/centcom/ferry) -"xj" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"xk" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/zipties, -/obj/item/crowbar/red, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"xl" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Briefing Area APC"; - pixel_x = 26 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"xm" = ( -/obj/structure/sign/bluecross_2, -/turf/closed/indestructible/riveted, -/area/centcom/control) -"xn" = ( -/obj/machinery/computer/operating, -/turf/open/floor/plasteel/cmo, -/area/centcom/control) -"xo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/centcom/evac) -"xp" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/centcom/evac) -"xq" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/centcom/evac) -"xs" = ( -/obj/structure/table, -/obj/item/toy/sword, -/obj/item/gun/ballistic/shotgun/toy/crossbow, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/centcom/evac) -"xt" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/centcom/evac) -"xu" = ( /obj/structure/chair/wood/wings{ icon_state = "wooden_chair_wings"; - dir = 1 - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"xv" = ( -/mob/living/simple_animal/bot/medbot/mysterious{ - desc = "If you don't accidentally blow yourself up from time to time you're not really a wizard anyway."; - faction = list("neutral","silicon","creature"); - name = "Nobody's Perfect" - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"xw" = ( -/obj/item/reagent_containers/food/snacks/meat/slab/xeno, -/turf/open/floor/grass, -/area/wizard_station) -"xx" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen/fourcolor, -/turf/open/floor/plasteel/vault{ dir = 8 }, -/area/centcom/ferry) -"xy" = ( -/obj/machinery/computer/card/centcom, -/turf/open/floor/plasteel/grimy, -/area/centcom/ferry) -"xz" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/device/taperecorder, -/turf/open/floor/plasteel/grimy, -/area/centcom/ferry) -"xA" = ( -/obj/structure/table/reinforced, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"xB" = ( -/obj/structure/table/reinforced, -/obj/item/crowbar/red, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/clothing/mask/gas, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"xC" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/item/pen/blue, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"xD" = ( -/obj/structure/table/reinforced, -/obj/item/restraints/handcuffs/cable/zipties, -/obj/item/device/assembly/flash/handheld, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"xE" = ( -/obj/structure/table/reinforced, -/obj/item/storage/lockbox/loyalty, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"xF" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"xG" = ( -/obj/machinery/newscaster/security_unit{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"xH" = ( -/obj/machinery/door/poddoor/shutters{ - id = "XCCsec3"; - name = "CC Main Access Shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/centcom/control) -"xI" = ( -/obj/item/defibrillator/loaded, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/cmo, -/area/centcom/control) -"xJ" = ( -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 6 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = -3 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 4; - pixel_y = 1 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 2; - pixel_y = 8 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/cmo, -/area/centcom/control) -"xK" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"xL" = ( -/obj/machinery/light, -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"xM" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"xN" = ( -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/regular{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/cmo, -/area/centcom/control) -"xO" = ( -/obj/item/storage/firstaid/toxin, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/structure/table/reinforced, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/cmo, -/area/centcom/control) -"xP" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/storage/fancy/donut_box, -/obj/machinery/door/window/brigdoor{ - base_state = "rightsecure"; - dir = 1; - icon_state = "rightsecure"; - name = "CentCom Customs"; - req_access_txt = "109" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/centcom/evac) -"xQ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder/red, -/obj/item/pen/red, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/centcom/evac) -"xR" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/brigdoor{ - base_state = "rightsecure"; - dir = 1; - icon_state = "rightsecure"; - name = "CentCom Customs"; - req_access_txt = "109" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/centcom/evac) -"xS" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; - name = "Observation Deck" - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"xT" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/device/radio/headset/headset_cent, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"xU" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/ert_spawn, -/turf/open/floor/plasteel/black, -/area/centcom/ferry) -"xV" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/ert_spawn, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/centcom/ferry) -"xW" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/pointybush, -/turf/open/floor/grass, -/area/centcom/evac) -"xX" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/genericbush, -/turf/open/floor/grass, -/area/centcom/evac) -"xY" = ( -/obj/structure/table/reinforced, -/obj/item/restraints/handcuffs/cable/zipties, -/obj/item/device/assembly/flash/handheld, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/evac) -"xZ" = ( -/turf/open/floor/plasteel/darkred/side{ - dir = 1 - }, -/area/centcom/evac) -"ya" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/button/door{ - id = "XCCcustoms1"; - layer = 3; - name = "CC Emergency Docks Control"; - pixel_x = 24; - pixel_y = 24 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/evac) -"yc" = ( -/obj/structure/statue/uranium/nuke, -/turf/open/floor/plating/asteroid/snow/airless, -/area/syndicate_mothership) -"yd" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/restraints/handcuffs, -/obj/item/device/assembly/flash/handheld, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"ye" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/lighter, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"yf" = ( -/obj/structure/bookcase/random, -/obj/machinery/light, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"yg" = ( -/obj/structure/filingcabinet/medical, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"yh" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"yi" = ( -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"yj" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/obj/machinery/power/apc{ - dir = 2; - name = "Briefing Room APC"; - pixel_y = -26 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"yk" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"yl" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/obj/machinery/light, -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"ym" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"yn" = ( -/obj/item/device/radio{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/device/radio{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/device/radio, -/obj/structure/table/wood, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/ferry) -"yo" = ( -/obj/structure/closet/secure_closet/ertMed, -/obj/structure/sign/directions/medical{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"yp" = ( -/obj/structure/closet/secure_closet/ertMed, -/obj/machinery/vending/wallmed{ - name = "Emergency NanoMed"; - pixel_y = -32; - req_access_txt = "0"; - use_power = 0 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"yq" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/emps, -/obj/item/gun/energy/ionrifle, -/obj/structure/sign/bluecross_2{ - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"yr" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/syringes, -/obj/item/gun/syringe/rapidsyringe, -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"ys" = ( -/obj/structure/closet/secure_closet/ertSec, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"yt" = ( -/obj/structure/closet/secure_closet/ertSec, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"yu" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/device/taperecorder, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"yv" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/green/side{ - dir = 9 - }, -/area/centcom/control) -"yw" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/green/corner{ - dir = 1 - }, -/area/centcom/control) -"yx" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/green/corner{ - dir = 4 - }, -/area/centcom/control) -"yy" = ( -/obj/structure/table, -/obj/item/paper/pamphlet/centcom/visitor_info, -/obj/item/paper/pamphlet/centcom/visitor_info, -/obj/item/paper/pamphlet/centcom/visitor_info, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/green/side{ - dir = 5 - }, -/area/centcom/control) -"yz" = ( -/obj/structure/filingcabinet/medical, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"yA" = ( -/obj/structure/table/reinforced, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"yB" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/evac) -"yC" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/centcom/evac) -"yD" = ( -/obj/machinery/computer/security, -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/evac) -"yE" = ( -/obj/structure/closet/secure_closet/security, -/obj/item/storage/belt/security/full, -/obj/item/gun/ballistic/automatic/wt550, -/obj/item/clothing/head/helmet/swat/nanotrasen, -/obj/item/crowbar/red, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"yF" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/centcom/control) -"yG" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/blue/corner{ - dir = 4 - }, -/area/centcom/control) -"yH" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = 6 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -4 - }, -/obj/item/reagent_containers/hypospray/medipen, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"yI" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"yJ" = ( -/obj/structure/closet/secure_closet/security, -/obj/item/storage/belt/security/full, -/obj/item/gun/ballistic/automatic/wt550, -/obj/item/clothing/head/helmet/swat/nanotrasen, -/obj/item/crowbar/red, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/evac) -"yK" = ( -/obj/structure/table/reinforced, -/obj/item/crowbar/red, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/evac) -"yL" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/evac) -"yM" = ( -/obj/item/clipboard, -/obj/item/folder/red, -/obj/item/stamp/denied{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stamp, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/evac) -"yN" = ( -/obj/machinery/door/airlock/external, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"yO" = ( -/turf/open/floor/plasteel/darkred/side{ - dir = 4 - }, -/area/centcom/control) -"yP" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/storage/fancy/donut_box, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/centcom/control) -"yQ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/reagent_containers/food/drinks/britcup, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/centcom/control) -"yR" = ( -/turf/open/floor/plasteel/darkblue/side{ - dir = 8 - }, -/area/centcom/control) -"yS" = ( -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/evac) -"yT" = ( -/turf/open/floor/plasteel/vault{ - dir = 9 - }, -/area/centcom/evac) -"yU" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/light, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/evac) -"yV" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/device/taperecorder, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/evac) -"yW" = ( -/obj/item/storage/box/ids{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/silver_ids, -/obj/structure/table/reinforced, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/evac) -"yX" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; - name = "Storage" - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"yY" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; - name = "Personal Quarters" - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"yZ" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; - name = "Bathroom" - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"za" = ( -/obj/item/clipboard, -/obj/item/folder/red, -/obj/item/stamp/denied{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stamp, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"zb" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel/darkred/side{ - dir = 4 - }, -/area/centcom/control) -"zc" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder/red, -/obj/item/pen/red, -/obj/machinery/door/window/brigdoor{ - name = "CentCom Customs"; - icon_state = "rightsecure"; - dir = 4; - req_access_txt = "109"; - base_state = "rightsecure" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/centcom/control) -"zd" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder/white, -/obj/item/pen/blue, -/obj/machinery/door/window/brigdoor{ - name = "CentCom Customs"; - icon_state = "rightsecure"; - dir = 8; - req_access_txt = "109"; - base_state = "rightsecure" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/centcom/control) -"ze" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 8 - }, -/area/centcom/control) -"zf" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"zg" = ( -/obj/item/clothing/suit/wizrobe/black, -/obj/item/clothing/head/wizard/black, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/wizard_station) -"zh" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/wizard_station) -"zi" = ( -/obj/item/cardboard_cutout, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/wizard_station) -"zj" = ( -/obj/structure/table/wood, -/obj/item/dice/d20, -/obj/item/dice, /turf/open/floor/carpet, /area/wizard_station) -"zk" = ( -/obj/structure/punching_bag, -/turf/open/floor/carpet, -/area/wizard_station) -"zl" = ( -/obj/structure/urinal{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/white, -/area/wizard_station) -"zm" = ( -/turf/open/floor/plasteel/white, -/area/wizard_station) -"zn" = ( -/obj/structure/mirror/magic{ - pixel_y = 28 - }, -/obj/structure/sink{ - pixel_y = 20 - }, -/turf/open/floor/plasteel/white, -/area/wizard_station) -"zo" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "XCCsec3"; - name = "CC Main Access Control" - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"zp" = ( -/obj/machinery/computer/security, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"zq" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/green/corner{ - dir = 8 - }, -/area/centcom/control) -"zr" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel/green/corner, -/area/centcom/control) -"zs" = ( -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/machinery/computer/med_data, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"zt" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/folder/white, -/obj/item/pen/blue, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"zu" = ( -/obj/item/cautery/alien, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/wizard_station) -"zv" = ( -/obj/item/coin/antagtoken, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/wizard_station) -"zw" = ( -/obj/structure/bed, -/obj/item/bedsheet/wiz, -/turf/open/floor/carpet, -/area/wizard_station) -"zx" = ( -/obj/item/soap/homemade, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/wizard_station) -"zy" = ( -/obj/machinery/door/airlock/centcom{ - name = "Thunderdome Booth"; - opacity = 1; - req_access_txt = "0" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"zz" = ( -/obj/structure/closet/cardboard, -/obj/item/banhammer, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/wizard_station) -"zA" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/wizard_station) -"zB" = ( -/obj/vehicle/scooter/skateboard{ - icon_state = "skateboard"; - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/wizard_station) -"zC" = ( -/obj/structure/dresser, -/obj/item/storage/backpack/satchel, -/turf/open/floor/carpet, -/area/wizard_station) -"zD" = ( -/obj/structure/table/wood, -/obj/item/storage/bag/tray, -/obj/item/reagent_containers/food/snacks/burger/spell, -/turf/open/floor/carpet, -/area/wizard_station) -"zE" = ( -/obj/structure/bookcase/random/adult, -/turf/open/floor/plasteel/white, -/area/wizard_station) -"zF" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/wizard_station) -"zG" = ( -/obj/structure/table/wood/fancy, -/obj/item/skub{ - pixel_y = 16 - }, -/turf/open/floor/plasteel/white, -/area/wizard_station) -"zH" = ( -/turf/closed/indestructible/riveted, -/area/tdome/tdomeobserve) -"zI" = ( -/obj/machinery/door/airlock/external, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/tdome/tdomeobserve) -"zJ" = ( -/obj/machinery/vending/cola, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/tdome/tdomeobserve) -"zK" = ( -/obj/machinery/vending/snack, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/tdome/tdomeobserve) -"zL" = ( -/obj/item/clipboard, -/obj/item/stamp/denied{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stamp, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"zM" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen/red, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"zN" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/tdome/tdomeobserve) -"zO" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/green/side{ - dir = 9 - }, -/area/tdome/tdomeobserve) -"zP" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/green/corner{ - dir = 1 - }, -/area/tdome/tdomeobserve) -"zQ" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/tdome/tdomeobserve) -"zR" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/green/corner{ - dir = 4 - }, -/area/tdome/tdomeobserve) -"zS" = ( -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel/green/side{ - dir = 5 - }, -/area/tdome/tdomeobserve) -"zT" = ( -/obj/machinery/door/airlock/centcom{ - name = "CentCom Security"; - opacity = 1; - req_access_txt = "101" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/tdome/tdomeobserve) -"zU" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; - name = "Engine Room" - }, -/obj/structure/barricade/wooden, -/turf/open/floor/engine/cult, -/area/wizard_station) -"zV" = ( -/turf/closed/indestructible/riveted, -/area/centcom/holding) -"zW" = ( -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"zX" = ( -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"zY" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/fernybush, -/turf/open/floor/plasteel{ - name = "plating"; - icon_state = "asteroid5" - }, -/area/tdome/tdomeobserve) -"zZ" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/fernybush, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "asteroid8"; - name = "sand" - }, -/area/tdome/tdomeobserve) -"Aa" = ( -/turf/open/floor/plasteel/red/corner, -/area/tdome/tdomeobserve) -"Ab" = ( -/turf/open/floor/plasteel/neutral/corner{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/tdome/tdomeobserve) -"Ac" = ( -/obj/machinery/status_display, -/turf/closed/indestructible/riveted, -/area/tdome/tdomeobserve) -"Ad" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"Ae" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/tdome/tdomeobserve) -"Af" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/paper/pamphlet/centcom/visitor_info, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/tdome/tdomeobserve) -"Ag" = ( -/turf/open/floor/plasteel/neutral, -/area/tdome/tdomeobserve) -"Ah" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/tdome/tdomeobserve) -"Ai" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/green/side{ - dir = 4 - }, -/area/tdome/tdomeobserve) -"Aj" = ( -/turf/open/floor/plasteel/neutral/corner, -/area/tdome/tdomeobserve) -"Ak" = ( -/turf/open/floor/plasteel/green/corner{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"Al" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/palebush, -/turf/open/floor/plating/asteroid, -/area/tdome/tdomeobserve) -"Am" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/palebush, -/turf/open/floor/plating/asteroid, -/area/tdome/tdomeobserve) -"An" = ( -/obj/structure/table/wood, -/turf/open/floor/engine/cult, -/area/wizard_station) -"Ao" = ( -/obj/structure/table/wood, -/obj/item/gun/magic/wand{ - desc = "Used in emergencies to reignite magma engines."; - max_charges = 0; - name = "wand of emergency engine ignition" - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"Ap" = ( -/obj/structure/table/wood, -/obj/item/bikehorn/golden{ - pixel_x = -8; - pixel_y = 8 - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"Aq" = ( -/obj/structure/table, -/turf/open/floor/plasteel/freezer{ - dir = 2 - }, -/area/centcom/holding) -"Ar" = ( -/turf/open/floor/plasteel/freezer{ - dir = 2 - }, -/area/centcom/holding) -"As" = ( -/obj/structure/closet/secure_closet/bar{ - req_access_txt = "25" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer{ - dir = 2 - }, -/area/centcom/holding) -"At" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/plasteel/freezer{ - dir = 2 - }, -/area/centcom/holding) -"Au" = ( -/obj/structure/table, -/obj/item/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/plasteel/freezer{ - dir = 2 - }, -/area/centcom/holding) -"Av" = ( -/obj/structure/rack, -/obj/item/device/camera, -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"Aw" = ( -/obj/structure/rack, -/obj/item/toy/sword, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"Ax" = ( -/obj/structure/rack, -/obj/item/toy/gun, -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"Ay" = ( -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"Az" = ( -/turf/open/floor/plating/beach/sand, -/area/centcom/holding) -"AA" = ( -/obj/effect/overlay/palmtree_r, -/obj/effect/overlay/coconut, -/turf/open/floor/plating/beach/sand, -/area/centcom/holding) -"AB" = ( -/obj/effect/overlay/palmtree_l, -/turf/open/floor/plating/beach/sand, -/area/centcom/holding) -"AC" = ( -/obj/machinery/shower{ - dir = 4 - }, -/turf/open/floor/plasteel/whitered/side{ - dir = 9 - }, -/area/tdome/tdomeobserve) -"AD" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/whitered/side{ - dir = 1 - }, -/area/tdome/tdomeobserve) -"AE" = ( -/obj/machinery/shower{ - dir = 8 - }, -/turf/open/floor/plasteel/whitered/side{ - dir = 5 - }, -/area/tdome/tdomeobserve) -"AF" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/tdome/tdomeobserve) -"AG" = ( -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"AH" = ( -/obj/machinery/door/window/brigdoor{ - base_state = "rightsecure"; - dir = 2; - icon_state = "rightsecure"; - name = "Thunderdome Booth"; - req_access_txt = "109" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/tdome/tdomeobserve) -"AI" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel/green/corner{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"AJ" = ( -/turf/open/floor/plasteel/goonplaque{ - desc = "This is a plaque commemorating the thunderdome and all those who have died at its pearly blast doors." - }, -/area/tdome/tdomeobserve) -"AK" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/green/corner, -/area/tdome/tdomeobserve) -"AL" = ( -/turf/open/floor/plasteel/green/side{ - dir = 4 - }, -/area/tdome/tdomeobserve) -"AM" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"AN" = ( -/obj/machinery/shower{ - dir = 4 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 9 - }, -/area/tdome/tdomeobserve) -"AO" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 1 - }, -/area/tdome/tdomeobserve) -"AP" = ( -/obj/machinery/shower{ - dir = 8 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 5 - }, -/area/tdome/tdomeobserve) -"AQ" = ( -/obj/structure/table, -/obj/item/clothing/head/that, -/turf/open/floor/plasteel/freezer{ - dir = 2 - }, -/area/centcom/holding) -"AR" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"AS" = ( -/obj/item/device/camera, -/turf/open/floor/plating/beach/sand, -/area/centcom/holding) -"AT" = ( -/obj/machinery/shower{ - dir = 4 - }, -/turf/open/floor/plasteel/whitered/corner{ - dir = 1 - }, -/area/tdome/tdomeobserve) -"AU" = ( -/obj/item/soap/nanotrasen, -/turf/open/floor/plasteel/white, -/area/tdome/tdomeobserve) -"AV" = ( -/obj/machinery/shower{ - dir = 8 - }, -/turf/open/floor/plasteel/whitered/corner{ - dir = 4 - }, -/area/tdome/tdomeobserve) -"AW" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/red/corner, -/area/tdome/tdomeobserve) -"AX" = ( -/turf/open/floor/plasteel/neutral/side, -/area/tdome/tdomeobserve) -"AY" = ( -/turf/open/floor/plasteel/red/side, -/area/tdome/tdomeobserve) -"AZ" = ( -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/tdome/tdomeobserve) -"Ba" = ( -/obj/machinery/door/airlock/centcom{ - name = "Thunderdome Backstage"; - opacity = 1; - req_access_txt = "0" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tdome/tdomeobserve) -"Bb" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/tdome/tdomeobserve) -"Bc" = ( -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/tdome/tdomeobserve) -"Bd" = ( -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/tdome/tdomeobserve) -"Be" = ( -/turf/open/floor/plasteel/green/side{ - dir = 10 - }, -/area/tdome/tdomeobserve) -"Bf" = ( -/turf/open/floor/plasteel/green/side, -/area/tdome/tdomeobserve) -"Bg" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/green/corner{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"Bh" = ( -/obj/machinery/shower{ - dir = 4 - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 1 - }, -/area/tdome/tdomeobserve) -"Bi" = ( -/obj/machinery/shower{ - dir = 8 - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 4 - }, -/area/tdome/tdomeobserve) -"Bj" = ( -/obj/structure/destructible/cult/forge{ - desc = "An engine used in powering the wizard's ship"; - name = "magma engine" - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"Bk" = ( -/obj/structure/table, -/obj/item/ammo_box/foambox, -/turf/open/floor/plasteel/freezer{ - dir = 2 - }, -/area/centcom/holding) -"Bl" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/shaker, -/turf/open/floor/plasteel/freezer{ - dir = 2 - }, -/area/centcom/holding) -"Bm" = ( -/obj/structure/table, -/obj/item/lighter, -/turf/open/floor/plasteel/freezer{ - dir = 2 - }, -/area/centcom/holding) -"Bn" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/soda_cans/cola, -/turf/open/floor/plasteel/freezer{ - dir = 2 - }, -/area/centcom/holding) -"Bo" = ( -/obj/structure/table, -/obj/item/dice/d20, -/turf/open/floor/plasteel/freezer{ - dir = 2 - }, -/area/centcom/holding) -"Bp" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/item/clothing/head/bandana{ - pixel_y = -10 - }, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/plating/beach/sand, -/area/centcom/holding) -"Bq" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plating/beach/sand, -/area/centcom/holding) -"Br" = ( -/obj/machinery/shower{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/tdome/tdomeobserve) -"Bs" = ( -/turf/open/floor/plasteel/white, -/area/tdome/tdomeobserve) -"Bt" = ( -/obj/machinery/shower{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/tdome/tdomeobserve) -"Bu" = ( -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/tdome/tdomeobserve) -"Bv" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/tdome/tdomeobserve) -"Bw" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/tdome/tdomeobserve) -"Bx" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/tdome/tdomeobserve) -"By" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel/red/side, -/area/tdome/tdomeobserve) -"Bz" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/redyellow/side, -/area/tdome/tdomeobserve) -"BA" = ( -/turf/open/floor/plasteel/redyellow/side, -/area/tdome/tdomeobserve) -"BB" = ( -/turf/open/floor/plasteel/loadingarea, -/area/tdome/tdomeobserve) -"BC" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel/green/side, -/area/tdome/tdomeobserve) -"BD" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/green/side{ - dir = 6 - }, -/area/tdome/tdomeobserve) -"BE" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/green/corner{ - dir = 4 - }, -/area/tdome/tdomeobserve) -"BF" = ( -/turf/open/floor/plasteel/green/side{ - dir = 1 - }, -/area/tdome/tdomeobserve) -"BG" = ( -/obj/structure/window/reinforced{ - resistance_flags = 3; - color = "#008000"; - dir = 1 - }, -/turf/open/lava, -/area/wizard_station) -"BH" = ( -/obj/structure/rack, -/obj/item/clothing/head/that, -/obj/item/clothing/under/suit_jacket, -/obj/item/clothing/accessory/waistcoat, -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"BI" = ( -/obj/item/toy/beach_ball, -/turf/open/floor/plating/beach/sand, -/area/centcom/holding) -"BJ" = ( -/obj/machinery/door/airlock/silver{ - name = "Shower" - }, -/turf/open/floor/plasteel/white, -/area/tdome/tdomeobserve) -"BK" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/tdome/tdomeobserve) -"BL" = ( -/obj/structure/sign/nosmoking_2, -/turf/closed/indestructible/riveted, -/area/tdome/tdomeobserve) -"BM" = ( -/obj/machinery/door/airlock/centcom{ - name = "Thunderdome"; - opacity = 1; - req_access_txt = "101" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/tdome/tdomeobserve) -"BN" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/indestructible/riveted, -/area/tdome/tdomeobserve) -"BO" = ( -/obj/structure/shuttle/engine/heater{ - resistance_flags = 3 - }, -/obj/structure/window/reinforced{ - resistance_flags = 3; - color = "#008000"; - dir = 1 - }, -/turf/open/lava/airless, -/area/wizard_station) -"BP" = ( -/obj/structure/rack, -/obj/item/storage/crayons, -/obj/item/gun/ballistic/automatic/toy/pistol, -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"BQ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"BR" = ( -/obj/structure/table, -/obj/structure/bedsheetbin, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/whitered/side{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"BS" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"BT" = ( -/turf/open/floor/plasteel/red/corner{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"BU" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/item/reagent_containers/food/snacks/meat/rawbacon, -/obj/item/reagent_containers/food/snacks/meat/rawbacon, -/obj/item/reagent_containers/food/snacks/meat/rawbacon, -/obj/item/reagent_containers/food/snacks/meat/rawbacon, -/obj/item/reagent_containers/food/snacks/meat/slab/killertomato, -/obj/item/reagent_containers/food/snacks/meat/slab/killertomato, -/obj/item/reagent_containers/food/snacks/meat/slab/killertomato, -/obj/item/reagent_containers/food/snacks/meat/slab/killertomato, -/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/lizard, -/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/lizard, -/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/lizard, -/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/lizard, -/obj/item/reagent_containers/food/snacks/sausage, -/obj/item/reagent_containers/food/snacks/sausage, -/obj/item/reagent_containers/food/snacks/meat/rawcutlet, -/obj/item/reagent_containers/food/snacks/meat/rawcutlet, -/obj/item/reagent_containers/food/snacks/meat/rawcutlet, -/obj/item/reagent_containers/food/snacks/carpmeat, -/obj/item/reagent_containers/food/snacks/carpmeat, -/obj/item/reagent_containers/food/snacks/carpmeat, -/obj/item/reagent_containers/food/snacks/carpmeat, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"BV" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/whitebeet, -/obj/item/reagent_containers/food/snacks/grown/whitebeet, -/obj/item/reagent_containers/food/snacks/grown/tomato, -/obj/item/reagent_containers/food/snacks/grown/tomato, -/obj/item/reagent_containers/food/snacks/grown/rice, -/obj/item/reagent_containers/food/snacks/grown/rice, -/obj/item/reagent_containers/food/snacks/grown/icepepper, -/obj/item/reagent_containers/food/snacks/grown/icepepper, -/obj/item/reagent_containers/food/snacks/grown/citrus/lemon, -/obj/item/reagent_containers/food/snacks/grown/citrus/lime, -/obj/item/reagent_containers/food/snacks/grown/citrus/orange, -/obj/item/reagent_containers/food/snacks/grown/cherries, -/obj/item/reagent_containers/food/snacks/grown/apple, -/obj/item/reagent_containers/food/snacks/grown/ambrosia/deus, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"BW" = ( -/obj/machinery/processor, -/obj/effect/turf_decal/stripes/end, -/turf/open/floor/plasteel, -/area/tdome/tdomeobserve) -"BX" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/item/reagent_containers/food/snacks/grown/banana, -/obj/item/reagent_containers/food/snacks/grown/banana, -/obj/item/reagent_containers/food/snacks/grown/wheat, -/obj/item/reagent_containers/food/snacks/grown/wheat, -/obj/item/reagent_containers/food/snacks/grown/vanillapod, -/obj/item/reagent_containers/food/snacks/grown/vanillapod, -/obj/item/reagent_containers/food/snacks/grown/sugarcane, -/obj/item/reagent_containers/food/snacks/grown/sugarcane, -/obj/item/reagent_containers/food/snacks/grown/oat, -/obj/item/reagent_containers/food/snacks/grown/oat, -/obj/item/reagent_containers/food/snacks/grown/grapes, -/obj/item/reagent_containers/food/snacks/grown/grapes, -/obj/item/reagent_containers/food/snacks/grown/corn, -/obj/item/reagent_containers/food/snacks/grown/corn, -/obj/item/reagent_containers/food/snacks/grown/chili, -/obj/item/reagent_containers/food/snacks/grown/chili, -/obj/item/reagent_containers/food/snacks/grown/carrot, -/obj/item/reagent_containers/food/snacks/grown/apple, -/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"BY" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/item/reagent_containers/food/snacks/meat/slab/bear, -/obj/item/reagent_containers/food/snacks/meat/slab/bear, -/obj/item/reagent_containers/food/snacks/meat/slab/bear, -/obj/item/reagent_containers/food/snacks/meat/slab/bear, -/obj/item/reagent_containers/food/snacks/meat/slab/goliath, -/obj/item/reagent_containers/food/snacks/meat/slab/goliath, -/obj/item/reagent_containers/food/snacks/meat/slab/goliath, -/obj/item/reagent_containers/food/snacks/meat/slab/goliath, -/obj/item/reagent_containers/food/snacks/meat/slab/xeno, -/obj/item/reagent_containers/food/snacks/meat/slab/xeno, -/obj/item/reagent_containers/food/snacks/meat/slab/xeno, -/obj/item/reagent_containers/food/snacks/meat/slab/xeno, -/obj/item/reagent_containers/food/snacks/spaghetti, -/obj/item/reagent_containers/food/snacks/spaghetti, -/obj/item/reagent_containers/food/snacks/meat/rawcutlet, -/obj/item/reagent_containers/food/snacks/meat/rawcutlet, -/obj/item/reagent_containers/food/snacks/meat/rawcutlet, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"BZ" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/pointybush, -/turf/open/floor/grass, -/area/tdome/tdomeobserve) -"Ca" = ( -/obj/structure/table/wood, -/obj/structure/sign/goldenplaque{ - pixel_y = 32 - }, -/obj/item/clothing/accessory/lawyers_badge{ - desc = "A badge of upmost glory."; - name = "thunderdome badge" - }, -/turf/open/floor/plasteel/grimy, -/area/tdome/tdomeobserve) -"Cb" = ( -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"Cc" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/tdome/tdomeobserve) -"Cd" = ( -/obj/structure/table/wood, -/obj/structure/sign/goldenplaque{ - pixel_y = 32 - }, -/obj/item/clothing/accessory/medal/silver{ - pixel_y = 5 - }, -/turf/open/floor/plasteel/grimy, -/area/tdome/tdomeobserve) -"Ce" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/genericbush, -/turf/open/floor/grass, -/area/tdome/tdomeobserve) -"Cf" = ( -/obj/structure/table/wood, -/obj/machinery/reagentgrinder{ - desc = "Used to grind things up into raw materials and liquids."; - pixel_y = 5 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"Cg" = ( -/obj/structure/table/wood, -/obj/item/storage/box/beanbag, -/obj/item/gun/ballistic/revolver/doublebarrel, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"Ch" = ( -/obj/structure/table/wood, -/obj/structure/reagent_dispensers/beerkeg, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"Ci" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"Cj" = ( -/obj/structure/table/wood, -/obj/item/storage/box/drinkingglasses, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_y = 5 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"Ck" = ( -/turf/open/floor/plasteel/green/corner, -/area/tdome/tdomeobserve) -"Cl" = ( -/obj/structure/table, -/obj/structure/bedsheetbin, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/tdome/tdomeobserve) -"Cm" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/open/space, -/area/wizard_station) -"Cn" = ( -/obj/structure/rack, -/obj/item/storage/crayons, -/obj/item/gun/ballistic/shotgun/toy/crossbow, -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"Co" = ( -/turf/open/floor/plating/beach/coastline_b, -/area/centcom/holding) -"Cp" = ( -/obj/item/clothing/head/collectable/paper, -/turf/open/floor/plating/beach/coastline_b, -/area/centcom/holding) -"Cq" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/open/floor/plasteel/whitered/corner{ - dir = 1 - }, -/area/tdome/tdomeobserve) -"Cr" = ( -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/tdome/tdomeobserve) -"Cs" = ( -/turf/open/floor/plasteel/red, -/area/tdome/tdomeobserve) -"Ct" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/trophy/gold_cup, -/turf/open/floor/plasteel/grimy, -/area/tdome/tdomeobserve) -"Cu" = ( -/turf/open/floor/plasteel/bar, -/area/tdome/tdomeobserve) -"Cv" = ( -/turf/open/floor/plasteel/green/side{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"Cw" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 4 - }, -/area/tdome/tdomeobserve) -"Cx" = ( -/obj/structure/rack, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/under/suit_jacket/female{ - desc = "A black trouser suit for women. Very formal."; - name = "black suit"; - pixel_x = 3; - pixel_y = 1 - }, -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"Cy" = ( -/obj/structure/table, -/obj/item/gun/ballistic/automatic/toy/pistol, -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"Cz" = ( -/turf/open/floor/plating/beach/water, -/area/centcom/holding) -"CA" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/open/floor/plasteel/white, -/area/tdome/tdomeobserve) -"CB" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = -8 - }, -/obj/item/kitchen/knife, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"CC" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/red, -/area/tdome/tdomeobserve) -"CD" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/white, -/area/tdome/tdomeobserve) -"CE" = ( -/obj/structure/table/wood, -/obj/structure/sign/atmosplaque/thunderdome{ - pixel_y = -32 - }, -/obj/item/clothing/accessory/medal/gold{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/item/clothing/accessory/medal/gold, -/turf/open/floor/plasteel/grimy, -/area/tdome/tdomeobserve) -"CF" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"CG" = ( -/obj/structure/table/wood, -/obj/structure/sign/atmosplaque/thunderdome{ - pixel_y = -32 - }, -/obj/item/clothing/accessory/medal{ - pixel_y = 5 - }, -/turf/open/floor/plasteel/grimy, -/area/tdome/tdomeobserve) -"CH" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel/bar, -/area/tdome/tdomeobserve) -"CI" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/bar, -/area/tdome/tdomeobserve) -"CJ" = ( -/obj/machinery/chem_master/condimaster{ - name = "HoochMaster 2000" - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"CK" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/open/floor/plasteel/white, -/area/tdome/tdomeobserve) -"CL" = ( -/obj/effect/spawner/structure/window/hollow/reinforced, -/turf/open/floor/plasteel, -/area/centcom/holding) -"CM" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/centcom/holding) -"CO" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/open/floor/plasteel/whitered/corner{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"CP" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/snacks/mint, -/obj/item/reagent_containers/food/condiment/enzyme{ - pixel_y = 5 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"CQ" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/plasteel/red, -/area/tdome/tdomeobserve) -"CR" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/open/floor/plasteel/bar, -/area/tdome/tdomeobserve) -"CS" = ( -/obj/structure/table/wood, -/obj/machinery/chem_dispenser/drinks/beer, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"CT" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/open/floor/plasteel/whitegreen/corner, -/area/tdome/tdomeobserve) -"CU" = ( -/obj/item/reagent_containers/food/snacks/egg/rainbow{ - desc = "I bet you think you're pretty clever... well you are."; - name = "easter egg" - }, -/turf/open/space, -/area/space) -"CV" = ( -/obj/effect/landmark/holding_facility, -/turf/open/floor/engine, -/area/centcom/holding) -"CW" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/open/floor/plasteel/whitered/side{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"CX" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/suit/apron/chef, -/obj/item/kitchen/rollingpin, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"CY" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = -8 - }, -/obj/item/reagent_containers/food/drinks/britcup, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/tdome/tdomeobserve) -"CZ" = ( -/turf/open/floor/plasteel/vault, -/area/tdome/tdomeobserve) -"Da" = ( -/obj/structure/chair, -/obj/effect/landmark/thunderdome/observe, -/obj/structure/sign/barsign{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"Db" = ( -/obj/structure/chair, -/obj/effect/landmark/thunderdome/observe, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"Dc" = ( -/obj/machinery/computer/security/telescreen, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"Dd" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/tdome/tdomeobserve) -"De" = ( -/obj/structure/table/wood, -/obj/machinery/chem_dispenser/drinks, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"Df" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/tdome/tdomeobserve) -"Dg" = ( -/obj/machinery/door/airlock/centcom{ - name = "Thunderdome Locker Room"; - opacity = 1; - req_access_txt = "101" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/tdome/tdomeobserve) -"Dh" = ( -/obj/structure/table/reinforced, -/obj/machinery/reagentgrinder{ - desc = "Used to grind things up into raw materials and liquids."; - pixel_y = 5 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"Di" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/storage/bag/tray, -/obj/item/kitchen/fork, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/tdome/tdomeobserve) -"Dj" = ( -/turf/open/floor/plasteel/redyellow, -/area/tdome/tdomeobserve) -"Dk" = ( -/obj/machinery/vending/boozeomat, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"Dl" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/neutral/corner, -/area/tdome/tdomeobserve) -"Dm" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 6 - }, -/area/tdome/tdomeobserve) -"Dn" = ( -/obj/structure/rack, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/obj/item/clothing/head/chefhat, -/turf/open/floor/plasteel/vault, -/area/tdome/tdomeobserve) -"Do" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/tdome/tdomeobserve) -"Dp" = ( -/obj/machinery/computer/security/telescreen, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"Dq" = ( -/obj/item/storage/fancy/cigarettes/cigars{ - pixel_y = 6 - }, -/obj/item/storage/fancy/cigarettes/cigars/cohiba{ - pixel_y = 3 - }, -/obj/item/storage/fancy/cigarettes/cigars/havana, -/obj/structure/table/wood, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"Dr" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 10 - }, -/area/tdome/tdomeobserve) -"Ds" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/tdome/tdomeobserve) -"Dt" = ( -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/tdome/tdomeobserve) -"Du" = ( -/obj/structure/table/reinforced, -/obj/machinery/microwave{ - desc = "Cooks and boils stuff, somehow."; - pixel_x = -3; - pixel_y = 5 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"Dv" = ( -/obj/structure/table/reinforced, -/obj/machinery/microwave{ - desc = "Cooks and boils stuff, somehow."; - pixel_x = -3; - pixel_y = 5 - }, -/obj/structure/sign/barsign{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"Dw" = ( -/obj/machinery/icecream_vat, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"Dx" = ( -/turf/closed/indestructible/fakeglass{ - icon_state = "fakewindows"; - dir = 8 - }, -/area/tdome/tdomeobserve) -"Dy" = ( -/turf/closed/indestructible/fakeglass{ - icon_state = "fakewindows2"; - dir = 8 - }, -/area/tdome/tdomeobserve) -"Dz" = ( -/turf/closed/indestructible/fakeglass{ - icon_state = "fakewindows"; - dir = 4 - }, -/area/tdome/tdomeobserve) -"DA" = ( -/obj/item/storage/box/matches{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/structure/table/wood, -/obj/structure/sign/barsign{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"DB" = ( -/obj/item/lighter{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/lighter, -/obj/structure/table/wood, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"DC" = ( -/obj/structure/table/wood, -/obj/item/book/manual/barman_recipes, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/item/reagent_containers/glass/rag, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"DD" = ( -/turf/open/floor/plasteel/green/corner{ - dir = 1 - }, -/area/tdome/tdomeobserve) -"DG" = ( -/obj/machinery/igniter, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/tdome/arena) -"DH" = ( -/turf/open/floor/plasteel, -/area/tdome/arena) -"DI" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/tdome/arena) -"DJ" = ( -/turf/closed/indestructible/riveted, -/area/tdome/tdomeadmin) -"DK" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/palebush, -/turf/open/floor/plating/asteroid, -/area/tdome/tdomeadmin) -"DL" = ( -/obj/machinery/door/airlock/centcom{ - name = "Thunderdome Administration"; - opacity = 1; - req_access_txt = "102" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/tdome/tdomeadmin) -"DM" = ( -/obj/structure/rack, -/obj/item/clothing/under/color/red, -/obj/item/clothing/shoes/sneakers/brown, -/obj/item/clothing/suit/armor/tdome/red, -/obj/item/clothing/head/helmet/thunderdome, -/obj/item/melee/baton/loaded, -/obj/item/melee/transforming/energy/sword/saber/red, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tdome/arena) -"DN" = ( -/obj/machinery/door/poddoor{ - id = "thunderdomegen"; - name = "General Supply" - }, -/turf/open/floor/plasteel/loadingarea{ - dir = 4 - }, -/area/tdome/arena) -"DO" = ( -/obj/effect/landmark/thunderdome/two, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/tdome/arena) -"DP" = ( -/obj/effect/landmark/thunderdome/two, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/tdome/arena) -"DQ" = ( -/obj/effect/landmark/thunderdome/two, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/tdome/arena) -"DR" = ( -/obj/machinery/door/poddoor{ - id = "thunderdome"; - name = "Thunderdome Blast Door" - }, -/turf/open/floor/plasteel/loadingarea{ - dir = 4 - }, -/area/tdome/arena) -"DS" = ( -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/tdome/arena) -"DT" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/tdome/arena) -"DU" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/tdome/arena) -"DV" = ( -/turf/open/floor/plasteel/neutral, -/area/tdome/arena) -"DW" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/tdome/arena) -"DX" = ( -/turf/open/floor/plasteel/green/side{ - dir = 4 - }, -/area/tdome/arena) -"DY" = ( -/obj/machinery/door/poddoor{ - id = "thunderdome"; - name = "Thunderdome Blast Door" - }, -/turf/open/floor/plasteel/loadingarea{ - dir = 8 - }, -/area/tdome/arena) -"DZ" = ( -/obj/effect/landmark/thunderdome/one, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/tdome/arena) -"Ea" = ( -/obj/effect/landmark/thunderdome/one, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/tdome/arena) -"Eb" = ( -/obj/effect/landmark/thunderdome/one, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/tdome/arena) -"Ec" = ( -/obj/machinery/door/poddoor{ - id = "thunderdomegen"; - name = "General Supply" - }, -/turf/open/floor/plasteel/loadingarea{ - dir = 8 - }, -/area/tdome/arena) -"Ed" = ( -/obj/structure/rack, -/obj/item/clothing/under/color/green, -/obj/item/clothing/shoes/sneakers/brown, -/obj/item/clothing/suit/armor/tdome/green, -/obj/item/clothing/head/helmet/thunderdome, -/obj/item/melee/baton/loaded, -/obj/item/melee/transforming/energy/sword/saber/green, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tdome/arena) -"Ee" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/fernybush, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "asteroid8"; - name = "sand" - }, -/area/tdome/tdomeadmin) -"Ef" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/tdome/tdomeadmin) -"Eg" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/tdome/tdomeadmin) -"Eh" = ( -/obj/effect/landmark/thunderdome/two, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tdome/arena) -"Ei" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/effect/landmark/thunderdome/two, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/tdome/arena) -"Ej" = ( -/obj/effect/landmark/thunderdome/two, -/turf/open/floor/plasteel/neutral, -/area/tdome/arena) -"Ek" = ( -/obj/effect/landmark/thunderdome/two, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tdome/arena) -"El" = ( -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/tdome/arena) -"Em" = ( -/turf/open/floor/plasteel/green/corner{ - dir = 4 - }, -/area/tdome/arena) -"En" = ( -/obj/effect/landmark/thunderdome/one, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tdome/arena) -"Eo" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/effect/landmark/thunderdome/one, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/tdome/arena) -"Ep" = ( -/obj/effect/landmark/thunderdome/one, -/turf/open/floor/plasteel/neutral, -/area/tdome/arena) -"Eq" = ( -/obj/effect/landmark/thunderdome/one, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tdome/arena) -"Er" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/fernybush, -/turf/open/floor/plasteel{ - name = "plating"; - icon_state = "asteroid5" - }, -/area/tdome/tdomeadmin) -"Es" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/tdome/tdomeadmin) -"Et" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/tdome/tdomeadmin) -"Eu" = ( -/obj/machinery/camera{ - pixel_x = 11; - pixel_y = -9; - network = list("thunder"); - c_tag = "Red Team" - }, -/obj/effect/landmark/thunderdome/two, -/turf/open/floor/plasteel/neutral, -/area/tdome/arena) -"Ev" = ( -/turf/open/floor/plasteel/loadingarea{ - dir = 4 - }, -/area/tdome/arena) -"Ew" = ( -/turf/open/floor/circuit/green, -/area/tdome/arena) -"Ex" = ( -/obj/machinery/flasher{ - id = "tdomeflash"; - name = "Thunderdome Flash" - }, -/turf/open/floor/circuit/green, -/area/tdome/arena) -"Ey" = ( -/turf/open/floor/plasteel/loadingarea{ - dir = 8 - }, -/area/tdome/arena) -"Ez" = ( -/obj/machinery/camera{ - pixel_x = 12; - pixel_y = -10; - network = list("thunder"); - c_tag = "Green Team" - }, -/obj/effect/landmark/thunderdome/one, -/turf/open/floor/plasteel/neutral, -/area/tdome/arena) -"EA" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/palebush, -/turf/open/floor/plating/asteroid, -/area/tdome/tdomeadmin) -"EB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/tdome/tdomeadmin) -"EC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/tdome/tdomeadmin) -"ED" = ( -/obj/machinery/camera{ - pixel_x = 10; - network = list("thunder"); - c_tag = "Arena" - }, -/turf/open/floor/circuit/green, -/area/tdome/arena) -"EE" = ( -/turf/open/floor/plasteel/red/corner{ - dir = 8 - }, -/area/tdome/arena) -"EF" = ( -/turf/open/floor/plasteel/green/corner, -/area/tdome/arena) -"EG" = ( -/obj/effect/landmark/thunderdome/two, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/tdome/arena) -"EH" = ( -/obj/effect/landmark/thunderdome/two, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/tdome/arena) -"EI" = ( -/obj/effect/landmark/thunderdome/two, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/tdome/arena) -"EJ" = ( -/obj/effect/landmark/thunderdome/one, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/tdome/arena) -"EK" = ( -/obj/effect/landmark/thunderdome/one, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/tdome/arena) -"EL" = ( -/obj/effect/landmark/thunderdome/one, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/tdome/arena) -"EM" = ( -/obj/machinery/door/poddoor{ - id = "thunderdomehea"; - name = "Heavy Supply" - }, -/turf/open/floor/plasteel/loadingarea{ - dir = 1 - }, -/area/tdome/arena) -"EN" = ( -/obj/machinery/door/poddoor{ - id = "thunderdomehea"; - name = "Heavy Supply" - }, -/turf/open/floor/plasteel/loadingarea, -/area/tdome/arena) -"EO" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/tdome/tdomeadmin) -"EP" = ( -/obj/structure/rack, -/obj/item/clothing/under/color/red, -/obj/item/clothing/shoes/sneakers/brown, -/obj/item/clothing/suit/armor/vest, -/obj/item/clothing/head/helmet/swat, -/obj/item/gun/energy/laser, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/tdome/arena) -"EQ" = ( -/turf/closed/indestructible/fakeglass{ - icon_state = "fakewindows"; - dir = 8 - }, -/area/tdome/tdomeadmin) -"ER" = ( -/turf/closed/indestructible/fakeglass{ - icon_state = "fakewindows2"; - dir = 8 - }, -/area/tdome/tdomeadmin) -"ES" = ( -/turf/closed/indestructible/fakeglass{ - icon_state = "fakewindows"; - dir = 4 - }, -/area/tdome/tdomeadmin) -"ET" = ( -/obj/structure/rack, -/obj/item/clothing/under/color/green, -/obj/item/clothing/shoes/sneakers/brown, -/obj/item/clothing/suit/armor/vest, -/obj/item/clothing/head/helmet/swat, -/obj/item/gun/energy/laser, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/tdome/arena) -"EU" = ( -/obj/item/device/radio{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/device/radio{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/device/radio, -/obj/structure/table/wood, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeadmin) -"EV" = ( -/obj/effect/landmark/thunderdome/admin, -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/tdome/tdomeadmin) -"EW" = ( -/obj/machinery/computer/security/telescreen, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeadmin) -"EX" = ( -/obj/structure/chair/comfy/brown{ - color = "#66b266"; - dir = 1 - }, -/turf/open/floor/plasteel/darkgreen, -/area/tdome/tdomeadmin) -"EY" = ( -/obj/machinery/button/flasher{ - id = "tdomeflash" - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeadmin) -"EZ" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/escape) -"Fa" = ( -/obj/machinery/status_display, -/turf/closed/wall/mineral/titanium, -/area/shuttle/escape) -"Fb" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tdome/tdomeadmin) -"Fc" = ( -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeadmin) -"Fd" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeadmin) -"Fe" = ( -/turf/open/floor/plasteel/grimy, -/area/tdome/tdomeadmin) -"Ff" = ( -/turf/open/floor/plasteel/darkgreen/side{ - dir = 1 - }, -/area/tdome/tdomeadmin) -"Fg" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeadmin) -"Fh" = ( -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"Fi" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/escape) -"Fj" = ( -/turf/closed/indestructible/fakedoor{ - name = "Thunderdome Admin" - }, -/area/tdome/tdomeadmin) -"Fk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/centcom{ - name = "Thunderdome Administration"; - opacity = 1; - req_access_txt = "102" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tdome/tdomeadmin) -"Fl" = ( -/turf/open/floor/plasteel/vault, -/area/tdome/tdomeadmin) -"Fm" = ( -/obj/machinery/door/airlock/external{ - name = "Backup Emergency Escape Shuttle" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/tdome/tdomeadmin) -"Fn" = ( -/obj/machinery/door/airlock/titanium, -/obj/docking_port/stationary{ - dir = 4; - dwidth = 2; - height = 8; - id = "backup_away"; - name = "Backup Shuttle Dock"; - width = 8 - }, -/obj/docking_port/mobile/emergency/backup, -/turf/open/floor/plating, -/area/shuttle/escape) -"Fo" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"Fp" = ( -/obj/structure/table/wood, -/obj/item/paper/fluff/stations/centcom/broken_evac, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"Fq" = ( -/obj/structure/bookcase/random, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeadmin) -"Fr" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen/fourcolor, -/obj/machinery/light, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeadmin) -"Fs" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/restraints/handcuffs, -/obj/item/device/assembly/flash/handheld, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeadmin) -"Ft" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/device/radio/headset/headset_cent, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeadmin) -"Fu" = ( -/obj/structure/table/wood, -/obj/item/phone{ - desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/mask/cigarette/cigar/cohiba{ - pixel_x = 6 - }, -/obj/item/clothing/mask/cigarette/cigar/havana{ - pixel_x = 2 - }, -/obj/item/clothing/mask/cigarette/cigar{ - pixel_x = 4.5 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeadmin) -"Fv" = ( -/obj/machinery/button/door{ - id = "thunderdomehea"; - name = "Heavy Supply Control"; - req_access_txt = "102" - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeadmin) -"Fw" = ( -/obj/machinery/button/door{ - id = "thunderdome"; - name = "Main Blast Doors Control"; - req_access_txt = "102" - }, -/obj/structure/table/reinforced, -/obj/machinery/light, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeadmin) -"Fx" = ( -/obj/machinery/button/door{ - id = "thunderdomegen"; - name = "General Supply Control"; - req_access_txt = "102" - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeadmin) -"Fy" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/lighter, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeadmin) -"Fz" = ( -/obj/item/storage/briefcase{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/secure/briefcase, -/obj/structure/table/wood, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeadmin) -"FA" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeadmin) -"FB" = ( -/obj/structure/table/wood, -/obj/item/storage/box/drinkingglasses, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_y = 5 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeadmin) -"FC" = ( -/obj/structure/table/wood, -/obj/item/book/manual/random, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"FD" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/genericbush, -/turf/open/floor/grass, -/area/tdome/tdomeadmin) -"FE" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/pointybush, -/turf/open/floor/grass, -/area/tdome/tdomeadmin) -"FF" = ( -/obj/machinery/status_display, -/turf/closed/indestructible/riveted, -/area/tdome/tdomeadmin) -"FG" = ( -/obj/machinery/ai_status_display, -/turf/closed/indestructible/riveted, -/area/tdome/tdomeadmin) -"FI" = ( -/obj/structure/shuttle/engine/propulsion/right{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/centcom/evac) -"FJ" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/centcom/evac) -"FK" = ( -/obj/structure/shuttle/engine/propulsion/left{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/centcom/evac) -"FL" = ( -/obj/docking_port/stationary{ - dir = 1; - dwidth = 1; - height = 4; - id = "pod4_away"; - name = "recovery ship"; - width = 3 - }, -/turf/open/space, -/area/space) -"FM" = ( -/obj/docking_port/stationary{ - dir = 1; - dwidth = 1; - height = 4; - id = "pod3_away"; - name = "recovery ship"; - width = 3 - }, -/turf/open/space, -/area/space) -"FN" = ( -/turf/closed/wall/mineral/titanium, -/area/centcom/evac) -"FO" = ( -/obj/structure/window/reinforced, -/obj/structure/shuttle/engine/heater{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/centcom/evac) -"FP" = ( -/obj/machinery/door/airlock/titanium, -/turf/open/floor/plating, -/area/centcom/evac) -"FQ" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/open/floor/plating, -/area/centcom/evac) -"FR" = ( -/turf/open/floor/plating, -/area/centcom/evac) -"FS" = ( -/turf/open/floor/plating, -/turf/closed/wall/mineral/titanium/interior, -/area/centcom/evac) -"FT" = ( -/turf/open/floor/mineral/titanium/blue, -/turf/closed/wall/mineral/titanium/interior, -/area/centcom/evac) -"FU" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/mineral/titanium/blue, -/area/centcom/evac) -"FV" = ( -/turf/open/floor/mineral/titanium/yellow, -/area/centcom/evac) -"FW" = ( -/obj/structure/table, -/obj/item/storage/firstaid/toxin{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/storage/firstaid/toxin, -/turf/open/floor/mineral/titanium/blue, -/area/centcom/evac) -"FX" = ( -/obj/structure/table, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/fire{ - pixel_x = -2; - pixel_y = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/centcom/evac) -"FY" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular{ - pixel_x = 2 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = -2; - pixel_y = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/centcom/evac) -"FZ" = ( -/turf/open/floor/mineral/titanium/blue, -/area/centcom/evac) -"Ga" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien20" - }, -/area/abductor_ship) -"Gb" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien21" - }, -/area/abductor_ship) -"Gc" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien22" - }, -/area/abductor_ship) -"Gd" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien23" - }, -/area/abductor_ship) -"Ge" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien24" - }, -/area/abductor_ship) -"Gf" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien16" - }, -/area/abductor_ship) -"Gg" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien17" - }, -/area/abductor_ship) -"Gh" = ( -/obj/machinery/abductor/experiment{ - team_number = 1 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"Gi" = ( -/obj/machinery/abductor/console{ - team_number = 1 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"Gj" = ( -/obj/machinery/abductor/pad{ - team_number = 1 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"Gk" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien18" - }, -/area/abductor_ship) -"Gl" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien19" - }, -/area/abductor_ship) -"Gm" = ( -/obj/machinery/abductor/experiment{ - team_number = 4 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"Gn" = ( -/obj/machinery/abductor/console{ - team_number = 4 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"Go" = ( -/obj/machinery/abductor/pad{ - team_number = 4 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"Gp" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/turf/open/floor/mineral/plastitanium, -/area/centcom/evac) -"Gq" = ( -/obj/structure/table/reinforced, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/mineral/plastitanium, -/area/centcom/evac) -"Gr" = ( -/obj/structure/table/reinforced, -/obj/item/pen, -/turf/open/floor/mineral/plastitanium, -/area/centcom/evac) -"Gs" = ( -/obj/structure/table/reinforced, -/turf/open/floor/mineral/plastitanium, -/area/centcom/evac) -"Gt" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/centcom/evac) -"Gu" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/centcom/evac) -"Gv" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien14" - }, -/area/abductor_ship) -"Gw" = ( -/obj/machinery/computer/camera_advanced/abductor{ - team_number = 1 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"Gx" = ( -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"Gy" = ( -/obj/structure/closet/abductor, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"Gz" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien15" - }, -/area/abductor_ship) -"GA" = ( -/obj/machinery/computer/camera_advanced/abductor{ - team_number = 4 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"GB" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/mineral/plastitanium, -/area/centcom/evac) -"GC" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/mineral/plastitanium, -/area/centcom/evac) -"GD" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/mineral/plastitanium, -/area/centcom/evac) -"GE" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/stamp, -/turf/open/floor/mineral/plastitanium, -/area/centcom/evac) -"GF" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien12" - }, -/area/abductor_ship) -"GG" = ( -/obj/item/retractor/alien, -/obj/item/hemostat/alien, -/obj/structure/table/abductor, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"GH" = ( -/obj/effect/landmark/abductor/scientist, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"GI" = ( -/obj/structure/table/optable/abductor, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"GJ" = ( -/obj/effect/landmark/abductor/agent, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"GK" = ( -/obj/structure/table/abductor, -/obj/item/storage/box/alienhandcuffs, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"GL" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien13" - }, -/area/abductor_ship) -"GM" = ( -/obj/effect/landmark/abductor/scientist{ - team_number = 4 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"GN" = ( -/obj/effect/landmark/abductor/agent{ - team_number = 4 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"GO" = ( -/obj/structure/table, -/obj/item/device/assembly/flash/handheld, -/turf/open/floor/mineral/plastitanium, -/area/centcom/evac) -"GP" = ( -/turf/open/floor/mineral/plastitanium, -/area/centcom/evac) -"GQ" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/centcom/evac) -"GR" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien10" - }, -/area/abductor_ship) -"GS" = ( -/obj/item/surgical_drapes, -/obj/item/paper/guides/antag/abductor, -/obj/item/scalpel/alien, -/obj/structure/table/abductor, -/obj/item/cautery/alien, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"GT" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien11" - }, -/area/abductor_ship) -"GU" = ( -/obj/structure/table, -/obj/item/storage/box/handcuffs, -/turf/open/floor/mineral/plastitanium, -/area/centcom/evac) -"GV" = ( -/obj/machinery/door/window/northright{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Security Desk"; - req_access_txt = "103" - }, -/turf/open/floor/mineral/plastitanium, -/area/centcom/evac) -"GW" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 1; - height = 4; - id = "pod2_away"; - name = "recovery ship"; - width = 3 - }, -/turf/open/space, -/area/space) -"GX" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien6" - }, -/area/abductor_ship) -"GY" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien7" - }, -/area/abductor_ship) -"GZ" = ( -/obj/machinery/abductor/gland_dispenser, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"Ha" = ( -/obj/structure/table/abductor, -/obj/item/surgicaldrill/alien, -/obj/item/circular_saw/alien, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"Hb" = ( -/obj/structure/bed/abductor, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"Hc" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien8" - }, -/area/abductor_ship) -"Hd" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien9" - }, -/area/abductor_ship) -"He" = ( -/turf/closed/indestructible/abductor, -/area/abductor_ship) -"Hf" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien2" - }, -/area/abductor_ship) -"Hg" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien3" - }, -/area/abductor_ship) -"Hh" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien4" - }, -/area/abductor_ship) -"Hi" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien5" - }, -/area/abductor_ship) -"Hj" = ( -/obj/structure/bed, -/turf/open/floor/mineral/titanium/blue, -/area/centcom/evac) -"Hk" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/centcom/evac) -"Hl" = ( -/obj/machinery/door/airlock/titanium, -/turf/open/floor/mineral/titanium/yellow, -/area/centcom/evac) -"Hm" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 2; - height = 7; - id = "pod1_away"; - name = "recovery ship"; - width = 5 - }, -/turf/open/space, -/area/space) -"Hn" = ( -/obj/machinery/abductor/experiment{ - team_number = 2 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"Ho" = ( -/obj/machinery/abductor/console{ - team_number = 2 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"Hp" = ( -/obj/machinery/abductor/pad{ - team_number = 2 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"Hq" = ( -/obj/machinery/abductor/experiment{ - team_number = 3 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"Hr" = ( -/obj/machinery/abductor/console{ - team_number = 3 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"Hs" = ( -/obj/machinery/abductor/pad{ - team_number = 3 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"Ht" = ( -/obj/machinery/computer/camera_advanced/abductor{ - team_number = 2 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"Hu" = ( -/obj/machinery/computer/camera_advanced/abductor{ - team_number = 3 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"Hv" = ( -/obj/structure/table, -/obj/structure/bedsheetbin, -/turf/open/floor/mineral/titanium/blue, -/area/centcom/evac) -"Hw" = ( -/obj/structure/table, -/obj/item/hand_labeler, -/obj/machinery/light, -/turf/open/floor/mineral/titanium/blue, -/area/centcom/evac) -"Hx" = ( -/obj/structure/table, -/obj/item/storage/box/donkpockets, -/turf/open/floor/mineral/titanium/blue, -/area/centcom/evac) -"Hy" = ( -/obj/effect/landmark/abductor/scientist{ - team_number = 2 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"Hz" = ( -/obj/effect/landmark/abductor/agent{ - team_number = 2 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"HA" = ( -/obj/effect/landmark/abductor/scientist{ - team_number = 3 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"HB" = ( -/obj/effect/landmark/abductor/agent{ - team_number = 3 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"HC" = ( -/obj/machinery/door/airlock/titanium{ - name = "Cockpit"; - req_access_txt = "109" - }, -/turf/open/floor/mineral/titanium/yellow, -/area/centcom/evac) -"HD" = ( -/obj/structure/table, -/obj/item/device/radio/off, -/turf/open/floor/mineral/titanium/blue, -/area/centcom/evac) -"HE" = ( -/obj/structure/chair{ - dir = 4; - name = "Prosecution" - }, -/turf/open/floor/mineral/titanium/blue, -/area/centcom/evac) -"HF" = ( -/obj/structure/filingcabinet, -/turf/open/floor/mineral/titanium/blue, -/area/centcom/evac) -"HG" = ( -/obj/structure/chair, -/turf/open/floor/mineral/titanium/blue, -/area/centcom/evac) -"HH" = ( -/obj/structure/table, -/obj/item/storage/lockbox, -/turf/open/floor/mineral/titanium/blue, -/area/centcom/evac) -"HI" = ( -/obj/structure/table, -/turf/open/floor/mineral/titanium/blue, -/area/centcom/evac) -"HJ" = ( -/obj/machinery/computer/shuttle, -/turf/open/floor/mineral/titanium/blue, -/area/centcom/evac) -"HK" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/pen, -/turf/open/floor/mineral/titanium/blue, -/area/centcom/evac) -"HL" = ( -/obj/structure/table, -/obj/item/paper_bin, -/turf/open/floor/mineral/titanium/blue, -/area/centcom/evac) -"HM" = ( -/turf/closed/indestructible/riveted, -/area/awaymission/errorroom) -"HN" = ( -/turf/closed/mineral/ash_rock, -/area/awaymission/errorroom) -"HO" = ( -/obj/structure/speaking_tile, -/turf/closed/mineral/ash_rock, -/area/awaymission/errorroom) -"HP" = ( -/obj/item/rupee, -/turf/open/floor/plating/ashplanet/wateryrock{ - initial_gas_mix = "o2=22;n2=82;TEMP=293.15"; - planetary_atmos = 0 - }, -/area/awaymission/errorroom) -"HQ" = ( -/turf/open/floor/plating/ashplanet/wateryrock{ - initial_gas_mix = "o2=22;n2=82;TEMP=293.15"; - planetary_atmos = 0 - }, -/area/awaymission/errorroom) -"HR" = ( -/obj/effect/landmark/error, -/turf/open/floor/plating/ashplanet/wateryrock{ - initial_gas_mix = "o2=22;n2=82;TEMP=293.15"; - planetary_atmos = 0 - }, -/area/awaymission/errorroom) -"HS" = ( -/obj/structure/signpost/salvation{ - icon = 'icons/obj/structures.dmi'; - icon_state = "ladder10"; - invisibility = 100 - }, -/turf/open/floor/plating/ashplanet/wateryrock{ - initial_gas_mix = "o2=22;n2=82;TEMP=293.15"; - planetary_atmos = 0 - }, -/area/awaymission/errorroom) -"HT" = ( -/obj/structure/lattice, -/turf/open/space, -/area/space) -"HU" = ( -/obj/machinery/door/airlock/external, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"HV" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/centcom/evac) -"HW" = ( -/obj/structure/table/reinforced, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate/medical) -"Ic" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate/medical) -"Id" = ( -/obj/item/retractor, -/obj/item/hemostat, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate/medical) -"Ih" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/centcom/evac) -"Ij" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/tdome/arena_source) -"Il" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/tdome/arena_source) -"Im" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/tdome/arena_source) -"In" = ( -/turf/open/floor/plasteel/neutral, -/area/tdome/arena_source) -"Is" = ( -/obj/machinery/computer/crew/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate/bridge) -"Iu" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/tdome/arena_source) -"Iw" = ( -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/tdome/arena_source) -"ID" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate/armory) -"II" = ( -/turf/open/floor/plasteel/green/corner{ - dir = 4 - }, -/area/tdome/arena_source) -"IJ" = ( -/turf/open/floor/plasteel/loadingarea{ - dir = 4 - }, -/area/tdome/arena_source) -"IS" = ( -/turf/open/floor/plasteel/loadingarea{ - dir = 8 - }, -/area/tdome/arena_source) -"IY" = ( -/obj/machinery/camera{ - pixel_x = 10; - network = list("thunder"); - c_tag = "Arena" - }, -/turf/open/floor/circuit/green, -/area/tdome/arena_source) -"IZ" = ( -/obj/structure/table/optable, -/obj/item/surgical_drapes, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate/medical) -"Jb" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate/armory) -"Je" = ( -/turf/open/floor/plasteel/red/corner{ - dir = 8 - }, -/area/tdome/arena_source) -"Jg" = ( -/obj/machinery/sleeper/syndie{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate/medical) -"Jh" = ( -/obj/machinery/porta_turret/syndicate{ - dir = 4 - }, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate/hallway) -"Jk" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate/medical) -"Jm" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/dropper, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate/medical) -"Jn" = ( -/obj/structure/shuttle/engine/propulsion/left, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate/hallway) -"Jq" = ( -/turf/open/floor/plasteel/green/corner, -/area/tdome/arena_source) -"Js" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 5 - }, -/area/shuttle/syndicate/armory) -"Jz" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate/armory) -"JC" = ( +"vo" = ( /obj/machinery/suit_storage_unit/syndicate, /turf/open/floor/plasteel/podhatch{ - dir = 6 - }, -/area/shuttle/syndicate/eva) -"JE" = ( -/obj/machinery/light, -/turf/open/floor/plating, -/area/syndicate_mothership/control) -"JG" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating, -/area/syndicate_mothership/control) -"JH" = ( -/obj/machinery/light{ dir = 4 }, -/turf/open/floor/plasteel/bar{ - dir = 2 - }, -/area/syndicate_mothership/control) -"JI" = ( -/obj/machinery/light{ +/area/shuttle/syndicate/eva) +"vp" = ( +/obj/structure/tank_dispenser/oxygen, +/turf/open/floor/plasteel/vault{ dir = 8 }, -/turf/open/floor/plasteel/bar{ - dir = 2 - }, -/area/syndicate_mothership/control) -"JJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/syndicate_mothership/control) -"JK" = ( -/obj/machinery/status_display, +/area/shuttle/syndicate/eva) +"vq" = ( /turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate/armory) -"JL" = ( -/obj/machinery/light, -/turf/open/floor/wood, -/area/syndicate_mothership/control) -"JM" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/bar{ - dir = 2 - }, -/area/syndicate_mothership/control) -"JN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plating/airless, -/area/syndicate_mothership/control) -"JO" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/centcom/evac) -"JP" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/centcom/evac) -"JQ" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/centcom/evac) -"JR" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/centcom/evac) -"JS" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/yellow, -/area/centcom/evac) -"JT" = ( -/obj/structure/bed, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/centcom/evac) -"JU" = ( -/obj/structure/table, -/obj/item/storage/box/donkpockets, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/centcom/evac) -"JV" = ( -/obj/structure/table, -/obj/item/device/radio/off, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/centcom/evac) -"JW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"JX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"JY" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/centcom/supply) -"JZ" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/centcom/supply) -"Kb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"Kc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"Kd" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/brown, -/area/centcom/supply) -"Ke" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"Kg" = ( -/obj/item/toy/figure/syndie, -/obj/effect/light_emitter{ - set_cap = 1; - set_luminosity = 4 - }, -/turf/open/floor/plating/asteroid/snow/airless, -/area/syndicate_mothership) -"Ki" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 10 - }, -/area/shuttle/syndicate/medical) -"Kj" = ( -/obj/structure/flora/grass/both, -/obj/effect/light_emitter{ - set_cap = 1; - set_luminosity = 4 - }, -/turf/open/floor/plating/asteroid/snow/airless, -/area/syndicate_mothership) -"Kk" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/centcom/control) -"Kl" = ( -/obj/effect/light_emitter{ - set_cap = 1; - set_luminosity = 4 - }, -/turf/open/floor/plating/asteroid/snow/airless, -/area/syndicate_mothership) -"Km" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/centcom/control) -"Ko" = ( -/obj/structure/flora/tree/pine, -/obj/effect/light_emitter{ - set_cap = 1; - set_luminosity = 4 - }, -/turf/open/floor/plating/asteroid/snow/airless, -/area/syndicate_mothership) -"Kq" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/pointybush, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/grass, -/area/centcom/evac) -"Ks" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/palebush, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/asteroid, -/area/centcom/evac) -"Kt" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/fernybush, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - name = "plating"; - icon_state = "asteroid5" - }, -/area/centcom/control) -"Ku" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/genericbush, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/grass, -/area/centcom/control) -"Kv" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"Kw" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"KA" = ( -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate/armory) -"KD" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/evac) -"KE" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 9 - }, -/area/shuttle/syndicate/medical) -"KG" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/palebush, -/obj/machinery/light, -/turf/open/floor/plating/asteroid, -/area/centcom/evac) -"KK" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/evac) -"KL" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/green/corner{ - dir = 4 - }, -/area/centcom/ferry) -"KM" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"KN" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"KO" = ( -/obj/machinery/light, -/turf/open/floor/wood, -/area/wizard_station) -"KP" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/centcom/ferry) -"KS" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate/eva) -"KT" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/centcom/evac) -"KW" = ( -/obj/machinery/light, -/turf/open/floor/engine/cult, -/area/wizard_station) -"KZ" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/genericbush, -/obj/machinery/light, -/turf/open/floor/grass, -/area/centcom/evac) -"La" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"Lc" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/centcom/evac) -"Ld" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"Le" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/centcom/evac) -"Lf" = ( -/obj/structure/chair/office/dark{ - dir = 8; - name = "tactical swivel chair" - }, -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate/bridge) -"Lg" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/carpet, -/area/wizard_station) -"Lh" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/wizard_station) -"Li" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/wizard_station) -"Lj" = ( -/obj/structure/closet/crate/bin, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"Lk" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/tdome/tdomeobserve) -"Lm" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/tdome/tdomeobserve) -"Ln" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/green/side{ - dir = 8 - }, -/area/tdome/tdomeobserve) -"Lo" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/palebush, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/asteroid, -/area/tdome/tdomeadmin) -"Lp" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/fernybush, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "asteroid8"; - name = "sand" - }, -/area/tdome/tdomeadmin) -"Ls" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/tdome/tdomeadmin) -"Lt" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/tdome/tdomeadmin) -"Lu" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/pointybush, -/obj/machinery/light, -/turf/open/floor/grass, -/area/tdome/tdomeadmin) -"Lw" = ( -/obj/structure/flora/bush, -/obj/effect/light_emitter{ - set_cap = 1; - set_luminosity = 4 - }, -/turf/open/floor/plating/asteroid/snow/airless, -/area/syndicate_mothership) -"Lx" = ( -/obj/structure/flora/grass/brown, -/obj/effect/light_emitter{ - set_cap = 1; - set_luminosity = 4 - }, -/turf/open/floor/plating/asteroid/snow/airless, -/area/syndicate_mothership) -"Ly" = ( -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate/armory) -"Lz" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/beach/sand, -/area/centcom/holding) -"LA" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"LB" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"LF" = ( -/obj/structure/fluff/arc, -/turf/open/floor/grass, -/area/centcom/evac) -"LG" = ( -/obj/machinery/telecomms/allinone{ - intercept = 1 - }, -/turf/open/floor/circuit/red, -/area/shuttle/syndicate/armory) -"LH" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/window/reinforced, -/turf/open/floor/grass, -/area/centcom/evac) -"LJ" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/obj/machinery/light, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/control) -"LK" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/grass, -/area/centcom/evac) -"LL" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/brflowers, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/grass, -/area/centcom/evac) -"LM" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/grass, -/area/centcom/evac) -"LN" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/grass, -/area/centcom/evac) -"LP" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/grass, -/area/centcom/evac) -"LQ" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/window/reinforced, -/turf/open/floor/grass, -/area/centcom/evac) -"LR" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/window/reinforced, -/turf/open/floor/grass, -/area/centcom/evac) -"LS" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/evac) -"LT" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel, -/area/centcom/evac) -"LU" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/centcom/evac) -"LW" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/handcuffs, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/evac) -"LX" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/palebush, -/turf/open/floor/plating/asteroid, -/area/centcom/evac) -"LY" = ( -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/centcom/evac) -"LZ" = ( -/obj/machinery/ai_status_display, -/turf/closed/indestructible/riveted, -/area/centcom/evac) -"Mb" = ( -/obj/machinery/door/airlock/centcom{ - name = "CentCom Security"; - opacity = 1; - req_access_txt = "101" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/centcom/evac) -"Mc" = ( -/turf/closed/indestructible/fakedoor{ - name = "CentCom" - }, -/area/centcom/evac) -"Md" = ( -/obj/machinery/computer/emergency_shuttle, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"Me" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"Mf" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"Mg" = ( -/obj/item/cardboard_cutout{ - desc = "They seem to be ignoring you... Typical."; - dir = 1; - icon_state = "cutout_ntsec"; - name = "Private Security Officer" - }, -/turf/open/floor/plasteel/darkred/side{ - dir = 1 - }, -/area/centcom/evac) -"Mh" = ( -/obj/item/cardboard_cutout{ - desc = "They seem to be ignoring you... Typical."; - icon_state = "cutout_ntsec"; - name = "Private Security Officer" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/centcom/evac) -"Mi" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/centcom/evac) -"Mk" = ( -/obj/structure/window/plastitanium, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, /area/shuttle/syndicate/airlock) -"Mz" = ( -/obj/structure/shuttle/engine/propulsion/right, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate/hallway) -"MI" = ( -/obj/item/storage/toolbox/syndicate, -/obj/item/crowbar/red, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/podhatch{ - dir = 10 - }, -/area/shuttle/syndicate/airlock) -"MZ" = ( +"vr" = ( /obj/docking_port/stationary{ area_type = /area/syndicate_mothership; baseturf_type = /turf/open/floor/plating/asteroid/snow; @@ -13688,318 +8085,7 @@ dir = 1 }, /area/shuttle/syndicate/airlock) -"Nc" = ( -/obj/structure/window/plastitanium, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate/medical) -"Nk" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate/hallway) -"Ns" = ( -/obj/machinery/nuclearbomb/syndicate, -/obj/machinery/door/window{ - dir = 1; - name = "Theatre Stage"; - req_access_txt = "0" - }, -/turf/open/floor/circuit/red, -/area/shuttle/syndicate/hallway) -"NH" = ( -/obj/structure/table/reinforced, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/item/clipboard, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/folder/red, -/obj/item/toy/figure/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate/bridge) -"NJ" = ( -/obj/machinery/door/airlock/external{ - name = "E.V.A. Gear Storage"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate/eva) -"NQ" = ( -/obj/machinery/door/window{ - dir = 1; - name = "Technological Storage"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate/armory) -"NV" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/shuttle/syndicate/hallway) -"Om" = ( -/obj/structure/chair{ - dir = 8; - name = "tactical chair" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate/hallway) -"Os" = ( -/obj/machinery/recharge_station, -/turf/open/floor/circuit/red, -/area/shuttle/syndicate/armory) -"Ou" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate/eva) -"Oz" = ( -/obj/structure/shuttle/engine/propulsion, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate/medical) -"OQ" = ( -/obj/structure/closet/syndicate/personal, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate/armory) -"OS" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/device/aicard, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate/armory) -"OT" = ( -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil/white, -/obj/item/stack/cable_coil/white, -/obj/item/crowbar/red, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate/hallway) -"Pa" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate/eva) -"Pd" = ( -/obj/structure/window/plastitanium, -/obj/machinery/door/poddoor/shutters{ - id = "syndieshutters"; - name = "blast shutters" - }, -/turf/open/floor/plating, -/area/shuttle/syndicate/bridge) -"Pm" = ( -/obj/structure/shuttle/engine/propulsion/right, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate/armory) -"Pt" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate/hallway) -"Pv" = ( -/obj/machinery/porta_turret/syndicate{ - dir = 9 - }, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate/bridge) -"Qm" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate/medical) -"Qo" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "150" - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/syndicate/airlock) -"Qr" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/plasteel/podhatch{ - dir = 5 - }, -/area/shuttle/syndicate/eva) -"Qt" = ( -/obj/machinery/door/window{ - dir = 1; - name = "Surgery"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate/medical) -"QB" = ( -/obj/structure/tank_dispenser/oxygen, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate/eva) -"QH" = ( -/obj/structure/table/wood, -/obj/item/toy/crayon/white, -/turf/open/floor/holofloor, -/area/holodeck/rec_center/school) -"QI" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/grown/apple, -/turf/open/floor/holofloor, -/area/holodeck/rec_center/school) -"QJ" = ( -/obj/structure/table, -/obj/item/paper, -/obj/item/pen, -/obj/item/clothing/under/schoolgirl, -/turf/open/floor/holofloor, -/area/holodeck/rec_center/school) -"QK" = ( -/obj/structure/table, -/obj/item/paper, -/obj/item/pen, -/obj/item/clothing/under/schoolgirl/green, -/turf/open/floor/holofloor, -/area/holodeck/rec_center/school) -"QL" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/holofloor, -/area/holodeck/rec_center/school) -"QN" = ( -/obj/structure/table, -/obj/item/paper, -/obj/item/pen, -/obj/item/clothing/under/schoolgirl/red, -/turf/open/floor/holofloor, -/area/holodeck/rec_center/school) -"QP" = ( -/obj/structure/window/plastitanium, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate/medical) -"QT" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating/airless, -/area/syndicate_mothership/control) -"QU" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/syndicate_mothership/control) -"QV" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/syndicate_mothership/control) -"QX" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/syndicate_mothership/control) -"QY" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/syndicate_mothership/control) -"Rg" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/brute, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate/medical) -"Rj" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 6 - }, -/area/shuttle/syndicate/armory) -"Ru" = ( -/obj/structure/chair{ - dir = 4; - name = "tactical chair" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate/hallway) -"Rx" = ( -/obj/structure/shuttle/engine/propulsion/left, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate/medical) -"RD" = ( -/turf/open/floor/plasteel/podhatch, -/area/shuttle/syndicate/hallway) -"RF" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate/hallway) -"RJ" = ( -/obj/item/grenade/syndieminibomb{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/grenade/syndieminibomb{ - pixel_x = -1 - }, -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/grenade/plastic/c4, -/obj/item/grenade/plastic/c4, -/obj/item/grenade/plastic/c4, -/obj/item/grenade/plastic/c4, -/obj/item/grenade/plastic/c4, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate/armory) -"RK" = ( -/obj/machinery/door/airlock/external{ - name = "Ready Room"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate/hallway) -"RR" = ( +"vs" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; @@ -14008,186 +8094,854 @@ }, /turf/closed/wall/mineral/plastitanium, /area/shuttle/syndicate/airlock) -"RS" = ( -/turf/open/floor/plasteel/podhatch, -/area/shuttle/syndicate/armory) -"RT" = ( -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate/medical) -"Sb" = ( -/obj/structure/closet/syndicate/nuclear, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate/armory) -"Se" = ( -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/shuttle/syndicate/armory) -"Sg" = ( +"vt" = ( /obj/machinery/porta_turret/syndicate{ - dir = 10 - }, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate/hallway) -"So" = ( -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate/bridge) -"Sr" = ( -/obj/structure/chair/office/dark{ - dir = 1; - name = "tactical swivel chair" - }, -/obj/machinery/button/door{ - id = "syndieshutters"; - name = "Cockpit View Control"; - pixel_x = 32; - pixel_y = 32; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate/bridge) -"Su" = ( -/obj/machinery/porta_turret/syndicate{ - dir = 10 - }, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate/armory) -"Sx" = ( -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate/eva) -"SA" = ( -/obj/machinery/computer/secure_data/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate/bridge) -"SC" = ( -/obj/machinery/porta_turret/syndicate{ - dir = 9 - }, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate/medical) -"SD" = ( -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate/medical) -"Tg" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/open/floor/plasteel/podhatch{ - dir = 4 - }, -/area/shuttle/syndicate/eva) -"Tl" = ( -/obj/structure/window/plastitanium, -/turf/open/floor/plasteel/vault{ dir = 5 }, -/area/shuttle/syndicate/eva) -"Tm" = ( -/obj/machinery/status_display, /turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate/bridge) -"Tt" = ( -/obj/machinery/ai_status_display, +/area/shuttle/syndicate/airlock) +"vu" = ( +/obj/item/storage/box/drinkingglasses, +/obj/item/reagent_containers/food/drinks/bottle/rum, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/syndicate_mothership/control) +"vv" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/syndicate_mothership/control) +"vw" = ( +/obj/structure/table/wood, +/obj/item/device/syndicatedetonator{ + desc = "This gaudy button can be used to instantly detonate syndicate bombs that have been activated on the station. It is also fun to press." + }, +/turf/open/floor/wood, +/area/syndicate_mothership/control) +"vx" = ( +/obj/structure/table/wood, +/obj/item/toy/nuke, +/turf/open/floor/wood, +/area/syndicate_mothership/control) +"vy" = ( +/obj/machinery/door/airlock/centcom{ + aiControlDisabled = 1; + name = "Assault Pod"; + opacity = 1; + req_access_txt = "150" + }, +/turf/open/floor/plating, +/area/shuttle/assault_pod) +"vz" = ( +/obj/machinery/computer/shuttle/syndicate/drop_pod, /turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate/medical) -"TC" = ( -/obj/structure/window/reinforced{ +/area/shuttle/assault_pod) +"vA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: EXTERNAL AIRLOCK" + }, +/turf/open/floor/plating, +/area/centcom/ferry) +"vB" = ( +/obj/structure/closet/emcloset, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"vC" = ( +/obj/machinery/light{ dir = 1 }, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate/armory) -"TD" = ( -/obj/structure/chair/office/dark{ - dir = 4; - name = "tactical swivel chair" +/obj/effect/turf_decal/stripes/line{ + dir = 9 }, -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate/bridge) -"TO" = ( -/obj/structure/window/reinforced{ +/turf/open/floor/plasteel, +/area/centcom/ferry) +"vD" = ( +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate/medical) -"TT" = ( -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate/hallway) -"TW" = ( +/turf/open/floor/plasteel, +/area/centcom/ferry) +"vE" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, /obj/structure/chair{ - dir = 8; - name = "tactical chair" + dir = 8 }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"vF" = ( +/obj/machinery/door/airlock/centcom{ + name = "Administrative Office"; + opacity = 1; + req_access_txt = "109" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"vG" = ( +/obj/machinery/door/poddoor/shutters{ + id = "XCCsec1"; + name = "XCC Checkpoint 1 Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"vH" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/green/corner{ + dir = 1 + }, +/area/centcom/control) +"vI" = ( +/obj/machinery/pdapainter, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"vJ" = ( +/obj/machinery/photocopier, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "XCCFerry"; + name = "Hanger Bay Shutters"; + pixel_x = -8; + pixel_y = 24; + req_access_txt = "2" + }, +/obj/machinery/button/door{ + id = "XCCsec3"; + name = "CC Main Access Control"; + pixel_x = 8; + pixel_y = 24 + }, +/obj/machinery/button/door{ + id = "XCCsec1"; + name = "CC Shutter 1 Control"; + pixel_x = 8; + pixel_y = 38 + }, +/obj/machinery/button/door{ + id = "XCCsec3"; + name = "XCC Shutter 3 Control"; + pixel_x = -8; + pixel_y = 38 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"vK" = ( +/obj/structure/table/reinforced, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"vL" = ( +/obj/item/device/flashlight/lamp, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"vM" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"vN" = ( +/obj/structure/filingcabinet/medical, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"vO" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/green/corner{ + dir = 4 + }, +/area/centcom/control) +"vP" = ( +/obj/machinery/door/poddoor/shutters{ + id = "XCCcustoms2"; + name = "XCC Customs 2 Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"vQ" = ( +/obj/structure/table, +/obj/item/paper/pamphlet/centcom/visitor_info, +/obj/item/paper/pamphlet/centcom/visitor_info, +/obj/item/paper/pamphlet/centcom/visitor_info, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/green/side{ + dir = 9 + }, +/area/centcom/control) +"vR" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/centcom/control) +"vS" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/centcom/control) +"vT" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/green/side{ + dir = 5 + }, +/area/centcom/control) +"vU" = ( +/obj/machinery/door/poddoor/shutters{ + id = "XCCcustoms1"; + name = "XCC Customs 1 Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/evac) +"vV" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/evac) +"vW" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 10 + }, +/area/centcom/evac) +"vX" = ( +/turf/open/floor/plasteel/blue/side{ + dir = 5 + }, +/area/centcom/evac) +"vY" = ( +/turf/open/floor/plasteel/blue, +/area/centcom/evac) +"vZ" = ( +/turf/open/floor/plasteel/blue/side{ + dir = 4 + }, +/area/centcom/evac) +"wa" = ( +/turf/open/floor/plasteel/blue/side{ + dir = 8 + }, +/area/centcom/evac) +"wb" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; + name = "Observation Room" + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"wc" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; + name = "Game Room" + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"wd" = ( +/obj/structure/chair/wood/wings{ + icon_state = "wooden_chair_wings"; + dir = 1 + }, +/turf/open/floor/carpet, +/area/wizard_station) +"we" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'FOURTH WALL'."; + name = "\improper FOURTH WALL"; + pixel_x = -32 + }, +/turf/open/floor/plating/asteroid/snow/airless, +/area/syndicate_mothership) +"wf" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, /obj/machinery/light{ dir = 4 }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate/hallway) -"TY" = ( -/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate, /turf/open/floor/plasteel/vault{ dir = 8 }, -/area/shuttle/syndicate/bridge) -"Um" = ( -/obj/machinery/computer/camera_advanced/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate/bridge) -"Uq" = ( -/obj/machinery/porta_turret/syndicate{ - dir = 6 - }, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate/hallway) -"Ur" = ( -/obj/effect/spawner/structure/window/reinforced, +/area/shuttle/syndicate/eva) +"wg" = ( +/obj/structure/grille, +/obj/structure/window/plastitanium, /turf/open/floor/plating, /area/shuttle/syndicate/hallway) -"Us" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate/bridge) -"Uv" = ( +"wh" = ( +/obj/machinery/door/airlock/external{ + name = "Ready Room"; + req_access_txt = "150" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/hallway) +"wi" = ( +/obj/item/storage/toolbox/syndicate, +/obj/item/crowbar/red, +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/podhatch{ + dir = 10 + }, +/area/shuttle/syndicate/airlock) +"wj" = ( +/turf/open/floor/plasteel/podhatch, +/area/shuttle/syndicate/airlock) +"wk" = ( +/obj/structure/chair{ + name = "tactical chair" + }, +/turf/open/floor/plasteel/podhatch{ + dir = 6 + }, +/area/shuttle/syndicate/airlock) +"wl" = ( +/obj/machinery/light, +/turf/open/floor/wood, +/area/syndicate_mothership/control) +"wm" = ( +/obj/effect/landmark/start/nukeop_leader, +/turf/open/floor/wood, +/area/syndicate_mothership/control) +"wn" = ( +/turf/open/floor/wood, +/area/syndicate_mothership/control) +"wo" = ( +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Uplink Management Control"; + req_access_txt = "151" + }, +/turf/open/floor/wood, +/area/syndicate_mothership/control) +"wp" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/bar{ + dir = 2 + }, +/area/syndicate_mothership/control) +"wq" = ( +/obj/structure/chair, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/assault_pod) +"wr" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"ws" = ( +/turf/open/floor/plasteel/neutral, +/area/centcom/ferry) +"wt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"wu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/centcom{ + name = "CentCom Security"; + opacity = 1; + req_access_txt = "101" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"wv" = ( +/obj/machinery/door/poddoor/shutters{ + id = "XCCFerry"; + name = "XCC Ferry Hangar" + }, +/turf/open/floor/plasteel/loadingarea{ + dir = 4 + }, +/area/centcom/ferry) +"ww" = ( +/obj/machinery/button/door{ + id = "XCCFerry"; + name = "Hanger Bay Shutters"; + pixel_y = 24; + req_access_txt = "2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"wx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"wy" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"wz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"wA" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/green/corner{ + dir = 4 + }, +/area/centcom/ferry) +"wB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"wC" = ( +/obj/machinery/door/airlock/centcom{ + name = "CentCom Customs"; + opacity = 1; + req_access_txt = "109" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"wD" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/folder/blue{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/lighter, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"wE" = ( +/obj/structure/chair/comfy/brown{ + color = "#596479"; + dir = 2 + }, +/turf/open/floor/plasteel/vault, +/area/centcom/control) +"wF" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/med_data/laptop, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"wG" = ( +/turf/open/floor/plasteel/green/side{ + dir = 8 + }, +/area/centcom/control) +"wH" = ( +/turf/open/floor/plasteel/loadingarea, +/area/centcom/control) +"wI" = ( +/turf/open/floor/plasteel/green/side{ + dir = 4 + }, +/area/centcom/control) +"wJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/centcom{ + name = "CentCom"; + opacity = 1; + req_access_txt = "0" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/evac) +"wK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/evac) +"wL" = ( +/turf/open/floor/plasteel/blue/side{ + dir = 6 + }, +/area/centcom/evac) +"wM" = ( +/obj/structure/chair/wood/wings{ + icon_state = "wooden_chair_wings"; + dir = 8 + }, +/turf/open/floor/wood, +/area/wizard_station) +"wN" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"wO" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"wP" = ( +/obj/structure/table/wood/fancy, +/obj/item/device/camera/spooky, +/turf/open/floor/carpet, +/area/wizard_station) +"wQ" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/turf/open/floor/carpet, +/area/wizard_station) +"wR" = ( +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/eva) +"wS" = ( +/obj/machinery/door/airlock/external{ + name = "E.V.A. Gear Storage"; + req_access_txt = "150" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/eva) +"wT" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "150" + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/syndicate/airlock) +"wU" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/syndicate/airlock) +"wV" = ( +/obj/machinery/computer/telecrystals/boss, +/turf/open/floor/plasteel/podhatch{ + dir = 5 + }, +/area/syndicate_mothership/control) +"wW" = ( +/obj/structure/sign/map/left{ + pixel_y = -32 + }, +/obj/structure/rack{ + icon = 'icons/obj/stationobjs.dmi'; + icon_state = "minibar_left"; + name = "skeletal minibar" + }, +/obj/item/reagent_containers/food/drinks/bottle/vodka, +/turf/open/floor/wood, +/area/syndicate_mothership/control) +"wX" = ( +/obj/structure/sign/map/right{ + pixel_y = -32 + }, +/obj/structure/rack{ + icon = 'icons/obj/stationobjs.dmi'; + icon_state = "minibar_right"; + name = "skeletal minibar" + }, +/obj/item/reagent_containers/food/drinks/bottle/gin, +/turf/open/floor/wood, +/area/syndicate_mothership/control) +"wY" = ( +/obj/machinery/door/airlock/centcom{ + name = "Equipment Room"; + opacity = 1; + req_access_txt = "150" + }, +/turf/open/floor/plasteel/bar{ + dir = 2 + }, +/area/syndicate_mothership/control) +"wZ" = ( +/turf/open/floor/plating/asteroid/snow/airless, +/obj/machinery/porta_turret/syndicate/pod, +/turf/closed/wall/mineral/plastitanium{ + icon_state = "diagonalWall3" + }, +/area/shuttle/assault_pod) +"xa" = ( +/turf/open/floor/plating/asteroid/snow/airless, +/obj/machinery/porta_turret/syndicate/pod, +/turf/closed/wall/mineral/plastitanium{ + dir = 4; + icon_state = "diagonalWall3" + }, +/area/shuttle/assault_pod) +"xb" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 13; + id = "ferry_away"; + name = "CentCom Ferry Dock"; + width = 5 + }, +/turf/open/space, +/area/space) +"xc" = ( +/obj/machinery/door/airlock/external{ + name = "Ferry Airlock"; + req_access_txt = "0" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"xd" = ( +/obj/structure/fans/tiny, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"xe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"xf" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"xg" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"xh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: BLAST DOORS" + }, +/turf/open/floor/plating, +/area/centcom/ferry) +"xi" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"xj" = ( +/turf/open/floor/plasteel/green/side{ + dir = 8 + }, +/area/centcom/ferry) +"xk" = ( +/turf/open/floor/plasteel/green/side{ + dir = 4 + }, +/area/centcom/ferry) +"xl" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/centcom/control) +"xm" = ( +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"xn" = ( +/obj/machinery/computer/card/centcom, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"xo" = ( +/turf/open/floor/plasteel/green/corner, +/area/centcom/control) +"xp" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/green/side{ + dir = 8 + }, +/area/centcom/control) +"xq" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/green/side{ + dir = 4 + }, +/area/centcom/control) +"xr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: BLAST DOORS" + }, +/turf/open/floor/plating, +/area/centcom/evac) +"xs" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/evac) +"xt" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 5 + }, +/area/centcom/evac) +"xu" = ( +/obj/machinery/light, +/turf/open/floor/wood, +/area/wizard_station) +"xv" = ( +/obj/item/statuebust{ + pixel_y = 12 + }, +/obj/structure/table/wood/fancy, +/turf/open/floor/wood, +/area/wizard_station) +"xw" = ( +/obj/machinery/vending/magivend, +/turf/open/floor/engine/cult, +/area/wizard_station) +"xx" = ( +/obj/machinery/vending/snack, +/turf/open/floor/engine/cult, +/area/wizard_station) +"xy" = ( +/obj/structure/table/wood/fancy, +/obj/item/storage/pill_bottle/dice{ + icon_state = "magicdicebag" + }, +/turf/open/floor/carpet, +/area/wizard_station) +"xz" = ( +/obj/structure/table/wood/fancy, +/obj/item/storage/photo_album, +/obj/machinery/light, +/turf/open/floor/carpet, +/area/wizard_station) +"xA" = ( +/obj/machinery/suit_storage_unit/syndicate, +/turf/open/floor/plasteel/podhatch{ + dir = 6 + }, +/area/shuttle/syndicate/eva) +"xB" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/shuttle/syndicate/eva) -"Ux" = ( -/turf/open/floor/plasteel/black, -/area/shuttle/syndicate/hallway) -"UI" = ( -/obj/machinery/door/airlock/hatch{ - name = "Cockpit"; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate/bridge) -"UK" = ( -/obj/machinery/porta_turret/syndicate{ - dir = 5 - }, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate/armory) -"UR" = ( +"xC" = ( +/obj/structure/grille, +/obj/structure/window/plastitanium, +/turf/open/floor/plating, +/area/shuttle/syndicate/eva) +"xD" = ( +/obj/structure/grille, +/obj/structure/window/plastitanium, +/turf/open/floor/plating, +/area/shuttle/syndicate/airlock) +"xE" = ( /obj/structure/chair{ dir = 1; name = "tactical chair" @@ -14196,195 +8950,395 @@ dir = 8 }, /area/shuttle/syndicate/airlock) -"UW" = ( -/obj/structure/shuttle/engine/propulsion/left, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate/armory) -"Ve" = ( -/turf/open/floor/plasteel/podhatch{ - dir = 1 - }, -/area/shuttle/syndicate/armory) -"Vk" = ( -/obj/item/weldingtool/largetank{ - pixel_y = 3 - }, -/obj/item/device/multitool, -/obj/structure/table/reinforced, +"xF" = ( +/obj/structure/rack, +/obj/item/clothing/suit/space/syndicate/black/red, +/obj/item/clothing/head/helmet/space/syndicate/black/red, /turf/open/floor/plasteel/vault{ dir = 8 }, -/area/shuttle/syndicate/armory) -"Vo" = ( -/obj/machinery/computer/med_data/syndie, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate/bridge) -"Vv" = ( -/obj/item/wrench, -/obj/item/device/assembly/infra, -/obj/structure/table/reinforced, +/area/shuttle/syndicate/airlock) +"xG" = ( +/turf/open/floor/plasteel/black, +/area/syndicate_mothership/control) +"xH" = ( +/obj/machinery/mech_bay_recharge_port, +/turf/open/floor/plating, +/area/syndicate_mothership/control) +"xI" = ( /obj/machinery/light{ dir = 1 }, -/turf/open/floor/plasteel/vault{ +/turf/open/floor/mech_bay_recharge_floor, +/area/syndicate_mothership/control) +"xJ" = ( +/obj/machinery/computer/mech_bay_power_console, +/turf/open/floor/plating, +/area/syndicate_mothership/control) +"xK" = ( +/obj/machinery/vending/tool, +/turf/open/floor/plasteel/black, +/area/syndicate_mothership/control) +"xL" = ( +/obj/structure/closet/cardboard/metal, +/obj/effect/turf_decal/stripes/corner{ dir = 8 }, -/area/shuttle/syndicate/armory) -"Vy" = ( -/obj/machinery/porta_turret/syndicate{ - dir = 5 - }, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate/airlock) -"VO" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/bodypart/r_arm/robot, -/obj/item/bodypart/l_arm/robot, -/obj/structure/table/reinforced, -/obj/item/toy/plush/nukeplushie, -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate/medical) -"Wd" = ( -/obj/structure/window/plastitanium, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate/armory) -"We" = ( -/obj/item/screwdriver{ - pixel_y = 9 - }, -/obj/item/device/assembly/voice{ - pixel_y = 3 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate/armory) -"Wj" = ( -/obj/item/device/sbeacondrop/bomb{ - pixel_y = 5 - }, -/obj/item/device/sbeacondrop/bomb, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/syndicate/armory) -"Wk" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate/airlock) -"Wr" = ( -/turf/open/floor/plasteel/vault, -/area/shuttle/syndicate/bridge) -"Wz" = ( -/obj/structure/shuttle/engine/propulsion/right, -/obj/effect/turf_decal/stripes/line, /turf/open/floor/plating/airless, -/area/shuttle/syndicate/medical) -"WK" = ( -/obj/structure/shuttle/engine/propulsion, -/obj/effect/turf_decal/stripes/line, +/area/syndicate_mothership/control) +"xM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, /turf/open/floor/plating/airless, -/area/shuttle/syndicate/hallway) -"WM" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 +/area/syndicate_mothership/control) +"xN" = ( +/obj/machinery/door/airlock/centcom{ + aiControlDisabled = 1; + name = "Assault Pod"; + opacity = 1; + req_access_txt = "150" }, -/area/shuttle/syndicate/medical) -"WW" = ( -/obj/machinery/light{ +/obj/docking_port/mobile/assault_pod{ + dwidth = 3; + name = "steel rain"; + port_direction = 4; + preferred_direction = 4 + }, +/turf/open/floor/plating, +/area/shuttle/assault_pod) +"xO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/syndicate_mothership/control) +"xP" = ( +/obj/effect/turf_decal/stripes/corner{ dir = 4 }, -/turf/open/floor/plasteel/vault{ +/turf/open/floor/plating/airless, +/area/syndicate_mothership/control) +"xQ" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"xR" = ( +/obj/effect/turf_decal/stripes/line{ dir = 5 }, -/area/shuttle/syndicate/hallway) -"WX" = ( -/obj/structure/chair{ - name = "tactical chair" +/turf/open/floor/plasteel, +/area/centcom/ferry) +"xS" = ( +/obj/machinery/button/door{ + id = "XCCsec1"; + name = "CC Shutter 1 Control"; + pixel_y = -24 }, -/turf/open/floor/plasteel/podhatch{ - dir = 6 +/obj/effect/turf_decal/stripes/line{ + dir = 10 }, -/area/shuttle/syndicate/airlock) -"WY" = ( -/obj/machinery/light{ - dir = 4 +/turf/open/floor/plasteel, +/area/centcom/ferry) +"xT" = ( +/turf/open/floor/plasteel/green/corner{ + dir = 8 }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate/armory) -"XJ" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate/medical) -"XL" = ( -/obj/structure/window/plastitanium, +/area/centcom/control) +"xU" = ( +/obj/machinery/computer/crew, /turf/open/floor/plasteel/vault{ dir = 8 }, -/area/shuttle/syndicate/hallway) -"XN" = ( -/obj/structure/chair{ - dir = 4; - name = "tactical chair" +/area/centcom/control) +"xV" = ( +/obj/structure/chair/office/dark{ + dir = 8 }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate/hallway) -"XU" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate/eva) -"XW" = ( -/turf/open/floor/plasteel/podhatch, -/area/shuttle/syndicate/airlock) -"Yk" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/handcuffs{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/zipties, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/syndicate/hallway) -"Yl" = ( -/obj/structure/table/reinforced, -/obj/machinery/ai_status_display{ - pixel_x = 32 - }, -/obj/item/storage/fancy/donut_box, -/obj/machinery/light{ +/turf/open/floor/wood, +/area/centcom/control) +"xW" = ( +/obj/structure/chair/office/dark{ dir = 4 }, +/turf/open/floor/wood, +/area/centcom/control) +"xX" = ( +/obj/machinery/computer/communications, /turf/open/floor/plasteel/vault{ dir = 8 }, -/area/shuttle/syndicate/bridge) -"Ym" = ( +/area/centcom/control) +"xY" = ( +/turf/open/floor/plasteel/blue/side{ + dir = 9 + }, +/area/centcom/evac) +"xZ" = ( +/turf/open/floor/plasteel/blue/side{ + dir = 10 + }, +/area/centcom/evac) +"ya" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; + name = "Study" + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"yb" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; + name = "Break Room" + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"yc" = ( /obj/machinery/porta_turret/syndicate{ dir = 9 }, /turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate/eva) -"Yo" = ( -/obj/machinery/computer/shuttle/syndicate, +/area/shuttle/syndicate/medical) +"yd" = ( +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/medical) +"ye" = ( +/obj/machinery/ai_status_display, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/medical) +"yf" = ( +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/shuttle/syndicate/medical) +"yg" = ( +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/shuttle/syndicate/armory) +"yh" = ( +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/armory) +"yi" = ( +/obj/machinery/status_display, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/armory) +"yj" = ( +/obj/machinery/porta_turret/syndicate{ + dir = 5 + }, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/armory) +"yk" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/syndicate_mothership/control) +"yl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/syndicate_mothership/control) +"ym" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plating/airless, +/area/syndicate_mothership/control) +"yn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/vacuum, +/turf/open/floor/plating, +/area/centcom/ferry) +"yo" = ( +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"yp" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"yq" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -28 + }, +/obj/structure/sign/securearea{ + pixel_x = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"yr" = ( +/obj/machinery/door/airlock/centcom{ + name = "Briefing Room"; + opacity = 1; + req_access_txt = "101" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"ys" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/green/corner{ + dir = 8 + }, +/area/centcom/control) +"yt" = ( +/obj/item/storage/box/ids{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/silver_ids, +/obj/structure/table/reinforced, /turf/open/floor/plasteel/vault{ dir = 8 }, -/area/shuttle/syndicate/bridge) -"Yw" = ( +/area/centcom/control) +"yu" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/folder/white, +/obj/item/pen/blue, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"yv" = ( +/obj/machinery/computer/prisoner, +/obj/machinery/light, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"yw" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/light, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"yx" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/folder/red, +/obj/item/pen/red, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"yy" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/green/corner, +/area/centcom/control) +"yz" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/blue/side, +/area/centcom/control) +"yA" = ( +/obj/item/storage/firstaid/regular, +/obj/structure/table, +/turf/open/floor/plasteel/green/side{ + dir = 6 + }, +/area/centcom/control) +"yB" = ( +/turf/open/floor/plasteel/blue/corner{ + dir = 4 + }, +/area/centcom/evac) +"yC" = ( +/obj/structure/chair/wood/wings, +/turf/open/floor/engine/cult, +/area/wizard_station) +"yD" = ( +/obj/structure/table/wood, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/ointment, +/turf/open/floor/engine/cult, +/area/wizard_station) +"yE" = ( +/obj/structure/table/wood, +/obj/item/retractor, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"yF" = ( +/obj/structure/table/wood, +/obj/item/clothing/suit/wizrobe/magusblue, +/obj/item/clothing/head/wizard/magus, +/obj/item/staff, +/obj/structure/mirror/magic{ + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"yG" = ( +/obj/structure/table/wood, +/obj/item/clothing/suit/wizrobe/magusred, +/obj/item/clothing/head/wizard/magus, +/obj/item/staff, +/turf/open/floor/engine/cult, +/area/wizard_station) +"yH" = ( +/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/lizard, +/turf/open/floor/grass, +/area/wizard_station) +"yI" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/grass, +/area/wizard_station) +"yJ" = ( +/obj/effect/decal/remains/xeno/larva, +/turf/open/floor/grass, +/area/wizard_station) +"yK" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/grass, +/area/wizard_station) +"yL" = ( +/obj/machinery/sleeper/syndie{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/medical) +"yM" = ( +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/medical) +"yN" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/medical) +"yO" = ( /obj/item/reagent_containers/glass/bottle/epinephrine{ pixel_x = 6 }, @@ -14420,29 +9374,26 @@ dir = 8 }, /area/shuttle/syndicate/medical) -"Yz" = ( -/obj/item/cautery, -/obj/item/scalpel, +"yP" = ( /obj/structure/table/reinforced, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/ointment, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/shuttle/syndicate/medical) -"YF" = ( -/obj/structure/shuttle/engine/propulsion, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate/armory) -"YS" = ( -/obj/machinery/porta_turret/syndicate{ - dir = 5 - }, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/syndicate/bridge) -"YX" = ( -/turf/open/floor/plasteel/podhatch, +"yQ" = ( +/obj/structure/grille, +/obj/structure/window/plastitanium, +/turf/open/floor/plating, /area/shuttle/syndicate/medical) -"YY" = ( +"yR" = ( +/obj/structure/grille, +/obj/structure/window/plastitanium, +/turf/open/floor/plating, +/area/shuttle/syndicate/armory) +"yS" = ( /obj/item/stock_parts/cell/high{ pixel_x = -3; pixel_y = 3 @@ -14453,10 +9404,1191 @@ dir = 8 }, /area/shuttle/syndicate/armory) -"Ze" = ( +"yT" = ( +/obj/item/screwdriver{ + pixel_y = 9 + }, +/obj/item/device/assembly/voice{ + pixel_y = 3 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/armory) +"yU" = ( +/obj/item/wrench, +/obj/item/device/assembly/infra, +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/armory) +"yV" = ( +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/armory) +"yW" = ( +/obj/item/weldingtool/largetank{ + pixel_y = 3 + }, +/obj/item/device/multitool, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/armory) +"yX" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/black, +/area/syndicate_mothership/control) +"yY" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"yZ" = ( +/obj/structure/table/wood, +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 6 + }, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = 2 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = 4.5 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"za" = ( +/obj/structure/bookcase/random, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"zb" = ( +/obj/structure/table/wood, +/obj/machinery/computer/med_data/laptop, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"zc" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"zd" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"ze" = ( +/obj/structure/closet/secure_closet/ertEngi, +/obj/structure/sign/directions/engineering{ + pixel_y = 24 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"zf" = ( +/obj/structure/closet/secure_closet/ertEngi, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"zg" = ( +/obj/structure/table/reinforced, +/obj/item/gun/ballistic/automatic/wt550, +/obj/item/device/flashlight/seclite, +/obj/structure/noticeboard{ + pixel_y = 28 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"zh" = ( +/obj/structure/table/reinforced, +/obj/item/grenade/plastic/c4{ + pixel_x = 6 + }, +/obj/item/grenade/plastic/c4{ + pixel_x = -4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"zi" = ( +/obj/structure/rack, +/obj/item/gun/energy/e_gun{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/e_gun, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"zj" = ( +/obj/structure/closet/secure_closet/ertCom, +/obj/structure/sign/directions/engineering{ + desc = "A direction sign, pointing out which way the Command department is."; + dir = 2; + icon_state = "direction_bridge"; + name = "command department"; + pixel_y = 24 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"zk" = ( +/obj/machinery/door/airlock/glass_medical{ + name = "Infirmary" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"zl" = ( +/turf/open/floor/plasteel/blue/corner{ + dir = 1 + }, +/area/centcom/evac) +"zm" = ( +/turf/open/floor/plasteel/blue/side{ + dir = 1 + }, +/area/centcom/evac) +"zn" = ( +/turf/closed/indestructible/fakeglass{ + color = "#008000"; + dir = 1; + icon_state = "fakewindows" + }, +/area/wizard_station) +"zo" = ( +/obj/structure/destructible/cult/tome, +/turf/open/floor/engine/cult, +/area/wizard_station) +"zp" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/item/clothing/suit/wizrobe/red, +/obj/item/clothing/head/wizard/red, +/obj/item/staff, +/obj/item/clothing/shoes/sandal/magic, +/turf/open/floor/engine/cult, +/area/wizard_station) +"zq" = ( +/turf/open/floor/grass, +/area/wizard_station) +"zr" = ( +/obj/item/reagent_containers/food/snacks/meat/slab/corgi, +/turf/open/floor/grass, +/area/wizard_station) +"zs" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/medical) +"zt" = ( /turf/open/floor/plasteel/vault, /area/shuttle/syndicate/medical) -"Zi" = ( +"zu" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/syndicate/hallway) +"zv" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/syndicate/hallway) +"zw" = ( +/turf/open/floor/plasteel/vault, +/area/shuttle/syndicate/armory) +"zx" = ( +/obj/structure/closet/syndicate/personal, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/black, +/area/syndicate_mothership/control) +"zy" = ( +/obj/structure/table, +/obj/item/gun/energy/ionrifle{ + pin = /obj/item/device/firing_pin + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/black, +/area/syndicate_mothership/control) +"zz" = ( +/obj/structure/table/wood, +/obj/item/storage/box/drinkingglasses, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"zA" = ( +/turf/open/floor/plasteel/black, +/area/centcom/ferry) +"zB" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/ert_spawn, +/turf/open/floor/plasteel/black, +/area/centcom/ferry) +"zC" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/ert_spawn, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/centcom/ferry) +"zD" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"zE" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"zF" = ( +/turf/open/floor/plasteel/red/corner{ + dir = 8 + }, +/area/centcom/control) +"zG" = ( +/turf/open/floor/plasteel/blue/corner, +/area/centcom/control) +"zH" = ( +/obj/item/scalpel{ + pixel_y = 12 + }, +/obj/item/circular_saw, +/obj/item/retractor{ + pixel_x = 4 + }, +/obj/item/hemostat{ + pixel_x = -4 + }, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/cmo, +/area/centcom/control) +"zI" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/cmo, +/area/centcom/control) +"zJ" = ( +/turf/open/floor/plasteel/cmo, +/area/centcom/control) +"zK" = ( +/obj/machinery/computer/med_data, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/cmo, +/area/centcom/control) +"zL" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/palebush, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/asteroid, +/area/centcom/evac) +"zM" = ( +/turf/closed/indestructible/fakeglass{ + color = "#008000"; + dir = 1; + icon_state = "fakewindows2" + }, +/area/wizard_station) +"zN" = ( +/obj/structure/bookcase/random/reference, +/turf/open/floor/engine/cult, +/area/wizard_station) +"zO" = ( +/obj/structure/destructible/cult/talisman{ + desc = "An altar dedicated to the Wizards' Federation" + }, +/obj/item/kitchen/knife/ritual, +/turf/open/floor/engine/cult, +/area/wizard_station) +"zP" = ( +/obj/item/clothing/shoes/sandal/marisa, +/obj/item/clothing/suit/wizrobe/marisa, +/obj/item/clothing/head/wizard/marisa, +/obj/item/staff/broom, +/turf/open/floor/engine/cult, +/area/wizard_station) +"zQ" = ( +/obj/effect/decal/cleanable/blood/splatter, +/mob/living/simple_animal/hostile/creature{ + name = "Experiment 35b" + }, +/turf/open/floor/grass, +/area/wizard_station) +"zR" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/syndicate/medical) +"zS" = ( +/turf/open/floor/plasteel/podhatch{ + dir = 9 + }, +/area/shuttle/syndicate/medical) +"zT" = ( +/turf/open/floor/plasteel/podhatch{ + dir = 1 + }, +/area/shuttle/syndicate/medical) +"zU" = ( +/obj/machinery/door/airlock/hatch{ + req_access_txt = "150" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/medical) +"zV" = ( +/turf/open/floor/plasteel/podhatch{ + dir = 1 + }, +/area/shuttle/syndicate/hallway) +"zW" = ( +/obj/machinery/door/airlock/hatch{ + req_access_txt = "150" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/armory) +"zX" = ( +/turf/open/floor/plasteel/podhatch{ + dir = 1 + }, +/area/shuttle/syndicate/armory) +"zY" = ( +/turf/open/floor/plasteel/podhatch{ + dir = 5 + }, +/area/shuttle/syndicate/armory) +"zZ" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/syndicate/armory) +"Aa" = ( +/obj/structure/closet/syndicate/personal, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/armory) +"Ab" = ( +/obj/machinery/photocopier, +/turf/open/floor/plasteel/grimy, +/area/centcom/ferry) +"Ac" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/folder/blue{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/lighter, +/turf/open/floor/plasteel/grimy, +/area/centcom/ferry) +"Ad" = ( +/obj/structure/table/reinforced, +/obj/item/storage/secure/briefcase, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"Ae" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"Af" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/folder/white, +/obj/item/pen/blue, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"Ag" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"Ah" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/ert_spawn, +/turf/open/floor/plasteel/black, +/area/centcom/ferry) +"Ai" = ( +/obj/machinery/door/poddoor/ert, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"Aj" = ( +/obj/structure/table/reinforced, +/obj/item/restraints/handcuffs, +/obj/item/device/radio, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"Ak" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/regular, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"Al" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"Am" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/red/corner{ + dir = 8 + }, +/area/centcom/control) +"An" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/green/corner{ + dir = 8 + }, +/area/centcom/control) +"Ao" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/green/corner, +/area/centcom/control) +"Ap" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel/blue/corner, +/area/centcom/control) +"Aq" = ( +/obj/structure/table/optable, +/obj/item/surgical_drapes, +/turf/open/floor/plasteel/cmo, +/area/centcom/control) +"Ar" = ( +/turf/open/floor/plasteel/blue, +/area/centcom/control) +"As" = ( +/obj/machinery/computer/communications, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/turf/open/floor/plasteel/cmo, +/area/centcom/control) +"At" = ( +/turf/open/floor/plasteel/yellowsiding, +/area/centcom/evac) +"Au" = ( +/obj/machinery/abductor/experiment{ + team_number = 3 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"Av" = ( +/obj/machinery/abductor/console{ + team_number = 3 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"Aw" = ( +/obj/machinery/abductor/pad{ + team_number = 3 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"Ax" = ( +/turf/closed/indestructible/fakeglass{ + color = "#008000" + }, +/area/wizard_station) +"Ay" = ( +/obj/effect/landmark/start/wizard, +/turf/open/floor/engine/cult, +/area/wizard_station) +"Az" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/grass, +/area/wizard_station) +"AA" = ( +/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/slime, +/turf/open/floor/grass, +/area/wizard_station) +"AB" = ( +/obj/effect/decal/remains/xeno, +/turf/open/floor/grass, +/area/wizard_station) +"AC" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker, +/obj/item/reagent_containers/dropper, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/medical) +"AD" = ( +/turf/open/floor/plasteel/podhatch{ + dir = 10 + }, +/area/shuttle/syndicate/medical) +"AE" = ( +/turf/open/floor/plasteel/podhatch, +/area/shuttle/syndicate/medical) +"AF" = ( +/turf/open/floor/plasteel/podhatch, +/area/shuttle/syndicate/hallway) +"AG" = ( +/turf/open/floor/plasteel/podhatch, +/area/shuttle/syndicate/armory) +"AH" = ( +/turf/open/floor/plasteel/podhatch{ + dir = 6 + }, +/area/shuttle/syndicate/armory) +"AI" = ( +/obj/structure/closet/syndicate/nuclear, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/armory) +"AJ" = ( +/obj/structure/chair/comfy/brown{ + color = "#596479"; + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/centcom/ferry) +"AK" = ( +/obj/item/clipboard, +/obj/item/folder/red, +/obj/item/stamp/denied{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stamp, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/grimy, +/area/centcom/ferry) +"AL" = ( +/obj/structure/table/reinforced, +/obj/item/device/flashlight/seclite, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"AM" = ( +/obj/machinery/shuttle_manipulator, +/turf/open/floor/circuit/green, +/area/centcom/ferry) +"AN" = ( +/turf/open/floor/circuit/green, +/area/centcom/ferry) +"AO" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/folder/red, +/obj/item/pen/red, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"AP" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/ert_spawn, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/centcom/ferry) +"AQ" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"AR" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/zipties, +/obj/item/crowbar/red, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"AS" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Briefing Area APC"; + pixel_x = 26 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"AT" = ( +/obj/structure/sign/bluecross_2, +/turf/closed/indestructible/riveted, +/area/centcom/control) +"AU" = ( +/obj/machinery/computer/operating, +/turf/open/floor/plasteel/cmo, +/area/centcom/control) +"AV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/centcom/evac) +"AW" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/centcom/evac) +"AX" = ( +/obj/structure/table, +/obj/item/toy/sword, +/obj/item/gun/ballistic/shotgun/toy/crossbow, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/centcom/evac) +"AY" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/centcom/evac) +"AZ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/centcom/evac) +"Ba" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/centcom/evac) +"Bb" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel, +/area/centcom/evac) +"Bc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/centcom/evac) +"Bd" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/centcom/evac) +"Be" = ( +/obj/machinery/computer/camera_advanced/abductor{ + team_number = 3 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"Bf" = ( +/obj/structure/chair/wood/wings{ + icon_state = "wooden_chair_wings"; + dir = 1 + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"Bg" = ( +/mob/living/simple_animal/bot/medbot/mysterious{ + desc = "If you don't accidentally blow yourself up from time to time you're not really a wizard anyway."; + faction = list("neutral","silicon","creature"); + name = "Nobody's Perfect" + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"Bh" = ( +/obj/machinery/light, +/turf/open/floor/engine/cult, +/area/wizard_station) +"Bi" = ( +/obj/item/reagent_containers/food/snacks/meat/slab/xeno, +/turf/open/floor/grass, +/area/wizard_station) +"Bj" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/bodypart/r_arm/robot, +/obj/item/bodypart/l_arm/robot, +/obj/structure/table/reinforced, +/obj/item/toy/plush/nukeplushie, +/turf/open/floor/plasteel/vault, +/area/shuttle/syndicate/medical) +"Bk" = ( +/obj/machinery/door/window{ + dir = 1; + name = "Surgery"; + req_access_txt = "150" + }, +/turf/open/floor/plasteel/vault, +/area/shuttle/syndicate/medical) +"Bl" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel/vault, +/area/shuttle/syndicate/medical) +"Bm" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/brute, +/obj/item/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault, +/area/shuttle/syndicate/medical) +"Bn" = ( +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault, +/area/shuttle/syndicate/medical) +"Bo" = ( +/turf/open/floor/plasteel/vault, +/area/shuttle/syndicate/hallway) +"Bp" = ( +/obj/item/device/sbeacondrop/bomb{ + pixel_y = 5 + }, +/obj/item/device/sbeacondrop/bomb, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/armory) +"Bq" = ( +/obj/item/grenade/syndieminibomb{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/grenade/syndieminibomb{ + pixel_x = -1 + }, +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/grenade/plastic/c4, +/obj/item/grenade/plastic/c4, +/obj/item/grenade/plastic/c4, +/obj/item/grenade/plastic/c4, +/obj/item/grenade/plastic/c4, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/armory) +"Br" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel/vault, +/area/shuttle/syndicate/armory) +"Bs" = ( +/obj/machinery/door/window{ + dir = 1; + name = "Technological Storage"; + req_access_txt = "150" + }, +/turf/open/floor/plasteel/vault, +/area/shuttle/syndicate/armory) +"Bt" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/device/aicard, +/turf/open/floor/plasteel/vault, +/area/shuttle/syndicate/armory) +"Bu" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen/fourcolor, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"Bv" = ( +/obj/machinery/computer/card/centcom, +/turf/open/floor/plasteel/grimy, +/area/centcom/ferry) +"Bw" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/device/taperecorder, +/turf/open/floor/plasteel/grimy, +/area/centcom/ferry) +"Bx" = ( +/obj/structure/table/reinforced, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"By" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar/red, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/mask/gas, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"Bz" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/item/pen/blue, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"BA" = ( +/obj/structure/table/reinforced, +/obj/item/restraints/handcuffs/cable/zipties, +/obj/item/device/assembly/flash/handheld, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"BB" = ( +/obj/structure/table/reinforced, +/obj/item/storage/lockbox/loyalty, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"BC" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"BD" = ( +/obj/machinery/newscaster/security_unit{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"BE" = ( +/obj/machinery/door/poddoor/shutters{ + id = "XCCsec3"; + name = "CC Main Access Shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/centcom/control) +"BF" = ( +/obj/item/defibrillator/loaded, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/cmo, +/area/centcom/control) +"BG" = ( +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = 6 + }, +/obj/item/reagent_containers/glass/bottle/charcoal{ + pixel_x = -3 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/reagent_containers/glass/bottle/charcoal{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = 4; + pixel_y = 1 + }, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = 2; + pixel_y = 8 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/cmo, +/area/centcom/control) +"BH" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"BI" = ( +/obj/machinery/light, +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"BJ" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"BK" = ( +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/cmo, +/area/centcom/control) +"BL" = ( +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/table/reinforced, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/cmo, +/area/centcom/control) +"BM" = ( +/obj/machinery/door/airlock/centcom{ + name = "CentCom Security"; + opacity = 1; + req_access_txt = "101" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/centcom/evac) +"BN" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/storage/fancy/donut_box, +/obj/machinery/door/window/brigdoor{ + base_state = "rightsecure"; + dir = 1; + icon_state = "rightsecure"; + name = "CentCom Customs"; + req_access_txt = "109" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/centcom/evac) +"BO" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder/red, +/obj/item/pen/red, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/centcom/evac) +"BP" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor{ + base_state = "rightsecure"; + dir = 1; + icon_state = "rightsecure"; + name = "CentCom Customs"; + req_access_txt = "109" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/centcom/evac) +"BQ" = ( +/obj/effect/landmark/abductor/scientist{ + team_number = 3 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"BR" = ( +/obj/effect/landmark/abductor/agent{ + team_number = 3 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"BS" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; + name = "Observation Deck" + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"BT" = ( /obj/item/surgicaldrill, /obj/item/circular_saw, /obj/structure/table/reinforced, @@ -14467,34 +10599,3848 @@ dir = 8 }, /area/shuttle/syndicate/medical) -"ZE" = ( -/obj/structure/window/plastitanium, -/turf/open/floor/plasteel/vault{ - dir = 8 +"BU" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 30 }, -/area/shuttle/syndicate/armory) -"ZL" = ( /turf/open/floor/plasteel/vault{ dir = 5 }, -/area/shuttle/syndicate/airlock) -"ZM" = ( -/obj/machinery/door/airlock/hatch{ - req_access_txt = "150" +/area/shuttle/syndicate/medical) +"BV" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/shuttle/syndicate/hallway) +"BW" = ( +/obj/machinery/nuclearbomb/syndicate, +/obj/machinery/door/window{ + dir = 1; + name = "Theatre Stage"; + req_access_txt = "0" + }, +/turf/open/floor/circuit/red, +/area/shuttle/syndicate/hallway) +"BX" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/syndicate/armory) +"BY" = ( +/obj/item/toy/figure/syndie, +/turf/open/floor/plating/asteroid/snow/airless, +/area/syndicate_mothership) +"BZ" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/device/radio/headset/headset_cent, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"Ca" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/ert_spawn, +/turf/open/floor/plasteel/black, +/area/centcom/ferry) +"Cb" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/ert_spawn, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/centcom/ferry) +"Cc" = ( +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/evac) +"Cd" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/genericbush, +/obj/machinery/light, +/turf/open/floor/grass, +/area/centcom/evac) +"Ce" = ( +/obj/structure/table/reinforced, +/obj/item/restraints/handcuffs/cable/zipties, +/obj/item/device/assembly/flash/handheld, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/evac) +"Cf" = ( +/turf/open/floor/plasteel/darkred/side{ + dir = 1 + }, +/area/centcom/evac) +"Cg" = ( +/obj/item/cardboard_cutout{ + desc = "They seem to be ignoring you... Typical."; + dir = 1; + icon_state = "cutout_ntsec"; + name = "Private Security Officer" + }, +/turf/open/floor/plasteel/darkred/side{ + dir = 1 + }, +/area/centcom/evac) +"Ch" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/button/door{ + id = "XCCcustoms1"; + layer = 3; + name = "CC Emergency Docks Control"; + pixel_x = 24; + pixel_y = 24 }, /turf/open/floor/plasteel/vault{ dir = 8 }, -/area/shuttle/syndicate/armory) -"ZS" = ( -/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/centcom/evac) +"Ci" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"Cj" = ( +/obj/item/cautery, +/obj/item/scalpel, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, /area/shuttle/syndicate/medical) -"ZY" = ( +"Ck" = ( +/obj/structure/table/optable, +/obj/item/surgical_drapes, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/medical) +"Cl" = ( +/obj/item/retractor, +/obj/item/hemostat, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/shuttle/syndicate/medical) +"Cm" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/syndicate/hallway) +"Cn" = ( +/obj/machinery/recharge_station, +/turf/open/floor/circuit/red, +/area/shuttle/syndicate/armory) +"Co" = ( +/obj/machinery/telecomms/allinone{ + intercept = 1 + }, +/turf/open/floor/circuit/red, +/area/shuttle/syndicate/armory) +"Cp" = ( +/obj/structure/statue/uranium/nuke, +/turf/open/floor/plating/asteroid/snow/airless, +/area/syndicate_mothership) +"Cq" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/restraints/handcuffs, +/obj/item/device/assembly/flash/handheld, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"Cr" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/lighter, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"Cs" = ( +/obj/structure/bookcase/random, +/obj/machinery/light, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"Ct" = ( +/obj/structure/filingcabinet/medical, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"Cu" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"Cv" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"Cw" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/obj/machinery/power/apc{ + dir = 2; + name = "Briefing Room APC"; + pixel_y = -26 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"Cx" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"Cy" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/obj/machinery/light, +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"Cz" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"CA" = ( +/obj/item/device/radio{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/device/radio{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/device/radio, +/obj/structure/table/wood, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/ferry) +"CB" = ( +/obj/structure/closet/secure_closet/ertMed, +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"CC" = ( +/obj/structure/closet/secure_closet/ertMed, +/obj/machinery/vending/wallmed{ + name = "Emergency NanoMed"; + pixel_y = -32; + req_access_txt = "0"; + use_power = 0 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"CD" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/emps, +/obj/item/gun/energy/ionrifle, +/obj/structure/sign/bluecross_2{ + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"CE" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/syringes, +/obj/item/gun/syringe/rapidsyringe, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"CF" = ( +/obj/structure/closet/secure_closet/ertSec, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"CG" = ( +/obj/structure/closet/secure_closet/ertSec, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"CH" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/device/taperecorder, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"CI" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/green/side{ + dir = 9 + }, +/area/centcom/control) +"CJ" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/green/corner{ + dir = 1 + }, +/area/centcom/control) +"CK" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/green/corner{ + dir = 4 + }, +/area/centcom/control) +"CL" = ( +/obj/structure/table, +/obj/item/paper/pamphlet/centcom/visitor_info, +/obj/item/paper/pamphlet/centcom/visitor_info, +/obj/item/paper/pamphlet/centcom/visitor_info, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/green/side{ + dir = 5 + }, +/area/centcom/control) +"CM" = ( +/obj/structure/filingcabinet/medical, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"CN" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"CO" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/centcom/evac) +"CP" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/evac) +"CQ" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/centcom/evac) +"CR" = ( +/obj/machinery/computer/security, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/evac) +"CS" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/syndicate/medical) +"CT" = ( +/obj/structure/shuttle/engine/propulsion/left, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/syndicate/hallway) +"CU" = ( +/obj/structure/shuttle/engine/propulsion, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/syndicate/hallway) +"CV" = ( +/obj/structure/shuttle/engine/propulsion/right, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/syndicate/hallway) +"CW" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/syndicate/armory) +"CX" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/storage/belt/security/full, +/obj/item/gun/ballistic/automatic/wt550, +/obj/item/clothing/head/helmet/swat/nanotrasen, +/obj/item/crowbar/red, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"CY" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/centcom/control) +"CZ" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/blue/corner{ + dir = 4 + }, +/area/centcom/control) +"Da" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/bottle/charcoal{ + pixel_x = 6 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = -4 + }, +/obj/item/reagent_containers/hypospray/medipen, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"Db" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"Dc" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/storage/belt/security/full, +/obj/item/gun/ballistic/automatic/wt550, +/obj/item/clothing/head/helmet/swat/nanotrasen, +/obj/item/crowbar/red, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/evac) +"Dd" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar/red, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/evac) +"De" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/handcuffs, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/evac) +"Df" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/evac) +"Dg" = ( +/obj/item/cardboard_cutout{ + desc = "They seem to be ignoring you... Typical."; + icon_state = "cutout_ntsec"; + name = "Private Security Officer" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/centcom/evac) +"Dh" = ( +/obj/item/clipboard, +/obj/item/folder/red, +/obj/item/stamp/denied{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stamp, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/evac) +"Di" = ( +/obj/structure/shuttle/engine/propulsion/left, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/syndicate/medical) +"Dj" = ( +/obj/structure/shuttle/engine/propulsion, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/syndicate/medical) +"Dk" = ( +/obj/structure/shuttle/engine/propulsion/right, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/syndicate/medical) +"Dl" = ( /obj/machinery/porta_turret/syndicate{ dir = 6 }, /turf/closed/wall/mineral/plastitanium, /area/shuttle/syndicate/medical) +"Dm" = ( +/obj/machinery/porta_turret/syndicate{ + dir = 10 + }, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/syndicate/armory) +"Dn" = ( +/obj/structure/shuttle/engine/propulsion/left, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/syndicate/armory) +"Do" = ( +/obj/structure/shuttle/engine/propulsion, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/syndicate/armory) +"Dp" = ( +/obj/structure/shuttle/engine/propulsion/right, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/syndicate/armory) +"Dq" = ( +/obj/machinery/door/airlock/external, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Dr" = ( +/obj/machinery/door/airlock/external, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"Ds" = ( +/turf/open/floor/plasteel/darkred/side{ + dir = 4 + }, +/area/centcom/control) +"Dt" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/storage/fancy/donut_box, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/centcom/control) +"Du" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/reagent_containers/food/drinks/britcup, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/centcom/control) +"Dv" = ( +/turf/open/floor/plasteel/darkblue/side{ + dir = 8 + }, +/area/centcom/control) +"Dw" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"Dx" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/centcom/evac) +"Dy" = ( +/turf/open/floor/plasteel/vault{ + dir = 9 + }, +/area/centcom/evac) +"Dz" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/light, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/evac) +"DA" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/device/taperecorder, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/evac) +"DB" = ( +/obj/item/storage/box/ids{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/silver_ids, +/obj/structure/table/reinforced, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/evac) +"DC" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; + name = "Storage" + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"DD" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; + name = "Personal Quarters" + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"DE" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; + name = "Bathroom" + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"DF" = ( +/obj/item/clipboard, +/obj/item/folder/red, +/obj/item/stamp/denied{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stamp, +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"DG" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/darkred/side{ + dir = 4 + }, +/area/centcom/control) +"DH" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder/red, +/obj/item/pen/red, +/obj/machinery/door/window/brigdoor{ + name = "CentCom Customs"; + icon_state = "rightsecure"; + dir = 4; + req_access_txt = "109"; + base_state = "rightsecure" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/centcom/control) +"DI" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder/white, +/obj/item/pen/blue, +/obj/machinery/door/window/brigdoor{ + name = "CentCom Customs"; + icon_state = "rightsecure"; + dir = 8; + req_access_txt = "109"; + base_state = "rightsecure" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/centcom/control) +"DJ" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 8 + }, +/area/centcom/control) +"DK" = ( +/turf/closed/indestructible/fakedoor{ + name = "CentCom" + }, +/area/centcom/evac) +"DL" = ( +/obj/item/clothing/suit/wizrobe/black, +/obj/item/clothing/head/wizard/black, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/wizard_station) +"DM" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/wizard_station) +"DN" = ( +/obj/item/cardboard_cutout, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/wizard_station) +"DO" = ( +/obj/structure/table/wood, +/obj/item/dice/d20, +/obj/item/dice, +/turf/open/floor/carpet, +/area/wizard_station) +"DP" = ( +/obj/structure/punching_bag, +/turf/open/floor/carpet, +/area/wizard_station) +"DQ" = ( +/obj/structure/urinal{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/white, +/area/wizard_station) +"DR" = ( +/turf/open/floor/plasteel/white, +/area/wizard_station) +"DS" = ( +/obj/structure/mirror/magic{ + pixel_y = 28 + }, +/obj/structure/sink{ + pixel_y = 20 + }, +/turf/open/floor/plasteel/white, +/area/wizard_station) +"DT" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "XCCsec3"; + name = "CC Main Access Control" + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"DU" = ( +/obj/machinery/computer/security, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"DV" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/green/corner{ + dir = 8 + }, +/area/centcom/control) +"DW" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel/green/corner, +/area/centcom/control) +"DX" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"DY" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/folder/white, +/obj/item/pen/blue, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/centcom/control) +"DZ" = ( +/obj/item/cautery/alien, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/wizard_station) +"Ea" = ( +/obj/item/coin/antagtoken, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/wizard_station) +"Eb" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/carpet, +/area/wizard_station) +"Ec" = ( +/obj/structure/bed, +/obj/item/bedsheet/wiz, +/turf/open/floor/carpet, +/area/wizard_station) +"Ed" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/wizard_station) +"Ee" = ( +/obj/item/soap/homemade, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/wizard_station) +"Ef" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/wizard_station) +"Eg" = ( +/obj/machinery/door/airlock/centcom{ + name = "Thunderdome Booth"; + opacity = 1; + req_access_txt = "0" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Eh" = ( +/obj/structure/closet/cardboard, +/obj/item/banhammer, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/wizard_station) +"Ei" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/wizard_station) +"Ej" = ( +/obj/vehicle/scooter/skateboard{ + icon_state = "skateboard"; + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/wizard_station) +"Ek" = ( +/obj/structure/dresser, +/obj/item/storage/backpack/satchel, +/turf/open/floor/carpet, +/area/wizard_station) +"El" = ( +/obj/structure/table/wood, +/obj/item/storage/bag/tray, +/obj/item/reagent_containers/food/snacks/burger/spell, +/turf/open/floor/carpet, +/area/wizard_station) +"Em" = ( +/obj/structure/bookcase/random/adult, +/turf/open/floor/plasteel/white, +/area/wizard_station) +"En" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/wizard_station) +"Eo" = ( +/obj/structure/table/wood/fancy, +/obj/item/skub{ + pixel_y = 16 + }, +/turf/open/floor/plasteel/white, +/area/wizard_station) +"Ep" = ( +/turf/closed/indestructible/riveted, +/area/tdome/tdomeobserve) +"Eq" = ( +/obj/machinery/door/airlock/external, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"Er" = ( +/obj/machinery/vending/cola, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"Es" = ( +/obj/machinery/vending/snack, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"Et" = ( +/obj/item/clipboard, +/obj/item/stamp/denied{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stamp, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"Eu" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen/red, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"Ev" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/tdome/tdomeobserve) +"Ew" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/green/side{ + dir = 9 + }, +/area/tdome/tdomeobserve) +"Ex" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/green/corner{ + dir = 1 + }, +/area/tdome/tdomeobserve) +"Ey" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"Ez" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/green/corner{ + dir = 4 + }, +/area/tdome/tdomeobserve) +"EA" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/green/side{ + dir = 5 + }, +/area/tdome/tdomeobserve) +"EB" = ( +/obj/machinery/door/airlock/centcom{ + name = "CentCom Security"; + opacity = 1; + req_access_txt = "101" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"EC" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; + name = "Engine Room" + }, +/obj/structure/barricade/wooden, +/turf/open/floor/engine/cult, +/area/wizard_station) +"ED" = ( +/turf/closed/indestructible/riveted, +/area/centcom/holding) +"EE" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"EF" = ( +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"EG" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/plasteel{ + name = "plating"; + icon_state = "asteroid5" + }, +/area/tdome/tdomeobserve) +"EH" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "asteroid8"; + name = "sand" + }, +/area/tdome/tdomeobserve) +"EI" = ( +/turf/open/floor/plasteel/red/corner, +/area/tdome/tdomeobserve) +"EJ" = ( +/turf/open/floor/plasteel/neutral/corner{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/tdome/tdomeobserve) +"EK" = ( +/obj/machinery/status_display, +/turf/closed/indestructible/riveted, +/area/tdome/tdomeobserve) +"EL" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"EM" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/tdome/tdomeobserve) +"EN" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/paper/pamphlet/centcom/visitor_info, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"EO" = ( +/turf/open/floor/plasteel/neutral, +/area/tdome/tdomeobserve) +"EP" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/tdome/tdomeobserve) +"EQ" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/green/side{ + dir = 4 + }, +/area/tdome/tdomeobserve) +"ER" = ( +/turf/open/floor/plasteel/neutral/corner, +/area/tdome/tdomeobserve) +"ES" = ( +/turf/open/floor/plasteel/green/corner{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"ET" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/plating/asteroid, +/area/tdome/tdomeobserve) +"EU" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/plating/asteroid, +/area/tdome/tdomeobserve) +"EV" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"EW" = ( +/obj/structure/table/wood, +/turf/open/floor/engine/cult, +/area/wizard_station) +"EX" = ( +/obj/structure/table/wood, +/obj/item/gun/magic/wand{ + desc = "Used in emergencies to reignite magma engines."; + max_charges = 0; + name = "wand of emergency engine ignition" + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"EY" = ( +/obj/structure/table/wood, +/obj/item/bikehorn/golden{ + pixel_x = -8; + pixel_y = 8 + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"EZ" = ( +/obj/structure/table, +/turf/open/floor/plasteel/freezer{ + dir = 2 + }, +/area/centcom/holding) +"Fa" = ( +/turf/open/floor/plasteel/freezer{ + dir = 2 + }, +/area/centcom/holding) +"Fb" = ( +/obj/structure/closet/secure_closet/bar{ + req_access_txt = "25" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer{ + dir = 2 + }, +/area/centcom/holding) +"Fc" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/plasteel/freezer{ + dir = 2 + }, +/area/centcom/holding) +"Fd" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/plasteel/freezer{ + dir = 2 + }, +/area/centcom/holding) +"Fe" = ( +/obj/structure/rack, +/obj/item/device/camera, +/turf/open/floor/plasteel/cafeteria, +/area/centcom/holding) +"Ff" = ( +/obj/structure/rack, +/obj/item/toy/sword, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/cafeteria, +/area/centcom/holding) +"Fg" = ( +/obj/structure/rack, +/obj/item/toy/gun, +/turf/open/floor/plasteel/cafeteria, +/area/centcom/holding) +"Fh" = ( +/turf/open/floor/plasteel/cafeteria, +/area/centcom/holding) +"Fi" = ( +/turf/open/floor/plating/beach/sand, +/area/centcom/holding) +"Fj" = ( +/obj/effect/overlay/palmtree_r, +/obj/effect/overlay/coconut, +/turf/open/floor/plating/beach/sand, +/area/centcom/holding) +"Fk" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/beach/sand, +/area/centcom/holding) +"Fl" = ( +/obj/effect/overlay/palmtree_l, +/turf/open/floor/plating/beach/sand, +/area/centcom/holding) +"Fm" = ( +/obj/machinery/shower{ + dir = 4 + }, +/turf/open/floor/plasteel/whitered/side{ + dir = 9 + }, +/area/tdome/tdomeobserve) +"Fn" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/whitered/side{ + dir = 1 + }, +/area/tdome/tdomeobserve) +"Fo" = ( +/obj/machinery/shower{ + dir = 8 + }, +/turf/open/floor/plasteel/whitered/side{ + dir = 5 + }, +/area/tdome/tdomeobserve) +"Fp" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/tdome/tdomeobserve) +"Fq" = ( +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"Fr" = ( +/obj/machinery/door/window/brigdoor{ + base_state = "rightsecure"; + dir = 2; + icon_state = "rightsecure"; + name = "Thunderdome Booth"; + req_access_txt = "109" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"Fs" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel/green/corner{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"Ft" = ( +/turf/open/floor/plasteel/goonplaque{ + desc = "This is a plaque commemorating the thunderdome and all those who have died at its pearly blast doors." + }, +/area/tdome/tdomeobserve) +"Fu" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/green/corner, +/area/tdome/tdomeobserve) +"Fv" = ( +/turf/open/floor/plasteel/green/side{ + dir = 4 + }, +/area/tdome/tdomeobserve) +"Fw" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"Fx" = ( +/obj/machinery/shower{ + dir = 4 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 9 + }, +/area/tdome/tdomeobserve) +"Fy" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 1 + }, +/area/tdome/tdomeobserve) +"Fz" = ( +/obj/machinery/shower{ + dir = 8 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 5 + }, +/area/tdome/tdomeobserve) +"FA" = ( +/obj/structure/table, +/obj/item/clothing/head/that, +/turf/open/floor/plasteel/freezer{ + dir = 2 + }, +/area/centcom/holding) +"FB" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/centcom/holding) +"FC" = ( +/obj/item/device/camera, +/turf/open/floor/plating/beach/sand, +/area/centcom/holding) +"FD" = ( +/obj/machinery/shower{ + dir = 4 + }, +/turf/open/floor/plasteel/whitered/corner{ + dir = 1 + }, +/area/tdome/tdomeobserve) +"FE" = ( +/obj/item/soap/nanotrasen, +/turf/open/floor/plasteel/white, +/area/tdome/tdomeobserve) +"FF" = ( +/obj/machinery/shower{ + dir = 8 + }, +/turf/open/floor/plasteel/whitered/corner{ + dir = 4 + }, +/area/tdome/tdomeobserve) +"FG" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/red/corner, +/area/tdome/tdomeobserve) +"FH" = ( +/turf/open/floor/plasteel/neutral/side, +/area/tdome/tdomeobserve) +"FI" = ( +/turf/open/floor/plasteel/red/side, +/area/tdome/tdomeobserve) +"FJ" = ( +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/tdome/tdomeobserve) +"FK" = ( +/obj/machinery/door/airlock/centcom{ + name = "Thunderdome Backstage"; + opacity = 1; + req_access_txt = "0" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"FL" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/tdome/tdomeobserve) +"FM" = ( +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/tdome/tdomeobserve) +"FN" = ( +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/tdome/tdomeobserve) +"FO" = ( +/turf/open/floor/plasteel/green/side{ + dir = 10 + }, +/area/tdome/tdomeobserve) +"FP" = ( +/turf/open/floor/plasteel/green/side, +/area/tdome/tdomeobserve) +"FQ" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/green/corner{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"FR" = ( +/obj/machinery/shower{ + dir = 4 + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 1 + }, +/area/tdome/tdomeobserve) +"FS" = ( +/obj/machinery/shower{ + dir = 8 + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 4 + }, +/area/tdome/tdomeobserve) +"FT" = ( +/obj/structure/destructible/cult/forge{ + desc = "An engine used in powering the wizard's ship"; + name = "magma engine" + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"FU" = ( +/obj/structure/table, +/obj/item/ammo_box/foambox, +/turf/open/floor/plasteel/freezer{ + dir = 2 + }, +/area/centcom/holding) +"FV" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/shaker, +/turf/open/floor/plasteel/freezer{ + dir = 2 + }, +/area/centcom/holding) +"FW" = ( +/obj/structure/table, +/obj/item/lighter, +/turf/open/floor/plasteel/freezer{ + dir = 2 + }, +/area/centcom/holding) +"FX" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/soda_cans/cola, +/turf/open/floor/plasteel/freezer{ + dir = 2 + }, +/area/centcom/holding) +"FY" = ( +/obj/structure/table, +/obj/item/dice/d20, +/turf/open/floor/plasteel/freezer{ + dir = 2 + }, +/area/centcom/holding) +"FZ" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/item/clothing/head/bandana{ + pixel_y = -10 + }, +/obj/item/clothing/glasses/sunglasses, +/turf/open/floor/plating/beach/sand, +/area/centcom/holding) +"Ga" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating/beach/sand, +/area/centcom/holding) +"Gb" = ( +/obj/machinery/shower{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/tdome/tdomeobserve) +"Gc" = ( +/turf/open/floor/plasteel/white, +/area/tdome/tdomeobserve) +"Gd" = ( +/obj/machinery/shower{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/tdome/tdomeobserve) +"Ge" = ( +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/tdome/tdomeobserve) +"Gf" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/tdome/tdomeobserve) +"Gg" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/tdome/tdomeobserve) +"Gh" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/tdome/tdomeobserve) +"Gi" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/tdome/tdomeobserve) +"Gj" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel/red/side, +/area/tdome/tdomeobserve) +"Gk" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/redyellow/side, +/area/tdome/tdomeobserve) +"Gl" = ( +/turf/open/floor/plasteel/redyellow/side, +/area/tdome/tdomeobserve) +"Gm" = ( +/turf/open/floor/plasteel/loadingarea, +/area/tdome/tdomeobserve) +"Gn" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel/green/side, +/area/tdome/tdomeobserve) +"Go" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/green/side{ + dir = 6 + }, +/area/tdome/tdomeobserve) +"Gp" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/green/corner{ + dir = 4 + }, +/area/tdome/tdomeobserve) +"Gq" = ( +/turf/open/floor/plasteel/green/side{ + dir = 1 + }, +/area/tdome/tdomeobserve) +"Gr" = ( +/obj/structure/window/reinforced{ + resistance_flags = 3; + color = "#008000"; + dir = 1 + }, +/turf/open/lava, +/area/wizard_station) +"Gs" = ( +/obj/structure/rack, +/obj/item/clothing/head/that, +/obj/item/clothing/under/suit_jacket, +/obj/item/clothing/accessory/waistcoat, +/turf/open/floor/plasteel/cafeteria, +/area/centcom/holding) +"Gt" = ( +/obj/item/toy/beach_ball, +/turf/open/floor/plating/beach/sand, +/area/centcom/holding) +"Gu" = ( +/obj/machinery/door/airlock/silver{ + name = "Shower" + }, +/turf/open/floor/plasteel/white, +/area/tdome/tdomeobserve) +"Gv" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"Gw" = ( +/obj/structure/sign/nosmoking_2, +/turf/closed/indestructible/riveted, +/area/tdome/tdomeobserve) +"Gx" = ( +/obj/machinery/door/airlock/centcom{ + name = "Thunderdome"; + opacity = 1; + req_access_txt = "101" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"Gy" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/indestructible/riveted, +/area/tdome/tdomeobserve) +"Gz" = ( +/obj/structure/shuttle/engine/heater{ + resistance_flags = 3 + }, +/obj/structure/window/reinforced{ + resistance_flags = 3; + color = "#008000"; + dir = 1 + }, +/turf/open/lava/airless, +/area/wizard_station) +"GA" = ( +/obj/structure/rack, +/obj/item/storage/crayons, +/obj/item/gun/ballistic/automatic/toy/pistol, +/turf/open/floor/plasteel/cafeteria, +/area/centcom/holding) +"GB" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/centcom/holding) +"GC" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/whitered/side{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"GD" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"GE" = ( +/turf/open/floor/plasteel/red/corner{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"GF" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/item/reagent_containers/food/snacks/meat/rawbacon, +/obj/item/reagent_containers/food/snacks/meat/rawbacon, +/obj/item/reagent_containers/food/snacks/meat/rawbacon, +/obj/item/reagent_containers/food/snacks/meat/rawbacon, +/obj/item/reagent_containers/food/snacks/meat/slab/killertomato, +/obj/item/reagent_containers/food/snacks/meat/slab/killertomato, +/obj/item/reagent_containers/food/snacks/meat/slab/killertomato, +/obj/item/reagent_containers/food/snacks/meat/slab/killertomato, +/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/lizard, +/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/lizard, +/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/lizard, +/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/lizard, +/obj/item/reagent_containers/food/snacks/sausage, +/obj/item/reagent_containers/food/snacks/sausage, +/obj/item/reagent_containers/food/snacks/meat/rawcutlet, +/obj/item/reagent_containers/food/snacks/meat/rawcutlet, +/obj/item/reagent_containers/food/snacks/meat/rawcutlet, +/obj/item/reagent_containers/food/snacks/carpmeat, +/obj/item/reagent_containers/food/snacks/carpmeat, +/obj/item/reagent_containers/food/snacks/carpmeat, +/obj/item/reagent_containers/food/snacks/carpmeat, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"GG" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_containers/food/snacks/grown/potato, +/obj/item/reagent_containers/food/snacks/grown/potato, +/obj/item/reagent_containers/food/snacks/grown/whitebeet, +/obj/item/reagent_containers/food/snacks/grown/whitebeet, +/obj/item/reagent_containers/food/snacks/grown/tomato, +/obj/item/reagent_containers/food/snacks/grown/tomato, +/obj/item/reagent_containers/food/snacks/grown/rice, +/obj/item/reagent_containers/food/snacks/grown/rice, +/obj/item/reagent_containers/food/snacks/grown/icepepper, +/obj/item/reagent_containers/food/snacks/grown/icepepper, +/obj/item/reagent_containers/food/snacks/grown/citrus/lemon, +/obj/item/reagent_containers/food/snacks/grown/citrus/lime, +/obj/item/reagent_containers/food/snacks/grown/citrus/orange, +/obj/item/reagent_containers/food/snacks/grown/cherries, +/obj/item/reagent_containers/food/snacks/grown/apple, +/obj/item/reagent_containers/food/snacks/grown/ambrosia/deus, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"GH" = ( +/obj/machinery/processor, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"GI" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/item/reagent_containers/food/snacks/grown/wheat, +/obj/item/reagent_containers/food/snacks/grown/wheat, +/obj/item/reagent_containers/food/snacks/grown/vanillapod, +/obj/item/reagent_containers/food/snacks/grown/vanillapod, +/obj/item/reagent_containers/food/snacks/grown/sugarcane, +/obj/item/reagent_containers/food/snacks/grown/sugarcane, +/obj/item/reagent_containers/food/snacks/grown/oat, +/obj/item/reagent_containers/food/snacks/grown/oat, +/obj/item/reagent_containers/food/snacks/grown/grapes, +/obj/item/reagent_containers/food/snacks/grown/grapes, +/obj/item/reagent_containers/food/snacks/grown/corn, +/obj/item/reagent_containers/food/snacks/grown/corn, +/obj/item/reagent_containers/food/snacks/grown/chili, +/obj/item/reagent_containers/food/snacks/grown/chili, +/obj/item/reagent_containers/food/snacks/grown/carrot, +/obj/item/reagent_containers/food/snacks/grown/apple, +/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"GJ" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/item/reagent_containers/food/snacks/meat/slab/bear, +/obj/item/reagent_containers/food/snacks/meat/slab/bear, +/obj/item/reagent_containers/food/snacks/meat/slab/bear, +/obj/item/reagent_containers/food/snacks/meat/slab/bear, +/obj/item/reagent_containers/food/snacks/meat/slab/goliath, +/obj/item/reagent_containers/food/snacks/meat/slab/goliath, +/obj/item/reagent_containers/food/snacks/meat/slab/goliath, +/obj/item/reagent_containers/food/snacks/meat/slab/goliath, +/obj/item/reagent_containers/food/snacks/meat/slab/xeno, +/obj/item/reagent_containers/food/snacks/meat/slab/xeno, +/obj/item/reagent_containers/food/snacks/meat/slab/xeno, +/obj/item/reagent_containers/food/snacks/meat/slab/xeno, +/obj/item/reagent_containers/food/snacks/spaghetti, +/obj/item/reagent_containers/food/snacks/spaghetti, +/obj/item/reagent_containers/food/snacks/meat/rawcutlet, +/obj/item/reagent_containers/food/snacks/meat/rawcutlet, +/obj/item/reagent_containers/food/snacks/meat/rawcutlet, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"GK" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/pointybush, +/turf/open/floor/grass, +/area/tdome/tdomeobserve) +"GL" = ( +/obj/structure/table/wood, +/obj/structure/sign/goldenplaque{ + pixel_y = 32 + }, +/obj/item/clothing/accessory/lawyers_badge{ + desc = "A badge of upmost glory."; + name = "thunderdome badge" + }, +/turf/open/floor/plasteel/grimy, +/area/tdome/tdomeobserve) +"GM" = ( +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"GN" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/tdome/tdomeobserve) +"GO" = ( +/obj/structure/table/wood, +/obj/structure/sign/goldenplaque{ + pixel_y = 32 + }, +/obj/item/clothing/accessory/medal/silver{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/tdome/tdomeobserve) +"GP" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/genericbush, +/turf/open/floor/grass, +/area/tdome/tdomeobserve) +"GQ" = ( +/obj/structure/table/wood, +/obj/machinery/reagentgrinder{ + desc = "Used to grind things up into raw materials and liquids."; + pixel_y = 5 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"GR" = ( +/obj/structure/table/wood, +/obj/item/storage/box/beanbag, +/obj/item/gun/ballistic/revolver/doublebarrel, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"GS" = ( +/obj/structure/table/wood, +/obj/structure/reagent_dispensers/beerkeg, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"GT" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"GU" = ( +/obj/structure/table/wood, +/obj/item/storage/box/drinkingglasses, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"GV" = ( +/turf/open/floor/plasteel/green/corner, +/area/tdome/tdomeobserve) +"GW" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/tdome/tdomeobserve) +"GX" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/open/space, +/area/wizard_station) +"GY" = ( +/obj/structure/rack, +/obj/item/storage/crayons, +/obj/item/gun/ballistic/shotgun/toy/crossbow, +/turf/open/floor/plasteel/cafeteria, +/area/centcom/holding) +"GZ" = ( +/turf/open/floor/plating/beach/coastline_b, +/area/centcom/holding) +"Ha" = ( +/obj/item/clothing/head/collectable/paper, +/turf/open/floor/plating/beach/coastline_b, +/area/centcom/holding) +"Hb" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor/plasteel/whitered/corner{ + dir = 1 + }, +/area/tdome/tdomeobserve) +"Hc" = ( +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/tdome/tdomeobserve) +"Hd" = ( +/turf/open/floor/plasteel/red, +/area/tdome/tdomeobserve) +"He" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/trophy/gold_cup, +/turf/open/floor/plasteel/grimy, +/area/tdome/tdomeobserve) +"Hf" = ( +/turf/open/floor/plasteel/bar, +/area/tdome/tdomeobserve) +"Hg" = ( +/turf/open/floor/plasteel/green/side{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"Hh" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 4 + }, +/area/tdome/tdomeobserve) +"Hi" = ( +/obj/structure/rack, +/obj/item/clothing/shoes/laceup, +/obj/item/clothing/under/suit_jacket/female{ + desc = "A black trouser suit for women. Very formal."; + name = "black suit"; + pixel_x = 3; + pixel_y = 1 + }, +/turf/open/floor/plasteel/cafeteria, +/area/centcom/holding) +"Hj" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/cafeteria, +/area/centcom/holding) +"Hk" = ( +/obj/structure/table, +/obj/item/gun/ballistic/automatic/toy/pistol, +/turf/open/floor/plasteel/cafeteria, +/area/centcom/holding) +"Hl" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/cafeteria, +/area/centcom/holding) +"Hm" = ( +/turf/open/floor/plating/beach/water, +/area/centcom/holding) +"Hn" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor/plasteel/white, +/area/tdome/tdomeobserve) +"Ho" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -8 + }, +/obj/item/kitchen/knife, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"Hp" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/red, +/area/tdome/tdomeobserve) +"Hq" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/white, +/area/tdome/tdomeobserve) +"Hr" = ( +/obj/structure/table/wood, +/obj/structure/sign/atmosplaque/thunderdome{ + pixel_y = -32 + }, +/obj/item/clothing/accessory/medal/gold{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/clothing/accessory/medal/gold, +/turf/open/floor/plasteel/grimy, +/area/tdome/tdomeobserve) +"Hs" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"Ht" = ( +/obj/structure/table/wood, +/obj/structure/sign/atmosplaque/thunderdome{ + pixel_y = -32 + }, +/obj/item/clothing/accessory/medal{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/tdome/tdomeobserve) +"Hu" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel/bar, +/area/tdome/tdomeobserve) +"Hv" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/bar, +/area/tdome/tdomeobserve) +"Hw" = ( +/obj/machinery/chem_master/condimaster{ + name = "HoochMaster 2000" + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"Hx" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/open/floor/plasteel/white, +/area/tdome/tdomeobserve) +"Hy" = ( +/obj/effect/spawner/structure/window/hollow/reinforced, +/turf/open/floor/plasteel, +/area/centcom/holding) +"Hz" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/centcom/holding) +"HA" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor/plasteel/whitered/corner{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"HB" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/snacks/mint, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"HC" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/plasteel/red, +/area/tdome/tdomeobserve) +"HD" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/open/floor/plasteel/bar, +/area/tdome/tdomeobserve) +"HE" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks/beer, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"HF" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/open/floor/plasteel/whitegreen/corner, +/area/tdome/tdomeobserve) +"HG" = ( +/obj/item/reagent_containers/food/snacks/egg/rainbow{ + desc = "I bet you think you're pretty clever... well you are."; + name = "easter egg" + }, +/turf/open/space, +/area/space) +"HH" = ( +/obj/effect/landmark/holding_facility, +/turf/open/floor/engine, +/area/centcom/holding) +"HI" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor/plasteel/whitered/side{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"HJ" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/suit/apron/chef, +/obj/item/kitchen/rollingpin, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"HK" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -8 + }, +/obj/item/reagent_containers/food/drinks/britcup, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"HL" = ( +/turf/open/floor/plasteel/vault, +/area/tdome/tdomeobserve) +"HM" = ( +/obj/structure/chair, +/obj/effect/landmark/thunderdome/observe, +/obj/structure/sign/barsign{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"HN" = ( +/obj/structure/chair, +/obj/effect/landmark/thunderdome/observe, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"HO" = ( +/obj/machinery/computer/security/telescreen, +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"HP" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"HQ" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"HR" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/tdome/tdomeobserve) +"HS" = ( +/obj/machinery/door/airlock/centcom{ + name = "Thunderdome Locker Room"; + opacity = 1; + req_access_txt = "101" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"HT" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/tdome/tdomeobserve) +"HU" = ( +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder{ + desc = "Used to grind things up into raw materials and liquids."; + pixel_y = 5 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"HV" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/storage/bag/tray, +/obj/item/kitchen/fork, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"HW" = ( +/turf/open/floor/plasteel/redyellow, +/area/tdome/tdomeobserve) +"HX" = ( +/obj/machinery/vending/boozeomat, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"HY" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/green/side{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"HZ" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/neutral/corner, +/area/tdome/tdomeobserve) +"Ia" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 6 + }, +/area/tdome/tdomeobserve) +"Ib" = ( +/obj/structure/rack, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/item/clothing/head/chefhat, +/turf/open/floor/plasteel/vault, +/area/tdome/tdomeobserve) +"Ic" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"Id" = ( +/obj/machinery/computer/security/telescreen, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"Ie" = ( +/obj/item/storage/fancy/cigarettes/cigars{ + pixel_y = 6 + }, +/obj/item/storage/fancy/cigarettes/cigars/cohiba{ + pixel_y = 3 + }, +/obj/item/storage/fancy/cigarettes/cigars/havana, +/obj/structure/table/wood, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"If" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 10 + }, +/area/tdome/tdomeobserve) +"Ig" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/tdome/tdomeobserve) +"Ih" = ( +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/tdome/tdomeobserve) +"Ii" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -3; + pixel_y = 5 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"Ij" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -3; + pixel_y = 5 + }, +/obj/structure/sign/barsign{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"Ik" = ( +/obj/machinery/icecream_vat, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"Il" = ( +/turf/closed/indestructible/fakeglass{ + icon_state = "fakewindows"; + dir = 8 + }, +/area/tdome/tdomeobserve) +"Im" = ( +/turf/closed/indestructible/fakeglass{ + icon_state = "fakewindows2"; + dir = 8 + }, +/area/tdome/tdomeobserve) +"In" = ( +/turf/closed/indestructible/fakeglass{ + icon_state = "fakewindows"; + dir = 4 + }, +/area/tdome/tdomeobserve) +"Io" = ( +/obj/item/storage/box/matches{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/structure/table/wood, +/obj/structure/sign/barsign{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"Ip" = ( +/obj/item/lighter{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/lighter, +/obj/structure/table/wood, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"Iq" = ( +/obj/structure/table/wood, +/obj/item/book/manual/barman_recipes, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/glass/rag, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeobserve) +"Ir" = ( +/turf/open/floor/plasteel/green/corner{ + dir = 1 + }, +/area/tdome/tdomeobserve) +"Is" = ( +/obj/machinery/igniter, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/tdome/arena) +"It" = ( +/turf/open/floor/plasteel, +/area/tdome/arena) +"Iu" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/tdome/arena) +"Iv" = ( +/turf/closed/indestructible/riveted, +/area/tdome/tdomeadmin) +"Iw" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/palebush, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/asteroid, +/area/tdome/tdomeadmin) +"Ix" = ( +/obj/machinery/door/airlock/centcom{ + name = "Thunderdome Administration"; + opacity = 1; + req_access_txt = "102" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeadmin) +"Iy" = ( +/obj/structure/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/sneakers/brown, +/obj/item/clothing/suit/armor/tdome/red, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/melee/baton/loaded, +/obj/item/melee/transforming/energy/sword/saber/red, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"Iz" = ( +/obj/machinery/door/poddoor{ + id = "thunderdomegen"; + name = "General Supply" + }, +/turf/open/floor/plasteel/loadingarea{ + dir = 4 + }, +/area/tdome/arena) +"IA" = ( +/obj/effect/landmark/thunderdome/two, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"IB" = ( +/obj/effect/landmark/thunderdome/two, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"IC" = ( +/obj/effect/landmark/thunderdome/two, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"ID" = ( +/obj/machinery/door/poddoor{ + id = "thunderdome"; + name = "Thunderdome Blast Door" + }, +/turf/open/floor/plasteel/loadingarea{ + dir = 4 + }, +/area/tdome/arena) +"IE" = ( +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/tdome/arena) +"IF" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/tdome/arena) +"IG" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/tdome/arena) +"IH" = ( +/turf/open/floor/plasteel/neutral, +/area/tdome/arena) +"II" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/tdome/arena) +"IJ" = ( +/turf/open/floor/plasteel/green/side{ + dir = 4 + }, +/area/tdome/arena) +"IK" = ( +/obj/machinery/door/poddoor{ + id = "thunderdome"; + name = "Thunderdome Blast Door" + }, +/turf/open/floor/plasteel/loadingarea{ + dir = 8 + }, +/area/tdome/arena) +"IL" = ( +/obj/effect/landmark/thunderdome/one, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"IM" = ( +/obj/effect/landmark/thunderdome/one, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"IN" = ( +/obj/effect/landmark/thunderdome/one, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"IO" = ( +/obj/machinery/door/poddoor{ + id = "thunderdomegen"; + name = "General Supply" + }, +/turf/open/floor/plasteel/loadingarea{ + dir = 8 + }, +/area/tdome/arena) +"IP" = ( +/obj/structure/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/sneakers/brown, +/obj/item/clothing/suit/armor/tdome/green, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/melee/baton/loaded, +/obj/item/melee/transforming/energy/sword/saber/green, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"IQ" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/fernybush, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "asteroid8"; + name = "sand" + }, +/area/tdome/tdomeadmin) +"IR" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/tdome/tdomeadmin) +"IS" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeadmin) +"IT" = ( +/obj/effect/landmark/thunderdome/two, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"IU" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/landmark/thunderdome/two, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/tdome/arena) +"IV" = ( +/obj/effect/landmark/thunderdome/two, +/turf/open/floor/plasteel/neutral, +/area/tdome/arena) +"IW" = ( +/obj/effect/landmark/thunderdome/two, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"IX" = ( +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/tdome/arena) +"IY" = ( +/turf/open/floor/plasteel/green/corner{ + dir = 4 + }, +/area/tdome/arena) +"IZ" = ( +/obj/effect/landmark/thunderdome/one, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"Ja" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/landmark/thunderdome/one, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/tdome/arena) +"Jb" = ( +/obj/effect/landmark/thunderdome/one, +/turf/open/floor/plasteel/neutral, +/area/tdome/arena) +"Jc" = ( +/obj/effect/landmark/thunderdome/one, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"Jd" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/plasteel{ + name = "plating"; + icon_state = "asteroid5" + }, +/area/tdome/tdomeadmin) +"Je" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeadmin) +"Jf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeadmin) +"Jg" = ( +/obj/machinery/camera{ + pixel_x = 11; + pixel_y = -9; + network = list("thunder"); + c_tag = "Red Team" + }, +/obj/effect/landmark/thunderdome/two, +/turf/open/floor/plasteel/neutral, +/area/tdome/arena) +"Jh" = ( +/turf/open/floor/plasteel/loadingarea{ + dir = 4 + }, +/area/tdome/arena) +"Ji" = ( +/turf/open/floor/circuit/green, +/area/tdome/arena) +"Jj" = ( +/obj/machinery/flasher{ + id = "tdomeflash"; + name = "Thunderdome Flash" + }, +/turf/open/floor/circuit/green, +/area/tdome/arena) +"Jk" = ( +/turf/open/floor/plasteel/loadingarea{ + dir = 8 + }, +/area/tdome/arena) +"Jl" = ( +/obj/machinery/camera{ + pixel_x = 12; + pixel_y = -10; + network = list("thunder"); + c_tag = "Green Team" + }, +/obj/effect/landmark/thunderdome/one, +/turf/open/floor/plasteel/neutral, +/area/tdome/arena) +"Jm" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/plating/asteroid, +/area/tdome/tdomeadmin) +"Jn" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "asteroid8"; + name = "sand" + }, +/area/tdome/tdomeadmin) +"Jo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeadmin) +"Jp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeadmin) +"Jq" = ( +/obj/machinery/camera{ + pixel_x = 10; + network = list("thunder"); + c_tag = "Arena" + }, +/turf/open/floor/circuit/green, +/area/tdome/arena) +"Jr" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/plating/asteroid, +/area/tdome/tdomeadmin) +"Js" = ( +/turf/open/floor/plasteel/red/corner{ + dir = 8 + }, +/area/tdome/arena) +"Jt" = ( +/turf/open/floor/plasteel/green/corner, +/area/tdome/arena) +"Ju" = ( +/obj/effect/landmark/thunderdome/two, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"Jv" = ( +/obj/effect/landmark/thunderdome/two, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/tdome/arena) +"Jw" = ( +/obj/effect/landmark/thunderdome/two, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"Jx" = ( +/obj/effect/landmark/thunderdome/one, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"Jy" = ( +/obj/effect/landmark/thunderdome/one, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/tdome/arena) +"Jz" = ( +/obj/effect/landmark/thunderdome/one, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"JA" = ( +/obj/machinery/abductor/experiment{ + team_number = 1 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"JB" = ( +/obj/machinery/abductor/console{ + team_number = 1 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"JC" = ( +/obj/machinery/abductor/pad{ + team_number = 1 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"JD" = ( +/obj/machinery/door/poddoor{ + id = "thunderdomehea"; + name = "Heavy Supply" + }, +/turf/open/floor/plasteel/loadingarea{ + dir = 1 + }, +/area/tdome/arena) +"JE" = ( +/obj/machinery/door/poddoor{ + id = "thunderdomehea"; + name = "Heavy Supply" + }, +/turf/open/floor/plasteel/loadingarea, +/area/tdome/arena) +"JF" = ( +/obj/machinery/computer/camera_advanced/abductor{ + team_number = 1 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"JG" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/tdome/tdomeadmin) +"JH" = ( +/obj/structure/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/sneakers/brown, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/head/helmet/swat, +/obj/item/gun/energy/laser, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"JI" = ( +/turf/closed/indestructible/fakeglass{ + icon_state = "fakewindows"; + dir = 8 + }, +/area/tdome/tdomeadmin) +"JJ" = ( +/turf/closed/indestructible/fakeglass{ + icon_state = "fakewindows2"; + dir = 8 + }, +/area/tdome/tdomeadmin) +"JK" = ( +/turf/closed/indestructible/fakeglass{ + icon_state = "fakewindows"; + dir = 4 + }, +/area/tdome/tdomeadmin) +"JL" = ( +/obj/structure/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/sneakers/brown, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/head/helmet/swat, +/obj/item/gun/energy/laser, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"JM" = ( +/obj/effect/landmark/abductor/scientist, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"JN" = ( +/obj/effect/landmark/abductor/agent, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"JO" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/tdome/tdomeadmin) +"JP" = ( +/obj/item/device/radio{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/device/radio{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/device/radio, +/obj/structure/table/wood, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeadmin) +"JQ" = ( +/obj/effect/landmark/thunderdome/admin, +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/tdome/tdomeadmin) +"JR" = ( +/obj/machinery/computer/security/telescreen, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeadmin) +"JS" = ( +/obj/structure/chair/comfy/brown{ + color = "#66b266"; + dir = 1 + }, +/turf/open/floor/plasteel/darkgreen, +/area/tdome/tdomeadmin) +"JT" = ( +/obj/machinery/button/flasher{ + id = "tdomeflash" + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeadmin) +"JU" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/tdome/tdomeadmin) +"JV" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/escape) +"JW" = ( +/obj/machinery/status_display, +/turf/closed/wall/mineral/titanium, +/area/shuttle/escape) +"JX" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeadmin) +"JY" = ( +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeadmin) +"JZ" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeadmin) +"Ka" = ( +/turf/open/floor/plasteel/grimy, +/area/tdome/tdomeadmin) +"Kb" = ( +/turf/open/floor/plasteel/darkgreen/side{ + dir = 1 + }, +/area/tdome/tdomeadmin) +"Kc" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeadmin) +"Kd" = ( +/turf/open/floor/mineral/titanium, +/area/shuttle/escape) +"Ke" = ( +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"Kf" = ( +/obj/machinery/computer/emergency_shuttle, +/turf/open/floor/mineral/titanium, +/area/shuttle/escape) +"Kg" = ( +/turf/closed/indestructible/fakedoor{ + name = "Thunderdome Admin" + }, +/area/tdome/tdomeadmin) +"Kh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/centcom{ + name = "Thunderdome Administration"; + opacity = 1; + req_access_txt = "102" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeadmin) +"Ki" = ( +/turf/open/floor/plasteel/vault, +/area/tdome/tdomeadmin) +"Kj" = ( +/obj/machinery/door/airlock/external{ + name = "Backup Emergency Escape Shuttle" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/tdome/tdomeadmin) +"Kk" = ( +/obj/machinery/door/airlock/titanium, +/obj/docking_port/stationary{ + dir = 4; + dwidth = 2; + height = 8; + id = "backup_away"; + name = "Backup Shuttle Dock"; + width = 8 + }, +/obj/docking_port/mobile/emergency/backup, +/turf/open/floor/plating, +/area/shuttle/escape) +"Kl" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/escape) +"Km" = ( +/obj/structure/table/wood, +/obj/item/paper/fluff/stations/centcom/broken_evac, +/turf/open/floor/mineral/titanium, +/area/shuttle/escape) +"Kn" = ( +/obj/structure/bookcase/random, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeadmin) +"Ko" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen/fourcolor, +/obj/machinery/light, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeadmin) +"Kp" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/restraints/handcuffs, +/obj/item/device/assembly/flash/handheld, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeadmin) +"Kq" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/device/radio/headset/headset_cent, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeadmin) +"Kr" = ( +/obj/structure/table/wood, +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 6 + }, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = 2 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = 4.5 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeadmin) +"Ks" = ( +/obj/machinery/button/door{ + id = "thunderdomehea"; + name = "Heavy Supply Control"; + req_access_txt = "102" + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeadmin) +"Kt" = ( +/obj/machinery/button/door{ + id = "thunderdome"; + name = "Main Blast Doors Control"; + req_access_txt = "102" + }, +/obj/structure/table/reinforced, +/obj/machinery/light, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeadmin) +"Ku" = ( +/obj/machinery/button/door{ + id = "thunderdomegen"; + name = "General Supply Control"; + req_access_txt = "102" + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeadmin) +"Kv" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/lighter, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeadmin) +"Kw" = ( +/obj/item/storage/briefcase{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/secure/briefcase, +/obj/structure/table/wood, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeadmin) +"Kx" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeadmin) +"Ky" = ( +/obj/structure/table/wood, +/obj/item/storage/box/drinkingglasses, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + pixel_y = 5 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tdome/tdomeadmin) +"Kz" = ( +/obj/structure/table/wood, +/obj/item/book/manual/random, +/turf/open/floor/mineral/titanium, +/area/shuttle/escape) +"KA" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/genericbush, +/turf/open/floor/grass, +/area/tdome/tdomeadmin) +"KB" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/pointybush, +/obj/machinery/light, +/turf/open/floor/grass, +/area/tdome/tdomeadmin) +"KC" = ( +/obj/machinery/status_display, +/turf/closed/indestructible/riveted, +/area/tdome/tdomeadmin) +"KD" = ( +/obj/machinery/ai_status_display, +/turf/closed/indestructible/riveted, +/area/tdome/tdomeadmin) +"KE" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/escape) +"KF" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/escape) +"KG" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/pointybush, +/turf/open/floor/grass, +/area/tdome/tdomeadmin) +"KH" = ( +/turf/closed/wall/mineral/titanium, +/area/centcom/evac) +"KI" = ( +/obj/structure/shuttle/engine/propulsion/right{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/centcom/evac) +"KJ" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/centcom/evac) +"KK" = ( +/obj/structure/shuttle/engine/propulsion/left{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/centcom/evac) +"KL" = ( +/obj/docking_port/stationary{ + dir = 1; + dwidth = 1; + height = 4; + id = "pod4_away"; + name = "recovery ship"; + width = 3 + }, +/turf/open/space, +/area/space) +"KM" = ( +/obj/docking_port/stationary{ + dir = 1; + dwidth = 1; + height = 4; + id = "pod3_away"; + name = "recovery ship"; + width = 3 + }, +/turf/open/space, +/area/space) +"KN" = ( +/obj/structure/window/reinforced, +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/centcom/evac) +"KO" = ( +/obj/machinery/door/airlock/titanium, +/turf/open/floor/plating, +/area/centcom/evac) +"KP" = ( +/obj/structure/window/shuttle, +/obj/structure/grille, +/turf/open/floor/plating, +/area/centcom/evac) +"KQ" = ( +/turf/open/floor/plating, +/area/centcom/evac) +"KR" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/centcom/evac) +"KS" = ( +/turf/open/floor/plating, +/turf/closed/wall/mineral/titanium/interior, +/area/centcom/evac) +"KT" = ( +/turf/open/floor/mineral/titanium/blue, +/turf/closed/wall/mineral/titanium/interior, +/area/centcom/evac) +"KU" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/mineral/titanium/blue, +/area/centcom/evac) +"KV" = ( +/turf/open/floor/mineral/titanium/yellow, +/area/centcom/evac) +"KW" = ( +/obj/structure/table, +/obj/item/storage/firstaid/toxin{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/storage/firstaid/toxin, +/turf/open/floor/mineral/titanium/blue, +/area/centcom/evac) +"KX" = ( +/obj/structure/table, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/fire{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/open/floor/mineral/titanium/blue, +/area/centcom/evac) +"KY" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular{ + pixel_x = 2 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/open/floor/mineral/titanium/blue, +/area/centcom/evac) +"KZ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/centcom/evac) +"La" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/blue, +/area/centcom/evac) +"Lb" = ( +/turf/open/floor/mineral/titanium/blue, +/area/centcom/evac) +"Lc" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/blue, +/area/centcom/evac) +"Ld" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/turf/open/floor/mineral/plastitanium, +/area/centcom/evac) +"Le" = ( +/obj/structure/table/reinforced, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/mineral/plastitanium, +/area/centcom/evac) +"Lf" = ( +/obj/structure/table/reinforced, +/obj/item/pen, +/turf/open/floor/mineral/plastitanium, +/area/centcom/evac) +"Lg" = ( +/obj/structure/table/reinforced, +/turf/open/floor/mineral/plastitanium, +/area/centcom/evac) +"Lh" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/blue, +/area/centcom/evac) +"Li" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/blue, +/area/centcom/evac) +"Lj" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/mineral/plastitanium, +/area/centcom/evac) +"Lk" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/centcom/evac) +"Ll" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/centcom/evac) +"Lm" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/stamp, +/turf/open/floor/mineral/plastitanium, +/area/centcom/evac) +"Ln" = ( +/obj/structure/table, +/obj/item/device/assembly/flash/handheld, +/turf/open/floor/mineral/plastitanium, +/area/centcom/evac) +"Lo" = ( +/turf/open/floor/mineral/plastitanium, +/area/centcom/evac) +"Lp" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/blue, +/area/centcom/evac) +"Lq" = ( +/obj/structure/table, +/obj/item/storage/box/handcuffs, +/turf/open/floor/mineral/plastitanium, +/area/centcom/evac) +"Lr" = ( +/obj/machinery/door/window/northright{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Security Desk"; + req_access_txt = "103" + }, +/turf/open/floor/mineral/plastitanium, +/area/centcom/evac) +"Ls" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 1; + height = 4; + id = "pod2_away"; + name = "recovery ship"; + width = 3 + }, +/turf/open/space, +/area/space) +"Lt" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/centcom/evac) +"Lu" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/centcom/evac) +"Lv" = ( +/obj/structure/bed, +/turf/open/floor/mineral/titanium/blue, +/area/centcom/evac) +"Lw" = ( +/obj/effect/spawner/structure/window/shuttle, +/turf/open/floor/plating, +/area/centcom/evac) +"Lx" = ( +/obj/structure/bed, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/blue, +/area/centcom/evac) +"Ly" = ( +/obj/machinery/door/airlock/titanium, +/turf/open/floor/mineral/titanium/yellow, +/area/centcom/evac) +"Lz" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 2; + height = 7; + id = "pod1_away"; + name = "recovery ship"; + width = 5 + }, +/turf/open/space, +/area/space) +"LA" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/turf/open/floor/mineral/titanium/blue, +/area/centcom/evac) +"LB" = ( +/obj/structure/table, +/obj/item/hand_labeler, +/obj/machinery/light, +/turf/open/floor/mineral/titanium/blue, +/area/centcom/evac) +"LC" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets, +/turf/open/floor/mineral/titanium/blue, +/area/centcom/evac) +"LD" = ( +/obj/machinery/door/airlock/titanium{ + name = "Cockpit"; + req_access_txt = "109" + }, +/turf/open/floor/mineral/titanium/yellow, +/area/centcom/evac) +"LE" = ( +/obj/structure/table, +/obj/item/device/radio/off, +/turf/open/floor/mineral/titanium/blue, +/area/centcom/evac) +"LF" = ( +/obj/structure/chair{ + dir = 4; + name = "Prosecution" + }, +/turf/open/floor/mineral/titanium/blue, +/area/centcom/evac) +"LG" = ( +/obj/structure/filingcabinet, +/turf/open/floor/mineral/titanium/blue, +/area/centcom/evac) +"LH" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/blue, +/area/centcom/evac) +"LI" = ( +/obj/structure/chair, +/turf/open/floor/mineral/titanium/blue, +/area/centcom/evac) +"LJ" = ( +/obj/structure/table, +/obj/item/device/radio/off, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/blue, +/area/centcom/evac) +"LK" = ( +/obj/machinery/abductor/experiment{ + team_number = 2 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"LL" = ( +/obj/machinery/abductor/console{ + team_number = 2 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"LM" = ( +/obj/machinery/abductor/pad{ + team_number = 2 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"LN" = ( +/obj/structure/table, +/obj/item/storage/lockbox, +/turf/open/floor/mineral/titanium/blue, +/area/centcom/evac) +"LO" = ( +/obj/structure/table, +/turf/open/floor/mineral/titanium/blue, +/area/centcom/evac) +"LP" = ( +/obj/machinery/computer/shuttle, +/turf/open/floor/mineral/titanium/blue, +/area/centcom/evac) +"LQ" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/pen, +/turf/open/floor/mineral/titanium/blue, +/area/centcom/evac) +"LR" = ( +/obj/structure/table, +/obj/item/paper_bin, +/turf/open/floor/mineral/titanium/blue, +/area/centcom/evac) +"LS" = ( +/obj/machinery/computer/camera_advanced/abductor{ + team_number = 2 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"LT" = ( +/obj/effect/landmark/abductor/scientist{ + team_number = 2 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"LU" = ( +/obj/effect/landmark/abductor/agent{ + team_number = 2 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"LV" = ( +/turf/closed/indestructible/riveted, +/area/awaymission/errorroom) +"LW" = ( +/turf/closed/mineral/ash_rock, +/area/awaymission/errorroom) +"LX" = ( +/obj/structure/speaking_tile, +/turf/closed/mineral/ash_rock, +/area/awaymission/errorroom) +"LY" = ( +/obj/item/rupee, +/turf/open/floor/plating/ashplanet/wateryrock{ + initial_gas_mix = "o2=22;n2=82;TEMP=293.15"; + planetary_atmos = 0 + }, +/area/awaymission/errorroom) +"LZ" = ( +/turf/open/floor/plating/ashplanet/wateryrock{ + initial_gas_mix = "o2=22;n2=82;TEMP=293.15"; + planetary_atmos = 0 + }, +/area/awaymission/errorroom) +"Ma" = ( +/obj/effect/landmark/error, +/turf/open/floor/plating/ashplanet/wateryrock{ + initial_gas_mix = "o2=22;n2=82;TEMP=293.15"; + planetary_atmos = 0 + }, +/area/awaymission/errorroom) +"Mb" = ( +/obj/structure/signpost/salvation{ + icon = 'icons/obj/structures.dmi'; + icon_state = "ladder10"; + invisibility = 100 + }, +/turf/open/floor/plating/ashplanet/wateryrock{ + initial_gas_mix = "o2=22;n2=82;TEMP=293.15"; + planetary_atmos = 0 + }, +/area/awaymission/errorroom) +"Mc" = ( +/obj/structure/lattice, +/turf/open/space, +/area/space) (1,1,1) = {" aa @@ -14571,21 +14517,21 @@ aa aa aa aa -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gz +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +gu aa aa aa @@ -14828,21 +14774,21 @@ aa aa aa aa -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX aa aa aa @@ -14997,17 +14943,17 @@ aa aa aa aa -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM +LV +LV +LV +LV +LV +LV +LV +LV +LV +LV +LV aa "} (3,1,1) = {" @@ -15085,21 +15031,21 @@ aa aa aa aa -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX aa aa aa @@ -15163,11 +15109,11 @@ aa aa aa aa -Gf -Gv -GF -GR -GX +kK +lg +lB +lX +mr aa aa aa @@ -15190,11 +15136,11 @@ aa aa aa aa -Gf -Gv -GF -GR -GX +kK +lg +lB +lX +mr aa aa aa @@ -15220,11 +15166,11 @@ aa aa aa aa -Gf -Gv -GF -GR -GX +kK +lg +lB +lX +mr aa aa aa @@ -15247,24 +15193,24 @@ aa aa aa aa -Gf -Gv -GF -GR -GX +kK +lg +lB +lX +mr aa aa -HM -HN -HN -HN -HN -HN -HN -HN -HN -HN -HM +LV +LW +LW +LW +LW +LW +LW +LW +LW +LW +LV aa "} (4,1,1) = {" @@ -15342,21 +15288,21 @@ aa aa aa aa -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX aa aa aa @@ -15419,13 +15365,13 @@ aa aa aa aa -Ga -Gg -GA -GG -GS -GY -He +ko +kL +lh +lC +lY +ms +nb aa aa aa @@ -15446,13 +15392,13 @@ aa aa aa aa -Ga -Gg -Hu -GG -GS -GY -He +ko +kL +Be +lC +lY +ms +nb aa aa aa @@ -15476,13 +15422,13 @@ aa aa aa aa -Ga -Gg -Gw -GG -GS -GY -He +ko +kL +JF +lC +lY +ms +nb aa aa aa @@ -15503,25 +15449,25 @@ aa aa aa aa -Ga -Gg -Ht -GG -GS -GY -He +ko +kL +LS +lC +lY +ms +nb aa -HM -HN -HP -HP -HP -HQ -HP -HP -HP -HN -HM +LV +LW +LY +LY +LY +LZ +LY +LY +LY +LW +LV aa "} (5,1,1) = {" @@ -15599,21 +15545,21 @@ aa aa aa aa -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX aa aa aa @@ -15676,13 +15622,13 @@ aa aa aa aa -Gb -Gm -Gx -GM -Gx -GZ -Hf +kp +kM +li +lD +li +mt +nc aa aa aa @@ -15703,13 +15649,13 @@ aa aa aa aa -Gb -Hq -Gx -HA -Gx -GZ -Hf +kp +Au +li +BQ +li +mt +nc aa aa aa @@ -15733,13 +15679,13 @@ aa aa aa aa -Gb -Gh -Gx -GH -Gx -GZ -Hf +kp +JA +li +JM +li +mt +nc aa aa aa @@ -15760,25 +15706,25 @@ aa aa aa aa -Gb -Hn -Gx -Hy -Gx -GZ -Hf +kp +LK +li +LT +li +mt +nc aa -HM -HN -HP -HP -HP -HQ -HP -HP -HP -HN -HM +LV +LW +LY +LY +LY +LZ +LY +LY +LY +LW +LV aa "} (6,1,1) = {" @@ -15856,21 +15802,21 @@ aa aa aa aa -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX aa aa aa @@ -15933,13 +15879,13 @@ aa aa aa aa -Gc -Gn -Gx -GI -Gx -Ha -Hg +kq +kN +li +lE +li +mu +nd aa aa aa @@ -15960,13 +15906,13 @@ aa aa aa aa -Gc -Hr -Gx -GI -Gx -Ha -Hg +kq +Av +li +lE +li +mu +nd aa aa aa @@ -15990,13 +15936,13 @@ aa aa aa aa -Gc -Gi -Gx -GI -Gx -Ha -Hg +kq +JB +li +lE +li +mu +nd aa aa aa @@ -16017,25 +15963,25 @@ aa aa aa aa -Gc -Ho -Gx -GI -Gx -Ha -Hg +kq +LL +li +lE +li +mu +nd aa -HM -HN -HP -HP -HP -HQ -HP -HP -HP -HN -HM +LV +LW +LY +LY +LY +LZ +LY +LY +LY +LW +LV aa "} (7,1,1) = {" @@ -16113,21 +16059,21 @@ aa aa aa aa -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX aa aa aa @@ -16190,13 +16136,13 @@ aa aa aa aa -Gd -Go -Gx -GN -Gx -Hb -Hh +kr +kO +li +lF +li +mv +ne aa aa aa @@ -16217,13 +16163,13 @@ aa aa aa aa -Gd -Hs -Gx -HB -Gx -Hb -Hh +kr +Aw +li +BR +li +mv +ne aa aa aa @@ -16247,13 +16193,13 @@ aa aa aa aa -Gd -Gj -Gx -GJ -Gx -Hb -Hh +kr +JC +li +JN +li +mv +ne aa aa aa @@ -16274,25 +16220,25 @@ aa aa aa aa -Gd -Hp -Gx -Hz -Gx -Hb -Hh +kr +LM +li +LU +li +mv +ne aa -HM -HN -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HN -HM +LV +LW +LZ +LZ +LZ +LZ +LZ +LZ +LZ +LW +LV aa "} (8,1,1) = {" @@ -16370,21 +16316,21 @@ aa aa aa aa -gc -gc -gc -gc -gc -gc -gc -gd -gc -gc -gc -gc -gc -gc -gc +fX +fX +fX +fX +fX +fX +fX +fY +fX +fX +fX +fX +fX +fX +fX aa aa aa @@ -16447,13 +16393,13 @@ aa aa aa aa -Ge -Gk -Gy -GK -Gy -Hc -Hi +ks +kP +lj +lG +lj +mw +nf aa aa aa @@ -16474,13 +16420,13 @@ aa aa aa aa -Ge -Gk -Gy -GK -Gy -Hc -Hi +ks +kP +lj +lG +lj +mw +nf aa aa aa @@ -16504,13 +16450,13 @@ aa aa aa aa -Ge -Gk -Gy -GK -Gy -Hc -Hi +ks +kP +lj +lG +lj +mw +nf aa aa aa @@ -16531,25 +16477,25 @@ aa aa aa aa -Ge -Gk -Gy -GK -Gy -Hc -Hi +ks +kP +lj +lG +lj +mw +nf aa -HM -HN -HP -HP -HP -HQ -HQ -HQ -HQ -HN -HM +LV +LW +LY +LY +LY +LZ +LZ +LZ +LZ +LW +LV aa "} (9,1,1) = {" @@ -16627,21 +16573,21 @@ aa aa aa aa -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX aa aa aa @@ -16705,11 +16651,11 @@ aa aa aa aa -Gl -Gz -GL -GT -Hd +kQ +lk +lH +lZ +mx aa aa aa @@ -16732,11 +16678,11 @@ aa aa aa aa -Gl -Gz -GL -GT -Hd +kQ +lk +lH +lZ +mx aa aa aa @@ -16762,11 +16708,11 @@ aa aa aa aa -Gl -Gz -GL -GT -Hd +kQ +lk +lH +lZ +mx aa aa aa @@ -16789,24 +16735,24 @@ aa aa aa aa -Gl -Gz -GL -GT -Hd +kQ +lk +lH +lZ +mx aa aa -HM -HO -HP -HP -HP -HQ -HQ -HR -HS -HN -HM +LV +LX +LY +LY +LY +LZ +LZ +Ma +Mb +LW +LV aa "} (10,1,1) = {" @@ -16884,21 +16830,21 @@ aa aa aa aa -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX aa aa aa @@ -17053,17 +16999,17 @@ aa aa aa aa -HM -HN -HP -HP -HP -HQ -HQ -HQ -HQ -HN -HM +LV +LW +LY +LY +LY +LZ +LZ +LZ +LZ +LW +LV aa "} (11,1,1) = {" @@ -17141,21 +17087,21 @@ aa aa aa aa -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX aa aa aa @@ -17221,50 +17167,50 @@ aa aa aa aa -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI aa aa aa @@ -17310,17 +17256,17 @@ aa aa aa aa -HM -HN -HQ -HQ -HQ -HQ -HQ -HQ -HQ -HN -HM +LV +LW +LZ +LZ +LZ +LZ +LZ +LZ +LZ +LW +LV aa "} (12,1,1) = {" @@ -17398,21 +17344,21 @@ aa aa aa aa -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX aa aa aa @@ -17478,50 +17424,50 @@ aa aa aa aa -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI aa aa aa @@ -17567,17 +17513,17 @@ aa aa aa aa -HM -HN -HP -HP -HP -HQ -HP -HP -HP -HN -HM +LV +LW +LY +LY +LY +LZ +LY +LY +LY +LW +LV aa "} (13,1,1) = {" @@ -17655,21 +17601,21 @@ aa aa aa aa -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX aa aa aa @@ -17735,50 +17681,50 @@ aa aa aa aa -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI aa aa aa @@ -17824,17 +17770,17 @@ aa aa aa aa -HM -HN -HP -HP -HP -HQ -HP -HP -HP -HN -HM +LV +LW +LY +LY +LY +LZ +LY +LY +LY +LW +LV aa "} (14,1,1) = {" @@ -17912,21 +17858,21 @@ aa aa aa aa -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX aa aa aa @@ -17992,50 +17938,50 @@ aa aa aa aa -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI aa aa aa @@ -18081,17 +18027,17 @@ aa aa aa aa -HM -HN -HP -HP -HP -HQ -HP -HP -HP -HN -HM +LV +LW +LY +LY +LY +LZ +LY +LY +LY +LW +LV aa "} (15,1,1) = {" @@ -18169,21 +18115,21 @@ aa aa aa aa -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc -gc +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX aa aa aa @@ -18249,50 +18195,50 @@ aa aa aa aa -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI aa aa aa @@ -18338,17 +18284,17 @@ aa aa aa aa -HM -HN -HN -HN -HN -HN -HN -HN -HN -HN -HM +LV +LW +LW +LW +LW +LW +LW +LW +LW +LW +LV aa "} (16,1,1) = {" @@ -18506,50 +18452,50 @@ aa aa aa aa -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI aa aa aa @@ -18595,17 +18541,17 @@ aa aa aa aa -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM +LV +LV +LV +LV +LV +LV +LV +LV +LV +LV +LV aa "} (17,1,1) = {" @@ -18763,50 +18709,50 @@ aa aa aa aa -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI aa aa aa @@ -19020,50 +18966,50 @@ aa aa aa aa -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -pg -pg -wf -wy -wX -pg -pg -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +qE +qE +zn +zM +Ax +qE +qE +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI aa aa aa @@ -19277,50 +19223,50 @@ aa aa aa aa -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -pg -pg -pg -pg -vG -wg -wz -wg -xu -pg -wf -wX -pg -la -la -la -la -la -la -la -la -la -la -la -la -la +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +qE +qE +qE +qE +yC +zo +zN +zo +Bf +qE +zn +Ax +qE +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI aa aa aa @@ -19534,50 +19480,50 @@ aa aa aa aa -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -pg -pg -sx -tb -vo -px -px -px -px -px -xS -px -px -pg -pg -la -la -la -la -la -la -la -la -la -la -la -la +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +qE +qE +uC +vj +ya +qZ +qZ +qZ +qZ +qZ +BS +qZ +qZ +qE +qE +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI aa aa aa @@ -19791,50 +19737,50 @@ aa aa aa aa -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -pg -pg -sy -uq -tb -pg -px -px -px -px -px -pg -px -sz -px -pg -pg -pg -pg -pg -la -la -la -la -la -la -la -la +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +qE +qE +uD +wM +vj +qE +qZ +qZ +qZ +qZ +qZ +qE +qZ +uE +qZ +qE +qE +qE +qE +qE +lI +lI +lI +lI +lI +lI +lI +lI aa aa aa @@ -20048,50 +19994,50 @@ aa aa aa aa -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -pg -pg -tb -tb -tb -tb -pg -vG -wg -px -wg -xu -pg -px -px -px -pg -zg -zu -zz -pg -pg -rX -pg -la -la -la -la -la +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +qE +qE +vj +vj +vj +vj +qE +yC +zo +qZ +zo +Bf +qE +qZ +qZ +qZ +qE +DL +DZ +Eh +qE +qE +tW +qE +lI +lI +lI +lI +lI aa aa aa @@ -20305,50 +20251,50 @@ aa aa aa aa -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -pg -sx -tc -tb -tb -KO -pg -pg -wf -wy -wX -pg -pg -La -sz -px -yX -zh -zh -zA -zU -px -px -pg -la -la -la -la -la +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +qE +uC +vk +vj +vj +xu +qE +qE +zn +zM +Ax +qE +qE +Ci +uE +qZ +DC +DM +DM +Ei +EC +qZ +qZ +qE +lI +lI +lI +lI +lI aa aa aa @@ -20562,50 +20508,50 @@ aa aa aa aa -la -la -la -la -la -la -la -la -la -la -la -la -pg -pg -pg -pg -sy -tb -tb -tb -uR -pg -vH -px -px -px +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +qE +qE +qE +qE +uD +vj +vj +vj xv -pg -px -px -px -pg -zi -zv -zB -pg -pg -zU -pg -pg -pg -la -la -la +qE +yD +qZ +qZ +qZ +Bg +qE +qZ +qZ +qZ +qE +DN +Ea +Ej +qE +qE +EC +qE +qE +qE +lI +lI +lI aa aa aa @@ -20819,50 +20765,50 @@ aa aa aa aa -la -la -la -la -la -la -la -la -la -la -la -pg -pg -Kv -rb -pg -pg -pg -tO -pg -pg -pg -vI -px -px -px -KW -pg -px -sz -px -pg -pg -pg -pg -pg -px -px -Bj -BG -pg -la -la -la +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +qE +qE +rW +sW +qE +qE +qE +wb +qE +qE +qE +yE +qZ +qZ +qZ +Bh +qE +qZ +uE +qZ +qE +qE +qE +qE +qE +qZ +qZ +FT +Gr +qE +lI +lI +lI aa aa aa @@ -21076,50 +21022,50 @@ aa aa aa aa -la -la -la -la -la -la -la -la -la -la -la -ph -px -px -px -rX -px -px -px -KM -uS -pg -px -px -px -px -px -rX -px -px -px -pg -zj -Lg -zC -pg -An -px -px -BG -BO -Cm -la -la +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +qF +qZ +qZ +qZ +tW +qZ +qZ +qZ +wN +xw +qE +qZ +qZ +qZ +qZ +qZ +tW +qZ +qZ +qZ +qE +DO +Eb +Ek +qE +EW +qZ +qZ +Gr +Gz +GX +lI +lI aa aa aa @@ -21333,51 +21279,51 @@ aa aa aa aa -la -la -la -la -la -la -la -la -la -la -la -pi -py -px -px -rY -px -px -px -px -px -vp -px -px -wA -wY -px -xS -px -sz -px -yY -sz -zw -sz -rX -Ao -px -px -BG -BO -Cm -la -la -CU +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +qG +ra +qZ +qZ +tX +qZ +qZ +qZ +qZ +qZ +yb +qZ +qZ +zO +Ay +qZ +BS +qZ +uE +qZ +DD +uE +Ec +uE +tW +EX +qZ +qZ +Gr +Gz +GX +lI +lI +HG aa aa aa @@ -21590,50 +21536,50 @@ aa aa aa aa -la -la -la -la -la -la -la -la -la -la -la -pj -px -px -px -rX -px -px -px -KN -uT -pg -px -px -px -px -px -rX -px -px -px -pg -zk -Lh -zD -pg -An -px -px -BG -BO -Cm -la -la +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +qH +qZ +qZ +qZ +tW +qZ +qZ +qZ +wO +xx +qE +qZ +qZ +qZ +qZ +qZ +tW +qZ +qZ +qZ +qE +DP +Ed +El +qE +EW +qZ +qZ +Gr +Gz +GX +lI +lI aa aa aa @@ -21847,50 +21793,50 @@ aa aa aa aa -la -la -la -la -la -la -la -la -la -la -la -pg -pg -Kw -rc -pg -pg -pg -tP -pg -pg -pg -vJ -px -px -px -KW -pg -px -sz -px -pg -pg -pg -pg -pg -Ap -px -Bj -BG -pg -la -la -la +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +qE +qE +rX +sX +qE +qE +qE +wc +qE +qE +qE +yF +qZ +qZ +qZ +Bh +qE +qZ +uE +qZ +qE +qE +qE +qE +qE +EY +qZ +FT +Gr +qE +lI +lI +lI aa aa aa @@ -22104,50 +22050,50 @@ aa aa aa aa -la -la -la -la -la -la -la -la -la -la -la -la -pg -pg -pg -pg -sz -td -sz -ur -uU -pg -vK -wh -wB -px -px -pg -px -px -px -pg -zl -zx -zE -pg -pg -rX -pg -pg -pg -la -la -la +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +qE +qE +qE +qE +uE +vl +uE +wP +xy +qE +yG +zp +zP +qZ +qZ +qE +qZ +qZ +qZ +qE +DQ +Ee +Em +qE +qE +tW +qE +qE +qE +lI +lI +lI aa aa aa @@ -22361,50 +22307,50 @@ aa aa aa aa -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -pg -sA -te -tQ -sz -uV -pg -pg -wf -wy -wX -pg -pg -La -sz -px -yZ -zm -zm -zF -pg -la -la -la -la -la -la -la -la +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +qE +uF +vm +wd +uE +xz +qE +qE +zn +zM +Ax +qE +qE +Ci +uE +qZ +DE +DR +DR +En +qE +lI +lI +lI +lI +lI +lI +lI +lI aa aa aa @@ -22618,50 +22564,50 @@ aa aa aa aa -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -pg -pg -tf -sz -td -sz -ph -vL -vO -wC -wZ -vO -ph -px -px -px -pg -zn -Li -zG -pg -la -la -la -la -la -la -la -la +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +qE +qE +vn +uE +vl +uE +qF +yH +yK +zQ +Az +yK +qF +qZ +qZ +qZ +qE +DS +Ef +Eo +qE +lI +lI +lI +lI +lI +lI +lI +lI aa aa aa @@ -22875,50 +22821,50 @@ aa aa aa aa -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -pg -pg -sA -us -tQ -pi -vM -wi -vM -xa -vM -pi -px -sz -px -pg -pg -pg -pg -pg -la -la -la -la -la -la -la -la +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +qE +qE +uF +wQ +wd +qG +yI +zq +yI +AA +yI +qG +qZ +uE +qZ +qE +qE +qE +qE +qE +lI +lI +lI +lI +lI +lI +lI +lI aa aa aa @@ -23132,50 +23078,50 @@ aa aa aa aa -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -pg -pg -tf -sz -pj -vN -wj -vO -wi -vO -pj -px -px -pg -pg -la -la -la -la -la -la -la -la -la -la -la -la +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +qE +qE +vn +uE +qH +yJ +zr +yK +zq +yK +qH +qZ +qZ +qE +qE +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI aa aa aa @@ -23389,50 +23335,50 @@ aa aa aa aa -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -pg -pg -pg -pg -vO -wi -vM -xb -xw -pg -wf -wX -pg -la -la -la -la -la -la -la -la -la -la -la -la -la +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +qE +qE +qE +qE +yK +zq +yI +AB +Bi +qE +zn +Ax +qE +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI aa aa aa @@ -23646,50 +23592,50 @@ aa aa aa aa -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -pg -pg -pg -pg -pg -pg -pg -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +qE +qE +qE +qE +qE +qE +qE +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI aa aa aa @@ -23903,50 +23849,50 @@ aa aa aa aa -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI aa aa aa @@ -24160,50 +24106,50 @@ aa aa aa aa -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI aa aa aa @@ -24359,108 +24305,108 @@ aa aa aa aa -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh aa -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI aa aa aa @@ -24616,108 +24562,108 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hh aa -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI aa aa aa @@ -24873,108 +24819,108 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hh aa -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI aa aa aa @@ -25130,108 +25076,108 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hh aa -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la -la +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI +lI aa aa aa @@ -25387,63 +25333,63 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hh aa aa aa @@ -25644,63 +25590,63 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hh aa aa aa @@ -25901,63 +25847,63 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hh aa aa aa @@ -26158,63 +26104,63 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hh aa aa aa @@ -26415,97 +26361,97 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh aa aa aa @@ -26672,97 +26618,97 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -tR -hq -Kl -Kl -Kl -Kl -Kl -Kl -Kl -Kl -Kl -Kl -Kl -Kl -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +we +hl +kt +kt +kt +kt +kt +kt +kt +kt +kt +kt +kt +kt +hh aa aa aa @@ -26929,97 +26875,97 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -Kl -Kl -Kl -hq -hq -hq -hq -SC -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -XJ -Kl -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +kt +kt +kt +hl +hl +hl +hl +yc +yd +yd +yd +yd +yd +yd +yd +yd +yd +kt +hh aa aa aa @@ -27186,97 +27132,97 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -Ym -Ou -Ou -Ou -Ou -Ou -XJ -Jg -Jk -Jg -Jm -VO -Zi -Yz -Ic -Rx -Kl -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +tY +tZ +tZ +tZ +tZ +tZ +yd +yL +zs +yL +AC +Bj +BT +Cj +CS +Di +kt +hh aa aa aa @@ -27443,97 +27389,97 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -Kl -Ou -Qr -Tg -Tg -Tg -JC -XJ -RT -Ze -WM -WM -Qt -WM -IZ -Ic -Oz -Kl -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +kt +tZ +uG +vo +vo +vo +xA +yd +yM +zt +zR +zR +Bk +zR +Ck +CS +Dj +kt +hh aa aa aa @@ -27700,97 +27646,97 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -lF -hq -hq -Kl -Kl -hq -hq -hq -hq -hq -hq -Kl -Ou -XU -XU -XU -XU -XU -Tt -Qm -Ze -KE -Ki -TO -fH -Id -Ic -Wz -Kl -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +my +hl +hl +kt +kt +hl +hl +hl +hl +hl +hl +kt +tZ +uH +uH +uH +uH +uH +ye +yN +zt +zS +AD +Bl +BU +Cl +CS +Dk +kt +hh aa aa aa @@ -27957,97 +27903,97 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -Kl -hq -Pv -Us -Us -Us -Us -hq -hq -Ou -XU -XU -XU -XU -XU -XJ -Yw -Ze -tg -YX -Rg -ZS -XJ -XJ -ZY -Kl -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +kt +hl +oS +oT +oT +oT +oT +hl +hl +tZ +uH +uH +uH +uH +uH +yd +yO +zt +zT +AE +Bm +yf +yd +yd +Dl +kt +hh aa aa aa @@ -28214,97 +28160,97 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -Kl -hq -Us -Vo -NH -Wr -Us -Sg -hq -Ou -Pa -QB -KS -Sx -Uv -XJ -HW -Ze -tg -YX -SD -XJ -hq -hq -Kl -Kl -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +kt +hl +oT +px +pR +qI +oT +rY +hl +tZ +uI +vp +wf +wR +xB +yd +yP +zt +zT +AE +Bn +yd +hl +hl +kt +kt +hh aa aa aa @@ -28471,97 +28417,97 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -mz -hq -Kl -hq -Pd -Is -Lf -Wr -Us -Nk -Nk -Ou -Ou -Ou -Ou -NJ -Tl -ZS -QP -QP -pk -Nc -XJ -XJ -Nk -Nk -hq -hq -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +nx +hl +kt +hl +oU +py +pS +qI +oT +rZ +rZ +tZ +tZ +tZ +tZ +wS +xC +yf +yQ +yQ +zU +yQ +yd +yd +rZ +rZ +hl +hl +hh aa aa aa @@ -28728,97 +28674,97 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -Kl -hq -Pd -TY -So -Wr -Tm -OT -XN -Ru -XN -XN -Ur -Pt -Pt -Pt -Pt -RF -NV -RD -TT -XL -de -Jn -hq -hq -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +kt +hl +oU +pz +pT +qI +rb +sa +sY +ua +sY +sY +wg +sb +sb +sb +sb +zu +zV +AF +Bo +BV +Cm +CT +hl +hl +hh aa aa aa @@ -28985,97 +28931,97 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -lF -hq -hq -hq -Kl -hq -Pd -Yo -Sr -Wr -UI -Pt -Ux -Ux -Ux -Pt -RK -Pt -Ux -Ux -Ux -Ux -NV -RD -TT -Ns -de -WK -hq -hq -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +my +hl +hl +hl +kt +hl +oU +pA +pU +qI +rc +sb +sZ +sZ +sZ +sb +wh +sb +sZ +sZ +sZ +sZ +zV +AF +Bo +BW +Cm +CU +hl +hl +hh aa aa aa @@ -29242,97 +29188,97 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -Kl -hq -Pd -fC -So -Wr -Us -Yk -Om -TW -Om -Om -Ur -Pt -Pt -Pt -Pt -WW -NV -RD -TT -XL -de -Mz -hq -hq -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +kt +hl +oU +pB +pT +qI +oT +sc +ta +ub +ta +ta +wg +sb +sb +sb +sb +zv +zV +AF +Bo +BV +Cm +CV +hl +hl +hh aa aa aa @@ -29499,97 +29445,97 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -Kl -hq -Pd -Um -TD -Wr -Us -Nk -Nk -Jh -Nk -Wk -Wk -Qo -Mk -Se -Wd -Wd -ZM -ZE -Jz -Jz -Nk -Nk -hq -hq -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +kt +hl +oU +pC +pV +qI +oT +rZ +rZ +uc +rZ +vq +vq +wT +xD +yg +yR +yR +zW +yR +yh +yh +rZ +rZ +hl +hl +hh aa aa aa @@ -29756,97 +29702,97 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -Kl -hq -Us -SA -Yl -Wr -Us -Uq -rd -mg -mA -Wk -MI -ZL -UR -Jz -YY -KA -Ve -RS -Wj -Jz -hq -hq -Kl -Kl -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +kt +hl +oT +pD +pW +qI +oT +sd +tb +ng +nz +vq +wi +wU +xE +yh +yS +zw +zX +AG +Bp +yh +hl +hl +kt +kt +hh aa aa aa @@ -30013,97 +29959,97 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -lG -hq -lF -hq -Kl -hq -YS -Us -Us -Us -Us -hq -re -kI -sB -MZ -XW -ZL -UR -Jz -We -KA -Ve -RS -RJ -Se -Jz -Jz -Su -Kl -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +mz +hl +my +hl +kt +hl +oV +oT +oT +oT +oT +hl +tc +ll +uJ +vr +wj +wU +xE +yh +yT +zw +zX +AG +Bq +yg +yh +yh +Dm +kt +hh aa aa aa @@ -30270,97 +30216,97 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -ln -hq -hq -hq -Kl -Kl -Kl -Kl -Kl -Kl -Kl -Kl -re -kI -sC -RR -WX -ZL -qW -JK -Vv -KA -Js -Rj -TC -ID -Os -Jb -UW -Kl -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +mA +hl +hl +hl +kt +kt +kt +kt +kt +kt +kt +kt +tc +ll +uK +vs +wk +wU +xF +yi +yU +zw +zY +AH +Br +zZ +Cn +CW +Dn +kt +hh aa aa aa @@ -30527,97 +30473,97 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -lF -hq -hq -hq -hq -mz -hq -Kl -re -kI -re -Vy -Wk -Wk -Wk -Jz -Ly -KA -ID -ID -NQ -ID -LG -Jb -YF -Kl -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +my +hl +hl +hl +hl +nx +hl +kt +tc +ll +tc +vt +vq +vq +vq +yh +yV +zw +zZ +zZ +Bs +zZ +Co +CW +Do +kt +hh aa aa aa @@ -30784,97 +30730,97 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -Kl -Kl -Kl -Kl -Kl -hq -lG -ln -hq -hq -hq -hq -hq -hq -hq -hq -Kl -re -kI -re -hq -hq -hq -Wk -Jz -Vk -KA -OQ -Sb -OS -WY -Os -Jb -Pm -Kl -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +kt +kt +kt +kt +kt +hl +mz +mA +hl +hl +hl +hl +hl +hl +hl +hl +kt +tc +ll +tc +hl +hl +hl +vq +yh +yW +zw +Aa +AI +Bt +BX +Cn +CW +Dp +kt +hh aa aa aa @@ -31041,97 +30987,97 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -kl -kl -kl -kl -Kl -hq -hq -hq -lG -hq -hq -hq -hq -hq -hq -hq -Kl -re -kI -re -hq -hq -hq -hq -UK -Jz -Jz -Jz -Jz -Jz -Jz -Jz -Jz -Jz -Kl -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +ku +ku +ku +ku +kt +hl +hl +hl +mz +hl +hl +hl +hl +hl +hl +hl +kt +tc +ll +tc +hl +hl +hl +hl +yj +yh +yh +yh +yh +yh +yh +yh +yh +yh +kt +hh aa aa aa @@ -31298,97 +31244,97 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -km +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +kv +kR +ll ku -kI -kl -Kl -hq -hq -hq -hq -hq -ln -hq -Kl -Kl -Kl -Lx -Kl -rf -kI -rf -Kl -Lx -Kl -Kl -Kl -Kl -Kl -Kl -Kl -Kl -Kl -Kl -Kl -Kl -Kl -hm +kt +hl +hl +hl +hl +hl +mA +hl +kt +kt +kt +rd +kt +td +ll +td +kt +rd +kt +kt +kt +kt +kt +kt +kt +kt +kt +kt +kt +kt +kt +hh aa aa aa @@ -31555,97 +31501,97 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -km +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +kv +kR +ll ku -kI -kl -Kl -hq -hq -lG -hq -hq -hq -Kl -Kl -kl -kl -kl -kl -kl -rZ -kl -kl -kl -kl -Kl -Kl -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hm +kt +hl +hl +mz +hl +hl +hl +kt +kt +ku +ku +ku +ku +ku +ud +ku +ku +ku +ku +kt +kt +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hh aa aa aa @@ -31812,97 +31758,97 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -km +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +kv +kR +ll ku -kI -kl -Kl -lG -hq -hq -lF -hq -hq -Lw -kl -kl -pl -pz -JI -oJ -oJ -sD -th -JL -kl -kl -Kl -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hm +kt +mz +hl +hl +my +hl +hl +oW +ku +ku +qJ +re +se +pZ +pZ +uL +vu +wl +ku +ku +kt +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hh aa aa aa @@ -32069,97 +32015,97 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -jX -km +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +ki +kv +kR +lm ku -JE -kl -Kl -hq -hq -hq -hq -hq -hq -Kl -kl -oH -oJ -oJ -pA -pA -oJ -pA -ti -tT -qq -kl -Kl -lF +kt +hl +hl +hl +hl +hl +hl +kt +ku +pX +pZ +pZ +rf +rf +pZ +rf +vv +wm +si +ku +kt +my +nx +hl mz -hq -lG -hq -hq -mh -hq -hq -hq -hm +hl +hl +BY +hl +hl +hl +hh aa aa aa @@ -32326,97 +32272,97 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -km +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +kv +kR +ll ku -kI -kl -Kl -Kl -Kl -Kl -Kl -Kl -Kl -Kl -ol -oI -oJ -pA -qn -rg -oJ -pA -tj -tS -ut -kl -Kl -hq -lG -hq -hq -hq -mh -yc -mh -hq -hq -hm +kt +kt +kt +kt +kt +kt +kt +kt +pE +pY +pZ +rf +sf +te +pZ +rf +vw +wn +wV +ku +kt +hl +mz +hl +hl +hl +BY +Cp +BY +hl +hl +hh aa aa aa @@ -32583,97 +32529,97 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -km +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +kv +kR +ll ku -kI -kl -kl -kl -kl -kl -kl -kl -kl -kl -kl -oJ -oJ -pA -qo -rh -oJ -pA -ti -tS -uu -kl -Lw -hq -lF -lG +ku +ku +ku +ku +ku +ku +ku +ku +ku +pZ +pZ +rf +sg +tf +pZ +rf +vv +wn +wW +ku +oW +hl +my mz -hq -hq -mh -hq -hq -hq -hm +nx +hl +hl +BY +hl +hl +hl +hh aa aa aa @@ -32840,97 +32786,97 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -km +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +kv +kR +ll +ll +ll +ll +ll +ny +ll +ll +ll +ll +pF +qa +pZ +rg +rf +rf +pZ +pZ +vx +wo +wX ku -kI -kI -kI -kI -kI -JG -kI -kI -kI -kI -om -JH -oJ -pB -pA -pA -oJ -oJ -tk -tU -uv -kl -Kl -Kj -Lw -Kl -Kl -hq -hq -hq -hq -hq -hq -hm +kt +ma +oW +kt +kt +hl +hl +hl +hl +hl +hl +hh aa aa aa @@ -33097,97 +33043,97 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -km +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +kv +kR +ll ku -kI -kl -kl -lH -mg -mA -kl -kl -kl -kl -kl -kl -pm -oJ -oJ -oJ -oJ -oJ -oJ -oJ -kl -kl -kl -ol -kl -kl -hm -hm -hm -hm -hm -hm -hm -hm +ku +mB +ng +nz +ku +ku +ku +ku +ku +ku +qK +pZ +pZ +pZ +pZ +pZ +pZ +pZ +ku +ku +ku +pE +ku +ku +hh +hh +hh +hh +hh +hh +hh +hh aa aa aa @@ -33354,89 +33300,89 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -km +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +kv +kR +ll +ku +kt +mC +nh +ma +kt +ma +ma +kt +kt +ku +qL +pZ +sh +sh +sh +sh +pZ +pZ +wY +xG +xG +xG +zx ku -kI -kl -Kl -lI -Kg -Kj -Kl -Kj -Kj -Kl -Kl -kl -pn -oJ -qp -qp -qp -qp -oJ -oJ -uw -uW -uW -uW -wk -kl aa aa aa @@ -33611,89 +33557,89 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -km +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +kv +kR +lm +ku +kt +mz +hl +hl +mz +hl +hl +mz +ma +ku +qM +pZ +si +tg +tg +uM +pZ +wp +ku +xG +xG +xG +zx ku -JE -kl -Kl -lG -hq -hq -lG -hq -hq -lG -Kj -kl -po -oJ -qq -ri -ri -sE -oJ -JM -kl -uW -uW -uW -wk -kl aa aa aa @@ -33868,89 +33814,89 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -km +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +kv +kR +ll +ku +kt +hl +hl +mz +hl +mz +hl +hl +pG +ku +ku +rh +ku +ku +ku +uK +uJ +uK +ku +xH +xG +xG +zx ku -kI -kl -Kl -hq -hq -lG -hq -lG -hq -hq -Ko -kl -kl -pC -kl -kl -kl -sC -sB -sC -kl -uX -uW -uW -wk -kl aa aa aa @@ -34125,89 +34071,89 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -km +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +kv +kR +ll +ku +kt +hl +mz +hl +mA +hl +hl +mz +kt +ku +qN +ri +ri +ku +ku +tc +ll +tc +ku +xI +xG +xG +zx ku -kI -kl -Kl -hq -lG -hq -ln -hq -hq -lG -Kl -kl -pp -pD -pD -kl -kl -re -kI -re -kl -uY -uW -uW -wk -kl aa aa aa @@ -34382,89 +34328,89 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -km +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +kv +kR +ll +ku +ma +hl +hl +hl +mz +hl +hl +mz +ma +ku +qO +ri +sj +ku +ku +tc +ll +tc +ku +xJ +xG +xG +zx ku -kI -kl -Kj -hq -hq -hq -lG -hq -hq -lG -Kj -kl -pq -pD -qr -kl -kl -re -kI -re -kl -uZ -uW -uW -wk -kl aa aa aa @@ -34639,89 +34585,89 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -kl -kl -kl -kl -Kl -hq -lG -ln -hq -hq -ln -hq -Ko -ol -pr +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +ku +ku +ku +ku +kt +hl +mz +mA +hl +hl +mA +hl +pG pE -kl -kl -kl -re -kI -re -kl -va -uW -vP -wl -kl +qP +rj +ku +ku +ku +tc +ll +tc +ku +xK +xG +yX +zy +ku aa aa aa @@ -34896,89 +34842,89 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -Kl -Kl -Kl -Kl -Kl -hq -hq -hq -ln -lG -hq -ln -Kl -kl -kl -kl -kl -kl -kl -re -kI -re -kl -kl -kl -kl -kl -kl +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +kt +kt +kt +kt +kt +hl +hl +hl +mA +mz +hl +mA +kt +ku +ku +ku +ku +ku +ku +tc +ll +tc +ku +ku +ku +ku +ku +ku aa aa aa @@ -35153,87 +35099,87 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -lG -hq -hq -hq -lG -Kj -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +mz +hl +hl +hl +mz +ma +hh aa -kl -qs -qs -qs -re -kI -re -qs -qs -qs -kl +ku +sk +sk +sk +tc +ll +tc +sk +sk +sk +ku aa aa aa @@ -35410,87 +35356,87 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -lG -hq -ln -hq -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +mz +hl +mA +hl +hh aa -kl -qs -rj -sa -re -sB -re -sa -vb -qs -kl +ku +sk +th +ue +tc +uJ +tc +ue +xL +sk +ku aa aa aa @@ -35667,87 +35613,87 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -ln -hq -hq -ln -hq -lG -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +mA +hl +hl +mA +hl +mz +hh aa -kl -QT -rk -rl -rm -tl -rm -ux -vc -QY -kl +ku +sl +ti +tj +tk +vy +tk +wZ +xM +yk +ku aa aa aa @@ -35924,87 +35870,87 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -lG -hq -hq -hq -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +mz +hl +hl +hl +hh aa -kl -qt -rl -rm -sb -sc -sb -rm -ux -vq -kl +ku +sm +tj +tk +uf +ug +uf +tk +wZ +yl +ku aa aa aa @@ -36181,87 +36127,87 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hh aa -kl -JJ -rm -sb -sc -sd -sc -sb -rm -JN -kl +ku +sn +tk +uf +ug +uh +ug +uf +tk +ym +ku aa aa aa @@ -36438,87 +36384,87 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hh aa -kl -qt -rn -sc -sF -tm -tV -sc -vd -vq -kl +ku +sm +tl +ug +uN +vz +wq +ug +xN +yl +ku aa aa aa @@ -36695,87 +36641,87 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hh aa -kl -qt -rm -sd -sc -sb -sc -sd -rm -vq -kl +ku +sm +tk +uh +ug +uf +ug +uh +tk +yl +ku aa aa aa @@ -36952,87 +36898,87 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hh aa -kl -QU -ro -rm -sd -sc -sd -rm -uy -vq -kl +ku +so +tm +tk +uh +ug +uh +tk +xa +yl +ku aa aa aa @@ -37209,87 +37155,87 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hh aa -kl -QV -rp -ro -rm -tl -rm -uy -ve -QX -kl +ku +sp +tn +tm +tk +vy +tk +xa +xO +xP +ku aa aa aa @@ -37466,87 +37412,87 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hh aa -kl -qs -QV -se -se -se -se -se -QX -qs -kl +ku +sk +sp +ui +ui +ui +ui +ui +xP +sk +ku aa aa aa @@ -37723,87 +37669,87 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hh aa -kl -kl -kl -kl -kl -kl -kl -kl -kl -kl -kl +ku +ku +ku +ku +ku +ku +ku +ku +ku +ku +ku aa aa aa @@ -37980,75 +37926,75 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hh aa aa aa @@ -38237,75 +38183,75 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hh aa aa aa @@ -38494,75 +38440,75 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hh aa aa aa @@ -38751,75 +38697,75 @@ aa aa aa aa -hm -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hq -hm +hh +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hh aa aa aa @@ -39008,75 +38954,75 @@ aa aa aa aa -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh +hh aa aa aa @@ -39387,11 +39333,11 @@ aa aa aa aa -FN -FN -FN -FN -FN +KH +KH +KH +KH +KH aa aa aa @@ -39644,12 +39590,12 @@ aa aa aa aa -FI -FO -FR -FR -FN -FN +KI +KN +KQ +KQ +KH +KH aa aa aa @@ -39901,12 +39847,12 @@ aa aa aa aa -FJ -FO -JO -FR -FR -FN +KJ +KN +KR +KQ +KQ +KH aa aa aa @@ -40129,15 +40075,15 @@ aa aa aa aa -zV -zV -zV -zV -zV -zV -zV -zV -zV +ED +ED +ED +ED +ED +ED +ED +ED +ED aa aa aa @@ -40158,22 +40104,22 @@ aa aa aa aa -FK -FO -FS -FN -FP -FN -FN -FN -FN -FN -FN -FN -FN -FN -FN -FN +KK +KN +KS +KH +KO +KH +KH +KH +KH +KH +KH +KH +KH +KH +KH +KH aa aa aa @@ -40386,18 +40332,18 @@ aa aa aa aa -zV -Aq -Aq -Bk -BH -BP -Cn -Cx -zV -zV -zV -zV +ED +EZ +EZ +FU +Gs +GA +GY +Hi +ED +ED +ED +ED aa aa aa @@ -40415,23 +40361,23 @@ aa aa aa aa -FN -FN -FT -JQ -FZ -Gp -GB -GO -GU -FN -Hj -Hj -JT -Hj -Hj -FN -FN +KH +KH +KT +La +Lb +Ld +Lj +Ln +Lq +KH +Lv +Lv +Lx +Lv +Lv +KH +KH aa aa aa @@ -40643,18 +40589,18 @@ aa aa aa aa -zV -Ar -Ar -Ar -Ay -Ay -Ay -Ay -CL -CV -CV -zV +ED +Fa +Fa +Fa +Fh +Fh +Fh +Fh +Hy +HH +HH +ED aa aa aa @@ -40673,25 +40619,25 @@ aa aa aa aa -FN -FU -FZ -FV -Gq -GC -GP -GP -FN -FV -FV -FV -FV -FV -FN -FN -FN -FN -FN +KH +KU +Lb +KV +Le +Lk +Lo +Lo +KH +KV +KV +KV +KV +KV +KH +KH +KH +KH +KH aa aa aa @@ -40900,55 +40846,55 @@ aa aa aa aa -zV -As -Ar -Bl -AR -Ay -Ay -Ay -CM -CV -CV -zV -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -FL -FP +ED +Fb +Fa FV -FV -FV -Gr -GD -GP -GP -FN -Hj -Hj -FV -Hj -Hj -FN -HD -JU +FB +Fh +Fh +Fh +Hz HH -Hk +HH +ED +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +KL +KO +KV +KV +KV +Lf +Ll +Lo +Lo +KH +Lv +Lv +KV +Lv +Lv +KH +LE +LH +LN +Lw aa aa aa @@ -41157,18 +41103,18 @@ aa aa aa aa -zV -At -Ar -Aq -AR -Ay -Ay -Ay -CM -CV -CV -zV +ED +Fc +Fa +EZ +FB +Fh +Fh +Fh +Hz +HH +HH +ED aa aa aa @@ -41187,25 +41133,25 @@ aa aa aa aa -FN -FW -FZ -FV -Gs -GE -Gs -GV -Mi -FN -FN -Hl -FN -FN -FN -Gu -FZ -HI -Hk +KH +KW +Lb +KV +Lg +Lm +Lg +Lr +Lt +KH +KH +Ly +KH +KH +KH +Li +Lb +LO +Lw aa aa aa @@ -41414,18 +41360,18 @@ aa aa aa aa -zV -At -Ar -Bm -AR -Ay -Ay -Ay -CL -CV -CV -zV +ED +Fc +Fa +FW +FB +Fh +Fh +Fh +Hy +HH +HH +ED aa aa aa @@ -41444,25 +41390,25 @@ aa aa aa aa -FQ -FX -FZ -FV -FV -FV -FV -FV -JS -FV -FV -FV -FV -FV -HC -FV -HG -HJ -Hk +KP +KX +Lb +KV +KV +KV +KV +KV +Lu +KV +KV +KV +KV +KV +LD +KV +LI +LP +Lw aa aa aa @@ -41671,55 +41617,55 @@ aa aa aa aa -zV -Ar -Ar -Bn -AR -Ay -Ay +ED +Fa +Fa +FX +FB +Fh +Fh +Hj +ED +ED +ED +ED +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +KH +KY +Lb +KV +Lh +Lb +Li +Li +Lb +Li +Li +KV +Lb LA -zV -zV -zV -zV -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -FN -FY -FZ -FV -Gt -FZ -Gu -Gu -FZ -Gu -Gu -FV -FZ -Hv -FN -HE -FZ -HK -Hk +KH +LF +Lb +LQ +Lw aa aa aa @@ -41928,15 +41874,15 @@ aa aa aa aa -zV -Au -AQ -Bo -AR -Ay -Ay -Ay -zV +ED +Fd +FA +FY +FB +Fh +Fh +Fh +ED aa aa aa @@ -41957,26 +41903,26 @@ aa aa aa aa -FM -FP -FV -FV -FV -FZ -FZ -GQ -GQ -FZ -GQ -GQ -FV -FZ -Hw -FN -HF -JV -HL -Hk +KM +KO +KV +KV +KV +Lb +Lb +Lp +Lp +Lb +Lp +Lp +KV +Lb +LB +KH +LG +LJ +LR +Lw aa aa aa @@ -42185,15 +42131,15 @@ aa aa aa aa -zV -Av -Ay -Ay -Ay -Ay -Ay -Ay -zV +ED +Fe +Fh +Fh +Fh +Fh +Fh +Fh +ED aa aa aa @@ -42215,25 +42161,25 @@ aa aa aa aa -FN -FU -FZ -FV -FV -FV -FV -FV -FV -FV -FV -FV -FZ -Hx -FN -FN -FN -FN -FN +KH +KU +Lb +KV +KV +KV +KV +KV +KV +KV +KV +KV +Lb +LC +KH +KH +KH +KH +KH aa aa aa @@ -42442,15 +42388,15 @@ aa aa aa aa -zV -Aw -Ay -Ay -Ay -Ay -Ay -AR -zV +ED +Ff +Fh +Fh +Fh +Fh +Fh +FB +ED aa aa aa @@ -42471,23 +42417,23 @@ aa aa aa aa -FN -FN -FT -JR -FZ -Gu -Gu -Gu -FV -Gu -Gu -Gu -FV -FZ -FU -FN -FN +KH +KH +KT +Lc +Lb +Li +Li +Li +KV +Li +Li +Li +KV +Lb +KU +KH +KH aa aa aa @@ -42699,51 +42645,51 @@ aa aa aa aa -zV -Ax -Ay -Ay -Ay -Ay -AR -Cy -zV -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -FI -FO -FS -FN -FP -FN -FN -FN -FP -FN +ED +Fg +Fh +Fh +Fh +Fh +FB Hk -FN -FP -FN -FN -FN +ED +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +KI +KN +KS +KH +KO +KH +KH +KH +KO +KH +Lw +KH +KO +KH +KH +KH aa aa aa @@ -42956,15 +42902,15 @@ aa aa aa aa -zV -Ay -AR -Ay -Ay -Ay -Ay -AR -zV +ED +Fh +FB +Fh +Fh +Fh +Fh +FB +ED aa aa aa @@ -42985,19 +42931,19 @@ aa aa aa aa -FJ -FO -JP -FR -FR -FN +KJ +KN +KZ +KQ +KQ +KH aa aa -GW +Ls aa aa aa -Hm +Lz aa aa aa @@ -43213,15 +43159,15 @@ aa aa aa aa -zV -Az -Az -Az -Az -BQ -BQ -LB -zV +ED +Fi +Fi +Fi +Fi +GB +GB +Hl +ED aa aa aa @@ -43242,12 +43188,12 @@ aa aa aa aa -FK -FO -FR -FR -FN -FN +KK +KN +KQ +KQ +KH +KH aa aa aa @@ -43470,15 +43416,15 @@ aa aa aa aa -zV -AA -Az -Az -Az -Az -Co -Cz -zV +ED +Fj +Fi +Fi +Fi +Fi +GZ +Hm +ED aa aa aa @@ -43499,11 +43445,11 @@ aa aa aa aa -FN -FN -FN -FN -FN +KH +KH +KH +KH +KH aa aa aa @@ -43727,15 +43673,15 @@ aa aa aa aa -zV -Az -Az -Bp -Az -Az -Co -Cz -zV +ED +Fi +Fi +FZ +Fi +Fi +GZ +Hm +ED aa aa aa @@ -43984,15 +43930,15 @@ aa aa aa aa -zV -Lz -AS -Az -BI -Az -Co -Cz -zV +ED +Fk +FC +Fi +Gt +Fi +GZ +Hm +ED aa aa aa @@ -44241,15 +44187,15 @@ aa aa aa aa -zV -Az -Az -Bq -Az -Az -Cp -Cz -zV +ED +Fi +Fi +Ga +Fi +Fi +Ha +Hm +ED aa aa aa @@ -44498,15 +44444,15 @@ aa aa aa aa -zV -AB -Az -AA -Az -Az -Co -Cz -zV +ED +Fl +Fi +Fj +Fi +Fi +GZ +Hm +ED aa aa aa @@ -44755,15 +44701,15 @@ aa aa aa aa -zV -zV -zV -zV -zV -zV -zV -zV -zV +ED +ED +ED +ED +ED +ED +ED +ED +ED aa aa aa @@ -45444,7 +45390,7 @@ aa aa aa aa -hM +hH aa aa aa @@ -48586,12 +48532,12 @@ aa aa aa aa -nf -nf -mU -mV -nf -nf +oe +oe +nT +nU +oe +oe aa aa aa @@ -48843,15 +48789,15 @@ aa aa aa aa -nf -pF -qu -rq -sf -nf +oe +rk +sq +to +uj +oe aa aa -uz +xb aa aa aa @@ -49100,18 +49046,18 @@ aa aa aa aa -lJ -pG -qv -rr -sg -lJ +mD +rl +sr +tp +uk +mD aa -nf -uA -nf +oe +xc +oe aa -lJ +mD aa aa aa @@ -49357,18 +49303,18 @@ aa aa aa aa -nf -pH -qw -rs -sh -lJ -tn -nf -uB -nf -vr -lJ +oe +rm +ss +tq +ul +mD +vA +oe +xd +oe +yn +mD aa aa aa @@ -49614,18 +49560,18 @@ aa aa aa aa -nf -pI -qx -rt -si -mU -to -nf -uA -nf -to -lJ +oe +rn +st +tr +um +nT +vB +oe +xc +oe +vB +mD aa aa aa @@ -49871,18 +49817,18 @@ aa aa aa aa -mV -pJ -qy -ru -sj -mV -tp -tW -uC -tW -vs -mV +nU +ro +su +ts +un +nU +vC +wr +xe +wr +yo +nU aa aa aa @@ -50128,18 +50074,18 @@ aa aa aa aa -nf -pK -qy -ru -qA -sG -tq -tX -uD -tX -vt -nf +oe +rp +su +ts +sw +uO +vD +ws +xf +ws +yp +oe aa aa aa @@ -50385,18 +50331,18 @@ aa aa aa aa -lJ -pL -qz -rv -sk -lJ -tr -tY -uE -tY -vu -lJ +mD +rq +sv +tt +uo +mD +vE +wt +xg +wt +yq +mD aa aa aa @@ -50642,25 +50588,25 @@ aa aa aa aa -lJ -lJ -lJ -rw -lJ -lJ -lJ -tZ -uF -tZ -lJ -lJ -nf -nf -mV -nf -nf -lJ -lJ +mD +mD +mD +tu +mD +mD +mD +wu +xh +wu +mD +mD +oe +oe +nU +oe +oe +mD +mD aa aa aa @@ -50893,31 +50839,31 @@ aa aa aa aa -lJ -nf -nf -lJ -nf -nf -lJ -pM -qA -rx -qA -sH -lJ -ua -ua -ua -lJ -vQ -wm -nD -vU -xx -xT -yd -lJ +mD +oe +oe +mD +oe +oe +mD +rr +sw +tv +sw +uP +mD +wv +wv +wv +mD +yY +zz +oA +zc +Bu +BZ +Cq +mD aa aa aa @@ -51150,31 +51096,31 @@ aa aa aa aa -lJ -ng -nD -nU -on -oK -lJ -pN -qA -ry -qA -sI -lJ -tZ -uF -tZ -lJ -vR -od -od -od -od -od -ye -lJ +mD +of +oA +oX +pH +qb +mD +rs +sw +tw +sw +uQ +mD +wu +xh +wu +mD +yZ +pg +pg +pg +pg +pg +Cr +mD aa aa aa @@ -51407,31 +51353,31 @@ aa aa aa aa -lJ -nh -nE -nV -nE -oL -lJ -lJ -lJ -lJ -lJ -pt -lJ -ub -uG -ue -pt -vS -od -wD -xc -xy -od -yf -pt +mD +og +oB +oY +oB +qc +mD +mD +mD +mD +mD +qR +mD +ww +xi +wz +qR +za +pg +Ab +AJ +Bv +pg +Cs +qR aa aa aa @@ -51664,31 +51610,31 @@ aa aa aa aa -lJ -ni -nF -nW -nE -oM -mV -pO -qB -rz -sl -sJ -lJ -qw -uH +mD +oh +oC +oZ +oB +qd +nU rt -mV -vT -od -wE -xd -xz -od -yg -mU +sx +tx +up +uR +mD +ss +xj +tr +nU +zb +pg +Ac +AK +Bw +pg +Ct +nT aa aa aa @@ -51921,31 +51867,31 @@ aa aa aa aa -lJ -nj -nG -nX -oo -nI -ps -oQ -qC -rA -sm -sK -lJ -qw -tX -rt -pU -vU -wn -ry -wn -ry -wn -yh -mV +mD +oi +oD +pa +pI +oF +qQ +qh +sy +ty +uq +uS +mD +ss +ws +tr +rz +zc +zA +tw +zA +tw +zA +Cu +nU aa aa aa @@ -52175,34 +52121,34 @@ aa aa aa aa -lJ -mi -mB -lJ -nk -nH -nY -op -oN -lJ -pP -op -nE -nE -sL -mU -uc -tX -uf -vv -qA -ry -wF -xe -xA -ry -yi -lJ +mD +ni +nA +mD +oj +oE +pb +pJ +qe +mD +ru +pJ +oB +oB +uT +nT +wx +ws +wB +yr +sw +tw +Ad +AL +Bx +tw +Cv +mD aa aa aa @@ -52359,49 +52305,49 @@ aa aa aa aa -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ aa aa aa @@ -52432,34 +52378,34 @@ aa aa aa aa -lK -mj -mC -mT -nl -nI -nI -oq -oO -mV -pQ -qD -rB -sn -sM -ts -ud -tX -KP -mU -qA -wo -wG -xf -xB -xU -yj -lJ +mE +nj +nB +nS +ok +oF +oF +pK +qf +nU +rv +sz +tz +ur +uU +vF +wy +ws +xQ +nT +sw +zB +Ae +AM +By +Ca +Cw +mD aa aa aa @@ -52475,20 +52421,20 @@ aa aa aa aa -zH -zH -zH -zH -DJ -DJ -DJ -DJ -DJ -DJ -DJ -DJ -DJ -DJ +Ep +Ep +Ep +Ep +Iv +Iv +Iv +Iv +Iv +Iv +Iv +Iv +Iv +Iv aa aa aa @@ -52616,49 +52562,49 @@ aa aa aa aa -ge -gf -gl -gl -gl -gl -gl -gl -gl -gl -gl -gA -hg -gp -gp -gp -gp -gp -ge -gp -gp -gp -gp -gp -ge -gp -gp -gp -gp -gp -hg -gf -gl -gl -gl -gl -gl -gl -gl -gl -gl -gA -ge +fZ +ga +gg +gg +gg +gg +gg +gg +gg +gg +gg +gv +hb +gk +gk +gk +gk +gk +fZ +gk +gk +gk +gk +gk +fZ +gk +gk +gk +gk +gk +hb +ga +gg +gg +gg +gg +gg +gg +gg +gg +gg +gv +fZ aa aa aa @@ -52689,34 +52635,34 @@ aa aa aa aa -lJ -mk mD -lJ -nm -nJ -nZ -nL -oP -lK -pR -qE -rC -nE -sN -pU -ue -tX -vf -vv -qA -wp -wH -xg -xC -xV -yk -lJ +nk +nC +mD +ol +oG +pc +oI +qg +mE +rw +sA +tA +oB +uV +rz +wz +ws +xR +yr +sw +zC +Af +AN +Bz +Cb +Cx +mD aa aa aa @@ -52732,20 +52678,20 @@ aa aa aa aa -zH -zY -zZ -zN -Lo -Ef -Er -Ee -Ef -Lo -Ef -Er -Ee -DJ +Ep +EG +EH +Ev +Iw +IR +Jd +Jn +IR +Iw +IR +Jd +Jn +Iv aa aa aa @@ -52873,49 +52819,49 @@ aa aa aa aa -ge -gg -gm -gm -gm -gm -gm -gm -gm -gm -gm -gB -ge -gp -gq -gq -gq -gp -go -gp -gp -gp -gp -gp -go -gp -gq -gq -gq -gp -ge -gg -gm -gm -gm -gm -gm -gm -gm -gm -gm -gB -ge +fZ +gb +gh +gh +gh +gh +gh +gh +gh +gh +gh +gw +fZ +gk +gl +gl +gl +gk +gj +gk +gk +gk +gk +gk +gj +gk +gl +gl +gl +gk +fZ +gb +gh +gh +gh +gh +gh +gh +gh +gh +gh +gw +fZ aa aa aa @@ -52946,63 +52892,63 @@ aa aa aa aa -lJ -lJ -lJ -mU -nn -nK -oa -or -oQ -ps -pS -qF -rD -so -sO -lJ -qy -tX -ru -pU -vV -wo -wI -xh -xD -xU -yl -lJ +mD +mD +mD +nT +om +oH +pd +pL +qh +qQ +rx +sB +tB +us +uW +mD +su +ws +ts +rz +zd +zB +Ag +AO +BA +Ca +Cy +mD aa aa aa aa aa -zH -zH -zH -zH -zH -zH -zH -zH -zH -zH -zH -zN -zN -zH -DJ -DJ -Ef -Ef -DJ -DJ -DJ -Ef -Ef -DJ +Ep +Ep +Ep +Ep +Ep +Ep +Ep +Ep +Ep +Ep +Ep +Ev +Ev +Ep +Iv +Iv +IR +IR +Iv +Iv +Iv +IR +IR +Iv aa aa aa @@ -53130,49 +53076,49 @@ aa aa aa aa -ge -gg -gm -gy -gm -gy -gm -gy -gm -gy -gm -gB -ge -gp -gq -gp -gp -gp -go -gp -gp -hH -gp -gp -go -gp -gp -gp -gq -gp -ge -gg -gm -gy -gm -gy -gm -gy -gm -gy -gm -gB -ge +fZ +gb +gh +gt +gh +gt +gh +gt +gh +gt +gh +gw +fZ +gk +gl +gk +gk +gk +gj +gk +gk +hC +gk +gk +gj +gk +gk +gk +gl +gk +fZ +gb +gh +gt +gh +gt +gh +gt +gh +gt +gh +gw +fZ aa aa aa @@ -53206,60 +53152,60 @@ aa aa aa aa -mV -no -nL -ob -os -oR -lJ -pT -qG -rE -nE -sP -lJ -qy -tX -ru -lJ -vU +nU +on +oI +pe +pM +qi +mD ry -wJ -xi -wJ -ry -ym -lJ +sC +tC +oB +uX +mD +su +ws +ts +mD +zc +tw +Ah +AP +Ah +tw +Cz +mD aa aa aa aa aa -zH -AC -AT -Br -zH -BR -Cq -CA -CO -CW -zH -Dl -Dt -BK -DL -Eg -Es -EB -Eg -DL -Eg -EO -EO -DJ +Ep +Fm +FD +Gb +Ep +GC +Hb +Hn +HA +HI +Ep +HZ +Ih +Gv +Ix +IS +Je +Jo +IS +Ix +IS +JG +JG +Iv aa aa aa @@ -53387,49 +53333,49 @@ aa aa aa aa -ge -gg -gm -gy -gm -gy -gm -gy -gm -gy -gm -gB -ge -gp -gq -gp -gp -gp -go -gp -hH -hI -hH -gp -go -gp -gp -gp -gq -gp -ge -gg -gm -gy -gm -gy -gm -gy -gm -gy -gm -gB -ge +fZ +gb +gh +gt +gh +gt +gh +gt +gh +gt +gh +gw +fZ +gk +gl +gk +gk +gk +gj +gk +hC +hD +hC +gk +gj +gk +gk +gk +gl +gk +fZ +gb +gh +gt +gh +gt +gh +gt +gh +gt +gh +gw +fZ aa aa aa @@ -53451,7 +53397,7 @@ aa aa aa aa -jD +jC aa aa aa @@ -53463,62 +53409,62 @@ aa aa aa aa -lJ -lK -nM -lJ -lJ -lJ -lJ -pU -qH -lJ -mV -lJ -lJ -qy -tX -ru -pt -on -wn -ry -wn -ry -wn -yn -lJ +mD +mE +oJ +mD +mD +mD +mD +rz +sD +mD +nU +mD +mD +su +ws +ts +qR +pH +zA +tw +zA +tw +zA +CA +mD aa aa aa aa aa -zH -AD -AU -Bs -BJ -Bs -Bs -Bs -Bs -Bs -Dg -AY -Bb -BK -DL -Eg -Et -EC -Eg -DL -Eg -EO -EO -DJ -Fj -DJ +Ep +Fn +FE +Gc +Gu +Gc +Gc +Gc +Gc +Gc +HS +FI +FL +Gv +Ix +IS +Jf +Jp +IS +Ix +IS +JG +JG +Iv +Kg +Iv aa aa aa @@ -53644,49 +53590,49 @@ aa aa aa aa -ge -gg -gm -gy -gm -gy -gm -gy -gm -gy -gm -gB -ge -gp -gq -gp -gp -gp -go -gp -gp -hH -gp -gp -go -gp -gp -gp -gq -gp -ge -gg -gm -gy -gm -gy -gm -gy -gm -gy -gm -gB -ge +fZ +gb +gh +gt +gh +gt +gh +gt +gh +gt +gh +gw +fZ +gk +gl +gk +gk +gk +gj +gk +gk +hC +gk +gk +gj +gk +gk +gk +gl +gk +fZ +gb +gh +gt +gh +gt +gh +gt +gh +gt +gh +gw +fZ aa aa aa @@ -53704,78 +53650,78 @@ aa aa aa aa -iZ -jl -js -iZ -js -jJ -iZ +iX +jk +jr +iX +jr +jI +iX aa aa aa aa -iZ -iZ -lL -jF -iK -lJ -np -nL -oc -ot -oS -mV -pM -qI -rF -lJ -sQ -nf -qy -tX -ru -lJ -mU -pU -wK -wK -wK -pU -mV -lJ +iX +iX +mF +jE +iF +mD +oo +oI +pf +pN +qj +nU +rr +sE +tD +mD +uY +oe +su +ws +ts +mD +nT +rz +Ai +Ai +Ai +rz +nU +mD aa aa aa aa aa -zH -AE -AV -Bt -zH -BS -BS -BS -BS -BS -zH -AX -Bu -zH -DJ -DJ -DJ -DJ -DJ -DJ -DJ -EO -EO -EO -EO -DJ +Ep +Fo +FF +Gd +Ep +GD +GD +GD +GD +GD +Ep +FH +Ge +Ep +Iv +Iv +Iv +Iv +Iv +Iv +Iv +JG +JG +JG +JG +Iv aa aa aa @@ -53901,49 +53847,49 @@ aa aa aa aa -ge -gg -gm -gm -gm -gm -gm -gm -gm -gm -gm -gB -ge -gp -gq -gq -gq -gp -go -gp -gp -gp -gp -gp -go -gp -gq -gq -gq -gp -ge -gg -gm -gm -gm -gm -gm -gm -gm -gm -gm -gB -ge +fZ +gb +gh +gh +gh +gh +gh +gh +gh +gh +gh +gw +fZ +gk +gl +gl +gl +gk +gj +gk +gk +gk +gk +gk +gj +gk +gl +gl +gl +gk +fZ +gb +gh +gh +gh +gh +gh +gh +gh +gh +gh +gw +fZ aa aa aa @@ -53961,78 +53907,78 @@ aa aa aa aa -jd -jm -jt -iZ -jt -jK -jd +jb +jl +js +iX +js +jJ +jb aa aa aa aa -iZ -lo -lM -ml -mE -lJ -nq -nN -od -od -oT -pt -pV -qJ -rG -mV -sR -nf -qy -tX -ru -lJ -vW -wq -qA -qA -qA -wq -yo -lJ +iX +mb +mG +nl +nD +mD +op +oK +pg +pg +qk +qR +rA +sF +tE +nU +uZ +oe +su +ws +ts +mD +ze +zD +sw +sw +sw +zD +CB +mD aa aa aa aa -zH -zH -zH -zH -zH -zH -zH -zH -zH -zH -zH -zH -AY -Bb -zH -DM -DM -DM -DM -DM -DM -DJ -EO -Ls -EO -EO -DJ +Ep +Ep +Ep +Ep +Ep +Ep +Ep +Ep +Ep +Ep +Ep +Ep +FI +FL +Ep +Iy +Iy +Iy +Iy +Iy +Iy +Iv +JG +JO +JG +JG +Iv aa aa aa @@ -54158,49 +54104,49 @@ aa aa aa aa -ge -gh -gn -gn -gn -gn -gn -gn -gn -gn -gn -gC -hg -gp -gp -gp -gp -gp -ge -gp -gp -gp -gp -gp -ge -gp -gp -gp -gp -gp -hg -gh -gn -gn -gn -gn -gn -gn -gn -gn -gn -gC -ge +fZ +gc +gi +gi +gi +gi +gi +gi +gi +gi +gi +gx +hb +gk +gk +gk +gk +gk +fZ +gk +gk +gk +gk +gk +fZ +gk +gk +gk +gk +gk +hb +gc +gi +gi +gi +gi +gi +gi +gi +gi +gi +gx +fZ aa aa aa @@ -54215,81 +54161,81 @@ aa aa aa aa -iK -iQ -iZ -iZ -jn -js -iZ -js -jL -iZ -iZ -iZ -iZ -iQ -iK -lp -lN -mm -mF -lJ -nr -nO +iF +iN +iX +iX +jm +jr +iX +jr +jK +iX +iX +iX +iX +iN +iF +mc +mH +nm +nE +mD +oq +oL +ph +pO +ql +nT +rB +sG +tF +mD +uY oe -ou -oU -mU -pW -qK -rH -lJ -sQ -nf -qy -uD -ru -lJ -vX -qA -ry -ry -ry -qA -yp -lJ +su +xf +ts +mD +zf +sw +tw +tw +tw +sw +CC +mD aa aa aa aa -zH -zW -zH -AW -Bd -BK -Aj -Cr -AF -Cr -AF -Lm -Dm -Bu -zH -DN -DN -DN -DN -DN -DN -DJ -DJ -DJ -Fb -Fb -DJ +Ep +EE +Ep +FG +FN +Gv +ER +Hc +Fp +Hc +Fp +HT +Ia +Ge +Ep +Iz +Iz +Iz +Iz +Iz +Iz +Iv +Iv +Iv +JX +JX +Iv aa aa aa @@ -54415,49 +54361,49 @@ aa aa aa aa -ge -ge -go -go -go -ge -ge -ge -go -go -go -ge -ge -ge -hg -hg -hg -ge -ge -ge -ge -ge -ge -ge -ge -ge -hg -hg -hg -ge -ge -ge -go -go -go -ge -ge -ge -go -go -go -ge -ge +fZ +fZ +gj +gj +gj +fZ +fZ +fZ +gj +gj +gj +fZ +fZ +fZ +hb +hb +hb +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +hb +hb +hb +fZ +fZ +fZ +gj +gj +gj +fZ +fZ +fZ +gj +gj +gj +fZ +fZ aa aa aa @@ -54472,83 +54418,83 @@ aa aa aa aa -iK +iF +iO +iO +jc +jn +iP +jy +jD +jL +jO +jO +jO +iO +iO +iX +md iR -iR -je -jo -iS -jz -jE -jM -jP -jP -jP -iR -iR -iZ -lq -iT -mn -mG -lJ -mU -mV -lJ -lJ -lJ -lJ -lJ -qL -pU -lJ -nf -pt -KL -tX -ru -lJ -vY -qA -wM -xj -xE -qA -yq -lJ +nn +nF +mD +nT +nU +mD +mD +mD +mD +mD +sH +rz +mD +oe +qR +wA +ws +ts +mD +zg +sw +Aj +AQ +BB +sw +CD +mD aa aa aa aa -zI -zX -zI -AX -Bu -BK -BT -AM -AG -AM -AG -AM -AG -Bc -zH -DO -Eh -Eh -Eh -Eh -EG -EM -EP -DJ -EO -EO -DJ -DJ -DJ +Eq +EF +Eq +FH +Ge +Gv +GE +Fw +Fq +Fw +Fq +Fw +Fq +FM +Ep +IA +IT +IT +IT +IT +Ju +JD +JH +Iv +JG +JG +Iv +Iv +Iv aa aa aa @@ -54672,49 +54618,49 @@ aa aa aa aa -ge -gf -gl -gl -gl -gA -ge -gf -gl -gl -gl -gA -ge -gf -gl -gl -gl -gA -ge -gp -gp -gp -gp -gp -ge -gf -gl -gl -gl -gA -ge -gf -gl -gl -gl -gA -ge -gf -gl -gl -gl -gA -ge +fZ +ga +gg +gg +gg +gv +fZ +ga +gg +gg +gg +gv +fZ +ga +gg +gg +gg +gv +fZ +gk +gk +gk +gk +gk +fZ +ga +gg +gg +gg +gv +fZ +ga +gg +gg +gg +gv +fZ +ga +gg +gg +gg +gv +fZ aa aa aa @@ -54729,83 +54675,83 @@ aa aa aa aa -iK -iS -iS -jf -jp -ju -ju -ju -jN -jQ -jY -jY -jE -jE -iZ -lr -lO -kJ -mH -lL -ns -nP -of -ov -oV -mV -pX -qM -rI -lJ -sS -nf -qy -tX -ru -lJ -vZ -qA -wN -xk -xF -qA -yr -lJ +iF +iP +iP +jd +jo +jt +jt +jt +jM +jP +kj +kj +jD +jD +iX +me +mI +lo +nG +mF +or +oM +pi +pP +qm +nU +rC +sI +tG +mD +va +oe +su +ws +ts +mD +zh +sw +Ak +AR +BC +sw +CE +mD aa aa aa aa -zH -zN -zH -AY -Lk -zH -zH -Ba -zH -zH -Ac -BL -Ac -zH -zH -DP -Ei -Ej -Ej -Ei -EH -EM -EP -DJ -EO -EO -Ef -FD -DJ +Ep +Ev +Ep +FI +Gf +Ep +Ep +FK +Ep +Ep +EK +Gw +EK +Ep +Ep +IB +IU +IV +IV +IU +Jv +JD +JH +Iv +JG +JG +IR +KA +Iv aa aa aa @@ -54929,49 +54875,49 @@ aa aa aa aa -ge -gg -gp -gp -gp -gB -go -gg -gp -gp -gp -gB -go -gg -gp -gq -gp -gB -ge -gp -gm -gm -gm -gp -ge -gg -gm -gq -gm -gB -go -gg -gm -gm -gm -gB -go -gg -gm -gm -gm -gB -ge +fZ +gb +gk +gk +gk +gw +gj +gb +gk +gk +gk +gw +gj +gb +gk +gl +gk +gw +fZ +gk +gh +gh +gh +gk +fZ +gb +gh +gl +gh +gw +gj +gb +gh +gh +gh +gw +gj +gb +gh +gh +gh +gw +fZ aa aa aa @@ -54986,83 +54932,83 @@ aa aa aa aa -iK -JY -ja -ja -ja -ja -ja -ja -ja -ja -ja -ja -ja -Kd +iF iQ -ls -iT -kJ -mI -jF -lt -lv -og -mm -oV -pt -pY -qN -rJ -lJ -sT -nf -qy -uI -ru -lJ -wa -qA -ry -ry -ry -qA -ys -mU +iY +iY +iY +iY +iY +iY +iY +iY +iY +iY +iY +ln +iN +mf +iR +lo +nH +jE +mg +mi +pj +nm +qm +qR +rD +sJ +tH +mD +vb +oe +su +xk +ts +mD +zi +sw +tw +tw +tw +sw +CF +nT aa aa aa aa -zH -zY -zN -AX -Bu -zH -BU -Cb -CB -CP -CX -Dh -Dn -Du -zH -DP -Ej -Eu -Ej -Ej -EH -EM -EP -DJ -EO -EO -Ef -Lu -DJ +Ep +EG +Ev +FH +Ge +Ep +GF +GM +Ho +HB +HJ +HU +Ib +Ii +Ep +IB +IV +Jg +IV +IV +Jv +JD +JH +Iv +JG +JG +IR +KB +Iv aa aa aa @@ -55186,49 +55132,49 @@ aa aa aa aa -ge -gg -gq -gq -gq -gB -go -gg -gq -gq -gq -gB -go -gg -gq -gq -gq -gB -ge -gp -ge -gq -ge -gp -ge -gg -gq -gq -gq -gB -go -gg -gq -gq -gq -gB -go -gg -gq -gq -gq -gB -ge +fZ +gb +gl +gl +gl +gw +gj +gb +gl +gl +gl +gw +gj +gb +gl +gl +gl +gw +fZ +gk +fZ +gl +fZ +gk +fZ +gb +gl +gl +gl +gw +gj +gb +gl +gl +gl +gw +gj +gb +gl +gl +gl +gw +fZ aa aa aa @@ -55243,83 +55189,83 @@ aa aa aa aa -iL -iT -ja -jg +iG iR -ja -iR -ja -iR -ja -iR -kn -ja -kJ -lb -lt -iT -kJ -lt -lb -lt -iT -ja -kJ -lt -mU -pZ -qA -rK +iY +je +iO +iY +iO +iY +iO +iY +iO +kw +iY +lo lJ -sS -nf -uf -uG -vg -lJ -wb -wr -wO -xl -xG -wr -yt +mg +iR +lo +mg lJ +mg +iR +iY +lo +mg +nT +rE +sw +tI +mD +va +oe +wB +xi +xS +mD +zj +zE +Al +AS +BD +zE +CG +mD aa aa aa aa -zH -zZ -zN -AY -Bb -Ac -BV -Bs -Cs -Bs -Cs -Bs -Cs -Dv -zH -DP -Ei -Ej -Ej -Ei +Ep EH -EM -EP -DJ -EO -EO -Ef -FD -DJ +Ev +FI +FL +EK +GG +Gc +Hd +Gc +Hd +Gc +Hd +Ij +Ep +IB +IU +IV +IV +IU +Jv +JD +JH +Iv +JG +JG +IR +KA +Iv aa aa aa @@ -55443,49 +55389,49 @@ aa aa aa aa -ge -gg -gp -gq -gp -gB -go -gg -gp -gq -gp -gB -go -gg -gp -gq -gp -gB -ge -gp -gm -gm -gm -gp -ge -gg -gm -gq -gm -gB -go -gg -gm -gq -gm -gB -go -gg -gm -gq -gm -gB -ge +fZ +gb +gk +gl +gk +gw +gj +gb +gk +gl +gk +gw +gj +gb +gk +gl +gk +gw +fZ +gk +gh +gh +gh +gk +fZ +gb +gh +gl +gh +gw +gj +gb +gh +gl +gh +gw +gj +gb +gh +gl +gh +gw +fZ aa aa aa @@ -55500,83 +55446,83 @@ aa aa aa aa -iL -iT -ja -jg -jq -ja -jq -ja -jq -ja -jq -kn -ja -kJ -iK -lu -lP -kL +iG +iR +iY +je +jp +iY +jp +iY +jp +iY +jp +kw +iY +lo +iF +mh mJ -iK -nt -iT -ja -kJ -oW -lJ -lJ -lJ -lJ -lJ -lJ -lJ -tZ -uF -tZ -lJ -mU -pU -lJ -lJ -lJ -pU -mV -lJ -yN -it -it -it -zH -zN -zH -AX -Bu -zH -BW -Cs -Bs -CQ -Bs -Cs -Bs -Dw -zH -DQ -Ek -Ek -Ek -Ek -EI -EM -EP -DJ -Fc -Fc -DJ -DJ -DJ +lq +nI +iF +os +iR +iY +lo +qn +mD +mD +mD +mD +mD +mD +mD +wu +xh +wu +mD +nT +rz +mD +mD +mD +rz +nU +mD +Dq +io +io +io +Ep +Ev +Ep +FH +Ge +Ep +GH +Hd +Gc +HC +Gc +Hd +Gc +Ik +Ep +IC +IW +IW +IW +IW +Jw +JD +JH +Iv +JY +JY +Iv +Iv +Iv aa aa aa @@ -55700,49 +55646,49 @@ aa aa aa aa -ge -gh -gn -gn -gn -gC -ge -gh -gn -gn -gn -gC -ge -gh -gn -gn -gn -gC -ge -gp -gp -gp -gp -gp -ge -gh -gn -gn -gn -gC -ge -gh -gn -gn -gn -gC -ge -gh -gn -gn -gn -gC -ge +fZ +gc +gi +gi +gi +gx +fZ +gc +gi +gi +gi +gx +fZ +gc +gi +gi +gi +gx +fZ +gk +gk +gk +gk +gk +fZ +gc +gi +gi +gi +gx +fZ +gc +gi +gi +gi +gx +fZ +gc +gi +gi +gi +gx +fZ aa aa aa @@ -55757,82 +55703,82 @@ aa aa aa aa -iK -iT -ja -jg -jq -ja -jq -ja -jq -ja -jq -kn -ja -kJ -jF -iK -iK -lb -iK -iQ -nu -lO -ja -mn -oX -iQ -iK -iK -pw -lW -it -tt -tt -tt -tt -tt -it -pw -lW -it -it -it -pf -iz -qP -iz -lf -iz -zJ -Aa -AF -AZ -Bv -Ac -BX -Bs -CC -BN -CY -Di -Do -zH -zH -DR -DR -DR -DR -DR -DR -DJ -DJ -DJ -DJ -Fk -DJ -DJ +iF +iR +iY +je +jp +iY +jp +iY +jp +iY +jp +kw +iY +lo +jE +iF +iF +lJ +iF +iN +ot +mI +iY +nn +qo +iN +iF +iF +rK +mQ +io +vG +vG +vG +vG +vG +io +rK +mQ +io +io +io +qw +iu +ut +iu +lN +iu +Er +EI +Fp +FJ +Gg +EK +GI +Gc +Hp +Gy +HK +HV +Ic +Ep +Ep +ID +ID +ID +ID +ID +ID +Iv +Iv +Iv +Iv +Kh +Iv +Iv aa aa aa @@ -55957,49 +55903,49 @@ aa aa aa aa -ge -ge -go -go -go -ge -ge -ge -go -go -go -ge -ge -ge -ge -ge -ge -ge -ge -ge -gp -gp -gp -ge -ge -ge -ge -ge -ge -ge -ge -ge -go -go -go -ge -ge -ge -go -go -go -ge -ge +fZ +fZ +gj +gj +gj +fZ +fZ +fZ +gj +gj +gj +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +gk +gk +gk +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +gj +gj +gj +fZ +fZ +fZ +gj +gj +gj +fZ +fZ aa aa aa @@ -56014,82 +55960,82 @@ aa aa aa aa -iL -iT -ja -jg -jq -ja -jq -ja -jq -ja -jq -kn -ja -kK -iK -lv -jY -jY -mm -iK -nv -iT -ja -kJ -nP -iK -qa -iK -iz -iz -it -ir -jc -lx -jc -ir -it -iz -iz -it -lW -it -iz -ir -HU +iG +iR +iY +je +jp +iY +jp +iY +jp +iY +jp +kw +iY +lp +iF +mi +kj +kj +nm +iF +ou +iR +iY +lo +oM +iF +rF +iF iu -iz -it -zK -Ab -AG -AM -Bw -zH -BY -Cs -CD -BM -CZ -Dj -Dj -Dx -DG -DS -El -Ev -Ev -EE -DS -DG -EQ -EU -Fd -Fc +iu +io +im +ja +mk +ja +im +io +iu +iu +io +mQ +io +iu +im +Dr +ip +iu +io +Es +EJ Fq -DJ +Fw +Gh +Ep +GJ +Hd +Hq +Gx +HL +HW +HW +Il +Is +IE +IX +Jh +Jh +Js +IE +Is +JI +JP +JZ +JY +Kn +Iv aa aa aa @@ -56214,49 +56160,49 @@ aa aa aa aa -ge -gf -gl -gl -gl -gA -ge -gf -gl -gl -gl -gA -ge -gp -gp -gp -gp -gp -ge -gp -gp -gp -gp -gp -ge -gp -gp -gp -gp -gp -ge -gf -gl -gl -gl -gA -ge -gf -gl -gl -gl -gA -ge +fZ +ga +gg +gg +gg +gv +fZ +ga +gg +gg +gg +gv +fZ +gk +gk +gk +gk +gk +fZ +gk +gk +gk +gk +gk +fZ +gk +gk +gk +gk +gk +fZ +ga +gg +gg +gg +gv +fZ +ga +gg +gg +gg +gv +fZ aa aa aa @@ -56271,84 +56217,84 @@ aa aa aa aa -iL -iT -ja -ja -ja -ja -ja -ja -ja -ja -ja -ja -ja -kJ -lc -iT -ja -ja -kJ -lc -lt -nQ -jb -kL -oY -iK +iG +iR +iY +iY +iY +iY +iY +iY +iY +iY +iY +iY +iY +lo +lK +iR +iY +iY +lo +lK +mg +oN iZ -iK -rL -rM -lX -tu -rM -uJ -vh -vw -lX -ws -wP -rR -iz -it -qf -yE -lA -za -zo -it -zH -Ac -zH -Ba -zH -zH -zH -zH -zH -zH -Da -Dj -Db -Dy -DH -DH -DH -DH -DH -DH -DH -DH -ER -EV -Fe -Fl -Fr -FF -DJ -DJ +lq +qp +iF +iX +iF +tJ +tK +mR +vH +tK +xl +xT +ys +mR +zF +Am +tP +iu +io +rN +CX +lS +DF +DT +io +Ep +EK +Ep +FK +Ep +Ep +Ep +Ep +Ep +Ep +HM +HW +HN +Im +It +It +It +It +It +It +It +It +JJ +JQ +Ka +Ki +Ko +KC +Iv +Iv aa aa aa @@ -56471,49 +56417,49 @@ aa aa aa aa -ge -gg -gp -gq -gp +fZ +gb +gk +gl +gk +gw gB -gG -gg -gp -gq -gp +gb +gk +gl +gk +gw +gk +gk +gh +fZ +gh +gk +gk +gk +gl +hC +gl +gk +gk +gk +gh +fZ +gh +gk +gk +gb +gh +gl +gh +gw gB -gp -gp -gm -ge -gm -gp -gp -gp -gq -hH -gq -gp -gp -gp -gm -ge -gm -gp -gp -gg -gm -gq -gm -gB -gG -gg -gm -gq -gm -gB -ge +gb +gh +gl +gh +gw +fZ aa aa aa @@ -56528,84 +56474,84 @@ aa aa aa aa -iK -iU -jb -JZ -jr -jv -jv -jb -jO -jR -jO -JZ -jb -kL -iK -lw -JZ -jb -mK -iK -nw -nR -oh -lt -oZ -pu -qb -pu -rM -mq -lX -mq -mp -mq -mq -mq -lX -mq -ws -kT -qP -kT -lk -jB -jB -jB -zp -it -zL -Ad -zN -AG -Bx -zH -BZ -Ce -BZ -zH -Db -Dj -Db -Dy -DI -DT -DT -DT -DT -DT -DT -DI -ER -EV -Fe -Fl -Fs -Ef -FE -DJ +iF +iS +iZ +jf +jq +ju +ju +iZ +jN +jQ +jN +jf +iZ +lq +iF +mj +jf +iZ +nJ +iF +ov +oO +pk +mg +qq +qS +rG +qS +tK +nq +mR +nq +np +nq +nq +nq +mR +nq +zF +kZ +ut +kZ +ly +jA +jA +jA +DU +io +Et +EL +Ev +Fq +Gi +Ep +GK +GP +GK +Ep +HN +HW +HN +Im +Iu +IF +IF +IF +IF +IF +IF +Iu +JJ +JQ +Ka +Ki +Kp +IR +KG +Iv aa aa aa @@ -56728,49 +56674,49 @@ aa aa aa aa -ge -gg -gq -gq -gq +fZ +gb +gl +gl +gl +gw gB -gG -gg -gq -gq -gq +gb +gl +gl +gl +gw +gk +gk +gh +gl +gh +gk +gk +gk +hC +hE +hC +gk +gk +gk +gh +gl +gh +gk +gk +gb +gl +gl +gl +gw gB -gp -gp -gm -gq -gm -gp -gp -gp -hH -hJ -hH -gp -gp -gp -gm -gq -gm -gp -gp -gg -gq -gq -gq -gB -gG -gg -gq -gq -gq -gB -ge +gb +gl +gl +gl +gw +fZ aa aa aa @@ -56785,84 +56731,84 @@ aa aa aa aa -iK -iK -iQ -iK -iK -iK -iK -jF -iK -iK -iK -iK -iQ -iK -iK -iK -iK -mo -iK -iK -iQ -iZ -oi -ow -iZ -iK -iZ -iK -rN -rN -iz -iz -ug -iz -iz -iz -is -rN -rN -it -iz -it -yu -tz -yO -zb -mb -ir -zM -Ae -AH -Bb -By -zH -zN -zN -zN -zH -Dc -Dj -Dp -Dy -DH -DU -DU -DU -DU -DU -DU -DH -ER -EW -Fc -Fl -Ft -Ef -FD -DJ +iF +iF +iN +iF +iF +iF +iF +jE +iF +iF +iF +iF +iN +iF +iF +iF +iF +no +iF +iF +iN +iX +pl +pQ +iX +iF +iX +iF +tL +tL +iu +iu +wC +iu +iu +iu +in +tL +tL +io +iu +io +CH +vM +Ds +DG +mm +im +Eu +EM +Fr +FL +Gj +Ep +Ev +Ev +Ev +Ep +HO +HW +Id +Im +It +IG +IG +IG +IG +IG +IG +It +JJ +JR +JY +Ki +Kq +IR +KA +Iv aa aa aa @@ -56985,49 +56931,49 @@ aa aa aa aa -ge -gg -gp -gq -gp +fZ +gb +gk +gl +gk +gw gB -gG -gg -gp -gq -gp +gb +gk +gl +gk +gw +gk +gk +gh +fZ +gh +gk +gk +gk +gl +hC +gl +gk +gk +gk +gh +fZ +gh +gk +gk +gb +gh +gl +gh +gw gB -gp -gp -gm -ge -gm -gp -gp -gp -gq -hH -gq -gp -gp -gp -gm -ge -gm -gp -gp -gg -gm -gq -gm -gB -gG -gg -gm -gq -gm -gB -ge +gb +gh +gl +gh +gw +fZ aa aa aa @@ -57042,7 +56988,7 @@ aa aa aa aa -it +io aa aa aa @@ -57055,71 +57001,71 @@ aa aa aa aa -it -ld -iz -lQ -mp -mL -Kk -nx -mW -mp -mL -pa -it -Kt -it -rM -mq -iz -tv -iH -uK -vi -vx -iz -mq -vh -iz -pw -it -it -iz -yP -zc -iz -is -zN -Af -zN -Bb -AY -zH -Ca -Ct -CE -zH -Db -Dj -Db -Dy +io +lL +iu +mK +np +nK +nV +ow +oP +np +nK +qr +io +rH +io +tK +nq +iu +vI +iC +xm +xU +yt +iu +nq +xT +iu +rK +io +io +iu +Dt DH -DV -DV -DV -DV -DV -DV -DH -ER -EV -Fe -Fl -Fu -DJ -Ef -DJ +iu +in +Ev +EN +Ev +FL +FI +Ep +GL +He +Hr +Ep +HN +HW +HN +Im +It +IH +IH +IH +IH +IH +IH +It +JJ +JQ +Ka +Ki +Kr +Iv +IR +Iv aa aa aa @@ -57242,49 +57188,49 @@ aa aa aa aa -ge -gh -gn -gn -gn -gC -ge -gh -gn -gn -gn -gC -ge -gp -gp -gp -gp -gp -ge -gp -gp -gp -gp -gp -ge -gp -gp -gp -gp -gp -ge -gh -gn -gn -gn -gC -ge -gh -gn -gn -gn -gC -ge +fZ +gc +gi +gi +gi +gx +fZ +gc +gi +gi +gi +gx +fZ +gk +gk +gk +gk +gk +fZ +gk +gk +gk +gk +gk +fZ +gk +gk +gk +gk +gk +fZ +gc +gi +gi +gi +gx +fZ +gc +gi +gi +gi +gx +fZ aa aa aa @@ -57299,7 +57245,7 @@ aa aa aa aa -it +io aa aa aa @@ -57312,71 +57258,71 @@ aa aa aa aa -it -it -it -lR -mq -mq -mq -mq -mq -mq -mq -pb -is -it -is -rM -mq -it -tw -lk -kr -vj -vy -iz -mq -wQ -is -it -is -yv -yF -ul -mp -nS -iz -zO -zQ -AI -Bc -Bz -zH -zN -zN -zN -zH -Db -Dj -Db -Dy -DH -DV -DV -DV -DV -DV -DV -DH -ER -EV -Fe -Fl -Fg -Ef -FD -DJ +io +io +io +mL +nq +nq +nq +nq +nq +nq +nq +qs +in +io +in +tK +nq +io +vJ +ly +kl +xV +yu +iu +nq +An +in +io +in +CI +CY +wH +np +oQ +iu +Ew +Ey +Fs +FM +Gk +Ep +Ev +Ev +Ev +Ep +HN +HW +HN +Im +It +IH +IH +IH +IH +IH +IH +It +JJ +JQ +Ka +Ki +Kc +IR +KA +Iv aa aa aa @@ -57499,49 +57445,49 @@ aa aa aa aa -ge -ge -go -go -go -ge -ge -ge -go -go -go -ge -ge -ge -ge -ge -ge -ge -ge -ge -gp -gp -gp -ge -ge -ge -ge -ge -ge -ge -ge -ge -go -go -go -ge -ge -ge -go -go -go -ge -ge +fZ +fZ +gj +gj +gj +fZ +fZ +fZ +gj +gj +gj +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +gk +gk +gk +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +gj +gj +gj +fZ +fZ +fZ +gj +gj +gj +fZ +fZ aa aa aa @@ -57556,7 +57502,7 @@ aa aa aa aa -it +io aa aa aa @@ -57569,71 +57515,71 @@ aa aa aa aa -it -le -lx -lS -mq -mq -mq -mq -mq -mq -mq -pb -iz -qc -lx -rM -mq -iz -tx -uh -ks -mO -vz -ir -mq -vh -iz -xH -lx -yw -mq -mq -mq -zq -iz -zP -Ag -Ag -Ag -BA -BL -Cb -Cb -CF -BN -Db -Dj -Db -Dy -DH +io +lM +mk +mM +nq +nq +nq +nq +nq +nq +nq +qs +iu +rI +mk +tK +nq +iu +vK +wD +km +nN +yv +im +nq +xT +iu +BE +mk +CJ +nq +nq +nq DV -DV -Ew -Ew -DV -DV -DH -ER -EW -Fc -Fl -Fv -Ef -FE -DJ +iu +Ex +EO +EO +EO +Gl +Gw +GM +GM +Hs +Gy +HN +HW +HN +Im +It +IH +IH +Ji +Ji +IH +IH +It +JJ +JR +JY +Ki +Ks +IR +KG +Iv aa aa aa @@ -57756,49 +57702,49 @@ aa aa aa aa -ge -gf -gl -gl -gl -gA -ge -gf -gl -gl -gl -gA -ge -ge -ge -gV -ge -ge -ge -gp -gp -gp -gp -gp -ge -ge -ge -gV -ge -ge -ge -gf -gl -gl -gl -gA -ge -gf -gl -gl -gl -gA -ge +fZ +ga +gg +gg +gg +gv +fZ +ga +gg +gg +gg +gv +fZ +fZ +fZ +gQ +fZ +fZ +fZ +gk +gk +gk +gk +gk +fZ +fZ +fZ +gQ +fZ +fZ +fZ +ga +gg +gg +gg +gv +fZ +ga +gg +gg +gg +gv +fZ aa aa aa @@ -57813,7 +57759,7 @@ aa aa aa aa -it +io aa aa aa @@ -57826,71 +57772,71 @@ aa aa aa aa -kM -le -kM -lT -mq -mq -mX -ny -nS -mq -mq -pc -pv -qc -pv -rO -mq -iz -ty -ui -ks -ks -sq -iz -mq -mq -pv -xH -pv -ul -mq -mp -mq -ul -zy -zQ -Ag -AJ -Ag -BB -BM -Cc -Cc -Cc -BM -CZ -Dj -Db -Dy -DH -DV -DV -Ex -ED -DV -DV -DH -ER -EX -Ff -Fl -Fw -FG -Ef -DJ +lr +lM +lr +mN +nq +nq +nW +ox +oQ +nq +nq +qt +qT +rI +qT +tM +nq +iu +vL +wE +km +km +uv +iu +nq +nq +qT +BE +qT +wH +nq +np +nq +wH +Eg +Ey +EO +Ft +EO +Gm +Gx +GN +GN +GN +Gx +HL +HW +HN +Im +It +IH +IH +Jj +Jq +IH +IH +It +JJ +JS +Kb +Ki +Kt +KD +IR +Iv aa aa aa @@ -58013,49 +57959,49 @@ aa aa aa aa -ge -gg -gp -gq -gp -gB -go -gg -gp -gq -gp -gB -ge -ge -ge -gV -ge -ge -ge -gp -gm -gm -gm -gp -ge -ge -ge -gV -ge -ge -ge -gg -gm -gq -gm -gB -go -gg -gm -gq -gm -gB -ge +fZ +gb +gk +gl +gk +gw +gj +gb +gk +gl +gk +gw +fZ +fZ +fZ +gQ +fZ +fZ +fZ +gk +gh +gh +gh +gk +fZ +fZ +fZ +gQ +fZ +fZ +fZ +gb +gh +gl +gh +gw +gj +gb +gh +gl +gh +gw +fZ aa aa aa @@ -58070,7 +58016,7 @@ aa aa aa aa -it +io aa aa aa @@ -58083,71 +58029,71 @@ aa aa aa aa -it -le -iz -lS -mq -mq -mq -mq -mq -mq -mq -pb -lx -qc -iz -rP -mq -iz -tz -uj -ks -mO -vA -ir -mq -uM -lx -xH -iz -yx -mq -mq -mq -zr -iz -zR -Ag -Ag -Ag -BA -BN -Cb -Cb -CF -zH -Db -Dj -Db -Dy -DH -DV -DV -Ew -Ew -DV -DV -DH -ER -EY -Fc -Fl -Fx -Ef -FE -DJ +io +lM +iu +mM +nq +nq +nq +nq +nq +nq +nq +qs +mk +rI +iu +tN +nq +iu +vM +wF +km +nN +yw +im +nq +xo +mk +BE +iu +CK +nq +nq +nq +DW +iu +Ez +EO +EO +EO +Gl +Gy +GM +GM +Hs +Ep +HN +HW +HN +Im +It +IH +IH +Ji +Ji +IH +IH +It +JJ +JT +JY +Ki +Ku +IR +KG +Iv aa aa aa @@ -58270,49 +58216,49 @@ aa aa aa aa -ge -gg -gq -gq -gq -gB -go -gg -gq -gq -gq -gB -gV -gV -gV -gV -gV -gV -ge -gp -ge -gq -ge -gp -ge -gV -gV -gV -gV -gV -gV -gg -gq -gq -gq -gB -go -gg -gq -gq -gq -gB -ge +fZ +gb +gl +gl +gl +gw +gj +gb +gl +gl +gl +gw +gQ +gQ +gQ +gQ +gQ +gQ +fZ +gk +fZ +gl +fZ +gk +fZ +gQ +gQ +gQ +gQ +gQ +gQ +gb +gl +gl +gl +gw +gj +gb +gl +gl +gl +gw +fZ aa aa aa @@ -58327,7 +58273,7 @@ aa aa aa aa -it +io aa aa aa @@ -58340,71 +58286,71 @@ aa aa aa aa -it -it -it -lU -mq -mq -mq -mq -mq -mq -mq -pb -is -it -is -rP -mq -it -tA -lk -kr -vk -vB -iz -mq -wR -is -it -is -yy -yG -ul -mp -mX -iz -zS -zQ -AK -Bd -Bz -zH -zN -zN -zN -zH -Db -Dj -Db -Dy -DH -DV -DV -DV -DV -DV -DV -DH -ER -EV -Fe -Fl -Fg -Ef -FD -DJ +io +io +io +mO +nq +nq +nq +nq +nq +nq +nq +qs +in +io +in +tN +nq +io +vN +ly +kl +xW +yx +iu +nq +Ao +in +io +in +CL +CZ +wH +np +nW +iu +EA +Ey +Fu +FN +Gk +Ep +Ev +Ev +Ev +Ep +HN +HW +HN +Im +It +IH +IH +IH +IH +IH +IH +It +JJ +JQ +Ka +Ki +Kc +IR +KA +Iv aa aa aa @@ -58527,49 +58473,49 @@ aa aa aa aa -ge -gg -gp -gp -gp +fZ +gb +gk +gk +gk +gw +gj +gb +gk +gk +gk +gw +fZ +fZ +fZ +gQ +fZ gB -go -gg -gp -gp -gp +fZ +gk +gh +gh +gh +gk +fZ gB -ge -ge -ge -gV -ge -gG -ge -gp -gm -gm -gm -gp -ge -gG -ge -gV -ge -ge -ge -gg -gm -gm -gm -gB -go -gg -gm -gm -gm -gB -ge +fZ +gQ +fZ +fZ +fZ +gb +gh +gh +gh +gw +gj +gb +gh +gh +gh +gw +fZ aa aa aa @@ -58584,7 +58530,7 @@ aa aa aa aa -it +io aa aa aa @@ -58597,71 +58543,71 @@ aa aa aa aa -it -lf -iz -lV -mr -mM -mY -nz -mY -mM -mr -pd -it -Ku -iz -rP -mq -iz -qf -iH -uL -vl -mS -iz -mq -uM -iz -lW -it -it -iz -yQ -zd -iz -is -zN -Af -zN -Bb -Bf -zH -Cd -Ct -CG -zH -Db -Dj -Db -Dy -DH -DV -DV -DV -DV -DV -DV -DH -ER -EV -Fe -Fl -Fy -DJ -Ef -DJ +io +lN +iu +mP +nr +nL +nX +oy +nX +nL +nr +qu +io +rJ +iu +tN +nq +iu +rN +iC +xn +xX +nw +iu +nq +xo +iu +mQ +io +io +iu +Du +DI +iu +in +Ev +EN +Ev +FL +FP +Ep +GO +He +Ht +Ep +HN +HW +HN +Im +It +IH +IH +IH +IH +IH +IH +It +JJ +JQ +Ka +Ki +Kv +Iv +IR +Iv aa aa aa @@ -58784,49 +58730,49 @@ aa aa aa aa -ge -gh -gn -gn -gn -gC -ge -gh -gn -gn -gn -gC -ge -ge -ge -gV -gG -gG -gG -gp -gp -gp -gp -gp -gG -gG -gG -gV -ge -ge -ge -gh -gn -gn -gn -gC -ge -gh -gn -gn -gn -gC -ge +fZ +gc +gi +gi +gi +gx +fZ +gc +gi +gi +gi +gx +fZ +fZ +fZ +gQ +gB +gB +gB +gk +gk +gk +gk +gk +gB +gB +gB +gQ +fZ +fZ +fZ +gc +gi +gi +gi +gx +fZ +gc +gi +gi +gi +gx +fZ aa aa aa @@ -58838,87 +58784,87 @@ aa aa aa aa -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iz -it -iz -jc -lx -jc -iz -it -iz -it -iz -it -rN -rN -iz -iz -ug -iz -iz -iz -is -rN -rN -it -iz -it -yz -yH -yR -ze -vi -ir -zM -Ah -AH -Bb -BC -zH -zN -zN -zN -zH -Dc -Dj -Dp -Dy -DH -DW -DW -DW -DW -DW -DW -DH -ER -EW -Fc -Fl -Fz -Ef -FE +il +il +il +il +il +il +il +il +il +il +il +il +il +il +il +il +il +il +il +iu +io +iu +ja +mk +ja +iu +io +iu +io +iu +io +tL +tL +iu +iu +wC +iu +iu +iu +in +tL +tL +io +iu +io +CM +Da +Dv DJ +xU +im +Eu +EP +Fr +FL +Gn +Ep +Ev +Ev +Ev +Ep +HO +HW +Id +Im +It +II +II +II +II +II +II +It +JJ +JR +JY +Ki +Kw +IR +KG +Iv aa aa aa @@ -59041,49 +58987,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -ge -gO -gO -gO -ge -ge -ge -ge -gV -ge -gG -ge -ge -gp -gp -gp -ge -ge -gG -ge -gV -ge -ge -ge -ge -ge -gU -ge -ge -ge -ge +fZ +fZ gm gm gm -ge -ge +fZ +fZ +fZ +gJ +gJ +gJ +fZ +fZ +fZ +fZ +gQ +fZ +gB +fZ +fZ +gk +gk +gk +fZ +fZ +gB +fZ +gQ +fZ +fZ +fZ +fZ +fZ +gP +fZ +fZ +fZ +fZ +gh +gh +gh +fZ +fZ aa aa aa @@ -59095,87 +59041,87 @@ aa aa aa aa +il iq -iv -iF -iM -iv -iF -iM -iv -iF -iM -iv -iF -iM -iv -iF -iM -iv -iF +iA +iH iq -lW -it -mN -mN -mN -mN -mN -it -lW -iz -pw -iz -rP -mq -lX -mq -mp -mq -mq -mq -lX -mq -wt -kT -qP -kT -lk -jB -jB -jB -zs -it -zL -Ai -zN -AL -BD -zH -Ce -BZ -Ce -zH -Da -Dj -Db -Dy -DI -DT -DT -DT -DT -DT -DT -DI -ER -EV -Fe -Fl -FA -Ef -FD -DJ +iA +iH +iq +iA +iH +iq +iA +iH +iq +iA +iH +iq +iA +il +mQ +io +nM +nM +nM +nM +nM +io +mQ +iu +rK +iu +tN +nq +mR +nq +np +nq +nq +nq +mR +nq +zG +kZ +ut +kZ +ly +jA +jA +jA +DX +io +Et +EQ +Ev +Fv +Go +Ep +GP +GK +GP +Ep +HM +HW +HN +Im +Iu +IF +IF +IF +IF +IF +IF +Iu +JJ +JQ +Ka +Ki +Kx +IR +KA +Iv aa aa aa @@ -59298,49 +59244,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -gm -gH -gI -gP -gT -gX -hb -ge -ge -ge +fZ +fZ gm gm gm +gh +gC +gD +gK +gO +gS +gW +fZ +fZ +fZ +gh +gh +gh +gh +gh +gh +gh +gh +gh +gh +gh +gh +gh +fZ +fZ +fZ +fZ +fZ +gQ +fZ +fZ +fZ +fZ gm gm gm -gm -gm -gm -gm -gm -gm -gm -ge -ge -ge -ge -ge -gV -ge -ge -ge -ge -gr -gr -gr -ge -ge +fZ +fZ aa aa aa @@ -59352,87 +59298,87 @@ aa aa aa aa -iq -iw -iG -iN -iw -iG -iq -iw -iG -iq -iw -iG -iq -iw -iG -iN -iw -iG -iq -is +il ir -iz -jc -lx -jc -iz -it -it -it -it -it -rQ -rP -lX -tB -rP -uM -uM -vC -lX -wt -wS -xm -iz -it -yA -yI -lA -zf -zt -it -zH -Ac -zH -Ba -zH -zH -zH -zH -zH -zH +iB +iI +ir +iB +il +ir +iB +il +ir +iB +il +ir +iB +iI +ir +iB +il +in +im +iu +ja +mk +ja +iu +io +io +io +io +io +tO +tN +mR +vO +tN +xo +xo +yy +mR +zG +Ap +AT +iu +io +CN Db -Dj -Db -Dy -DH -DH -DH -DH -DH -DH -DH -DH -ER -EV -Fe -Fl -FB -FF -DJ -DJ +lS +ns +DY +io +Ep +EK +Ep +FK +Ep +Ep +Ep +Ep +Ep +Ep +HN +HW +HN +Im +It +It +It +It +It +It +It +It +JJ +JQ +Ka +Ki +Ky +KC +Iv +Iv aa aa aa @@ -59555,49 +59501,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -gm -gH -gJ -gp -gn -gp -hc -gK +fZ +fZ gm gm gm +gh +gC +gE +gk +gi +gk +gX +gF +gh +gh +gh +gh +gh +gh +gh +gh +gh +gh +gh +gh +gh +gh +gh +gh +gh +gB +gB +gB +gQ +fZ +fZ +fZ +fZ gm gm gm -gm -gm -gm -gm -gm -gm -gm -gm -gm -gm -gm -gG -gG -gG -gV -ge -ge -ge -ge -gr -gr -gr -ge -ge +fZ +fZ aa aa aa @@ -59609,85 +59555,85 @@ aa aa aa aa -ir -ix -iH -JW -iV -iV -jh -iV -iV -jA -iV -iV -jS -iV -iV -Kb -kN -iH -kT -lX -Ke -iO -iV -iV -iV -kN -iz -lf -it -it -it -rR -lB -it -ir -jc -lx -jc -ir -it -iz -iz -it -pw -it -iz -ir -iH +im +is +iC +iJ +iT +iT +jg +iT +iT +jz +iT +iT +jR +iT +iT +kS +ls +iC +kZ +mR +kW +iL +iT +iT +iT +ls iu -iz -it -zJ -Aj -AL -AF -BE -zH -Cf -Cu -CH -BM -CZ -Dj -Dj -Dz -DG -DX -Em -Ey -Ey -EF -DX -DG -ES -EU -Fg -Fc -Fq -DJ +lN +io +io +io +tP +lT +io +im +ja +mk +ja +im +io +iu +iu +io +rK +io +iu +im +iC +ip +iu +io +Er +ER +Fv +Fp +Gp +Ep +GQ +Hf +Hu +Gx +HL +HW +HW +In +Is +IJ +IY +Jk +Jk +Jt +IJ +Is +JK +JP +Kc +JY +Kn +Iv aa aa aa @@ -59812,49 +59758,49 @@ aa aa aa aa -ge -ge -gr -gr -gr +fZ +fZ gm -gH -gK +gm +gm +gh +gC +gF +gL +gk +gT +gC +fZ +go +fZ +gh +gh +gh +fZ +fZ +gB +gB +gB +fZ +fZ +gh +gh +gh +fZ +go +fZ +fZ +fZ gQ -gp -gY -gH -ge -gt -ge +fZ +fZ +fZ +fZ gm gm gm -ge -ge -gG -gG -gG -ge -ge -gm -gm -gm -ge -gt -ge -ge -ge -gV -ge -ge -ge -ge -gr -gr -gr -ge -ge +fZ +fZ aa aa aa @@ -59866,85 +59812,85 @@ aa aa aa aa -is -iy -iH -iP -iW -iW -iW -iW -jw -iH +in +it +iC +iK +iU +iU +iU +iU +jv +iC +jF +iU +iU +iU +iU +iU +lt +iC +kZ +mR +iC +iK +iU +iU +jv jG -iW -iW -iW -iW -iW -kO -iH -kT -lX -iH -iP -iW -iW -jw -jH -iz -pe -it -it -pw -iz -qP -it -tC -tC -tC -tC -tC -it -pw -lW -it -it -it -ld -iz -iH -iz -pe -iz -zK -Ak -AM -Be -Bv -Ac -Cg -Cu -CI -BN -Dd -Dd -Do -zH -zH -DY -DY -DY -DY -DY -DY -DJ -DJ -DJ -DJ -Fk -DJ -DJ +iu +qv +io +io +rK +iu +ut +io +vP +vP +vP +vP +vP +io +rK +mQ +io +io +io +lL +iu +iC +iu +qv +iu +Es +ES +Fw +FO +Gg +EK +GR +Hf +Hv +Gy +HP +HP +Ic +Ep +Ep +IK +IK +IK +IK +IK +IK +Iv +Iv +Iv +Iv +Kh +Iv +Iv aa aa aa @@ -60069,49 +60015,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -gK +fZ +fZ gm gm gm -gH -ge -gt -gG -gm -ho -gm -gp +fZ +fZ +gF +gh +gh +gh +gC +fZ go -gp +gB +gh +hj +gh +gk +gj +gk +gj +gk +gj +gk +gh +hj +gh +gB go -gp -go -gp +fZ +fZ +fZ +gQ +fZ +fZ +fZ +fZ gm -ho gm -gG -gt -ge -ge -ge -gV -ge -ge -ge -ge -gr -gr -gr -ge -ge +gm +fZ +fZ aa aa aa @@ -60123,86 +60069,86 @@ aa aa aa aa -it -iz -iz -ir -iz -jc -iz -iz -jx -jB -jH -iz -iz -jc -iz -ir -iz -iz -it -iz -jc -iz -iz -iz -jx -Km -ir -iz -it -it -iz -ir -lB -it -ir -jc -lx -jc -ir -it -iz -iz +io iu -ir -it -it -it -lB -it -it -it -zH -zN -zH -AX -BF -zH -Ch -Cu -Cu -CR -Cu -Cu -Cu -DA -zH -DZ -En -En -En -En -EJ -EN -ET -DJ -Fc -Fc -DJ -DJ -DJ +iu +im +iu +ja +iu +iu +jw +jA +jG +iu +iu +ja +iu +im +iu +iu +io +iu +ja +iu +iu +iu +jw +pm +im +iu +io +io +iu +im +lT +io +im +ja +mk +ja +im +io +iu +iu +ip +im +io +io +io +lT +io +io +io +Ep +Ev +Ep +FH +Gq +Ep +GS +Hf +Hf +HD +Hf +Hf +Hf +Io +Ep +IL +IZ +IZ +IZ +IZ +Jx +JE +JL +Iv +JY +JY +Iv +Iv +Iv aa aa aa @@ -60326,49 +60272,49 @@ aa aa aa aa -ge -ge -gs -gr -gs -ge -ge -gL -gR +fZ +fZ +gn gm -gZ -hd -ge -gt +gn +fZ +fZ gG -gm -ho -gm +gM +gh +gU +gY +fZ go -gp +gB +gh +hj +gh +gj +gk +gj +gk +gj +gk +gj +gh +hj +gh +gB go -gp -go -gp -go -gm -ho -gm -gG -gt -gG +gB +gI gN -gS +gQ gV ha -hf -ge -ge -gs -gr -gs -ge -ge +fZ +fZ +gn +gm +gn +fZ +fZ aa aa aa @@ -60380,86 +60326,86 @@ aa aa aa aa -it -iA -iI -iI -iX -iH -ji -iz -jx -jB -jH -iz -jT -iH -ko -kv -kP -lg -ir -lY -iH -mO -mZ -iz -jx -jH -iz -pe -iz -qd -qO -iH -sp -it -tD -uk -uN -uk -pa -ir -wu -wT -xn -xI -iz -ld -iz -iH -it -pf -ld +io +iv +iD +iD +iV +iC +jh +iu +jw +jA +jG +iu +jS +iC +kx +kT +lu +lO +im +mS +iC +nN +nY +iu +jw +jG +iu +qv +iu +rL +sK +iC +uu +io +vQ +wG +xp +wG +qr +im zH -Al -zN -Bf -Bb -Ac -Ci -Cu -Cu -Cu -Cu -Cu -Cu -DB -zH -Ea -Eo +Aq +AU +BF +iu +lL +iu +iC +io +qw +lL Ep -Ep -Eo -EK -EN ET -DJ -EO -EO -Ef -FD -DJ +Ev +FP +FL +EK +GT +Hf +Hf +Hf +Hf +Hf +Hf +Ip +Ep +IM +Ja +Jb +Jb +Ja +Jy +JE +JL +Iv +JG +JG +IR +KA +Iv aa aa aa @@ -60583,49 +60529,49 @@ aa aa aa aa -ge -ge -gs -gr -gs -ge -ge -gJ -gp +fZ +fZ gn -gp -hc -ge -gt -gG gm -ho -gm -gp +gn +fZ +fZ +gE +gk +gi +gk +gX +fZ go -gp +gB +gh +hj +gh +gk +gj +gk +gj +gk +gj +gk +gh +hj +gh +gB go -gp -go -gp +fZ +fZ +fZ +gQ +fZ +fZ +fZ +fZ +gn gm -ho -gm -gG -gt -ge -ge -ge -gV -ge -ge -ge -ge -gs -gr -gs -ge -ge +gn +fZ +fZ aa aa aa @@ -60637,86 +60583,86 @@ aa aa aa aa +ip +iw +iC +iC +iC +iC +ji +im +jw +jA +jG +im +jT +iC +iC +iC +iC +iC +kZ +ly +jA +km +nZ +im +jw +jG +iu +lN +iu +rM +sK +mX +nw +vc +mO +nq +nq +nq +qs +vc +zI +nq +Ar +BG +iu +qw +iu +jA +io +iu iu -iB -iH -iH -iH -iH -jj -ir -jx -jB -jH -ir -jU -iH -iH -iH -iH -iH -kT -lk -jB -ks -na -ir -jx -jH -iz -lf -iz -qe -qO -mv -mS -sU -lU -mq -mq -mq -pb -sU -wv -mq -wU -xJ -iz -pf -iz -jB -it -iz -iz -zH -Am -zN -AX -BF -zH -Cj -Cb -CJ -CS -De -Dk -Dq -DC -zH -Ea Ep -Ez +EU +Ev +FH +Gq Ep +GU +GM +Hw +HE +HQ +HX +Ie +Iq Ep -EK -EN -ET -DJ -EO -EO -Ef -Lu -DJ +IM +Jb +Jl +Jb +Jb +Jy +JE +JL +Iv +JG +JG +IR +KB +Iv aa aa aa @@ -60840,49 +60786,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -gK +fZ +fZ +gm +gm +gm +fZ +fZ +gF +gL +gk +gT +gC +fZ +go +fZ +gh +hj +gh +fZ +gl +hj +hj +hj +gl +fZ +gh +hj +gh +fZ +go +gB +gB +gB gQ -gp -gY -gH -ge -gt -ge +fZ +fZ +fZ +fZ gm -ho gm -ge -gq -ho -ho -ho -gq -ge gm -ho -gm -ge -gt -gG -gG -gG -gV -ge -ge -ge -ge -gr -gr -gr -ge -ge +fZ +fZ aa aa aa @@ -60894,86 +60840,86 @@ aa aa aa aa -it +io +ix +iE +iE +iW iC -iJ -iJ -iY -iH -ji -iz -jx -jB -jH -iz -jV -iH -kp -kw -kQ -lh -ir -lZ -iH -mO -nb -iz -jx -jH -iz -pe -iz -qf -qO -mb -sq -iz -tE -mq -mq -mq -vD -iz -wv -wU -mq -xK -iz -pe -iz -jB -it -Ld -iH -zH -zN -zH -Bf -Lk -zH -zH -Ba -zH -zH -Ac -zH -Ac -zH -zH -Ea -Eo +jh +iu +jw +jA +jG +iu +jU +iC +ky +kU +lv +lP +im +mT +iC +nN +oa +iu +jw +jG +iu +qv +iu +rN +sK +mm +uv +iu +vR +nq +nq +nq +yz +iu +zI +Ar +nq +BH +iu +qv +iu +jA +io +Dw +iC +Ep +Ev +Ep +FP +Gf +Ep +Ep +FK Ep Ep -Eo EK -EN -ET -DJ -EO -EO -Ef -FD -DJ +Ep +EK +Ep +Ep +IM +Ja +Jb +Jb +Ja +Jy +JE +JL +Iv +JG +JG +IR +KA +Iv aa aa aa @@ -61097,49 +61043,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -gm -gH -gK +fZ +fZ gm gm gm -gH -gq -gt -gq +gh +gC +gF +gh +gh +gh +gC +gl +go +gl +gh +hj +gh +gB +hj +hj +hj +hj +hj +gB +gh +hj +gh +gl +go +fZ +fZ +fZ +gQ +fZ +fZ +fZ +fZ gm -ho gm -gG -ho -ho -ho -ho -ho -gG gm -ho -gm -gq -gt -ge -ge -ge -gV -ge -ge -ge -ge -gr -gr -gr -ge -ge +fZ +fZ aa aa aa @@ -61151,86 +61097,86 @@ aa aa aa aa -it -iz -iz -ir -iz -jc -iz -iz -jx -jB -jH -iz -iz -jc -iz -ir -iz -iz -it -iz -jc -iz -iz -iz -jx -Km -ir -iz -ir -qg -qO -jB -sr -sV -tF -ul -mq -mq -mp -wc -ww -mq -wU -xL -it -iz -it -Ld -kT -jB -jB -zT -zX -zT -AX -BF -BK -Ck -AF -AL -AF -AL -AF -AL -Bd -zH -Eb -Eq -Eq -Eq -Eq -EL -EN -ET -DJ -EO -EO -DJ -DJ -DJ +io +iu +iu +im +iu +ja +iu +iu +jw +jA +jG +iu +iu +ja +iu +im +iu +iu +io +iu +ja +iu +iu +iu +jw +pm +im +iu +im +rO +sK +jA +uw +vd +vS +wH +nq +nq +np +zk +zJ +nq +Ar +BI +io +iu +io +Dw +kZ +jA +jA +EB +EF +EB +FH +Gq +Gv +GV +Fp +Fv +Fp +Fv +Fp +Fv +FN +Ep +IN +Jc +Jc +Jc +Jc +Jz +JE +JL +Iv +JG +JG +Iv +Iv +Iv aa aa aa @@ -61354,49 +61300,49 @@ aa aa aa aa -ge -ge -gr -gr -gr +fZ +fZ gm -gH -gL -gR gm -gZ -hd -gq -gt -gq -gm -ho gm +gh +gC gG -ho -ho -gq -ho -ho -gG -gm -ho -gm -gq -gt -gG +gM +gh +gU +gY +gl +go +gl +gh +hj +gh +gB +hj +hj +gl +hj +hj +gB +gh +hj +gh +gl +go +gB +gI gN -gS +gQ gV ha -hf -ge -ge -gr -gr -gr -ge -ge +fZ +fZ +gm +gm +gm +fZ +fZ aa aa aa @@ -61408,84 +61354,84 @@ aa aa aa aa -is -iD -iH -iO -iV -iV -iV -iV -jy -iH -jI -iV -iV -iV -iV -iV -kN -iH -kT -lX -iH -iO -iV -iV -jy +in +iy +iC +iL +iT +iT +iT +iT +jx +iC jH -iz -pf -iz -qh -qO -rS -ss -iz -tE -mq -mq -mq -vD -iz -ww -wU -mq -xM -iz -lf -iz -jB -it -iH -iH -zH -Lj -zH -Bg -Bc -BK -Ab -Cv -AM -Cv -AM -Ln -Dr -BF -zH -Ec -Ec -Ec -Ec -Ec -Ec -DJ -DJ -DJ -Fb -Fb -DJ +iT +iT +iT +iT +iT +ls +iC +kZ +mR +iC +iL +iT +iT +jx +jG +iu +qw +iu +rP +sK +tQ +ux +iu +vR +nq +nq +nq +yz +iu +zJ +Ar +nq +BJ +iu +lN +iu +jA +io +iC +iC +Ep +EV +Ep +FQ +FM +Gv +EJ +Hg +Fw +Hg +Fw +HY +If +Gq +Ep +IO +IO +IO +IO +IO +IO +Iv +Iv +Iv +JX +JX +Iv aa aa aa @@ -61611,49 +61557,49 @@ aa aa aa aa -ge -ge -gr -gr -gr +fZ +fZ gm -gH -gJ -gp -gn -gp -hc -gq -gt -gq gm -ho gm -gG -ho -ho -ho -ho -ho -gG +gh +gC +gE +gk +gi +gk +gX +gl +go +gl +gh +hj +gh +gB +hj +hj +hj +hj +hj +gB +gh +hj +gh +gl +go +fZ +fZ +fZ +gQ +fZ +fZ +fZ +fZ gm -ho gm -gq -gt -ge -ge -ge -gV -ge -ge -ge -ge -gr -gr -gr -ge -ge +gm +fZ +fZ aa aa aa @@ -61665,84 +61611,84 @@ aa aa aa aa -ir -iE -iH -JX -iW -iW -jk -iW -iW -jC -iW -iW -jW -iW -iW -Kc -kO -iH -kT -lX -zf -iP -iW -iW -iW -kO +im iz -ld -iz -qi -qO +iC +iM +iU +iU +jj +iU +iU jB -sr -sV -tF -ul -mq -mq -mp -wc -ww -mq -wU -xN -iz -ld -iz -jB -it -it -it -zH -zH -zH -zH -zH -zH -zH -zH -zH -zH -zH -zH -Bf -Bb -zH -Ed -Ed -Ed -Ed -Ed -Ed -DJ -EO -Lt -EO -EO -DJ +iU +iU +jV +iU +iU +kV +lt +iC +kZ +mR +ns +iK +iU +iU +iU +lt +iu +lL +iu +rQ +sK +jA +uw +vd +vS +wH +nq +nq +np +zk +zJ +nq +Ar +BK +iu +lL +iu +jA +io +io +io +Ep +Ep +Ep +Ep +Ep +Ep +Ep +Ep +Ep +Ep +Ep +Ep +FP +FL +Ep +IP +IP +IP +IP +IP +IP +Iv +JG +JU +JG +JG +Iv aa aa aa @@ -61868,49 +61814,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -gK +fZ +fZ +gm +gm +gm +fZ +fZ +gF +gL +gk +gT +gC +fZ +go +fZ +gh +hj +gh +fZ +gl +hj +hj +hj +gl +fZ +gh +hj +gh +fZ +go +gB +gB +gB gQ -gp -gY -gH -ge -gt -ge +fZ +fZ +fZ +fZ gm -ho gm -ge -gq -ho -ho -ho -gq -ge gm -ho -gm -ge -gt -gG -gG -gG -gV -ge -ge -ge -ge -gr -gr -gr -ge -ge +fZ +fZ aa aa aa @@ -61922,84 +61868,84 @@ aa aa aa aa -iq -iw -iG -iN -iw -iG -iq -iw -iG -iq -iw -iG -iq -iw -iG -iN -iw -iG -iq -is +il ir -iz -jc -lx -jc -iz -it -it -it -qj -iH -mb -st -iz -tG -um -uO -um -vE -iz -wx -wV -ww -xO -iz -lf -iz -iH -it +iB +iI +ir +iB +il +ir +iB +il +ir +iB +il +ir +iB +iI +ir +iB +il +in +im +iu +ja +mk +ja +iu +io +io +io +rR +iC +mm +uy +iu +vT +wI +xq +wI +yA +iu +zK +As +zJ +BL +iu +lN +iu +iC +io aa aa aa -zH -AN -Bh -Br -zH -BS -BS -BS -BS -BS -zH -AX -BF -zH -DJ -DJ -DJ -DJ -DJ -DJ -DJ -EO -EO -EO -EO -DJ +Ep +Fx +FR +Gb +Ep +GD +GD +GD +GD +GD +Ep +FH +Gq +Ep +Iv +Iv +Iv +Iv +Iv +Iv +Iv +JG +JG +JG +JG +Iv aa aa aa @@ -62125,49 +62071,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -gK +fZ +fZ gm gm gm -gH -ge -gt -gG -gm -ho -gm -gp +fZ +fZ +gF +gh +gh +gh +gC +fZ go -gp +gB +gh +hj +gh +gk +gj +gk +gj +gk +gj +gk +gh +hj +gh +gB go -gp -go -gp +fZ +fZ +fZ +gQ +fZ +fZ +fZ +fZ gm -ho gm -gG -gt -ge -ge -ge -gV -ge -ge -ge -ge -gr -gr -gr -ge -ge +gm +fZ +fZ aa aa aa @@ -62179,84 +62125,84 @@ aa aa aa aa +il iq -iv -iF -iM -iv -iF -iM -iv -iF -iM -iv -iF -iM -iv -iF -iM -iv -iF +iA +iH iq -ms -mP -oj +iA iH -kq +iq +iA iH -ox -it -qk -qk -qk -qQ -LZ -qk -it -ir -jc -lx -jc -ir -it -it -it -lB -it -it -iz -it -lB -it +iq +iA +iH +iq +iA +iH +iq +iA +il +mU +nt +nO +iC +kk +iC +pn +io +qx +qx +qx +sL +tR +qx +io +im +ja +mk +ja +im +io +io +io +lT +io +io +iu +io +lT +io aa aa aa -zH -AO -AU -Bs -BJ -Bs -Bs -Bs -Bs -Bs -Dg -Bf -Bb -BK -DL -Eg -Es -EB -Eg -DL -Eg -EO -EO -DJ -Fj -DJ +Ep +Fy +FE +Gc +Gu +Gc +Gc +Gc +Gc +Gc +HS +FP +FL +Gv +Ix +IS +Je +Jo +IS +Ix +IS +JG +JG +Iv +Kg +Iv aa aa aa @@ -62382,49 +62328,49 @@ aa aa aa aa -ge -ge -gt -gr -gt -ge -ge -gL -gR +fZ +fZ +go gm -gZ -hd -ge -gt +go +fZ +fZ gG -gm -ho -gm +gM +gh +gU +gY +fZ go -gp +gB +gh +hj +gh +gj +gk +gj +gk +gj +gk +gj +gh +hj +gh +gB go -gp -go -gp -go -gm -ho -gm -gG -gt -gG +gB +gI gN -gS +gQ gV ha -hf -ge -ge -gt -gr -gt -ge -ge +fZ +fZ +go +gm +go +fZ +fZ aa aa aa @@ -62436,84 +62382,84 @@ aa aa aa aa -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -kd -ks -ks -ks -ks -ks -oy -is -qk -LX -ql -LY -ql -KG -qk -tH -tH -tH -tH -tH -qk -Ks -ql -LY -Mb -yS -Lc -yC -yS -Mc +il +il +il +il +il +il +il +il +il +il +il +il +il +il +il +il +il +il +il +ka +km +km +km +km +km +po +in +qx +qU +qV +sM +qV +uz +qx +vU +vU +vU +vU +vU +qx +zL +qV +sM +BM +Cc +CO +CQ +Cc +DK aa aa aa -zH -AP -Bi -Bt -zH -Cl -Cw -CK -CT -Df -zH -Ds -DD -BK -DL -Eg -Et -EC -Eg -DL -Eg -EO -EO -DJ -EO -DJ +Ep +Fz +FS +Gd +Ep +GW +Hh +Hx +HF +HR +Ep +Ig +Ir +Gv +Ix +IS +Jf +Jp +IS +Ix +IS +JG +JG +Iv +JG +Iv aa aa aa @@ -62639,49 +62585,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -gJ -gp -gn -gp -hc -ge -gt -gG +fZ +fZ gm -ho gm -gp +gm +fZ +fZ +gE +gk +gi +gk +gX +fZ go -gp +gB +gh +hj +gh +gk +gj +gk +gj +gk +gj +gk +gh +hj +gh +gB go -gp -go -gp +fZ +fZ +fZ +gQ +fZ +fZ +fZ +fZ gm -ho gm -gG -gt -ge -ge -ge -gV -ge -ge -ge -ge -gr -gr -gr -ge -ge +gm +fZ +fZ aa aa aa @@ -62704,73 +62650,73 @@ aa aa aa aa -it -jZ -kq -iH -Ke -iH -ly -it -ke -ks -ks -ks -ks -ks -LJ -it -qk -qk -qk -qQ -qk -qk -qk -qm -rW -sw -rW -qm -qk -qk -qk -qQ -qk -qk -qk -qk -qQ -qk +io +jW +kk +iC +kW +iC +lQ +io +kb +km +km +km +km +km +pp +io +qx +qx +qx +sL +qx +qx +qx +rS +wJ +xr +wJ +rS +qx +qx +qx +sL +qx +qx +qx +qx +sL +qx aa aa aa -zH -zH -zH -zH -zH -zH -zH -zH -zH -zH -zH -zN -zN -zH -DJ -DJ -Ef -Ef -DJ -DJ -DJ -Ef -Ef -DJ -EO -DJ +Ep +Ep +Ep +Ep +Ep +Ep +Ep +Ep +Ep +Ep +Ep +Ev +Ev +Ep +Iv +Iv +IR +IR +Iv +Iv +Iv +IR +IR +Iv +JG +Iv aa aa aa @@ -62896,49 +62842,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -gK +fZ +fZ +gm +gm +gm +fZ +fZ +gF +gL +gk +gT +gC +fZ +go +fZ +gh +gh +gh +fZ +fZ +fZ +fZ +fZ +fZ +fZ +gh +gh +gh +fZ +go +fZ +fZ +fZ gQ -gp -gY -gH -ge -gt -ge +fZ +fZ +fZ +fZ gm gm gm -ge -ge -ge -ge -ge -ge -ge -gm -gm -gm -ge -gt -ge -ge -ge -gV -ge -ge -ge -ge -gr -gr -gr -ge -ge +fZ +fZ aa aa aa @@ -62961,44 +62907,44 @@ aa aa aa aa -it -ka -kr -kx -kR -li -kr -kT -iH -ks -ks -ks -ks -ks -oy -it -xX -xW -qk -qR -rT -su -su -KK -un -uP -un -KK -su -su -rT -xo -qk -xW -qk -yJ -yS -qk +io +jX +kl +kz +kX +lw +kl +kZ +iC +km +km +km +km +km +po +io +qy +qz +qx +sN +tS +uA +uA +vV +wK +xs +wK +vV +uA +uA +tS +AV +qx +qz +qx +Dc +Cc +qx aa aa aa @@ -63012,22 +62958,22 @@ aa aa aa aa -zH -Al -Am -zN -Lp -Ef -EA -DK -Ef -Lp -Ef -EA -DK -DJ -EO -DJ +Ep +ET +EU +Ev +IQ +IR +Jm +Jr +IR +IQ +IR +Jm +Jr +Iv +JG +Iv aa aa aa @@ -63153,49 +63099,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -gK +fZ +fZ gm gm gm -gH -hh -hn +fZ +fZ +gF +gh +gh +gh +gC +hc +hi +hm hr -hw -hD -hD -hD -hD -hD -hD -hD -hD -hD -hD -hD -hN +hy +hy +hy +hy +hy +hy +hy +hy +hy +hy +hy +hI +gh +gh +gB +gB +gB +gQ +fZ +fZ +fZ +fZ gm gm -gG -gG -gG -gV -ge -ge -ge -ge -gr -gr -gr -ge -ge +gm +fZ +fZ aa aa aa @@ -63218,44 +63164,44 @@ aa aa aa aa -it -kb -kr -ky -kS -li -kr -ir -mt -mQ -nc -nA -iH -iH -kk -it -xW -xX -qk -qS -rU -sv -sv -sv -sv -sv -sv -sv -sv -sv -wW -xp -qk -xW -qk -yK -yC -qk +io +jY +kl +kA +kY +lw +kl +im +mV +nu +nP +ob +iC +iC +kh +io +qz +qy +qx +sO +tT +uB +uB +uB +uB +uB +uB +uB +uB +uB +At +AW +qx +qz +qx +Dd +CQ +qx aa aa aa @@ -63269,22 +63215,22 @@ aa aa aa aa -zH -zH -zH -zH -DJ -DJ -DJ -DJ -DJ -DJ -DJ -DJ -DJ -DJ -EO -DJ +Ep +Ep +Ep +Ep +Iv +Iv +Iv +Iv +Iv +Iv +Iv +Iv +Iv +Iv +JG +Iv aa aa aa @@ -63410,49 +63356,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -gL -gR +fZ +fZ gm -gZ +gm +gm +fZ +fZ +gG +gM +gh +gU +gY hd -hi -ho +hj +hn hs -hx -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -hO -ge -ge -ge -ge -ge -gV -ge -ge -ge -ge -gr -gr -gr -ge -ge +gk +gk +gk +gk +gk +gk +gk +gk +gk +gk +gk +hJ +fZ +fZ +fZ +fZ +fZ +gQ +fZ +fZ +fZ +fZ +gm +gm +gm +fZ +fZ aa aa aa @@ -63475,44 +63421,44 @@ aa aa aa aa -it -it -jc -it -it -it -jc -it -it -it -it -is -jc -jc -is -it -Kq -xX -ql -qU -rU -sv -sW -tI -sv -sv -sv -sv -sv -sv -wW -xs -ql -KZ -qk -LW -Le -qk +io +io +ja +io +io +io +ja +io +io +io +io +in +ja +ja +in +io +qA +qy +qV +sP +tT +uB +ve +vW +uB +uB +uB +uB +uB +uB +At +AX +qV +Cd +qx +De +Dx +qx aa aa aa @@ -63539,9 +63485,9 @@ aa aa aa aa -DJ -Fm -DJ +Iv +Kj +Iv aa aa aa @@ -63667,49 +63613,49 @@ aa aa aa aa -ge -ge -gr -gs -gr -ge -ge -gJ -gq -gq -gq -hc -hi -ho +fZ +fZ +gm +gn +gm +fZ +fZ +gE +gl +gl +gl +gX +hd +hj +hn hs -hx -gp -gq -gp -ge -gq -gq -gq -ge -gp -gq -gp -hO -ge -ge -ge +gk +gl +gk +fZ +gl +gl +gl +fZ +gk +gl +gk +hJ +fZ +fZ +fZ +gI gN -gS +gQ gV ha -hf -ge -ge -gr -gs -gr -ge -ge +fZ +fZ +gm +gn +gm +fZ +fZ aa aa aa @@ -63732,44 +63678,44 @@ aa aa aa aa -it -kc -iH -kz -is -lj -lz -ma -mu -mR -nd -lk -iH -iH +io +jZ +iC +kB +in +lx +lR +ml +mW +nv +nQ ly -it -xX -xW -qm -qT -rU -sv -sX -tJ -tI -sv -sv -sv -sv -sv -wW -xq -qm -xX -qk -yJ -yS -qk +iC +iC +lQ +io +qy +qz +rS +sQ +tT +uB +vf +vX +vW +uB +uB +uB +uB +uB +At +AY +rS +qy +qx +Dc +Cc +qx aa aa aa @@ -63795,14 +63741,14 @@ aa aa aa aa -EZ -EZ -Fn -EZ -EZ -EZ -EZ -EZ +JV +JV +Kk +JV +JV +JV +JV +JV aa aa aa @@ -63924,49 +63870,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -gK -gQ -gp -gY -gH -hi -ho +fZ +fZ +gm +gm +gm +fZ +fZ +gF +gL +gk +gT +gC +hd +hj +hn hs -hx -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -hO -ge -ge -ge -ge -ge -gV -ge -ge -ge -ge -gr -gr -gr -ge -ge +gk +gk +gk +gk +gk +gk +gk +gk +gk +gk +gk +hJ +fZ +fZ +fZ +fZ +fZ +gQ +fZ +fZ +fZ +fZ +gm +gm +gm +fZ +fZ aa aa aa @@ -63989,44 +63935,44 @@ aa aa aa aa -it -kd -ks -ks -kT -lk -lA -mb -mv -mS -iz -lk -kr -kr -kq -it -xX -xW -qk -qT -rU -sv -sX -tK -tJ -tI -sv -sv -sv -sv -wW -xq -qk -ql -qk -qk -qQ -qk +io +ka +km +km +kZ +ly +lS +mm +mX +nw +iu +ly +kl +kl +kk +io +qy +qz +qx +sQ +tT +uB +vf +vY +vX +vW +uB +uB +uB +uB +At +AY +qx +qV +qx +qx +sL +qx aa aa aa @@ -64052,14 +63998,14 @@ aa aa aa aa -Fa -Fh -Fh -Fh -Me -Fh -Fh -Fa +JW +Kd +Kd +Kd +KE +Kd +Kd +JW aa aa aa @@ -64181,49 +64127,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -gM -gO -gO -gO +fZ +fZ +gm +gm +gm +fZ +fZ +gH +gJ +gJ +gJ +gZ he -hj -hp +hk +ho ht -hy -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn -hP +gi +gi +gi +gi +gi +gi +gi +gi +gi +gi +gi +hK +gh +gh +gB +gB +gB +gQ +fZ +fZ +fZ +fZ gm gm -gG -gG -gG -gV -ge -ge -ge -ge -gr -gr -gr -ge -ge +gm +fZ +fZ aa aa aa @@ -64246,44 +64192,44 @@ aa aa aa aa +ip +kb +km +kC +im iu -ke -ks -kA -ir -iz -lB -iz -iz -iz -ir -nB -mw -ks -oA -it -qk -ql -qk -KD -rU -sv -sW -tL -tL -tL -tL -tL -vF -sv -wW -KT -qk -xY +lT +iu +iu +iu +im +oc +mY +km +pq +io +qx +qV +qx +sR +tT +uB +ve +vZ +vZ +vZ +vZ +vZ yB -yL -yT -qk +uB +At +AZ +qx +Ce +CP +Df +Dy +qx aa aa aa @@ -64309,14 +64255,14 @@ aa aa aa aa -EZ -Fh -Fh -Fh -Fh -Fh -Fh -EZ +JV +Kd +Kd +Kd +Kd +Kd +Kd +JV aa aa aa @@ -64438,49 +64384,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -ge -ge -gU -ge -ge -ge -gt -ge +fZ +fZ +gm +gm +gm +fZ +fZ +fZ +fZ +gP +fZ +fZ +fZ +go +fZ +hu hz -hE -hE -ge -ge -ge -ge -ge -ge -ge -hE -hE -hQ -ge -gt -ge -ge -ge -gV -ge -ge -ge -ge -gr -gr -gr -ge -ge +hz +fZ +fZ +fZ +fZ +fZ +fZ +fZ +hz +hz +hL +fZ +go +fZ +fZ +fZ +gQ +fZ +fZ +fZ +fZ +gm +gm +gm +fZ +fZ aa aa aa @@ -64503,44 +64449,44 @@ aa aa aa aa -it -kd -kr -kB -kU -kr -kr -kr -kr -kr -iz -nC -mw -ks -oB -it -LK -LN -LQ -qS -rU -sv -sY -tK -tK -tK -vm -tM -wd -sv -wW -xp -xP -xZ -yC -yC -yS -qk +io +ka +kl +kD +la +kl +kl +kl +kl +kl +iu +od +mY +km +pr +io +qB +qW +rT +sO +tT +uB +vg +vY +vY +vY +xY +wa +zl +uB +At +AW +BN +Cf +CQ +CQ +Cc +qx aa aa aa @@ -64566,14 +64512,14 @@ aa aa aa aa -EZ -Fi -Fi -Fi -Fi -Fh -Fi -EZ +JV +Ke +Ke +Ke +Ke +Kd +Ke +JV aa aa aa @@ -64695,49 +64641,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -ge -ge -gV -ge -ge -ge -gt -gG +fZ +fZ +gm +gm +gm +fZ +fZ +fZ +fZ +gQ +fZ +fZ +fZ +go +gB +hu hz -hE -hE -hE -hE -ho -gq -ho -hE -hE -hE -hE -hQ -gG -gt -ge -ge -ge -gV -ge -ge -ge -ge -gr -gr -gr -ge -ge +hz +hz +hz +hj +gl +hj +hz +hz +hz +hz +hL +gB +go +fZ +fZ +fZ +gQ +fZ +fZ +fZ +fZ +gm +gm +gm +fZ +fZ aa aa aa @@ -64760,44 +64706,44 @@ aa aa aa aa -is -kf -kr -kC -kV -kr -ks -mc -mw -kr -iz -nC -mw -ks -oC -it -LL -LF -LH -qS +in +kc +kl +kE +lb +kl +km +mn +mY +kl +iu +od +mY +km +ps +io +qC +qX rU -sv -sZ -sY -tK -tK -tK -vF -sZ -sv -wW -xt -xQ -Mg -yC -yC -yU -qk +sO +tT +uB +vh +vg +vY +vY +vY +yB +vh +uB +At +Ba +BO +Cg +CQ +CQ +Dz +qx aa aa aa @@ -64823,14 +64769,14 @@ aa aa aa aa -EZ -Fi -Fi -Fi -Fi -Fh -Fi -EZ +JV +Ke +Ke +Ke +Ke +Kd +Ke +JV aa aa aa @@ -64952,49 +64898,49 @@ aa aa aa aa -ge -ge -gt -gr -gt -ge -ge +fZ +fZ +go +gm +go +fZ +fZ +gI gN -gS +gQ gV ha -hf -gG -gt -gG +gB +go +gB +hu hz -hE -hE -ho -hE -hE -ho -hE -hE -ho -hE -hE -hQ -gG -gt -gG +hz +hj +hz +hz +hj +hz +hz +hj +hz +hz +hL +gB +go +gB +gI gN -gS +gQ gV ha -hf -ge -ge -gt -gr -gt -ge -ge +fZ +fZ +go +gm +go +fZ +fZ aa aa aa @@ -65017,44 +64963,44 @@ aa aa aa aa -ir -kg -kr -kD -kW -kr -ks -md -mw -kr -iz -nC -mw -ks -oD -it -LM -LP -LR -qS -rU -sv -sW -tL -uo -tK -tK -tK -vF -sv -wW -xp -xR -xZ -yC -Mh -yV -qk +im +kd +kl +kF +lc +kl +km +mo +mY +kl +iu +od +mY +km +pt +io +qD +qY +rV +sO +tT +uB +ve +vZ +wL +vY +vY +vY +yB +uB +At +AW +BP +Cf +CQ +Dg +DA +qx aa aa aa @@ -65080,14 +65026,14 @@ aa aa aa aa -EZ -Fh -Fo -Fh -Fh -Fh -Fh -EZ +JV +Kd +Kl +Kd +Kd +Kd +Kd +JV aa aa aa @@ -65209,49 +65155,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -ge -ge -gV -ge -ge -ge -gt -gG +fZ +fZ +gm +gm +gm +fZ +fZ +fZ +fZ +gQ +fZ +fZ +fZ +go +gB +hu hz -hE -hE -gq -ho -hE -hE -hE -ho -gq -hE -hE -hQ -gG -gt -ge -ge -ge -gV -ge -ge -ge -ge -gr -gr -gr -ge -ge +hz +gl +hj +hz +hz +hz +hj +gl +hz +hz +hL +gB +go +fZ +fZ +fZ +gQ +fZ +fZ +fZ +fZ +gm +gm +gm +fZ +fZ aa aa aa @@ -65274,44 +65220,44 @@ aa aa aa aa -is -kh -kr -kE -kX -kr -ks -ks -ks -kr -kT -lk -ks -ks -oE -it -qk -ql -qk -KD -rU -sv -sY -tM -tM -tM -tM -tM -wd -sv -wW -KT -qk -ya -yD -yM -yW -qk +in +ke +kl +kG +ld +kl +km +km +km +kl +kZ +ly +km +km +pu +io +qx +qV +qx +sR +tT +uB +vg +wa +wa +wa +wa +wa +zl +uB +At +AZ +qx +Ch +CR +Dh +DB +qx aa aa aa @@ -65337,14 +65283,14 @@ aa aa aa aa -Fa -Md -Fp -FC -Mf -Fh -Fh -Fa +JW +Kf +Km +Kz +KF +Kd +Kd +JW aa aa aa @@ -65466,49 +65412,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -ge -ge -gV -gG -gG -gG -gt -ge +fZ +fZ +gm +gm +gm +fZ +fZ +fZ +fZ +gQ +gB +gB +gB +go +fZ +hu hz -hE -hE -hE -gq -ho -hE -ho -gq -hE -hE -hE -hQ -ge -gt -gG -gG -gG -gV -ge -ge -ge -ge -gr -gr -gr -ge -ge +hz +hz +gl +hj +hz +hj +gl +hz +hz +hz +hL +fZ +go +gB +gB +gB +gQ +fZ +fZ +fZ +fZ +gm +gm +gm +fZ +fZ aa aa aa @@ -65531,44 +65477,44 @@ aa aa aa aa -ir -ki -kr -kF -kY -kr -ks -md -mw -kr -iz -nC -mw -ks -oF -is -xW -xX -qk -qT -rU -sv -sv -sv -sv -uQ -vn -tK -we -sv -wW -xq -qk -ql -qk -qk -qk -qk +im +kf +kl +kH +le +kl +km +mo +mY +kl +iu +od +mY +km +pv +in +qz +qy +qx +sQ +tT +uB +uB +uB +uB +xt +xZ +vY +zm +uB +At +AY +qx +qV +qx +qx +qx +qx aa aa aa @@ -65594,14 +65540,14 @@ aa aa aa aa -EZ -EZ -EZ -EZ -EZ -EZ -EZ -EZ +JV +JV +JV +JV +JV +JV +JV +JV aa aa aa @@ -65723,49 +65669,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -ge -ge -gV -ge -ge -ge -gt +fZ +fZ +gm +gm +gm +fZ +fZ +fZ +fZ +gQ +fZ +fZ +fZ +go +hp hu +fZ hz -ge -hE -hE -hE -gq -ho -gq -hE -hE -hE -ge -hQ -hu -gt -ge -ge -ge -gV -ge -ge -ge -ge -gr -gr -gr -ge -ge +hz +hz +gl +hj +gl +hz +hz +hz +fZ +hL +hp +go +fZ +fZ +fZ +gQ +fZ +fZ +fZ +fZ +gm +gm +gm +fZ +fZ aa aa aa @@ -65788,41 +65734,41 @@ aa aa aa aa -is -kj -kr -kC -kV -kr -ks -mc -mw -kr -iz -nC -mw -ks -oC -it -xX -xW -qm -qT -rU -sv -sv -sv -sv -sv -uQ -vn -we -sv -wW -xq -qm -xW -qk +in +kg +kl +kE +lb +kl +km +mn +mY +kl +iu +od +mY +km +ps +io +qy +qz +rS +sQ +tT +uB +uB +uB +uB +uB +xt +xZ +zm +uB +At +AY +rS +qz +qx aa aa aa @@ -65980,49 +65926,49 @@ aa aa aa aa -ge -ge -gr -gs -gr -ge -ge +fZ +fZ +gm +gn +gm +fZ +fZ +gI gN -gS +gQ gV ha -hf -gG -gt +gB +go +hp hu hz -hE -ge -hE -hE -hE -hE -hE -hE -hE -ge -hE -hQ -hu -gt -gG +fZ +hz +hz +hz +hz +hz +hz +hz +fZ +hz +hL +hp +go +gB +gI gN -gS +gQ gV ha -hf -ge -ge -gr -gs -gr -ge -ge +fZ +fZ +gm +gn +gm +fZ +fZ aa aa aa @@ -66045,41 +65991,41 @@ aa aa aa aa -it -kd -kr -kB -kZ -kr -kr -kr -kr -kr -iz -nC -mw -ks -oB -it -Kq -xX -ql -qX -rU -sv -sv -sv -sv -sv -sv -uQ -wd -sv -wW -LT -ql -KZ -qk +io +ka +kl +kD +lf +kl +kl +kl +kl +kl +iu +od +mY +km +pr +io +qA +qy +qV +sS +tT +uB +uB +uB +uB +uB +uB +xt +zl +uB +At +Bb +qV +Cd +qx aa aa aa @@ -66237,49 +66183,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -ge -ge -gV -ge -ge -ge -gt +fZ +fZ +gm +gm +gm +fZ +fZ +fZ +fZ +gQ +fZ +fZ +fZ +go +hp hu +fZ hz -ge -hE -hE -hE -gv -hG -gv -hE -hE -hE -ge -hQ -hu -gt -ge -ge -ge -gV -ge -ge -ge -ge -gr -gr -gr -ge -ge +hz +hz +gq +hB +gq +hz +hz +hz +fZ +hL +hp +go +fZ +fZ +fZ +gQ +fZ +fZ +fZ +fZ +gm +gm +gm +fZ +fZ aa aa aa @@ -66302,41 +66248,41 @@ aa aa aa aa -iu -ke -ks -kG -ir -ll -lC -me -mx -lC -ir -nB -mw -ks -kd -it -xW -xX -qk -qS -rU -sv -sv -sv -sv -sv -sv -sv -sv -sv -wW -xp -qk -xX -qk +ip +kb +km +kI +im +lz +lU +mp +mZ +lU +im +oc +mY +km +ka +io +qz +qy +qx +sO +tT +uB +uB +uB +uB +uB +uB +uB +uB +uB +At +AW +qx +qy +qx aa aa aa @@ -66494,49 +66440,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -ge -ge -gV -gG -gG -gG -gt -ge +fZ +fZ +gm +gm +gm +fZ +fZ +fZ +fZ +gQ +gB +gB +gB +go +fZ +hu hz -hE -hE -hE -gv -hG -hE -hG -gv -hE -hE -hE -hQ -ge -gt -gG -gG -gG -gV -ge -ge -ge -ge -gr -gr -gr -ge -ge +hz +hz +gq +hB +hz +hB +gq +hz +hz +hz +hL +fZ +go +gB +gB +gB +gQ +fZ +fZ +fZ +fZ +gm +gm +gm +fZ +fZ aa aa aa @@ -66559,41 +66505,41 @@ aa aa aa aa -it -kd -ks -ks -kT -lk -lD -lE -lE -lD -iz -lk -kr -kr -oG -it -xW -xX -qk -qZ -rV -rV -rV -rV -rV -rV -rV -rV -rV -rV -rV -Ih -qk -xW -qk +io +ka +km +km +kZ +ly +lV +lW +lW +lV +iu +ly +kl +kl +pw +io +qz +qy +qx +sT +tU +tU +tU +tU +tU +tU +tU +tU +tU +tU +tU +Bc +qx +qz +qx aa aa aa @@ -66751,49 +66697,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -ge -ge -gV -ge -ge -ge -gt -gG +fZ +fZ +gm +gm +gm +fZ +fZ +fZ +fZ +gQ +fZ +fZ +fZ +go +gB +hu hz -hE -hE -gv -hG -hE -hE -hE -hG -gv -hE -hE -hQ -gG -gt -ge -ge -ge -gV -ge -ge -ge -ge -gr -gr -gr -ge -ge +hz +gq +hB +hz +hz +hz +hB +gq +hz +hz +hL +gB +go +fZ +fZ +fZ +gQ +fZ +fZ +fZ +fZ +gm +gm +gm +fZ +fZ aa aa aa @@ -66816,41 +66762,41 @@ aa aa aa aa -it -kk -kt -kH -is -lm -lE -mf -my -lE -ne -lk -nT -ok +io kh -it -qk -qk -qk -LS -HV -HV -HV -HV -HV -HV -HV -HV -HV -HV -HV -LU -qk -qk -qk +kn +kJ +in +lA +lW +mq +na +lW +nR +ly +oz +oR +ke +io +qx +qx +qx +sU +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +Bd +qx +qx +qx aa aa aa @@ -67008,49 +66954,49 @@ aa aa aa aa -ge -ge -gt -gr -gt -ge -ge +fZ +fZ +go +gm +go +fZ +fZ +gI gN -gS +gQ gV ha -hf -gG -gt -gG +gB +go +gB +hu hz -hE -hE -hG -hE -hE -hG -hE -hE -hG -hE -hE -hQ -gG -gt -gG +hz +hB +hz +hz +hB +hz +hz +hB +hz +hz +hL +gB +go +gB +gI gN -gS +gQ gV ha -hf -ge -ge -gt -gr -gt -ge -ge +fZ +fZ +go +gm +go +fZ +fZ aa aa aa @@ -67073,41 +67019,41 @@ aa aa aa aa -it -it -it -it -it -it -iu -it -it -ir -it -it -it -it -it -it -qk -qk -qk -ra -ra -ra -ra -ra -ra -ra -ra -ra -ra -ra -ra -ra -qk -qk -qk +io +io +io +io +io +io +ip +io +io +im +io +io +io +io +io +io +qx +qx +qx +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +qx +qx +qx aa aa aa @@ -67265,49 +67211,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -ge -ge -gV -ge -ge -ge -gt -gG +fZ +fZ +gm +gm +gm +fZ +fZ +fZ +fZ +gQ +fZ +fZ +fZ +go +gB +hu hz -hE -hE -hE -hE -hG -gv -hG -hE -hE -hE -hE -hQ -gG -gt -ge -ge -ge -gV -ge -ge -ge -ge -gr -gr -gr -ge -ge +hz +hz +hz +hB +gq +hB +hz +hz +hz +hz +hL +gB +go +fZ +fZ +fZ +gQ +fZ +fZ +fZ +fZ +gm +gm +gm +fZ +fZ aa aa aa @@ -67352,7 +67298,7 @@ aa aa aa aa -ta +vi aa aa aa @@ -67522,49 +67468,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -ge -ge -gV -ge -ge -ge -gt -ge +fZ +fZ +gm +gm +gm +fZ +fZ +fZ +fZ +gQ +fZ +fZ +fZ +go +fZ +hu hz -hE -hE -ge -ge -ge -ge -ge -ge -ge -hE -hE -hQ -ge -gt -ge -ge -ge -gW -ge -ge -ge -ge -gr -gr -gr -ge -ge +hz +fZ +fZ +fZ +fZ +fZ +fZ +fZ +hz +hz +hL +fZ +go +fZ +fZ +fZ +gR +fZ +fZ +fZ +fZ +gm +gm +gm +fZ +fZ aa aa aa @@ -67779,49 +67725,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -ge -ge -gV -gG -gG -gG +fZ +fZ gm gm -hA -gu -gu -gu -gu -gu -gu -gu -gu -gu -gu -gu -hR +gm +fZ +fZ +fZ +fZ +gQ +gB +gB +gB +gh +gh +hv +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +hM +hP +hS hU hX -hZ -ic -gT -gT -gT -im -ge -ge -gr -gr -gr -ge -ge +gO +gO +gO +ih +fZ +fZ +gm +gm +gm +fZ +fZ aa aa aa @@ -68036,49 +67982,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -ge -ge -gV -ge -ge -ge -ge -ge +fZ +fZ +gm +gm +gm +fZ +fZ +fZ +fZ +gQ +fZ +fZ +fZ +fZ +fZ +hw +hf +hf +hf +hf +hf +hf +hf +hf +hf +hf +hf +hN +hQ hB -hk -hk -hk -hk -hk -hk -hk -hk -hk -hk -hk -hS hV -hG -ia -gK -ig -hk -ij -gH -ge -ge -gr -gr -gr -ge -ge +gF +ib +hf +ie +gC +fZ +fZ +gm +gm +gm +fZ +fZ aa aa aa @@ -68293,49 +68239,49 @@ aa aa aa aa -ge -ge -gr -gs -gr -ge -ge +fZ +fZ +gm +gn +gm +fZ +fZ +gI gN -gS +gQ gV ha +gB +fZ +fZ +hw hf -gG -ge -ge +gq +hf +fZ +gq +gq +gq +fZ +hf +gq +hf +hN +hQ hB -hk -gv -hk -ge -gv -gv -gv -ge -hk -gv -hk -hS hV -hG -ia -id -gv -gv -gv -in -ge -ge -gr -gs -gr -ge -ge +hY +gq +gq +gq +ii +fZ +fZ +gm +gn +gm +fZ +fZ aa aa aa @@ -68550,49 +68496,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -ge -ge -gV -ge -ge -ge -ge -ge -hB -hk -hk -hk -hk -hk -hk -hk -hk -hk -hk -hk -hS -hV -hG -ia -ie -ih +fZ +fZ gm -ik -io -ge -ge -gr -gr -gr -ge -ge +gm +gm +fZ +fZ +fZ +fZ +gQ +fZ +fZ +fZ +fZ +fZ +hw +hf +hf +hf +hf +hf +hf +hf +hf +hf +hf +hf +hN +hQ +hB +hV +hZ +ic +gh +if +ij +fZ +fZ +gm +gm +gm +fZ +fZ aa aa aa @@ -68807,49 +68753,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -ge -ge -gV -gG -gG -gG +fZ +fZ gm gm -hC -hF -hF -hF -hF -hF -hF -hF -hF -hF -hF -hF +gm +fZ +fZ +fZ +fZ +gQ +gB +gB +gB +gh +gh +hx +hA +hA +hA +hA +hA +hA +hA +hA +hA +hA +hA +hO +hR hT hW -hY -ib -gK +gF +gh +gh +gh +gC +fZ +fZ gm gm gm -gH -ge -ge -gr -gr -gr -ge -ge +fZ +fZ aa aa aa @@ -69064,49 +69010,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -ge -ge -gV -ge -ge -ge -gt -ge +fZ +fZ gm gm gm -ge -ge -ge -ge -ge -ge -ge +fZ +fZ +fZ +fZ +gQ +fZ +fZ +fZ +go +fZ +gh +gh +gh +fZ +fZ +fZ +fZ +fZ +fZ +fZ +gh +gh +gh +fZ +go +fZ +gF +ib +hf +ie +gC +fZ +fZ gm gm gm -ge -gt -ge -gK -ig -hk -ij -gH -ge -ge -gr -gr -gr -ge -ge +fZ +fZ aa aa aa @@ -69249,29 +69195,29 @@ af af af af -bl -bm -bm -bm -bm -bm -bm -bm -bm -bm -bm -bl -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -fN +bj +bk +bk +bk +bk +bk +bk +bk +bk +bk +bk +bj +dm +dm +dm +dm +dm +dm +dm +dm +dm +dm +fx aa aa aa @@ -69321,49 +69267,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -ge -ge -gV -ge -ge -ge -gt -gG +fZ +fZ gm -hG gm -hk -gx -hk -gx -hk -gx -hk gm -hG +fZ +fZ +fZ +fZ +gQ +fZ +fZ +fZ +go +gB +gh +hB +gh +hf +gs +hf +gs +hf +gs +hf +gh +hB +gh +gB +go +fZ +hY +hf +gp +hf +ii +fZ +fZ gm -gG -gt -ge -id -hk -gu -hk -in -ge -ge -gr -gr -gr -ge -ge +gm +gm +fZ +fZ aa aa aa @@ -69497,38 +69443,38 @@ aa (215,1,1) = {" ac af +aw +af +af +aO +aR +aG +af ax af -af -aQ -aT -aI -af -ay -af -bl -bm -bm -bm -bm -bm -bm -bm -bm -bm -bm -bl -dy -dU -dU -dy -dU -dU -dy -dU -dU -dy -fN +bj +bk +bk +bk +bk +bk +bk +bk +bk +bk +bk +bj +dm +dG +dG +dm +dG +dG +dm +dG +dG +dm +fx aa aa aa @@ -69578,49 +69524,49 @@ aa aa aa aa -ge -ge -gt -gr -gt -ge -ge +fZ +fZ +go +gm +go +fZ +fZ +gI gN -gS +gQ gV ha +gB +go +gB +gh +hB +gh +gs hf -gG -gt -gG +gs +hf +gs +hf +gs +gh +hB +gh +gB +go +fZ +hZ +ic +gh +if +ij +fZ +fZ +go gm -hG -gm -gx -hk -gx -hk -gx -hk -gx -gm -hG -gm -gG -gt -ge -ie -ih -gm -ik -io -ge -ge -gt -gr -gt -ge -ge +go +fZ +fZ aa aa aa @@ -69754,38 +69700,38 @@ aa (216,1,1) = {" ac af -ay +ax af af af af af af -ay +ax af -bl -bm -bm -bm -bm -cj -cw -bm -bm -bm -bm -bl -dy -dU -dU -eJ -dU -dU -eJ -dU -dU -dy -fN +bj +bk +bk +bk +bk +ce +cq +bk +bk +bk +bk +bj +dm +dG +dG +eu +dG +dG +eu +dG +dG +dm +fx aa aa aa @@ -69835,49 +69781,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -ge -ge -gV -ge -ge -ge -gt -gG -gm -hG -gm -hk -gx -hk -gx -hk -gx -hk -gm -hG -gm -gG -gt -ge -gK +fZ +fZ gm gm gm -gH -ge -ge -gr -gr -gr -ge -ge +fZ +fZ +fZ +fZ +gQ +fZ +fZ +fZ +go +gB +gh +hB +gh +hf +gs +hf +gs +hf +gs +hf +gh +hB +gh +gB +go +fZ +gF +gh +gh +gh +gC +fZ +fZ +gm +gm +gm +fZ +fZ aa aa aa @@ -70011,38 +69957,38 @@ aa (217,1,1) = {" ac af -ay -aI -aO +ax +aG +aM af -aU +aS af af -aI +aG af -bl -bm -bm -bm -bm -bm -cx -bm -bm -bm -bm -bl -dy -dU -dU -dy -dU -dU -dy -dU -dU -dy -fN +bj +bk +bk +bk +bk +bk +cr +bk +bk +bk +bk +bj +dm +dG +dG +dm +dG +dG +dm +dG +dG +dm +fx aa aa aa @@ -70092,49 +70038,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -ge -ge -gV -gG -gG -gG -gt -ge +fZ +fZ gm -hG gm -ge -gv -hG -hG -hG -gv -ge gm -hG +fZ +fZ +fZ +fZ +gQ +gB +gB +gB +go +fZ +gh +hB +gh +fZ +gq +hB +hB +hB +gq +fZ +gh +hB +gh +fZ +go +fZ +gF +ib +hf +ie +gC +fZ +fZ gm -ge -gt -ge -gK -ig -hk -ij -gH -ge -ge -gr -gr -gr -ge -ge +gm +gm +fZ +fZ aa aa aa @@ -70272,34 +70218,34 @@ af af af af -ax +aw af af af af -bl -bm -bm -bm -bm -bm -bm -bm -bm -bm -bm -bl -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -fN +bj +bk +bk +bk +bk +bk +bk +bk +bk +bk +bk +bj +dm +dm +dm +dm +dm +dm +dm +dm +dm +dm +fx aa aa aa @@ -70349,49 +70295,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -ge -ge -gV -ge -ge -ge -gt -gv +fZ +fZ gm -hG gm -gG -hG -hG -hG -hG -hG -gG gm -hG +fZ +fZ +fZ +fZ +gQ +fZ +fZ +fZ +go +gq +gh +hB +gh +gB +hB +hB +hB +hB +hB +gB +gh +hB +gh +gq +go +gq +hY +hf +gp +hf +ii +gF +gh gm -gv -gt -gv -id -hk -gu -hk -in -gK gm -gr -gr -gr -ge -ge +gm +fZ +fZ aa aa aa @@ -70606,49 +70552,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge +fZ +fZ +gm +gm +gm +fZ +fZ +gI gN -gS +gQ gV ha -hf -gG -gt -gv +gB +go +gq +gh +hB +gh +gB +hB +hB +gq +hB +hB +gB +gh +hB +gh +gq +go +gq +hZ +ic +gh +if +ij +gF +gh gm -hG gm -gG -hG -hG -gv -hG -hG -gG gm -hG -gm -gv -gt -gv -ie -ih -gm -ik -io -gK -gm -gr -gr -gr -ge -ge +fZ +fZ aa aa aa @@ -70791,29 +70737,29 @@ ah ah ah ah +bj bl bn -bp -bF -cf -bF -bn -cf -bF -bo -bn +bD +ca +bD bl -dz -dV -er -eK -eL -eK -eL -fi -fv -dz -fN +ca +bD +bm +bl +bj +dn +dH +ed +ev +ew +ev +ew +eW +fj +dn +fx aa aa aa @@ -70863,49 +70809,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -ge -ge -gV -ge -ge -ge -gt -gv -gm -hG -gm -gG -hG -hG -hG -hG -hG -gG -gm -hG -gm -gv -gt -gv -gK +fZ +fZ gm gm gm -gH -gK +fZ +fZ +fZ +fZ +gQ +fZ +fZ +fZ +go +gq +gh +hB +gh +gB +hB +hB +hB +hB +hB +gB +gh +hB +gh +gq +go +gq +gF +gh +gh +gh +gC +gF +gh gm -gr -gr -gr -ge -ge +gm +gm +fZ +fZ aa aa aa @@ -71048,29 +70994,29 @@ ai ai ai ai +bj +bm +bD +bR bl -bo -bF -bU -bn -bn -bG +bl +bE +cD cK -cR -cR -cf -bl -dz -dW -es -eL -eK -eL -eK -fj -fw -dz -fN +cK +ca +bj +dn +dI +ee +ew +ev +ew +ev +eX +fk +dn +fx aa aa aa @@ -71120,49 +71066,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -ge -ge -gV -gG -gG -gG -gt -ge +fZ +fZ gm -hG gm -ge -gv -hG -hG -hG -gv -ge gm -hG +fZ +fZ +fZ +fZ +gQ +gB +gB +gB +go +fZ +gh +hB +gh +fZ +gq +hB +hB +hB +gq +fZ +gh +hB +gh +fZ +go +fZ +gF +ib +hf +ie +gC +fZ +fZ gm -ge -gt -ge -gK -ig -hk -ij -gH -ge -ge -gr -gr -gr -ge -ge +gm +gm +fZ +fZ aa aa aa @@ -71305,29 +71251,29 @@ aj aj aj aj +bj bl -bn -bG -bV -cg -bn -bn -bU -cS -cT -bn +bE +bS +cb bl -dz -dX -er -eK -eL -eK -eL -fi +bl +bR +cL +cM +bl +bj +dn +dJ +ed +ev +ew +ev +ew +eW +fl +dn fx -dz -fN aa aa aa @@ -71377,49 +71323,49 @@ aa aa aa aa -ge -ge -gs -gr -gs -ge -ge -ge -ge -gV -ge -ge -ge -gt -gG +fZ +fZ +gn gm -hG -gm -hk -gx -hk -gx -hk -gx -hk -gm -hG -gm -gG -gt -ge -id -hk -gu -hk -in -ge -ge +gn +fZ +fZ +fZ +fZ +gQ +fZ +fZ +fZ +go +gB +gh +hB +gh +hf gs -gr +hf gs -ge -ge +hf +gs +hf +gh +hB +gh +gB +go +fZ +hY +hf +gp +hf +ii +fZ +fZ +gn +gm +gn +fZ +fZ aa aa aa @@ -71562,29 +71508,29 @@ aj aj aj aj -bl -bp -bH -bW -ch +bj bn -bo -cL -cT -cR -bp +bF +bT +cc bl -dz -dY -es -eL -eK -eL -eK -fj -fy -dz -fN +bm +cE +cM +cK +bn +bj +dn +dK +ee +ew +ev +ew +ev +eX +fm +dn +fx ab ab ab @@ -71634,49 +71580,49 @@ aa aa aa aa -ge -ge -gs -gr -gs -ge -ge +fZ +fZ +gn +gm +gn +fZ +fZ +gI gN -gS +gQ gV ha +gB +go +gB +gh +hB +gh +gs hf -gG -gt -gG -gm -hG -gm -gx -hk -gx -hk -gx -hk -gx -gm -hG -gm -gG -gt -ge -ie -ih -gm -ik -io -ge -ge gs -gr +hf gs -ge -ge +hf +gs +gh +hB +gh +gB +go +fZ +hZ +ic +gh +if +ij +fZ +fZ +gn +gm +gn +fZ +fZ aa aa aa @@ -71809,46 +71755,46 @@ aa "} (224,1,1) = {" ac -al -aA -aJ +ak +ay +aH aj -aJ -aJ +aH +aH aj -aJ -aA -be +aH +ay +bc +bj bl -bn -bn -bF -cf -bn -bF -bn -cU -dd -bn bl -dz -dV -er -eK -eL -eK -eL -fi -fv -dz -fN +bD +ca +bl +bD +bl +cN +cW +bl +bj +dn +dH +ed +ev +ew +ev +ew +eW +fj +dn +fx ab -fR -fR -fR -fR -fR -fR +fB +fB +fB +fB +fB +fB ab aa aa @@ -71891,49 +71837,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -ge -ge -gV -ge -ge -ge -gt -gG -gm -hG -gm -hk -gx -hk -gx -hk -gx -hk -gm -hG -gm -gG -gt -ge -gK +fZ +fZ gm gm gm -gH -ge -ge -gr -gr -gr -ge -ge +fZ +fZ +fZ +fZ +gQ +fZ +fZ +fZ +go +gB +gh +hB +gh +hf +gs +hf +gs +hf +gs +hf +gh +hB +gh +gB +go +fZ +gF +gh +gh +gh +gC +fZ +fZ +gm +gm +gm +fZ +fZ aa aa aa @@ -72100,12 +72046,12 @@ ag ag ab ab -fS -fS -fS -fS -fS -fS +fC +fC +fC +fC +fC +fC ab ab ab @@ -72148,49 +72094,49 @@ aa aa aa aa -ge -ge -gr -gr -gr -ge -ge -ge -ge -gV -ge -ge -ge -gt -ge +fZ +fZ gm gm gm -ge -ge -gG -gG -gG -ge -ge +fZ +fZ +fZ +fZ +gQ +fZ +fZ +fZ +go +fZ +gh +gh +gh +fZ +fZ +gB +gB +gB +fZ +fZ +gh +gh +gh +fZ +go +fZ +gF +ib +hf +ie +gC +gF +gh gm gm gm -ge -gt -ge -gK -ig -hk -ij -gH -gK -gm -gr -gr -gr -ge -ge +fZ +fZ aa aa aa @@ -72323,39 +72269,39 @@ aa "} (226,1,1) = {" ac -am -aB -ao -ao -aR -aR -aR -aR -aR -aR -bl -bq -bI -bJ -bJ -ck -cy -bJ -cV -bJ -dj +al +az +an +an +aP +aP +aP +aP +aP +aP +bj +bo +bG +bH +bH +cf +cs +bH +cO +bH +cZ ac -dA -dZ -et -eM -eU -eU -eU -fk -dZ -fD -fN +do +dL +ef +ex +eH +eH +eH +eY +dL +fq +fx ab ab ab @@ -72363,91 +72309,91 @@ ab ab ab ab +fU +fV +ab +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 +aa +aa +aa +aa +fZ fZ -ga -ab -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 -aa -aa -aa -aa -ge -ge -gr -gr -gr -ge -ge -ge -ge -gV -gG -gG -gG gm gm gm +fZ +fZ +fZ +fZ +gQ +gB +gB +gB +gh +gh +gh +gh +gh +gh +gh +gh +gh +gh +gh +gh +gh +gh +gh +gh +gh +gC +hY +hf +gp +hf +ii +gF +gh gm gm gm -gm -gm -gm -gm -gm -gm -gm -gm -gm -gm -gm -gH -id -hk -gu -hk -in -gK -gm -gr -gr -gr -ge -ge +fZ +fZ aa aa aa @@ -72580,39 +72526,39 @@ aa "} (227,1,1) = {" ac +am an -ao -aK -ao -aS -aV +aI +an +aQ +aT +aY ba -bc -bc -bf -bl -br -bJ -bJ -bJ -bJ -bJ -bJ -cW -bJ -dk +ba +bd +bj +bp +bH +bH +bH +bH +bH +bH +cP +bH +da ac -dB -dZ -eu -eN -eU -eU -eU -fk -dZ -fD -fN +dp +dL +eg +ey +eH +eH +eH +eY +dL +fq +fx ab ab ab @@ -72620,91 +72566,91 @@ ab ab ab ab +fU +fV +ab +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 +aa +aa +aa +aa +fZ fZ -ga -ab -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 -aa -aa -aa -aa -ge -ge -gr -gr -gr -ge -ge -ge -ge -gV -ge -ge -ge -ge -ge gm gm gm +fZ +fZ +fZ +fZ +gQ +fZ +fZ +fZ +fZ +fZ +gh +gh +gh +gh +gh +gh +gh +gh +gh +gh +gh +gh +gh +fZ +fZ +fZ +ia +id +gJ +ig +ik +gF +gh gm gm gm -gm -gm -gm -gm -gm -gm -gm -ge -ge -ge -if -ii -gO -il -ip -gK -gm -gr -gr -gr -ge -ge +fZ +fZ aa aa aa @@ -72837,39 +72783,39 @@ aa "} (228,1,1) = {" ac -ao -aC -aL -aP -ao -aW -bb -bb -bb -bg -bl -bs -bJ -bZ -ci -cm -cA -bJ +an +aA +aJ +aN +an +aU +aZ +aZ +aZ +be +bj +bq +bH +bU +cd +cg +ct +bH +cQ cX -dg -dl +db ac -dC -ea -eu -eO -eU -eU -eU -fl -dZ -fD -fN +dq +dM +eg +ez +eH +eH +eH +eZ +dL +fq +fx ab ab ab @@ -72877,91 +72823,91 @@ ab ab ab ab +fU +fV +ab +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 +aa +aa +aa +aa +fZ +fZ +gm +gm +gm +fZ +fZ +fZ +fZ +gR +fZ +fZ +fZ +fZ +fZ +gQ +fZ +gB +fZ +fZ +hf +hf +hf +fZ +fZ +gB +fZ +gQ +fZ +fZ +fZ +fZ +gO +gO +gO +fZ +fZ +fZ +gm +gm +gm +fZ fZ -ga -ab -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 -aa -aa -aa -aa -ge -ge -gr -gr -gr -ge -ge -ge -ge -gW -ge -ge -ge -ge -ge -gV -ge -gG -ge -ge -hk -hk -hk -ge -ge -gG -ge -gV -ge -ge -ge -ge -gT -gT -gT -ge -ge -ge -gr -gr -gr -ge -ge aa aa aa @@ -73094,39 +73040,39 @@ aa "} (229,1,1) = {" ac -ao -aC -aM -aP -ao -aX -bb -bb -bb -bg -bl -bt -bJ -ca -ci -bJ -bJ -bJ -bJ -bJ -dm +an +aA +aK +aN +an +aV +aZ +aZ +aZ +be +bj +br +bH +bV +cd +bH +bH +bH +bH +bH +dc ac -dD -dZ -eu -eP -eU -eU -eU -fk -dZ -fD -fN +dr +dL +eg +eA +eH +eH +eH +eY +dL +fq +fx ab ab ab @@ -73134,91 +73080,91 @@ ab ab ab ab +fU +fV +ab +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 +aa +aa +aa +aa +fZ +gd +gp +gp +gp +gy +fZ +gd +gp +gp +gp +gy +fZ +fZ +fZ +gQ +gB +gB +gB +hf +hf +hf +hf +hf +gB +gB +gB +gQ +fZ +fZ +fZ +gd +gp +gp +gp +gy +fZ +gd +gp +gp +gp +gy fZ -ga -ab -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 -aa -aa -aa -aa -ge -gi -gu -gu -gu -gD -ge -gi -gu -gu -gu -gD -ge -ge -ge -gV -gG -gG -gG -hk -hk -hk -hk -hk -gG -gG -gG -gV -ge -ge -ge -gi -gu -gu -gu -gD -ge -gi -gu -gu -gu -gD -ge aa aa aa @@ -73351,39 +73297,39 @@ aa "} (230,1,1) = {" ac -ap ao -aN -ao -aS -aV +an +aL +an +aQ +aT +aZ bb -bd -bd -bh -bl -bu -bJ -cb -ci -cn -cB -bJ -bJ -bJ -dn +bb +bf +bj +bs +bH +bW +cd +ch +cu +bH +bH +bH +dd ac -dE -dZ -ev -eM -eU -eU -eU -fk -dZ -fD -fN +ds +dL +eh +ex +eH +eH +eH +eY +dL +fq +fx ab ab ab @@ -73391,91 +73337,91 @@ ab ab ab ab +fU +fV +ab +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 +aa +aa +aa +aa fZ -ga -ab -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 -aa -aa -aa -aa ge -gj -gm -gm -gm -gE -gx -gj -gm -gm -gm -gE +gh +gh +gh +gz +gs ge +gh +gh +gh +gz +fZ +fZ +fZ +gQ +fZ +gB +fZ +hf +gh +gh +gh +hf +fZ +gB +fZ +gQ +fZ +fZ +fZ ge +gh +gh +gh +gz +gs ge -gV -ge -gG -ge -hk -gm -gm -gm -hk -ge -gG -ge -gV -ge -ge -ge -gj -gm -gm -gm -gE -gx -gj -gm -gm -gm -gE -ge +gh +gh +gh +gz +fZ aa aa aa @@ -73642,12 +73588,12 @@ ag ag ab ab -fT -fT -fT -fT -fT -fT +fD +fD +fD +fD +fD +fD ab ab ab @@ -73690,49 +73636,49 @@ aa aa aa aa +fZ ge -gj -gv -gv -gv -gE -gx -gj -gv -gv -gv -gE -gV -gV -gV -gV -gV -gV +gq +gq +gq +gz +gs ge -hk +gq +gq +gq +gz +gQ +gQ +gQ +gQ +gQ +gQ +fZ +hf +fZ +gq +fZ +hf +fZ +gQ +gQ +gQ +gQ +gQ +gQ ge -gv -ge -hk -ge -gV -gV -gV -gV -gV -gV -gj -gv -gv -gv -gE -gx -gj -gv -gv -gv -gE +gq +gq +gq +gz +gs ge +gq +gq +gq +gz +fZ aa aa aa @@ -73865,47 +73811,47 @@ aa "} (232,1,1) = {" ac -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -bl -bv -bL -bL -bL -co -cC -cM -cM -cM -do -bl -dF -eb -ew -ex -eV -fb -ex -fm -fz +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +bj +bt +bI +bI +bI +ci +cv +cF +cF +cF +de +bj +dt +dN +ei +ej +eI +eP +ej +fa +fn +fr +fx +fy fE +fL fN -fP -fU -Iw -IJ -IJ -Je -fU -fP +fN +fS +fE +fy ab aa aa @@ -73947,49 +73893,49 @@ aa aa aa aa +fZ ge -gj -gm -gv -gm -gE -gx -gj -gm -gv -gm -gE +gh +gq +gh +gz +gs ge +gh +gq +gh +gz +fZ +fZ +fZ +gQ +fZ +fZ +fZ +hf +gh +gh +gh +hf +fZ +fZ +fZ +gQ +fZ +fZ +fZ ge +gh +gq +gh +gz +gs ge -gV -ge -ge -ge -hk -gm -gm -gm -hk -ge -ge -ge -gV -ge -ge -ge -gj -gm -gv -gm -gE -gx -gj -gm -gv -gm -gE -ge +gh +gq +gh +gz +fZ aa aa aa @@ -74122,47 +74068,47 @@ aa "} (233,1,1) = {" ac -aq -aD -aq -aq -aq -aq -aq -aq -aD -aq -bl -bv -bL -cc -bM -cp -cD -bM -cY -cM -do -bl -dG -ec -ex -ex -eW -eW -fh -fn -fA -fF -fN -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ +ap +aB +ap +ap +ap +ap +ap +ap +aB +ap +bj +bt +bI +bX +bJ +cj +cw +bJ +cR +cF +de +bj +du +dO +ej +ej +eJ +eJ +eV +fb +fo +fs +fx +fz +fz +fz +fz +fz +fz +fz +fz ab aa aa @@ -74204,49 +74150,49 @@ aa aa aa aa -ge -gk -gw -gw -gw -gF -ge -gk -gw -gw -gw -gF -ge -ge -ge -gV -ge -ge -ge -hk -hk -hk -hk -hk -ge -ge -ge -gV -ge -ge -ge -gk -gw -gw -gw -gF -ge -gk -gw -gw -gw -gF -ge +fZ +gf +gr +gr +gr +gA +fZ +gf +gr +gr +gr +gA +fZ +fZ +fZ +gQ +fZ +fZ +fZ +hf +hf +hf +hf +hf +fZ +fZ +fZ +gQ +fZ +fZ +fZ +gf +gr +gr +gr +gA +fZ +gf +gr +gr +gr +gA +fZ aa aa aa @@ -74379,47 +74325,47 @@ aa "} (234,1,1) = {" ac -aq -aq -aq -aq -aD -aD -aq -aq -aq -aq -bl -bw -bM -cc -bM -cp -cD -cN -cY -bM -dp -bl -dG -ed -ey -ex -ex -ex -fh +ap +ap +ap +ap +aB +aB +ap +ap +ap +ap +bj +bu +bJ +bX +bJ +cj +cw +cG +cR +bJ +df +bj +du +dP +ek +ej +ej +ej +eV +fc fo +fs +fx fA fF -fN -Ij -Il -Il -Il -Il -Il -Il -Ij +fF +fF +fF +fF +fF +fA ab aa aa @@ -74461,49 +74407,49 @@ aa aa aa aa -ge -ge -gx -gx -gx -ge -ge -ge -gx -gx -gx -ge -ge -ge -ge -ge -ge -ge -ge -ge -hk -hk -hk -ge -ge -ge -ge -ge -ge -ge -ge -ge -gx -gx -gx -ge -ge -ge -gx -gx -gx -ge -ge +fZ +fZ +gs +gs +gs +fZ +fZ +fZ +gs +gs +gs +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +hf +hf +hf +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +gs +gs +gs +fZ +fZ +fZ +gs +gs +gs +fZ +fZ aa aa aa @@ -74636,47 +74582,47 @@ aa "} (235,1,1) = {" ac -aq -aD -aq -aq -aq -aq -aq -aq -aD -aq -bl -bx -bN -cc -bM -cp -cD -bM -cY -cO -dq -bl -dG -ee -ex -ex -eX -eX -fh -fp -fA -fF -fN -fQ -Im -Im -Im -Im -Im -Im -fQ +ap +aB +ap +ap +ap +ap +ap +ap +aB +ap +bj +bv +bK +bX +bJ +cj +cw +bJ +cR +cH +dg +bj +du +dQ +ej +ej +eK +eK +eV +fd +fo +fs +fx +fz +fG +fG +fG +fG +fG +fG +fz ab aa aa @@ -74718,49 +74664,49 @@ aa aa aa aa -ge -gi -gu -gu -gu -gD -ge -gi -gu -gu -gu -gD -ge -hk -hk -hk -hk -hk -ge -hk -hk -hk -hk -hk -ge -hk -hk -hk -hk -hk -ge -gi -gu -gu -gu -gD -ge -gi -gu -gu -gu -gD -ge +fZ +gd +gp +gp +gp +gy +fZ +gd +gp +gp +gp +gy +fZ +hf +hf +hf +hf +hf +fZ +hf +hf +hf +hf +hf +fZ +hf +hf +hf +hf +hf +fZ +gd +gp +gp +gp +gy +fZ +gd +gp +gp +gp +gy +fZ aa aa aa @@ -74893,47 +74839,47 @@ aa "} (236,1,1) = {" ac -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -bl -bx -bN -bN -bN -cq -cE -cO -cO -cO -dq -bl -dF -ef -ez -ex -eY -fc -ex -fq +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +bj +bv +bK +bK +bK +ck +cx +cH +cH +cH +dg +bj +dt +dR +el +ej +eL +eQ +ej +fe +fn +ft +fx +fz +fH +fH +fH +fH +fH +fH fz -fG -fN -fQ -In -In -In -In -In -In -fQ ab aa aa @@ -74975,49 +74921,49 @@ aa aa aa aa +fZ ge -gj -gm -gv -gm -gE -gG -gj -gm -gv -gm -gE -hk -hk -gm +gh +gq +gh +gz +gB ge -gm -hk -hk -hk -gv -hH -gv -hk -hk -hk -gm +gh +gq +gh +gz +hf +hf +gh +fZ +gh +hf +hf +hf +gq +hC +gq +hf +hf +hf +gh +fZ +gh +hf +hf ge -gm -hk -hk -gj -gm -gv -gm -gE -gG -gj -gm -gv -gm -gE +gh +gq +gh +gz +gB ge +gh +gq +gh +gz +fZ aa aa aa @@ -75183,14 +75129,14 @@ ag ag ag ab -fQ -In -In -In -In -In -In -fQ +fz +fH +fH +fH +fH +fH +fH +fz ab aa aa @@ -75232,49 +75178,49 @@ aa aa aa aa +fZ ge -gj -gv -gv -gv -gE -gG -gj -gv -gv -gv -gE -hk -hk -gm -gv -gm -hk -hk -hk -hH -hK -hH -hk -hk -hk -gm -gv -gm -hk -hk -gj -gv -gv -gv -gE -gG -gj -gv -gv -gv -gE +gq +gq +gq +gz +gB ge +gq +gq +gq +gz +hf +hf +gh +gq +gh +hf +hf +hf +hC +hF +hC +hf +hf +hf +gh +gq +gh +hf +hf +ge +gq +gq +gq +gz +gB +ge +gq +gq +gq +gz +fZ aa aa aa @@ -75407,47 +75353,47 @@ aa "} (238,1,1) = {" ac -ar -ar -ar -ar -ar -ar -ar -ar -ar -ar -bl -by -by -by -by -by -by -by -cZ -di -dr -bl -dH -eg -eA -eQ -eZ -fd -eZ -fd -eZ -eD -fN -fQ -In -In -fX -fX -In -In -fQ +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +bj +bw +bw +bw +bw +bw +bw +bw +cS +cY +dh +bj +dv +dS +em +eB +eM +eR +eM +eR +eM +ep +fx +fz +fH +fH +fO +fO +fH +fH +fz ab aa aa @@ -75489,49 +75435,49 @@ aa aa aa aa +fZ ge -gj -gm -gv -gm -gE -gG -gj -gm -gv -gm -gE -hk -hk -gm +gh +gq +gh +gz +gB ge -gm -hk -hk -hk -gv -hH -gv -hk -hk -hk -gm +gh +gq +gh +gz +hf +hf +gh +fZ +gh +hf +hf +hf +gq +hC +gq +hf +hf +hf +gh +fZ +gh +hf +hf ge -gm -hk -hk -gj -gm -gv -gm -gE -gG -gj -gm -gv -gm -gE +gh +gq +gh +gz +gB ge +gh +gq +gh +gz +fZ aa aa aa @@ -75664,47 +75610,47 @@ aa "} (239,1,1) = {" ac -ar -ar -ar -ar -ar -ar -ar -ar -ar -ar -bl -by -bO -cd -by -cr -by -by -da -di -dr -bl -dI -eh +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +bj +bw +bL +bY +bw +cl +bw +bw +cT +cY +dh +bj +dw +dT +en eB -eQ -fa -fe -fa -fe -fa -eB -fN -fQ -In -In -fY -IY -In -In -fQ +eN +eS +eN +eS +eN +en +fx +fz +fH +fH +fP +fR +fH +fH +fz ab aa aa @@ -75746,49 +75692,49 @@ aa aa aa aa -ge -gk -gw -gw -gw -gF -ge -gk -gw -gw -gw -gF -ge -hk -hk -hk -hk -hk -ge -hk -hk -hk -hk -hk -ge -hk -hk -hk -hk -hk -ge -gk -gw -gw -gw -gF -ge -gk -gw -gw -gw -gF -ge +fZ +gf +gr +gr +gr +gA +fZ +gf +gr +gr +gr +gA +fZ +hf +hf +hf +hf +hf +fZ +hf +hf +hf +hf +hf +fZ +hf +hf +hf +hf +hf +fZ +gf +gr +gr +gr +gA +fZ +gf +gr +gr +gr +gA +fZ aa aa aa @@ -75921,47 +75867,47 @@ aa "} (240,1,1) = {" ac -ar -ar -ar -ar -ar -ar -ar -ar -ar -ar -bl -by -by -by -by -by -by -by -db -di -dr -bl -dJ -ei -eC -eQ -eQ -eQ -eQ -eQ -eQ -eQ -fN -fQ -In -In -fX -fX -In -In -fQ +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +bj +bw +bw +bw +bw +bw +bw +bw +cU +cY +dh +bj +dx +dU +eo +eB +eB +eB +eB +eB +eB +eB +fx +fz +fH +fH +fO +fO +fH +fH +fz ab aa aa @@ -76003,49 +75949,49 @@ aa aa aa aa -ge -ge -gx -gx -gx -ge -ge -ge -gx -gx -gx -ge -ge -ge -ge -ge -ge -ge -ge -ge -hk -hk -hk -ge -ge -ge -ge -ge -ge -ge -ge -ge -gx -gx -gx -ge -ge -ge -gx -gx -gx -ge -ge +fZ +fZ +gs +gs +gs +fZ +fZ +fZ +gs +gs +gs +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +hf +hf +hf +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +gs +gs +gs +fZ +fZ +fZ +gs +gs +gs +fZ +fZ aa aa aa @@ -76178,47 +76124,47 @@ aa "} (241,1,1) = {" ac -ar -ar -ar -ar -ar -ar -ar -ar -ar -ar -bl -by -bP -cd -by -by -cF -by -cZ -di -dr -bl -dK -ej -eD -eQ -eZ -fd -eZ -fd -eZ -eD -fN -fQ -In -In -In -In -In -In -fQ +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +bj +bw +bM +bY +bw +bw +cy +bw +cS +cY +dh +bj +dy +dV +ep +eB +eM +eR +eM +eR +eM +ep +fx +fz +fH +fH +fH +fH +fH +fH +fz ab aa aa @@ -76260,49 +76206,49 @@ aa aa aa aa -ge -gi -gu -gu -gu -gD -ge -gi -gu -gu -gu -gD -ge -gi -gu -gu -gu -gD -ge -hk -hk -hk -hk -hk -ge -gi -gu -gu -gu -gD -ge -gi -gu -gu -gu -gD -ge -gi -gu -gu -gu -gD -ge +fZ +gd +gp +gp +gp +gy +fZ +gd +gp +gp +gp +gy +fZ +gd +gp +gp +gp +gy +fZ +hf +hf +hf +hf +hf +fZ +gd +gp +gp +gp +gy +fZ +gd +gp +gp +gp +gy +fZ +gd +gp +gp +gp +gy +fZ aa aa aa @@ -76435,47 +76381,47 @@ aa "} (242,1,1) = {" ac -ar -ar -ar -ar -ar -ar -ar -ar -ar -ar -bl -by -by -by -by -by -by -by -cZ -di -dr -bl -dL -ek -eE -eQ -fa -fe -fa -fe -fa +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +bj +bw +bw +bw +bw +bw +bw +bw +cS +cY +dh +bj +dz +dW +eq eB -fN -fQ -In -In -In -In -In -In -fQ +eN +eS +eN +eS +eN +en +fx +fz +fH +fH +fH +fH +fH +fH +fz ab aa aa @@ -76517,49 +76463,49 @@ aa aa aa aa +fZ ge -gj -gm -gv -gm -gE -gx -gj -gm -gv -gm -gE -gx -gj -gm -gv -gm -gE +gh +gq +gh +gz +gs ge -hk -gm -gm -gm -hk +gh +gq +gh +gz +gs ge -gj -hk -gv -hk -gE -gx -gj -gm -gv -gm -gE -gx -gj -gm -gv -gm -gE +gh +gq +gh +gz +fZ +hf +gh +gh +gh +hf +fZ ge +hf +gq +hf +gz +gs +ge +gh +gq +gh +gz +gs +ge +gh +gq +gh +gz +fZ aa aa aa @@ -76725,14 +76671,14 @@ ag ag ag ab -fQ -Iu -Iu -Iu -Iu -Iu -Iu -fQ +fz +fI +fI +fI +fI +fI +fI +fz ab aa aa @@ -76774,49 +76720,49 @@ aa aa aa aa +fZ ge -gj -gv -gv -gv -gE -gx -gj -gv -gv -gv -gE -gx -gj -gv -gv -gv -gE +gq +gq +gq +gz +gs ge -hk +gq +gq +gq +gz +gs ge -gv +gq +gq +gq +gz +fZ +hf +fZ +gq +fZ +hf +fZ ge -hk +gq +gq +gq +gz +gs ge -gj -gv -gv -gv -gE -gx -gj -gv -gv -gv -gE -gx -gj -gv -gv -gv -gE +gq +gq +gq +gz +gs ge +gq +gq +gq +gz +fZ aa aa aa @@ -76949,47 +76895,47 @@ aa "} (244,1,1) = {" ac -as -as -as -as -as -as -as -as -as -as -bl +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +bj +bx +bN +bN +bN +cm +cz +bN +bN +bN bz -bQ -bQ -bQ -cs -cG -bQ -bQ -bQ -bB -bl -dM -dM -dM -dM -dM -dM -dM -dM -dM -dM -fN -Ij -Il -Il -Il -Il -Il -Il -Ij +bj +dA +dA +dA +dA +dA +dA +dA +dA +dA +dA +fx +fA +fF +fF +fF +fF +fF +fF +fA ab aa aa @@ -77031,49 +76977,49 @@ aa aa aa aa +fZ ge -gj -gm -gm -gm -gE -gx -gj -gm -gm -gm -gE -gx -gj -gm -gv -gm -gE +gh +gh +gh +gz +gs ge -hk -gm -gm -gm -hk +gh +gh +gh +gz +gs ge -gj -hk -gv -hk -gE -gx -gj -gm -gm -gm -gE -gx -gj -gm -gm -gm -gE +gh +gq +gh +gz +fZ +hf +gh +gh +gh +hf +fZ ge +hf +gq +hf +gz +gs +ge +gh +gh +gh +gz +gs +ge +gh +gh +gh +gz +fZ aa aa aa @@ -77206,47 +77152,47 @@ aa "} (245,1,1) = {" ac -as -aE -as -as -as -as -as -as -aE -as -bl -bA -bQ -bQ -bQ -cs -cG -bQ -bQ -bQ -dt -bl -dM -em -dM -QJ -QL -fg -QL -QK -QL -dM -fN -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ +ar +aC +ar +ar +ar +ar +ar +ar +aC +ar +bj +by +bN +bN +bN +cm +cz +bN +bN +bN +di +bj +dA +dX +dA +eC +eO +eT +eO +eD +eO +dA +fx +fz +fz +fz +fz +fz +fz +fz +fz ab aa aa @@ -77288,49 +77234,49 @@ aa aa aa aa -ge -gk -gw -gw -gw -gF -ge -gk -gw -gw -gw -gF -ge -gk -gw -gw -gw -gF -ge -hk -hk -hk -hk -hk -ge -gk -gw -gw -gw -gF -ge -gk -gw -gw -gw -gF -ge -gk -gw -gw -gw -gF -ge +fZ +gf +gr +gr +gr +gA +fZ +gf +gr +gr +gr +gA +fZ +gf +gr +gr +gr +gA +fZ +hf +hf +hf +hf +hf +fZ +gf +gr +gr +gr +gA +fZ +gf +gr +gr +gr +gA +fZ +gf +gr +gr +gr +gA +fZ aa aa aa @@ -77463,47 +77409,47 @@ aa "} (246,1,1) = {" ac -as -as -as -aE -as -as -aE -as -as -as -bl -bA -bQ -bQ -bQ -cs -cG -bQ -bQ -bQ -dt -bl -dM -QH -dM -dM -dM -dM -dM -dM -dM -dM -fN -fP -fV -II -IS -IS -Jq -fV -fP +ar +ar +ar +aC +ar +ar +aC +ar +ar +ar +bj +by +bN +bN +bN +cm +cz +bN +bN +bN +di +bj +dA +dY +dA +dA +dA +dA +dA +dA +dA +dA +fx +fy +fJ +fM +fQ +fQ +fT +fJ +fy ab aa aa @@ -77545,49 +77491,49 @@ aa aa aa aa -ge -ge -gx -gx -gx -ge -ge -ge -gx -gx -gx -ge -ge -ge -hv -hv -hv -ge -ge -ge -ge -ge -ge -ge -ge -ge -hv -hv -hv -ge -ge -ge -gx -gx -gx -ge -ge -ge -gx -gx -gx -ge -ge +fZ +fZ +gs +gs +gs +fZ +fZ +fZ +gs +gs +gs +fZ +fZ +fZ +hq +hq +hq +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +hq +hq +hq +fZ +fZ +fZ +gs +gs +gs +fZ +fZ +fZ +gs +gs +gs +fZ +fZ aa aa aa @@ -77720,46 +77666,46 @@ aa "} (247,1,1) = {" ac -as -aE -as -as -as -as -as -as -aE -as -bl -bA -bQ -bQ -bQ -cs -cG -bQ -bQ -bQ -dt -bl -dM -QI -dM -QK -QL -QN -QL -fr -QL -dM -fN +ar +aC +ar +ar +ar +ar +ar +ar +aC +ar +bj +by +bN +bN +bN +cm +cz +bN +bN +bN +di +bj +dA +dZ +dA +eD +eO +eU +eO +ff +eO +dA +fx ab -fT -fT -fT -fT -fT -fT +fD +fD +fD +fD +fD +fD ab ab ab @@ -77802,49 +77748,49 @@ aa aa aa aa -ge -gi -gu -gu -gu -gu -gu -gu -gu -gu -gu -gD -hl -hk -hk -hk -hk -hk -ge -hk -hk -hk -hk -hk -ge -hk -hk -hk -hk -hk -hl -gi -gu -gu -gu -gu -gu -gu -gu -gu -gu -gD -ge +fZ +gd +gp +gp +gp +gp +gp +gp +gp +gp +gp +gy +hg +hf +hf +hf +hf +hf +fZ +hf +hf +hf +hf +hf +fZ +hf +hf +hf +hf +hf +hg +gd +gp +gp +gp +gp +gp +gp +gp +gp +gp +gy +fZ aa aa aa @@ -77977,39 +77923,39 @@ aa "} (248,1,1) = {" ac -as -as -as -as -as -as -as -as -as -as -bl -bB -bQ -bQ -bQ -cs -cG -bQ -bQ -bQ +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +bj bz -bl -dM -dM -dM -dM -dM -dM -dM -dM -dM -dM -fN +bN +bN +bN +cm +cz +bN +bN +bN +bx +bj +dA +dA +dA +dA +dA +dA +dA +dA +dA +dA +fx ab ab ab @@ -78017,91 +77963,91 @@ ab ab ab ab +fU +fW +ab +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 +aa +aa +aa +aa fZ -gb -ab -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 -aa -aa -aa -aa ge -gj -gm -gm -gm -gm -gm -gm -gm -gm -gm -gE -ge -hk -gv -gv -gv -hk -hk -hk -hk -hk -hk -hk -hk -hk -gv -gv -gv -hk -ge -gj -gm -gm -gm -gm -gm -gm -gm -gm -gm -gE +gh +gh +gh +gh +gh +gh +gh +gh +gh +gz +fZ +hf +gq +gq +gq +hf +hf +hf +hf +hf +hf +hf +hf +hf +gq +gq +gq +hf +fZ ge +gh +gh +gh +gh +gh +gh +gh +gh +gh +gz +fZ aa aa aa @@ -78274,8 +78220,8 @@ ab ab ab ab -fZ -gb +fU +fW ab aa aa @@ -78316,49 +78262,49 @@ aa aa aa aa +fZ ge -gj -gm -gy -gm -gy -gm -gy -gm -gy -gm -gE -ge -hk -gv -hk -hk -hk -hk -hk -hk -hH -hk -hk -hk -hk -hk -hk -gv -hk -ge -gj -gm -gy -gm -gy -gm -gy -gm -gy -gm -gE +gh +gt +gh +gt +gh +gt +gh +gt +gh +gz +fZ +hf +gq +hf +hf +hf +hf +hf +hf +hC +hf +hf +hf +hf +hf +hf +gq +hf +fZ ge +gh +gt +gh +gt +gh +gt +gh +gt +gh +gz +fZ aa aa aa @@ -78491,39 +78437,39 @@ aa "} (250,1,1) = {" ac -at -aF -aF -aF -aF -aY -aY -aY -aY -bi -bl -bC -bR -bR -bR -ct -cH -cP -cP -cP -dv -bl -dP -dP -dP -dP -dP -dP -dP -dP -dP -dP -fN +as +aD +aD +aD +aD +aW +aW +aW +aW +bg +bj +bA +bO +bO +bO +cn +cA +cI +cI +cI +dj +bj +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +fx ab ab ab @@ -78531,91 +78477,91 @@ ab ab ab ab +fU +fW +ab +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 +aa +aa +aa +aa fZ -gb -ab -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 -aa -aa -aa -aa ge -gj -gm -gy -gm -gy -gm -gy -gm -gy -gm -gE -ge -hk -gv -hk -hk -hk -hk -hk -hH -hL -hH -hk -hk -hk -hk -hk -gv -hk -ge -gj -gm -gy -gm -gy -gm -gy -gm -gy -gm -gE +gh +gt +gh +gt +gh +gt +gh +gt +gh +gz +fZ +hf +gq +hf +hf +hf +hf +hf +hC +hG +hC +hf +hf +hf +hf +hf +gq +hf +fZ ge +gh +gt +gh +gt +gh +gt +gh +gt +gh +gz +fZ aa aa aa @@ -78748,39 +78694,39 @@ aa "} (251,1,1) = {" ac -au -aG -aG -aG -aG -aG -aG -aG -aG +at +aE +aE +aE +aE +aE +aE +aE +aE +bh bj -bl -bD -bS -ce -bS -cu -cI -bS -dc -bS -dw -bl -dQ -eo -eG -eR -eR -eR -eR -fs -fB -fK -fN +bB +bP +bZ +bP +co +cB +bP +cV +bP +dk +bj +dC +ea +er +eE +eE +eE +eE +fg +fp +fu +fx ab ab ab @@ -78788,91 +78734,91 @@ ab ab ab ab +fU +fW +ab +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 +aa +aa +aa +aa fZ -gb -ab -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 -aa -aa -aa -aa ge -gj -gm -gy -gm -gy -gm -gy -gm -gy -gm -gE -ge -hk -gv -hk -hk -hk -hk -hk -hk -hH -hk -hk -hk -hk -hk -hk -gv -hk -ge -gj -gm -gy -gm -gy -gm -gy -gm -gy -gm -gE +gh +gt +gh +gt +gh +gt +gh +gt +gh +gz +fZ +hf +gq +hf +hf +hf +hf +hf +hf +hC +hf +hf +hf +hf +hf +hf +gq +hf +fZ ge +gh +gt +gh +gt +gh +gt +gh +gt +gh +gz +fZ aa aa aa @@ -79005,39 +78951,39 @@ aa "} (252,1,1) = {" ac -au -aG -aG -aG -aG -aG -aG -aG -aG +at +aE +aE +aE +aE +aE +aE +aE +aE +bh bj -bl -bD -bS -ce -bS -cu -cI -bS -dc -bS -dw -bl -dR -ep -eH -eS -eS -eS -eS -ft -fB -fL -fN +bB +bP +bZ +bP +co +cB +bP +cV +bP +dk +bj +dD +eb +es +eF +eF +eF +eF +fh +fp +fv +fx ab ab ab @@ -79045,91 +78991,91 @@ ab ab ab ab +fU +fW +ab +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 +aa +aa +aa +aa fZ -gb -ab -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 -aa -aa -aa -aa ge -gj -gm -gm -gm -gm -gm -gm -gm -gm -gm -gE -ge -hk -gv -gv -gv -hk -hk -hk -hk -hk -hk -hk -hk -hk -gv -gv -gv -hk -ge -gj -gm -gm -gm -gm -gm -gm -gm -gm -gm -gE +gh +gh +gh +gh +gh +gh +gh +gh +gh +gz +fZ +hf +gq +gq +gq +hf +hf +hf +hf +hf +hf +hf +hf +hf +gq +gq +gq +hf +fZ ge +gh +gh +gh +gh +gh +gh +gh +gh +gh +gz +fZ aa aa aa @@ -79262,46 +79208,46 @@ aa "} (253,1,1) = {" ac -au -aG -aG -aG -aG -aG -aG -aG -aG +at +aE +aE +aE +aE +aE +aE +aE +aE +bh bj -bl -bD -bS -ce -bS -cu -cI -bS -dc -bS -dw -bl -dS -eq -eI -eT -eT -eT -eT -fu -fB -fM -fN +bB +bP +bZ +bP +co +cB +bP +cV +bP +dk +bj +dE +ec +et +eG +eG +eG +eG +fi +fp +fw +fx ab -fS -fS -fS -fS -fS -fS +fC +fC +fC +fC +fC +fC ab ab ab @@ -79344,49 +79290,49 @@ aa aa aa aa -ge -gk -gw -gw -gw -gw -gw -gw -gw -gw -gw -gF -hl -hk -hk -hk -hk -hk -ge -hk -hk -hk -hk -hk -ge -hk -hk -hk -hk -hk -hl -gk -gw -gw -gw -gw -gw -gw -gw -gw -gw -gF -ge +fZ +gf +gr +gr +gr +gr +gr +gr +gr +gr +gr +gA +hg +hf +hf +hf +hf +hf +fZ +hf +hf +hf +hf +hf +fZ +hf +hf +hf +hf +hf +hg +gf +gr +gr +gr +gr +gr +gr +gr +gr +gr +gA +fZ aa aa aa @@ -79519,46 +79465,46 @@ aa "} (254,1,1) = {" ac -av -aH -aH -aH -aH -aZ -aZ -aZ -aZ -bk -bl -bE -bT -bT -bT -cv +au +aF +aF +aF +aF +aX +aX +aX +aX +bi +bj +bC +bQ +bQ +bQ +cp +cC cJ -cQ -cQ -cQ -dx -bl -dT -dT -dT -dT -dT -dT -dT -dT -dT -dT -fN +cJ +cJ +dl +bj +dF +dF +dF +dF +dF +dF +dF +dF +dF +dF +fx ab -fW -fW -fW -fW -fW -fW +fK +fK +fK +fK +fK +fK ab aa aa @@ -79601,49 +79547,49 @@ aa aa aa aa -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge -ge +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ aa aa aa @@ -79776,27 +79722,27 @@ aa "} (255,1,1) = {" ab -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw +av +av +av +av +av +av +av +av +av +av ab -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw +av +av +av +av +av +av +av +av +av +av ab ag ag @@ -80028,6 +79974,6 @@ aa aa aa aa -HT -HT +Mc +Mc "} diff --git a/_maps/shuttles/emergency_cere.dmm b/_maps/shuttles/emergency_cere.dmm index 25ed35ba1c..58074de76d 100644 --- a/_maps/shuttles/emergency_cere.dmm +++ b/_maps/shuttles/emergency_cere.dmm @@ -539,6 +539,7 @@ name = "Cere emergency shuttle"; port_direction = 4; preferred_direction = 2; + timid = 1; width = 42 }, /turf/open/floor/plating, diff --git a/_maps/shuttles/emergency_delta.dmm b/_maps/shuttles/emergency_delta.dmm index 6ed6c2619b..8b40d11782 100644 --- a/_maps/shuttles/emergency_delta.dmm +++ b/_maps/shuttles/emergency_delta.dmm @@ -442,7 +442,8 @@ name = "Delta emergency shuttle"; width = 30; preferred_direction = 2; - port_direction = 4 + port_direction = 4; + timid = 1 }, /turf/open/floor/plating, /area/shuttle/escape) diff --git a/_maps/shuttles/emergency_meta.dmm b/_maps/shuttles/emergency_meta.dmm index 641ea8d36f..0456b5cde9 100644 --- a/_maps/shuttles/emergency_meta.dmm +++ b/_maps/shuttles/emergency_meta.dmm @@ -34,6 +34,7 @@ dwidth = 5; height = 14; name = "Meta emergency shuttle"; + timid = 1; width = 25 }, /turf/open/floor/mineral/titanium/blue, diff --git a/_maps/shuttles/emergency_pubby.dmm b/_maps/shuttles/emergency_pubby.dmm index 885e4c26a4..de901a27ba 100644 --- a/_maps/shuttles/emergency_pubby.dmm +++ b/_maps/shuttles/emergency_pubby.dmm @@ -280,6 +280,7 @@ height = 15; name = "Pubby emergency shuttle"; port_direction = 4; + timid = 1; width = 18 }, /turf/open/floor/plating, diff --git a/_maps/shuttles/emergency_supermatter.dmm b/_maps/shuttles/emergency_supermatter.dmm index 5324551cec..78201f2a25 100644 --- a/_maps/shuttles/emergency_supermatter.dmm +++ b/_maps/shuttles/emergency_supermatter.dmm @@ -50,7 +50,9 @@ /turf/open/floor/noslip, /area/shuttle/escape) "am" = ( -/obj/structure/reflector/single/anchored, +/obj/structure/reflector/single/anchored{ + dir = 6 + }, /obj/effect/turf_decal/stripes/line{ dir = 8 }, @@ -62,9 +64,8 @@ /area/shuttle/escape) "ao" = ( /obj/structure/reflector/single{ - icon_state = "reflector"; - dir = 8; - anchored = 1 + anchored = 1; + dir = 10 }, /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -196,26 +197,28 @@ /turf/open/floor/plating/airless, /area/shuttle/escape) "aN" = ( -/obj/structure/reflector/single/anchored, +/obj/structure/reflector/single/anchored{ + dir = 6 + }, /turf/open/floor/plating/airless, /area/shuttle/escape) "aO" = ( -/obj/structure/reflector/double/anchored, +/obj/structure/reflector/double/anchored{ + dir = 6 + }, /turf/open/floor/plating/airless, /area/shuttle/escape) "aP" = ( /obj/structure/reflector/double{ - icon_state = "reflector_double"; - dir = 1; - anchored = 1 + anchored = 1; + dir = 10 }, /turf/open/floor/plating/airless, /area/shuttle/escape) "aQ" = ( /obj/structure/reflector/single{ - icon_state = "reflector"; - dir = 8; - anchored = 1 + anchored = 1; + dir = 10 }, /turf/open/floor/plating/airless, /area/shuttle/escape) diff --git a/_maps/shuttles/whiteship_box.dmm b/_maps/shuttles/whiteship_box.dmm index 309c366eaf..852b124726 100644 --- a/_maps/shuttles/whiteship_box.dmm +++ b/_maps/shuttles/whiteship_box.dmm @@ -11,12 +11,14 @@ "ad" = ( /obj/machinery/door/airlock/titanium, /obj/docking_port/mobile{ + callTime = 250; dheight = 0; dir = 2; dwidth = 11; height = 22; id = "whiteship"; launch_status = 0; + movement_force = list("KNOCKDOWN" = 0, "THROW" = 0); name = "NT Medical Ship"; port_direction = 8; preferred_direction = 4; @@ -374,7 +376,9 @@ /turf/open/floor/plating, /area/shuttle/abandoned) "bu" = ( -/obj/machinery/computer/camera_advanced/shuttle_docker/whiteship, +/obj/machinery/computer/camera_advanced/shuttle_docker/whiteship{ + view_range = 18 + }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) diff --git a/_maps/shuttles/whiteship_cere.dmm b/_maps/shuttles/whiteship_cere.dmm index 913a9e65b8..c735cf8cff 100644 --- a/_maps/shuttles/whiteship_cere.dmm +++ b/_maps/shuttles/whiteship_cere.dmm @@ -23,6 +23,7 @@ name = "NT Recovery White-Ship"; port_direction = 8; preferred_direction = 1; + timid = 1; roundstart_move = "whiteship_away"; width = 16 }, diff --git a/_maps/shuttles/whiteship_meta.dmm b/_maps/shuttles/whiteship_meta.dmm index 8f4d4eed88..c5109c16d2 100644 --- a/_maps/shuttles/whiteship_meta.dmm +++ b/_maps/shuttles/whiteship_meta.dmm @@ -3,73 +3,58 @@ /turf/open/space, /area/space) "ab" = ( -/turf/closed/wall/mineral/titanium/overspace, +/turf/closed/wall/mineral/titanium, /area/shuttle/abandoned) "ac" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"ad" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"ae" = ( /obj/effect/spawner/structure/window/shuttle, /turf/open/floor/plating, /area/shuttle/abandoned) -"af" = ( -/turf/closed/wall/mineral/titanium, +"ad" = ( +/obj/machinery/door/airlock/titanium{ + name = "recovery shuttle external airlock" + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"ag" = ( +"ae" = ( +/obj/machinery/door/airlock/titanium{ + name = "recovery shuttle external airlock" + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, /obj/docking_port/mobile{ + callTime = 250; dheight = 0; dir = 2; dwidth = 11; height = 15; id = "whiteship"; launch_status = 0; + movement_force = list("KNOCKDOWN" = 0, "THROW" = 0); name = "NT Recovery White-Ship"; port_direction = 8; preferred_direction = 4; roundstart_move = "whiteship_away"; - width = 27 - }, -/obj/machinery/door/airlock/titanium{ - name = "recovery shuttle external airlock" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" + timid = 1; + width = 28 }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"ah" = ( -/obj/machinery/door/airlock/titanium{ - name = "recovery shuttle external airlock" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"ai" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"aj" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"ak" = ( +"af" = ( +/turf/open/space/basic, +/area/space) +"ag" = ( /obj/structure/shuttle/engine/propulsion/left{ dir = 8 }, /turf/open/floor/plating/airless, /area/shuttle/abandoned) -"al" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"am" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"an" = ( +"ah" = ( /obj/structure/toilet{ pixel_y = 9 }, @@ -80,12 +65,12 @@ /obj/effect/decal/cleanable/greenglow{ desc = "Looks like something's sprung a leak" }, -/obj/structure/light_construct/small{ +/obj/machinery/light/small/built{ dir = 8 }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"ao" = ( +"ai" = ( /obj/structure/mirror{ pixel_x = 28 }, @@ -103,10 +88,7 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"ap" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"aq" = ( +"aj" = ( /obj/structure/closet/wardrobe/mixed, /obj/item/clothing/under/rank/centcom_officer{ desc = "A badge on the arm indicates that it's meant to be worn by CentCom recovery teams. This one seems dusty and clearly hasn't been cleaned in some time."; @@ -122,7 +104,7 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"ar" = ( +"ak" = ( /obj/structure/table, /obj/item/storage/pill_bottle/dice{ pixel_y = 3 @@ -133,7 +115,7 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"as" = ( +"al" = ( /obj/structure/table, /obj/item/stack/sheet/metal{ amount = 50 @@ -150,7 +132,7 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"at" = ( +"am" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; @@ -158,7 +140,7 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"au" = ( +"an" = ( /obj/structure/tank_dispenser/oxygen{ layer = 2.7; pixel_x = -1; @@ -168,15 +150,9 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/machinery/light/small{ - dir = 1 - }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"av" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"aw" = ( +"ao" = ( /obj/structure/sign/vacuum{ pixel_x = -32 }, @@ -184,12 +160,12 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/structure/light_construct/small{ +/obj/machinery/light/small/built{ dir = 8 }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"ax" = ( +"ap" = ( /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" @@ -200,7 +176,7 @@ }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"ay" = ( +"aq" = ( /obj/structure/closet/crate/medical{ name = "medical crate" }, @@ -217,9 +193,12 @@ name = "dust" }, /obj/effect/turf_decal/bot, +/obj/machinery/light/small/built{ + dir = 8 + }, /turf/open/floor/plasteel, /area/shuttle/abandoned) -"az" = ( +"ar" = ( /obj/structure/closet/crate{ name = "spare equipment crate" }, @@ -237,7 +216,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/shuttle/abandoned) -"aA" = ( +"as" = ( /obj/item/storage/box/lights/mixed, /obj/item/cigbutt, /obj/structure/closet/crate{ @@ -260,7 +239,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/shuttle/abandoned) -"aB" = ( +"at" = ( /obj/structure/closet/crate{ name = "emergency supplies crate" }, @@ -285,18 +264,15 @@ name = "dust" }, /obj/effect/turf_decal/bot, -/obj/structure/light_construct/small{ - dir = 1 - }, /turf/open/floor/plasteel, /area/shuttle/abandoned) -"aC" = ( +"au" = ( /obj/structure/shuttle/engine/propulsion{ dir = 8 }, /turf/open/floor/plating/airless, /area/shuttle/abandoned) -"aD" = ( +"av" = ( /obj/structure/shuttle/engine/heater{ dir = 8 }, @@ -305,13 +281,7 @@ }, /turf/open/floor/plating/airless, /area/shuttle/abandoned) -"aE" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"aF" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"aG" = ( +"aw" = ( /obj/machinery/door/airlock/titanium{ name = "bathroom" }, @@ -321,42 +291,34 @@ }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"aH" = ( +"ax" = ( /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/blood/gibs/old, /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/effect/decal/cleanable/ash{ +/obj/effect/decal/remains/human{ desc = "They look like human remains, and have clearly been gnawed at."; - icon = 'icons/effects/blood.dmi'; - icon_state = "remains"; - name = "remains" }, /obj/item/gun/energy/laser/retro, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"aI" = ( +"ay" = ( /obj/structure/bed, /obj/item/bedsheet/centcom, +/obj/effect/decal/remains/human, /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/structure/light_construct/small{ +/obj/machinery/light/small/built{ dir = 4 }, -/obj/effect/decal/cleanable/ash{ - desc = "They look like human remains, and have clearly been gnawed at."; - icon = 'icons/effects/blood.dmi'; - icon_state = "remains"; - name = "remains" - }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"aJ" = ( +"az" = ( /obj/structure/table, /obj/item/storage/belt/utility, /obj/item/storage/belt/utility, @@ -368,12 +330,12 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/structure/light_construct/small{ +/obj/machinery/light/small/built{ dir = 8 }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"aK" = ( +"aA" = ( /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" @@ -381,14 +343,14 @@ /obj/effect/decal/cleanable/oil, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"aL" = ( +"aB" = ( /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"aM" = ( +"aC" = ( /obj/machinery/door/airlock/titanium{ name = "E.V.A. equipment" }, @@ -398,22 +360,19 @@ }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"aN" = ( +"aD" = ( /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/blood/gibs/old, /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/effect/decal/cleanable/ash{ +/obj/effect/decal/remains/human{ desc = "They look like human remains, and have clearly been gnawed at."; - icon = 'icons/effects/blood.dmi'; - icon_state = "remains"; - name = "remains" }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"aO" = ( +"aE" = ( /obj/machinery/door/airlock/titanium{ name = "cargo bay" }, @@ -424,7 +383,7 @@ dir = 1 }, /area/shuttle/abandoned) -"aP" = ( +"aF" = ( /obj/effect/decal/cleanable/oil, /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; @@ -437,7 +396,7 @@ dir = 1 }, /area/shuttle/abandoned) -"aQ" = ( +"aG" = ( /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" @@ -449,7 +408,7 @@ dir = 1 }, /area/shuttle/abandoned) -"aR" = ( +"aH" = ( /obj/effect/decal/cleanable/robot_debris/old, /obj/effect/decal/cleanable/oil, /obj/effect/decal/cleanable/dirt{ @@ -463,9 +422,8 @@ dir = 1 }, /area/shuttle/abandoned) -"aS" = ( +"aI" = ( /obj/machinery/shower{ - icon_state = "shower"; dir = 4 }, /obj/machinery/door/window/westright{ @@ -476,16 +434,13 @@ name = "dust" }, /obj/item/soap/nanotrasen, -/obj/effect/decal/cleanable/ash{ +/obj/effect/decal/remains/human{ desc = "They look like human remains, and have clearly been gnawed at."; - icon = 'icons/effects/blood.dmi'; - icon_state = "remains"; - name = "remains" }, /obj/effect/decal/cleanable/blood/gibs/old, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"aT" = ( +"aJ" = ( /obj/effect/decal/cleanable/blood/old, /obj/structure/mirror{ pixel_x = 28 @@ -494,12 +449,12 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/machinery/light/small{ +/obj/machinery/light/small/built{ dir = 4 }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"aU" = ( +"aK" = ( /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; @@ -512,7 +467,7 @@ }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"aV" = ( +"aL" = ( /obj/structure/bed, /obj/item/bedsheet/centcom, /obj/effect/decal/cleanable/dirt{ @@ -521,7 +476,7 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"aW" = ( +"aM" = ( /obj/structure/table, /obj/item/stack/sheet/glass{ amount = 50; @@ -538,7 +493,7 @@ /obj/item/wrench, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"aX" = ( +"aN" = ( /obj/structure/rack{ dir = 8; layer = 2.9; @@ -563,37 +518,47 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"aY" = ( +"aO" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" }, +/obj/machinery/light/small{ + dir = 4 + }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"aZ" = ( -/turf/closed/wall/mineral/titanium, +"aP" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/machinery/light/small/built{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"ba" = ( +"aQ" = ( /obj/effect/decal/cleanable/oil, /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" }, /obj/effect/turf_decal/bot, -/obj/structure/light_construct/small, /turf/open/floor/plasteel, /area/shuttle/abandoned) -"bb" = ( +"aR" = ( /obj/structure/closet/emcloset, /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" }, /obj/effect/turf_decal/bot, +/obj/machinery/light/small, /turf/open/floor/plasteel, /area/shuttle/abandoned) -"bc" = ( +"aS" = ( /obj/structure/closet/firecloset/full, /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; @@ -602,7 +567,11 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/shuttle/abandoned) -"bd" = ( +"aT" = ( +/obj/structure/sign/restroom, +/turf/closed/wall/mineral/titanium, +/area/shuttle/abandoned) +"aU" = ( /obj/machinery/door/airlock/titanium{ name = "bathroom" }, @@ -613,10 +582,7 @@ }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"be" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"bf" = ( +"aV" = ( /obj/machinery/door/airlock/titanium{ name = "dormitory" }, @@ -627,7 +593,7 @@ }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"bg" = ( +"aW" = ( /obj/machinery/vending/boozeomat{ icon_deny = "smartfridge"; icon_state = "smartfridge"; @@ -636,13 +602,7 @@ }, /turf/closed/wall/mineral/titanium, /area/shuttle/abandoned) -"bh" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"bi" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"bj" = ( +"aX" = ( /obj/machinery/door/airlock/titanium{ name = "recovery shuttle interior airlock" }, @@ -656,10 +616,11 @@ }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"bk" = ( +"aY" = ( +/obj/structure/sign/cargo, /turf/closed/wall/mineral/titanium, /area/shuttle/abandoned) -"bl" = ( +"aZ" = ( /obj/machinery/door/airlock/titanium{ name = "cargo bay" }, @@ -674,13 +635,19 @@ dir = 1 }, /area/shuttle/abandoned) -"bm" = ( +"ba" = ( +/obj/machinery/porta_turret/centcom_shuttle/weak{ + dir = 4 + }, +/turf/closed/wall/mineral/titanium, +/area/shuttle/abandoned) +"bb" = ( /obj/machinery/vending/cigarette{ use_power = 0 }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"bn" = ( +"bc" = ( /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; @@ -689,18 +656,18 @@ /obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"bo" = ( +"bd" = ( /obj/effect/decal/cleanable/blood/gibs/old, /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/machinery/light{ +/obj/machinery/light/built{ dir = 1 }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"bp" = ( +"be" = ( /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; @@ -708,7 +675,7 @@ }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"bq" = ( +"bf" = ( /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" @@ -716,7 +683,17 @@ /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"br" = ( +"bg" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/machinery/light/built{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"bh" = ( /obj/effect/decal/cleanable/cobweb, /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; @@ -726,20 +703,20 @@ /obj/item/device/camera, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"bs" = ( +"bi" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/structure/light_construct{ - dir = 1 - }, /obj/item/folder/blue, /obj/item/pen, +/obj/machinery/light{ + dir = 1 + }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"bt" = ( +"bj" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; @@ -748,7 +725,7 @@ /obj/item/storage/photo_album, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"bu" = ( +"bk" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -1; @@ -760,7 +737,7 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"bv" = ( +"bl" = ( /obj/structure/reagent_dispensers/fueltank, /obj/structure/sign/vacuum{ pixel_x = -32 @@ -769,25 +746,23 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/structure/light_construct/small{ +/obj/machinery/light/small/built{ dir = 4 }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"bw" = ( -/obj/machinery/vending/coffee{ - use_power = 0 - }, +"bm" = ( +/obj/machinery/vending/coffee, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"bx" = ( +"bn" = ( /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"by" = ( +"bo" = ( /obj/structure/chair, /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; @@ -795,7 +770,7 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"bz" = ( +"bp" = ( /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" @@ -806,17 +781,21 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"bA" = ( +"bq" = ( /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/structure/fluff/empty_sleeper/nanotrasen{ - dir = 1 +/obj/machinery/turretid{ + icon_state = "control_kill"; + lethal = 1; + locked = 0; + pixel_x = -28; + req_access = null }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"bB" = ( +"br" = ( /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" @@ -825,22 +804,12 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/structure/fluff/empty_sleeper/nanotrasen{ - dir = 1 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"bC" = ( /obj/structure/chair/office/light{ - dir = 4 + dir = 1 }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, +/turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"bD" = ( +"bs" = ( /obj/structure/table, /obj/item/folder/blue, /obj/effect/decal/cleanable/dirt{ @@ -854,7 +823,7 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"bE" = ( +"bt" = ( /obj/machinery/door/airlock/titanium{ name = "recovery shuttle interior airlock" }, @@ -864,7 +833,7 @@ }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"bF" = ( +"bu" = ( /obj/structure/chair{ dir = 4 }, @@ -874,7 +843,7 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"bG" = ( +"bv" = ( /obj/structure/table, /obj/item/reagent_containers/food/drinks/shaker, /obj/effect/decal/cleanable/dirt{ @@ -883,7 +852,7 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"bH" = ( +"bw" = ( /obj/structure/table, /obj/item/reagent_containers/food/condiment/peppermill{ pixel_x = 3; @@ -899,7 +868,7 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"bI" = ( +"bx" = ( /obj/structure/table, /obj/item/storage/fancy/donut_box, /obj/effect/decal/cleanable/dirt{ @@ -908,7 +877,7 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"bJ" = ( +"by" = ( /obj/structure/chair{ dir = 8 }, @@ -918,7 +887,7 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"bK" = ( +"bz" = ( /obj/machinery/door/airlock/titanium{ name = "living quarters" }, @@ -928,7 +897,7 @@ }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"bL" = ( +"bA" = ( /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" @@ -945,7 +914,7 @@ /obj/structure/table, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"bM" = ( +"bB" = ( /obj/item/clothing/suit/bio_suit, /obj/item/clothing/suit/bio_suit, /obj/effect/decal/cleanable/dirt{ @@ -961,22 +930,19 @@ /obj/structure/table, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"bN" = ( +"bC" = ( /obj/effect/decal/cleanable/blood/gibs/old, /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/effect/decal/cleanable/ash{ +/obj/effect/decal/remains/human{ desc = "They look like human remains, and have clearly been gnawed at."; - icon = 'icons/effects/blood.dmi'; - icon_state = "remains"; - name = "remains" }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"bO" = ( +"bD" = ( /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; @@ -985,7 +951,7 @@ /obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"bP" = ( +"bE" = ( /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" @@ -999,7 +965,7 @@ /obj/item/clothing/head/helmet/swat/nanotrasen, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"bQ" = ( +"bF" = ( /obj/item/storage/toolbox/emergency{ pixel_x = -3; pixel_y = 3 @@ -1016,7 +982,7 @@ /obj/structure/table, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"bR" = ( +"bG" = ( /obj/machinery/door/airlock/titanium{ name = "bridge" }, @@ -1026,7 +992,7 @@ }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"bS" = ( +"bH" = ( /obj/effect/decal/cleanable/blood/old, /obj/structure/chair/comfy/black{ dir = 4 @@ -1037,7 +1003,7 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"bT" = ( +"bI" = ( /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" @@ -1045,22 +1011,22 @@ /obj/machinery/computer/shuttle/white_ship, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"bU" = ( +"bJ" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/machinery/light/small{ +/obj/structure/light_construct/small{ dir = 4 }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"bV" = ( +"bK" = ( /obj/machinery/vending/cola/random, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"bW" = ( +"bL" = ( /obj/structure/chair{ dir = 1 }, @@ -1070,41 +1036,16 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"bX" = ( +"bM" = ( +/obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/structure/fluff/empty_sleeper/nanotrasen{ - dir = 2; - pixel_y = 3 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"bY" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/fluff/empty_sleeper/nanotrasen{ - dir = 2; - pixel_y = 3 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"bZ" = ( /obj/structure/chair/office/light, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, +/turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"ca" = ( +"bN" = ( /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/blood/gibs/old, /obj/effect/decal/cleanable/dirt{ @@ -1115,15 +1056,12 @@ desc = "There's a gouge through the top where something has clawed clean through it. Whoever was wearing it probably doesn't need a hat any more."; name = "\improper damaged CentCom hat" }, -/obj/effect/decal/cleanable/ash{ +/obj/effect/decal/remains/human{ desc = "They look like human remains, and have clearly been gnawed at."; - icon = 'icons/effects/blood.dmi'; - icon_state = "remains"; - name = "remains" }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"cb" = ( +"bO" = ( /obj/item/phone{ pixel_x = -3; pixel_y = 3 @@ -1139,14 +1077,21 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"cc" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"cd" = ( +"bP" = ( /obj/machinery/vending/snack/random, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"ce" = ( +"bQ" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/machinery/light/built{ + dir = 2 + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"bR" = ( /obj/structure/sign/science{ pixel_y = -32 }, @@ -1156,27 +1101,40 @@ }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"cf" = ( -/obj/structure/frame/computer, +"bS" = ( /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" }, +/obj/machinery/light, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/abandoned) +"bT" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/structure/table, +/obj/item/device/megaphone, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"cg" = ( +"bU" = ( /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/structure/light_construct, /obj/machinery/computer/camera_advanced/shuttle_docker/whiteship{ + station_lock_override = 1; + view_range = 15; x_offset = -3; y_offset = -7 }, +/obj/machinery/light/built{ + dir = 2 + }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"ch" = ( +"bV" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; @@ -1185,7 +1143,7 @@ /obj/item/device/mass_spectrometer, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"ci" = ( +"bW" = ( /obj/structure/table, /obj/item/device/radio/off{ pixel_y = 6 @@ -1196,11 +1154,11 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"cj" = ( +"bX" = ( /obj/structure/sign/botany, /turf/closed/wall/mineral/titanium, /area/shuttle/abandoned) -"ck" = ( +"bY" = ( /obj/machinery/door/airlock/titanium{ name = "hydroponics" }, @@ -1210,7 +1168,7 @@ }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"cl" = ( +"bZ" = ( /obj/machinery/door/airlock/titanium{ name = "kitchen" }, @@ -1220,7 +1178,7 @@ }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"cm" = ( +"ca" = ( /obj/machinery/door/airlock/titanium{ name = "laboratory" }, @@ -1230,11 +1188,11 @@ }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"cn" = ( +"cb" = ( /obj/structure/sign/bluecross_2, /turf/closed/wall/mineral/titanium, /area/shuttle/abandoned) -"co" = ( +"cc" = ( /obj/machinery/door/airlock/titanium{ name = "medbay"; welded = 0 @@ -1245,10 +1203,7 @@ }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"cp" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"cq" = ( +"cd" = ( /obj/item/storage/bag/plants/portaseeder, /obj/structure/table, /obj/item/reagent_containers/spray/plantbgone{ @@ -1269,36 +1224,38 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"cr" = ( +"ce" = ( /obj/machinery/biogenerator{ idle_power_usage = 0; use_power = 0 }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"cs" = ( +"cf" = ( /obj/machinery/vending/hydroseeds{ - pixel_x = 2; use_power = 0 }, /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/structure/light_construct/small{ +/obj/machinery/light/small/built{ dir = 1 }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"ct" = ( +"cg" = ( /obj/machinery/processor, /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" }, +/obj/machinery/light/small/built{ + dir = 1 + }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"cu" = ( +"ch" = ( /obj/structure/kitchenspike, /obj/effect/decal/cleanable/blood/gibs/old, /obj/effect/decal/cleanable/dirt{ @@ -1307,7 +1264,7 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"cv" = ( +"ci" = ( /obj/structure/table, /obj/machinery/microwave{ pixel_x = -3; @@ -1321,7 +1278,7 @@ /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"cw" = ( +"cj" = ( /obj/effect/decal/cleanable/oil, /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; @@ -1329,16 +1286,7 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"cx" = ( -/obj/structure/fluff/empty_sleeper/nanotrasen, -/obj/item/circuitboard/machine/autolathe, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cy" = ( +"ck" = ( /obj/machinery/sleeper{ dir = 4; use_power = 0 @@ -1349,7 +1297,7 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"cz" = ( +"cl" = ( /obj/structure/closet/crate/freezer, /obj/item/reagent_containers/blood/empty{ pixel_x = -3; @@ -1364,7 +1312,7 @@ /obj/effect/decal/cleanable/xenoblood, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"cA" = ( +"cm" = ( /obj/structure/table/optable, /obj/item/surgical_drapes, /obj/item/storage/firstaid/regular, @@ -1372,12 +1320,12 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/structure/light_construct/small{ +/obj/machinery/light/small/built{ dir = 1 }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"cB" = ( +"cn" = ( /obj/structure/table, /obj/item/wrench, /obj/item/crowbar, @@ -1391,12 +1339,12 @@ /obj/item/wirecutters, /obj/item/device/plant_analyzer, /obj/item/reagent_containers/glass/bucket, -/obj/structure/light_construct/small{ +/obj/machinery/light/small/built{ dir = 8 }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"cC" = ( +"co" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 @@ -1407,13 +1355,13 @@ }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"cD" = ( +"cp" = ( /obj/machinery/smartfridge{ use_power = 0 }, /turf/closed/wall/mineral/titanium, /area/shuttle/abandoned) -"cE" = ( +"cq" = ( /obj/structure/sink{ dir = 8; pixel_x = -12; @@ -1425,7 +1373,7 @@ }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"cF" = ( +"cr" = ( /obj/effect/decal/cleanable/egg_smudge, /obj/effect/decal/cleanable/flour, /obj/effect/decal/cleanable/dirt{ @@ -1434,7 +1382,7 @@ }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"cG" = ( +"cs" = ( /obj/structure/table, /obj/item/kitchen/rollingpin, /obj/item/kitchen/knife, @@ -1442,21 +1390,22 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/machinery/light/small{ +/obj/machinery/light/small/built{ dir = 4 }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"cH" = ( -/obj/structure/fluff/empty_sleeper/nanotrasen, -/obj/item/circuitboard/machine/chem_dispenser, +"ct" = ( /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" }, +/obj/machinery/light/small{ + dir = 8 + }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"cI" = ( +"cu" = ( /obj/structure/chair/office/light, /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; @@ -1468,15 +1417,17 @@ }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"cJ" = ( -/obj/structure/fluff/empty_sleeper/nanotrasen, +"cv" = ( /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" }, +/obj/machinery/light/small/built{ + dir = 4 + }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"cK" = ( +"cw" = ( /obj/machinery/vending/wallmed{ name = "Emergency NanoMed"; pixel_x = -28; @@ -1488,12 +1439,12 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/structure/light_construct/small{ +/obj/machinery/light/small/built{ dir = 8 }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"cL" = ( +"cx" = ( /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" @@ -1502,21 +1453,18 @@ /obj/effect/decal/cleanable/xenoblood, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"cM" = ( +"cy" = ( /obj/effect/decal/cleanable/xenoblood, /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/obj/effect/decal/cleanable/ash{ +/obj/effect/decal/remains/xeno{ desc = "A pile of remains that look vaguely humanoid. The skull is abnormally elongated, and there are burns through some of the other bones."; - icon = 'icons/effects/blood.dmi'; - icon_state = "remainsxeno"; - name = "remains" }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"cN" = ( +"cz" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 @@ -1529,13 +1477,13 @@ }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"cO" = ( +"cA" = ( /obj/structure/shuttle/engine/propulsion/right{ dir = 8 }, /turf/open/floor/plating/airless, /area/shuttle/abandoned) -"cP" = ( +"cB" = ( /obj/machinery/hydroponics/constructable, /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; @@ -1543,7 +1491,7 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"cQ" = ( +"cC" = ( /obj/machinery/hydroponics/constructable, /obj/item/seeds/glowshroom, /obj/effect/decal/cleanable/dirt{ @@ -1552,7 +1500,7 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"cR" = ( +"cD" = ( /obj/structure/table, /obj/machinery/reagentgrinder{ pixel_y = 6 @@ -1563,7 +1511,7 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"cS" = ( +"cE" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt{ desc = "A thin layer of dust coating the floor."; @@ -1577,7 +1525,7 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"cT" = ( +"cF" = ( /obj/structure/table, /obj/item/reagent_containers/glass/beaker{ pixel_x = 5 @@ -1592,7 +1540,7 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"cU" = ( +"cG" = ( /obj/structure/table, /obj/item/reagent_containers/food/condiment/flour, /obj/item/reagent_containers/food/condiment/flour, @@ -1612,7 +1560,7 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"cV" = ( +"cH" = ( /obj/structure/table, /obj/item/reagent_containers/glass/beaker{ pixel_x = 5; @@ -1627,7 +1575,7 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"cW" = ( +"cI" = ( /obj/structure/table, /obj/item/folder/white{ pixel_x = 4; @@ -1639,7 +1587,7 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"cX" = ( +"cJ" = ( /obj/structure/table, /obj/item/hand_labeler, /obj/effect/decal/cleanable/dirt{ @@ -1648,7 +1596,7 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"cY" = ( +"cK" = ( /obj/structure/table, /obj/item/defibrillator, /obj/effect/decal/cleanable/dirt{ @@ -1657,7 +1605,7 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"cZ" = ( +"cL" = ( /obj/structure/table, /obj/item/reagent_containers/glass/bottle/epinephrine{ pixel_x = 6 @@ -1672,7 +1620,7 @@ }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"da" = ( +"cM" = ( /obj/structure/table, /obj/item/clothing/gloves/color/latex, /obj/item/clothing/mask/surgical, @@ -1683,567 +1631,455 @@ /obj/item/clothing/suit/apron/surgical, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"db" = ( +"cN" = ( /obj/structure/table, /obj/item/storage/backpack/duffelbag/med/surgery{ pixel_y = 4 }, /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) -"dc" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/light_construct/small{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"dd" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/light_construct{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"de" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/light_construct{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"df" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/light_construct, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"dg" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/light_construct, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"dh" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/light_construct/small{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"di" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"dj" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/light_construct/small{ - dir = 4 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"dk" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"dl" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/chair/office/light, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"dm" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/table, -/obj/item/device/megaphone, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) (1,1,1) = {" aa -aa -aa -aa -aa -ac -ac -ah -ac -ac -aa -aa -aa -aa -aa +af +af +af +af +ab +ab +ad +ab +ab +af +af +af +af +af "} (2,1,1) = {" aa -ak -aC -aC -aC -ae -bv -ax -bU -ae -aC -aC -aC -cO -aa -"} -(3,1,1) = {" +ag +au +au +au ac -ac -aD -aD -ac -ac -ac -bE -ac -ac -ac -aD -aD -ac -ac -"} -(4,1,1) = {" -ac -ac -ac -ac -ac -bm -bw -ax -bV -cd -ac -ac -ac -ac -ac -"} -(5,1,1) = {" -ac -an -ac -aS -ac -aL -aL -aL -aL -aL -ac -cq -cB -cP -ac -"} -(6,1,1) = {" -ae -ao -aG -aT -bd -bn -bx -bF -bz -aL -cj -cr -ax -cP -ae -"} -(7,1,1) = {" -ac -ac -ac -ac -ac -bo -by -bG -bW -aL -ck -ax -aL -cQ -ae -"} -(8,1,1) = {" -ae -aq -aH -aU -bf -bp -by -bH -bW -df -ac -cs -cC -cP -ac -"} -(9,1,1) = {" -ac -ar -aI -aV -bg -aL -by -bI -bW -aL -ac -ac -cD -ac -ac -"} -(10,1,1) = {" -ac -ac -ac -ac -ac -aL -bz +bl +ap bJ -bx -aL -cl -dh -cE -cR -ac -"} -(11,1,1) = {" -ac -as -aJ -aW -ac -bq -aL -ax -aL -aL -ac -ct -ax -cS -ae -"} -(12,1,1) = {" -ae -at -aK -aX -ac -ac -ac -bK -ac -ac -ac -cu -cF -cT -ae -"} -(13,1,1) = {" -ae -at -ax -aL -aM -ax -aL -aL -aL -aL -ac -cv -cG -cU -ac -"} -(14,1,1) = {" ac au -aL -aY +au +au +cA +af +"} +(3,1,1) = {" +ab +ab +av +av +ab +ab +ab +bt +ab +ab +ab +av +av +ab +ab +"} +(4,1,1) = {" +ab +ab +ab +ab +ab +bb +bm +ap +bK +bP +ab +ab +ab +ab +ab +"} +(5,1,1) = {" +ab +ah +ab +aI +aT +aB +aB +aB +aB +aB +ab +cd +cn +cB +ab +"} +(6,1,1) = {" ac -dd +ai +aw +aJ +aU +bc +bn +bu +bp +aB +bX +ce +ap +cB +ac +"} +(7,1,1) = {" +ab +ab +ab +ab +ab +bd +bo +bv +bL +aB +bY +ap +aB +cC +ac +"} +(8,1,1) = {" +ac +aj +ax +aK +aV +be +bo +bw +bL +bQ +ab +cf +co +cB +ab +"} +(9,1,1) = {" +ab +ak +ay +aL +aW +aB +bo bx bL -bx -aL -ac +aB +ab +ab +cp +ab +ab +"} +(10,1,1) = {" +ab +ab +ab +ab +ab +aB +bp +by +bn +aB +bZ +aB +cq +cD +ab +"} +(11,1,1) = {" +ab +al +az +aM +ab +bf +aB +ap +aB +aB +ab +cg +ap +cE ac +"} +(12,1,1) = {" ac +am +aA +aN +ab +ab +ab +bz +ab +ab +ab +ch +cr +cF ac +"} +(13,1,1) = {" ac +am +ap +aB +aC +ap +aB +aB +aB +aB +ab +ci +cs +cG +ab +"} +(14,1,1) = {" +ab +an +aB +aO +ab +aB +bn +bA +bn +aB +ab +ab +ab +ab +ab "} (15,1,1) = {" -ac -ac -aM -ac -ac -aL -bz -bM -bz -ce -ac -cw -di -cV -ac +ab +ab +aC +ab +ab +bg +bp +bB +bp +bR +ab +cj +ct +cH +ab "} (16,1,1) = {" -ag -aw -aL -ax -bj -aL -bp -bN -aL -aL -cm -aL +ad +ao +aB +ap +aX +aB +be +bC +aB +aB +ca +aB +cu cI -cW -ae +ac "} (17,1,1) = {" -ah -dc -aN -aL -bj -ax -aL -bO -ax -df -ac -bx -dj -cX -ac +ae +ap +aD +aP +aX +ap +aB +bD +ap +aB +ab +bn +cv +cJ +ab "} (18,1,1) = {" -ac -ac -aO -ac -ac -aL -bx -bP -bx -aL -ac -ac -ac -ac -ac +ab +ab +aE +ab +ab +aB +bn +bE +bn +bS +ab +ab +ab +ab +ab "} (19,1,1) = {" -ac -ay -aP -ba -ac -dd -bx -bQ -bz -aL -cn -cy +ab +aq +aF +aQ +aY +aB +bn +bF +bp +aB +cb +ck +cw cK -cY -ac +ab "} (20,1,1) = {" -ae -az -aQ -aQ -bl -aL -aL -ax -aL -aL -co -ax +ac +ar +aG +aG +aZ +aB +aB +ap +aB +aB +cc +ap +cx cL -cZ -ae +ac "} (21,1,1) = {" -ae -aA -aQ -bb ac -ac -ac -bR -ac -ac -ac -cz +as +aG +aR +ab +ab +ab +bG +ab +ab +ab +cl +cy cM -da -ae +ac "} (22,1,1) = {" -ac +ab +at +aH +aS +ab +bh +bq aB -aR -bc -ac -br -bx -aL -bx -dm -ac -cA +bn +bT +ab +cm +cz cN -db -ac +ab "} (23,1,1) = {" +ab +ab ac +ab +ab +bi +br +aB +bM +bU +ab +ab ac -ae -ac -ac -bs -dk -aL -dl -cg -ac -ac -ae -ac -ac +ab +ab "} (24,1,1) = {" aa -aa -aa -aa -ae -bt -aL -bS -ca -ch -ae -aa -aa -aa -aa +af +af +af +ac +bj +aB +bH +bN +bV +ac +af +af +af +af "} (25,1,1) = {" -aa -aa -aa -aa -ae -bu -bD -bT -cb -ci -ae -aa -aa -aa -aa +af +af +af +af +ac +bk +bs +bI +bO +bW +ac +af +af +af +af "} (26,1,1) = {" aa -aa -aa -aa +af +af +af +ba ac -ae -ae -ae -ae -ae ac -aa -aa -aa -aa +ac +ac +ac +ba +af +af +af +af "} (27,1,1) = {" aa @@ -2262,3 +2098,20 @@ aa aa aa "} +(28,1,1) = {" +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +"} From c1bd7bc6ba8071a7d63eb98bd6f2abfa89d89a9f Mon Sep 17 00:00:00 2001 From: deathride58 Date: Mon, 23 Oct 2017 12:56:26 -0400 Subject: [PATCH 085/227] Map syncs 1 - Code syncs --- code/game/machinery/porta_turret/portable_turret.dm | 9 +++++++++ code/game/objects/effects/decals/cleanable.dm | 2 +- code/game/objects/effects/decals/cleanable/aliens.dm | 2 +- code/game/objects/effects/decals/cleanable/humans.dm | 2 +- code/game/objects/effects/decals/cleanable/misc.dm | 6 +++--- code/game/objects/effects/decals/cleanable/robots.dm | 2 +- code/game/objects/effects/decals/remains.dm | 6 ++++++ 7 files changed, 22 insertions(+), 7 deletions(-) diff --git a/code/game/machinery/porta_turret/portable_turret.dm b/code/game/machinery/porta_turret/portable_turret.dm index f4a50551ca..01f92e41d4 100644 --- a/code/game/machinery/porta_turret/portable_turret.dm +++ b/code/game/machinery/porta_turret/portable_turret.dm @@ -624,6 +624,15 @@ /obj/machinery/porta_turret/centcom_shuttle/setup() return +/obj/machinery/porta_turret/centcom_shuttle/weak + max_integrity = 120 + integrity_failure = 60 + name = "Old Laser Turret" + desc = "A turret built with substandard parts and run down further with age. Still capable of delivering lethal lasers to the odd space carp, but not much else." + stun_projectile = /obj/item/projectile/beam/weak + lethal_projectile = /obj/item/projectile/beam/weak + faction = "neutral" + //////////////////////// //Turret Control Panel// //////////////////////// diff --git a/code/game/objects/effects/decals/cleanable.dm b/code/game/objects/effects/decals/cleanable.dm index 4a5ac2f60d..0e0c7c606e 100644 --- a/code/game/objects/effects/decals/cleanable.dm +++ b/code/game/objects/effects/decals/cleanable.dm @@ -4,7 +4,7 @@ var/list/random_icon_states = list() var/blood_state = "" //I'm sorry but cleanable/blood code is ass, and so is blood_DNA var/bloodiness = 0 //0-100, amount of blood in this decal, used for making footprints and affecting the alpha of bloody footprints - var/mergeable_decal = 1 //when two of these are on a same tile or do we need to merge them into just one? + var/mergeable_decal = TRUE //when two of these are on a same tile or do we need to merge them into just one? /obj/effect/decal/cleanable/Initialize(mapload, list/datum/disease/diseases) if (random_icon_states && length(src.random_icon_states) > 0) diff --git a/code/game/objects/effects/decals/cleanable/aliens.dm b/code/game/objects/effects/decals/cleanable/aliens.dm index 26b5bca1ec..333da7f48a 100644 --- a/code/game/objects/effects/decals/cleanable/aliens.dm +++ b/code/game/objects/effects/decals/cleanable/aliens.dm @@ -20,7 +20,7 @@ icon_state = "xgib1" layer = LOW_OBJ_LAYER random_icon_states = list("xgib1", "xgib2", "xgib3", "xgib4", "xgib5", "xgib6") - mergeable_decal = 0 + mergeable_decal = FALSE /obj/effect/decal/cleanable/xenoblood/xgibs/proc/streak(list/directions) set waitfor = 0 diff --git a/code/game/objects/effects/decals/cleanable/humans.dm b/code/game/objects/effects/decals/cleanable/humans.dm index bd01f717da..8861376e07 100644 --- a/code/game/objects/effects/decals/cleanable/humans.dm +++ b/code/game/objects/effects/decals/cleanable/humans.dm @@ -50,7 +50,7 @@ icon_state = "gibbl5" layer = LOW_OBJ_LAYER random_icon_states = list("gib1", "gib2", "gib3", "gib4", "gib5", "gib6") - mergeable_decal = 0 + mergeable_decal = FALSE /obj/effect/decal/cleanable/blood/gibs/Initialize(mapload, list/datum/disease/diseases) . = ..() diff --git a/code/game/objects/effects/decals/cleanable/misc.dm b/code/game/objects/effects/decals/cleanable/misc.dm index 583f63af3a..29d4fca0b9 100644 --- a/code/game/objects/effects/decals/cleanable/misc.dm +++ b/code/game/objects/effects/decals/cleanable/misc.dm @@ -9,7 +9,7 @@ desc = "Ashes to ashes, dust to dust, and into space." icon = 'icons/obj/objects.dmi' icon_state = "ash" - mergeable_decal = 0 + mergeable_decal = FALSE /obj/effect/decal/cleanable/ash/Initialize() . = ..() @@ -67,7 +67,7 @@ gender = NEUTER icon = 'icons/effects/effects.dmi' icon_state = "molten" - mergeable_decal = 0 + mergeable_decal = FALSE /obj/effect/decal/cleanable/molten_object/large name = "big gooey grey mass" @@ -144,7 +144,7 @@ desc = "The shredded remains of what appears to be clothing." icon_state = "shreds" gender = PLURAL - mergeable_decal = 0 + mergeable_decal = FALSE /obj/effect/decal/cleanable/shreds/ex_act(severity, target) if(severity == 1) //so shreds created during an explosion aren't deleted by the explosion. diff --git a/code/game/objects/effects/decals/cleanable/robots.dm b/code/game/objects/effects/decals/cleanable/robots.dm index b9d6e36b51..72a8689c75 100644 --- a/code/game/objects/effects/decals/cleanable/robots.dm +++ b/code/game/objects/effects/decals/cleanable/robots.dm @@ -9,7 +9,7 @@ random_icon_states = list("gib1", "gib2", "gib3", "gib4", "gib5", "gib6", "gib7") blood_state = BLOOD_STATE_OIL bloodiness = MAX_SHOE_BLOODINESS - mergeable_decal = 0 + mergeable_decal = FALSE /obj/effect/decal/cleanable/robot_debris/proc/streak(list/directions) set waitfor = 0 diff --git a/code/game/objects/effects/decals/remains.dm b/code/game/objects/effects/decals/remains.dm index 3d079d705b..b86c2f4f91 100644 --- a/code/game/objects/effects/decals/remains.dm +++ b/code/game/objects/effects/decals/remains.dm @@ -3,6 +3,12 @@ gender = PLURAL icon = 'icons/effects/blood.dmi' +/obj/effect/decal/remains/acid_act() + visible_message("[src] dissolve[gender==PLURAL?"":"s"] into a puddle of sizzling goop!") + playsound(src, 'sound/items/welder.ogg', 150, 1) + new /obj/effect/decal/cleanable/greenglow(drop_location()) + qdel(src) + /obj/effect/decal/remains/human desc = "They look like human remains. They have a strange aura about them." icon_state = "remains" From bc3e8968ab55fa849c868de2039aa84904a3d517 Mon Sep 17 00:00:00 2001 From: deathride58 Date: Mon, 23 Oct 2017 13:41:57 -0400 Subject: [PATCH 086/227] Deltastation + Metastation map changes --- .../map_files/Deltastation/DeltaStation2.dmm | 336383 +++++++-------- _maps/map_files/MetaStation/MetaStation.dmm | 136 +- tgstation.dme | 5 +- 3 files changed, 168234 insertions(+), 168290 deletions(-) diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm index db3d4ed886..65c8fbe139 100644 --- a/_maps/map_files/Deltastation/DeltaStation2.dmm +++ b/_maps/map_files/Deltastation/DeltaStation2.dmm @@ -1,168204 +1,168179 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/turf/open/space/basic, -/area/space) -"aab" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 24; - id = "syndicate_ne"; - name = "northeast of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space, -/area/space) -"aac" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 24; - id = "syndicate_n"; - name = "north of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space, -/area/space) -"aad" = ( -/obj/effect/landmark/carpspawn, -/turf/open/space, -/area/space) -"aae" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space, -/area/space) -"aaf" = ( -/obj/structure/lattice, -/turf/open/space, -/area/space) -"aag" = ( -/obj/machinery/power/tracker, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/fore) -"aah" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard/fore) -"aai" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/solar{ - id = "forestarboard"; - name = "Fore-Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/fore) -"aaj" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard/fore) -"aak" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard/fore) -"aal" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard/fore) -"aam" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard/fore) -"aan" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "forestarboard"; - name = "Fore-Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/fore) -"aao" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space, -/area/solar/starboard/fore) -"aap" = ( -/obj/docking_port/stationary/random{ - id = "pod_lavaland1"; - name = "lavaland" - }, -/turf/open/space, -/area/space) -"aaq" = ( -/obj/docking_port/stationary/random{ - id = "pod_lavaland2"; - name = "lavaland" - }, -/turf/open/space, -/area/space) -"aar" = ( -/obj/structure/lattice/catwalk, -/obj/effect/landmark/xeno_spawn, -/turf/open/space, -/area/solar/starboard/fore) -"aas" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/pod_1) -"aat" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/pod_1) -"aau" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/pod_2) -"aav" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/pod_2) -"aaw" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard/fore) -"aax" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"aay" = ( -/turf/closed/wall/mineral/plastitanium, -/area/hallway/secondary/entry) -"aaz" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/computer/shuttle/pod{ - pixel_x = -32; - possible_destinations = "pod_lavaland1"; - shuttleId = "pod1" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/pod_1) -"aaA" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/computer/shuttle/pod{ - pixel_x = -32; - possible_destinations = "pod_lavaland2"; - shuttleId = "pod2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/pod_2) -"aaB" = ( -/turf/closed/wall/mineral/plastitanium, -/area/construction/mining/aux_base) -"aaC" = ( -/obj/effect/turf_decal/delivery, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aaD" = ( -/turf/closed/wall, -/area/hallway/secondary/entry) -"aaE" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - pixel_x = 25 - }, -/obj/item/storage/pod{ - pixel_x = -26 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/pod_1) -"aaF" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - pixel_x = 25 - }, -/obj/item/storage/pod{ - pixel_x = -26 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/pod_2) -"aaG" = ( -/turf/closed/wall, -/area/construction/mining/aux_base) -"aaH" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space) -"aaI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aaJ" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aaK" = ( -/obj/structure/shuttle/engine/propulsion/burst, -/turf/closed/wall/mineral/titanium, -/area/shuttle/pod_1) -"aaL" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Escape Pod Airlock" - }, -/obj/docking_port/mobile/pod{ - id = "pod1"; - name = "escape pod 1"; - port_direction = 2 - }, -/obj/effect/turf_decal/stripes/end, -/turf/open/floor/plasteel/white, -/area/shuttle/pod_1) -"aaM" = ( -/obj/structure/shuttle/engine/propulsion/burst, -/turf/closed/wall/mineral/titanium, -/area/shuttle/pod_2) -"aaN" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Escape Pod Airlock" - }, -/obj/docking_port/mobile/pod{ - id = "pod2"; - name = "escape pod 2"; - port_direction = 2 - }, -/obj/effect/turf_decal/stripes/end, -/turf/open/floor/plasteel/white, -/area/shuttle/pod_2) -"aaO" = ( -/obj/item/stack/cable_coil, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard/fore) -"aaP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aaQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aaR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"aaS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"aaT" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"aaU" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; - name = "External Airlock"; - req_access_txt = "13" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aaV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/external{ - name = "Escape Pod 1" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aaW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/external{ - name = "Escape Pod 2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aaX" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/closet/emcloset/anchored, -/obj/structure/sign/vacuum{ - pixel_x = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aaY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aaZ" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aba" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"abb" = ( -/obj/structure/sign/pods{ - pixel_x = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"abc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"abd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"abe" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; - name = "External Airlock"; - req_access_txt = "13" - }, -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK"; - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"abf" = ( -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/fore) -"abg" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"abh" = ( -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/entry) -"abi" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/yellow/side{ - dir = 9 - }, -/area/construction/mining/aux_base) -"abj" = ( -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/construction/mining/aux_base) -"abk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plasteel/yellow/side{ - dir = 5 - }, -/area/construction/mining/aux_base) -"abl" = ( -/obj/structure/sign/electricshock, -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/fore) -"abm" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"abn" = ( -/obj/machinery/power/smes, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"abo" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/obj/machinery/camera{ - c_tag = "Solar - Fore Starboard"; - name = "solar camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"abp" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/shuttle/arrival) -"abq" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/arrival) -"abr" = ( -/obj/structure/table/reinforced, -/obj/item/storage/belt/utility, -/obj/item/wrench, -/turf/open/floor/plasteel/yellow/side{ - dir = 8 - }, -/area/construction/mining/aux_base) -"abs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/neutral, -/area/construction/mining/aux_base) -"abt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 4 - }, -/area/construction/mining/aux_base) -"abu" = ( -/obj/machinery/door/airlock/engineering{ - name = "Starboard Bow Solar Access"; - req_access_txt = "10" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars/starboard/fore) -"abv" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"abw" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"abx" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"aby" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; - name = "External Solar Access"; - req_access_txt = "10; 13" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars/starboard/fore) -"abz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/solars/starboard/fore) -"abA" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/space, -/area/solar/starboard/fore) -"abB" = ( -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"abC" = ( -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Dock - Fore"; - dir = 8; - name = "arrivals camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"abD" = ( -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"abE" = ( -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Shuttle - Fore Port"; - dir = 8; - name = "arrivals camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"abF" = ( -/obj/structure/window/reinforced, -/obj/structure/shuttle/engine/heater{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/shuttle/arrival) -"abG" = ( -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Shuttle - Fore Starboard"; - dir = 4; - name = "arrivals camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"abH" = ( -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"abI" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/mining_voucher, -/obj/machinery/camera{ - c_tag = "Auxillary Construction - Storage"; - dir = 4; - name = "engineering camera" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 8 - }, -/area/construction/mining/aux_base) -"abJ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/construction/mining/aux_base) -"abK" = ( -/turf/open/floor/plasteel/yellow/side{ - dir = 4 - }, -/area/construction/mining/aux_base) -"abL" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK" - }, -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/fore) -"abM" = ( -/obj/structure/cable/white, -/obj/machinery/power/apc/highcap/ten_k{ - dir = 2; - name = "Starboard Bow Solar APC"; - areastring = "/area/maintenance/solars/starboard/fore"; - pixel_y = -26 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"abN" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"abO" = ( -/obj/machinery/power/solar_control{ - id = "forestarboard"; - name = "Starboard Bow Solar Control"; - track = 0 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"abP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"abQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"abR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/vacuum, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"abS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"abU" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/arrival) -"abV" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/arrival) -"abW" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/open/floor/plating, -/area/shuttle/arrival) -"abX" = ( -/obj/structure/table/reinforced, -/obj/item/device/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 8 - }, -/area/construction/mining/aux_base) -"abY" = ( -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/structure/closet/crate/internals, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"abZ" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/wardrobe/mixed, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"aca" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/emergency, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"acb" = ( -/obj/structure/table/reinforced, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/regular, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"acc" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"acd" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/emergency, -/obj/item/crowbar/red, -/turf/open/floor/plasteel/yellow/side{ - dir = 10 - }, -/area/construction/mining/aux_base) -"ace" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/yellow/side, -/area/construction/mining/aux_base) -"acf" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plasteel/yellow/side{ - dir = 6 - }, -/area/construction/mining/aux_base) -"acg" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"ack" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"acl" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Arrival Shuttle Airlock"; - req_access_txt = "0" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/arrival) -"acm" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/shuttle/arrival) -"acn" = ( -/turf/open/floor/plasteel/neutral, -/area/shuttle/arrival) -"aco" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/shuttle/arrival) -"acp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/engineering{ - name = "Auxiliary Construction Storage"; - req_access_txt = "10;32;47;48" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"acq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"acr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/entry) -"acs" = ( -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/shuttle/arrival) -"act" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"acu" = ( -/obj/machinery/ai_status_display{ - pixel_x = 32 - }, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/shuttle/arrival) -"acv" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/construction/mining/aux_base) -"acw" = ( -/obj/machinery/requests_console{ - department = "Construction"; - departmentType = 0; - name = "Construction RC"; - pixel_y = 32 - }, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/yellow/side{ - dir = 9 - }, -/area/construction/mining/aux_base) -"acx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/construction/mining/aux_base) -"acy" = ( -/obj/structure/table/reinforced, -/obj/item/stack/packageWrap, -/obj/item/stack/cable_coil/white{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil/white, -/obj/item/stock_parts/cell/high, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 5 - }, -/area/construction/mining/aux_base) -"acz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"acA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"acB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"acC" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"acD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"acE" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"acF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"acG" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"acH" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"acI" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"acJ" = ( -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/window/shuttle, -/turf/open/floor/grass, -/area/shuttle/arrival) -"acK" = ( -/obj/machinery/vending/snack/random, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"acL" = ( -/obj/machinery/door/poddoor/shutters{ - id = "construction"; - name = "Construction Shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"acM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 8 - }, -/area/construction/mining/aux_base) -"acN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/construction/mining/aux_base) -"acP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"acQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"acR" = ( -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"acS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"acT" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"acU" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"acV" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"acW" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"acY" = ( -/obj/machinery/vending/cola/random, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"acZ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ada" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/entry) -"adb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"adc" = ( -/obj/machinery/door/poddoor/shutters{ - id = "construction"; - name = "Construction Shutters" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"add" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel/yellow/side{ - dir = 8 - }, -/area/construction/mining/aux_base) -"ade" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/construction/mining/aux_base) -"adf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/item/device/assault_pod/mining, -/turf/open/floor/plasteel/yellow/side{ - dir = 4 - }, -/area/construction/mining/aux_base) -"adg" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"adh" = ( -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/window/shuttle, -/turf/open/floor/grass, -/area/shuttle/arrival) -"adi" = ( -/obj/item/device/radio/beacon, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"adj" = ( -/obj/machinery/button/door{ - id = "construction"; - name = "Auxiliary Construction Shutters"; - pixel_x = -26; - req_access_txt = "32;47;48" - }, -/obj/machinery/light_switch{ - pixel_x = -38 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Auxillary Construction"; - dir = 4; - name = "engineering camera" - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 8 - }, -/area/construction/mining/aux_base) -"adk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/construction/mining/aux_base) -"adl" = ( -/obj/machinery/computer/camera_advanced/base_construction, -/turf/open/floor/plasteel/yellow/side{ - dir = 4 - }, -/area/construction/mining/aux_base) -"adq" = ( -/obj/structure/closet/firecloset, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"adr" = ( -/obj/effect/turf_decal/delivery, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ads" = ( -/obj/effect/turf_decal/delivery, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"adt" = ( -/obj/machinery/vending/wallmed{ - name = "Emergency NanoMed"; - req_access_txt = "0"; - use_power = 0 - }, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/arrival) -"adu" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Auxiliary Construction APC"; - areastring = "/area/construction/mining/aux_base"; - pixel_x = -26; - pixel_y = 3 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/yellow/side{ - dir = 8 - }, -/area/construction/mining/aux_base) -"adv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/landmark/lightsout, -/obj/machinery/holopad, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/construction/mining/aux_base) -"adw" = ( -/obj/machinery/door/airlock/external{ - name = "Auxiliary Base Airlock" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"adx" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"ady" = ( -/obj/docking_port/mobile/auxillary_base{ - dheight = 4; - dir = 2; - dwidth = 4; - height = 9; - width = 9 - }, -/obj/machinery/bluespace_beacon, -/obj/docking_port/mobile/auxillary_base, -/obj/machinery/computer/auxillary_base, -/turf/closed/wall, -/area/shuttle/auxillary_base) -"adz" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Auxillary Base"; - dir = 4; - name = "engineering camera" - }, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"adH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"adI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"adJ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/entry) -"adK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"adL" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium, -/area/shuttle/arrival) -"adM" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/shuttle/arrival) -"adN" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/toy/figure/assistant, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"adO" = ( -/obj/structure/table/reinforced, -/obj/item/folder, -/obj/item/storage/pill_bottle/dice, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"adP" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/shuttle/arrival) -"adQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/yellow/side{ - dir = 8 - }, -/area/construction/mining/aux_base) -"adR" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/construction/mining/aux_base) -"adZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aea" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aec" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aed" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Auxiliary Construction Zone"; - req_access_txt = "0"; - req_one_access_txt = "32;47;48" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aee" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/yellow/side{ - dir = 8 - }, -/area/construction/mining/aux_base) -"aef" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/construction/mining/aux_base) -"aeg" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/item/pipe_dispenser, -/turf/open/floor/plasteel/yellow/side{ - dir = 4 - }, -/area/construction/mining/aux_base) -"aei" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"aej" = ( -/obj/structure/closet/wardrobe/black, -/turf/open/floor/plasteel/neutral/side, -/area/shuttle/arrival) -"aek" = ( -/obj/structure/closet/wardrobe/grey, -/turf/open/floor/plasteel/blue/corner, -/area/shuttle/arrival) -"ael" = ( -/turf/open/floor/plasteel/blue/side, -/area/shuttle/arrival) -"aem" = ( -/obj/structure/closet/wardrobe/yellow, -/turf/open/floor/plasteel/blue/corner{ - dir = 8 - }, -/area/shuttle/arrival) -"aen" = ( -/obj/structure/table/reinforced, -/obj/item/storage/briefcase{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/secure/briefcase, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"aeo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Auxiliary Construction Zone"; - req_access_txt = "0"; - req_one_access_txt = "32;47;48" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aep" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/plasteel{ - amount = 20 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plasteel/yellow/side{ - dir = 4 - }, -/area/construction/mining/aux_base) -"aeq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"aer" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"aew" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aex" = ( -/obj/machinery/status_display, -/turf/closed/wall/mineral/titanium, -/area/shuttle/arrival) -"aey" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/machinery/door/airlock/shuttle{ - name = "Arrival Shuttle Airlock"; - req_access_txt = "0" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"aez" = ( -/obj/machinery/ai_status_display, -/turf/closed/wall/mineral/titanium, -/area/shuttle/arrival) -"aeA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 10 - }, -/area/construction/mining/aux_base) -"aeB" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/yellow/side, -/area/construction/mining/aux_base) -"aeC" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/wrench, -/turf/open/floor/plasteel/yellow/side{ - dir = 6 - }, -/area/construction/mining/aux_base) -"aeD" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"aeJ" = ( -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aeK" = ( -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Arrivals Dock - Aft"; - dir = 8; - name = "arrivals camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aeL" = ( -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aeM" = ( -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Arrivals Shuttle - Aft Port"; - dir = 8; - name = "arrivals camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aeN" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 8 - }, -/area/shuttle/arrival) -"aeO" = ( -/obj/structure/chair/office/dark, -/turf/open/floor/plasteel/blue/side{ - dir = 1 - }, -/area/shuttle/arrival) -"aeP" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 4 - }, -/area/shuttle/arrival) -"aeQ" = ( -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Arrivals Shuttle - Aft Starboard"; - dir = 4; - name = "arrivals camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aeR" = ( -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aeS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "0"; - req_one_access_txt = "32;47;48" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"aeV" = ( -/obj/structure/frame/computer, -/turf/open/floor/plasteel/blue, -/area/shuttle/arrival) -"aeW" = ( -/obj/structure/frame/computer, -/turf/open/floor/plasteel/blue/side, -/area/shuttle/arrival) -"aeX" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"aeY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aeZ" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"afa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"afb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 5 - }, -/area/maintenance/starboard/fore) -"afc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"afd" = ( -/obj/machinery/vending/snack/random, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/maintenance/starboard/fore) -"afe" = ( -/obj/machinery/vending/cola/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/maintenance/starboard/fore) -"afg" = ( -/obj/structure/chair/stool, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/vault, -/area/maintenance/starboard/fore) -"afh" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/vault, -/area/maintenance/starboard/fore) -"afi" = ( -/obj/structure/chair/stool, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault, -/area/maintenance/starboard/fore) -"afj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/vault, -/area/maintenance/starboard/fore) -"afl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"afm" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"afn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"afo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"afp" = ( -/mob/living/simple_animal/cockroach, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"afq" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"afr" = ( -/obj/structure/door_assembly/door_assembly_mhatch, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"afs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/redyellow, -/area/maintenance/starboard/fore) -"aft" = ( -/turf/open/floor/plasteel/redyellow, -/area/maintenance/starboard/fore) -"afu" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"afx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"afy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"afz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"afA" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"afB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"afC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"afD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/fore) -"afE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"afF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance_hatch/abandoned{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"afG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/redyellow, -/area/maintenance/starboard/fore) -"afH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/redyellow, -/area/maintenance/starboard/fore) -"afI" = ( -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/redyellow, -/area/maintenance/starboard/fore) -"afJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/redyellow, -/area/maintenance/starboard/fore) -"afO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"afP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"afQ" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"afR" = ( -/obj/structure/sign/pods, -/turf/closed/wall, -/area/hallway/secondary/entry) -"afS" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"afT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"afU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"afV" = ( -/obj/structure/table_frame/wood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/redyellow, -/area/maintenance/starboard/fore) -"afW" = ( -/obj/item/chair/stool/bar{ - pixel_y = -8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit/old, -/turf/open/floor/plasteel/redyellow, -/area/maintenance/starboard/fore) -"afX" = ( -/obj/structure/chair/stool/bar, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/redyellow, -/area/maintenance/starboard/fore) -"afY" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel/redyellow, -/area/maintenance/starboard/fore) -"afZ" = ( -/obj/structure/chair/stool/bar, -/turf/open/floor/plasteel/redyellow, -/area/maintenance/starboard/fore) -"aga" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/redyellow, -/area/maintenance/starboard/fore) -"agg" = ( -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/space) -"agh" = ( -/obj/structure/table, -/obj/item/storage/briefcase, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"agi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/arrival{ - dir = 9 - }, -/area/hallway/secondary/entry) -"agj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/arrival{ - dir = 1 - }, -/area/hallway/secondary/entry) -"agk" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/arrival{ - dir = 1 - }, -/area/hallway/secondary/entry) -"agl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/arrival{ - dir = 1 - }, -/area/hallway/secondary/entry) -"agm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/turf/open/floor/plasteel/arrival{ - dir = 1 - }, -/area/hallway/secondary/entry) -"agn" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/arrival{ - dir = 1 - }, -/area/hallway/secondary/entry) -"ago" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/arrival{ - dir = 1 - }, -/area/hallway/secondary/entry) -"agp" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/arrival{ - dir = 1 - }, -/area/hallway/secondary/entry) -"agq" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Arrivals Hallway APC"; - areastring = "/area/hallway/secondary/entry"; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Arrivals - Center Port"; - dir = 2; - name = "arrivals camera" - }, -/turf/open/floor/plasteel/arrival{ - dir = 1 - }, -/area/hallway/secondary/entry) -"agr" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel/arrival{ - dir = 1 - }, -/area/hallway/secondary/entry) -"ags" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/arrival{ - dir = 1 - }, -/area/hallway/secondary/entry) -"agt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/arrival{ - dir = 1 - }, -/area/hallway/secondary/entry) -"agu" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/turf/open/floor/plasteel/arrival{ - dir = 1 - }, -/area/hallway/secondary/entry) -"agv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/arrival{ - dir = 1 - }, -/area/hallway/secondary/entry) -"agw" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/arrival{ - dir = 1 - }, -/area/hallway/secondary/entry) -"agx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/arrival{ - dir = 1 - }, -/area/hallway/secondary/entry) -"agy" = ( -/turf/open/floor/plasteel/arrival{ - dir = 5 - }, -/area/hallway/secondary/entry) -"agz" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"agA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"agB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 5 - }, -/area/maintenance/starboard/fore) -"agC" = ( -/obj/structure/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/snacks/meat/slab/human{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/snacks/meat/slab/human, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"agD" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"agE" = ( -/obj/structure/sign/nosmoking_2, -/turf/closed/wall, -/area/maintenance/starboard/fore) -"agF" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = -8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"agJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"agK" = ( -/turf/open/floor/plasteel/arrival{ - dir = 10 - }, -/area/hallway/secondary/entry) -"agL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/arrival, -/area/hallway/secondary/entry) -"agM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/arrival, -/area/hallway/secondary/entry) -"agN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/arrival, -/area/hallway/secondary/entry) -"agO" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/arrival, -/area/hallway/secondary/entry) -"agP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Arrivals - Port"; - dir = 1; - name = "arrivals camera" - }, -/turf/open/floor/plasteel/arrival, -/area/hallway/secondary/entry) -"agQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/arrival, -/area/hallway/secondary/entry) -"agR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/arrival, -/area/hallway/secondary/entry) -"agS" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/arrival, -/area/hallway/secondary/entry) -"agT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/arrival, -/area/hallway/secondary/entry) -"agU" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/arrival/corner{ - dir = 8 - }, -/area/hallway/secondary/entry) -"agV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/entry) -"agW" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/entry) -"agX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/entry) -"agY" = ( -/obj/effect/landmark/lightsout, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/entry) -"agZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/arrival/corner, -/area/hallway/secondary/entry) -"aha" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Arrivals - Starboard"; - dir = 1; - name = "arrivals camera" - }, -/turf/open/floor/plasteel/arrival, -/area/hallway/secondary/entry) -"ahb" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/arrival, -/area/hallway/secondary/entry) -"ahc" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/arrival, -/area/hallway/secondary/entry) -"ahd" = ( -/turf/open/floor/plasteel/arrival{ - dir = 6 - }, -/area/hallway/secondary/entry) -"ahe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/obj/item/storage/toolbox/emergency, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ahf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/fore) -"ahg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ahh" = ( -/turf/open/floor/plasteel/red/side, -/area/maintenance/starboard/fore) -"ahi" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"ahj" = ( -/turf/open/floor/plasteel/white/side, -/area/maintenance/starboard/fore) -"ahk" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/red/side, -/area/maintenance/starboard/fore) -"ahl" = ( -/obj/structure/closet/crate/freezer/blood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"ahm" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/white/side, -/area/maintenance/starboard/fore) -"ahn" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/restraints/handcuffs, -/obj/item/clothing/mask/muzzle, -/turf/open/floor/plasteel/red/corner{ - dir = 8 - }, -/area/maintenance/starboard/fore) -"aht" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock{ - name = "Auxiliary Storage Closet" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ahu" = ( -/turf/closed/wall, -/area/security/vacantoffice) -"ahv" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/security/vacantoffice) -"ahw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/security/vacantoffice) -"ahx" = ( -/obj/machinery/door/airlock/abandoned{ - name = "Auxiliary Office"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/security/vacantoffice) -"ahy" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/security/vacantoffice) -"ahz" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"ahA" = ( -/turf/closed/wall, -/area/security/checkpoint/customs) -"ahB" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/security/checkpoint/customs) -"ahC" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/customs) -"ahD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/arrival{ - dir = 8 - }, -/area/hallway/secondary/entry) -"ahE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/entry) -"ahF" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/secondary/entry) -"ahG" = ( -/obj/machinery/vending/cigarette, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ahH" = ( -/obj/machinery/vending/clothing, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ahI" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ahJ" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/secondary/entry) -"ahK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/hallway/secondary/entry) -"ahL" = ( -/turf/closed/wall, -/area/security/checkpoint/checkpoint2) -"ahM" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/checkpoint2) -"ahN" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/security/checkpoint/checkpoint2) -"ahO" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/fore) -"ahQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/barricade/wooden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"ahR" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red, -/area/maintenance/starboard/fore) -"ahS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/maintenance/starboard/fore) -"ahT" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/red, -/area/maintenance/starboard/fore) -"ahU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/maintenance/starboard/fore) -"ahV" = ( -/obj/machinery/newscaster{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"ahW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"ahX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"ahY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/red, -/area/maintenance/starboard/fore) -"ahZ" = ( -/obj/structure/table/optable, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/remains/human, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/maintenance/starboard/fore) -"aib" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"aic" = ( -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aid" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/maintenance/port/fore) -"aie" = ( -/obj/structure/table, -/obj/item/storage/toolbox/emergency, -/obj/item/tank/internals/oxygen, -/obj/item/wrench, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aif" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen, -/turf/open/floor/plasteel/grimy, -/area/security/vacantoffice) -"aig" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/grimy, -/area/security/vacantoffice) -"aih" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/photocopier, -/turf/open/floor/plasteel/grimy, -/area/security/vacantoffice) -"aii" = ( -/obj/structure/table/wood, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/grimy, -/area/security/vacantoffice) -"aij" = ( -/obj/structure/table/wood, -/obj/item/storage/briefcase, -/turf/open/floor/plasteel/grimy, -/area/security/vacantoffice) -"aik" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/security/vacantoffice) -"ail" = ( -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/security/vacantoffice) -"aim" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plasteel/grimy, -/area/security/vacantoffice) -"ain" = ( -/obj/structure/table/wood, -/obj/item/device/taperecorder, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/security/vacantoffice) -"aip" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"aiq" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/ids, -/turf/open/floor/plasteel/blue/side{ - dir = 9 - }, -/area/security/checkpoint/customs) -"air" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/photocopier, -/turf/open/floor/plasteel/blue/side{ - dir = 1 - }, -/area/security/checkpoint/customs) -"ais" = ( -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/machinery/keycard_auth{ - pixel_x = 26; - pixel_y = 26 - }, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/blue/side{ - dir = 5 - }, -/area/security/checkpoint/customs) -"ait" = ( -/obj/machinery/ai_status_display, -/turf/closed/wall, -/area/hallway/secondary/entry) -"aiu" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/hallway/secondary/entry) -"aiv" = ( -/obj/structure/filingcabinet/security, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/checkpoint/checkpoint2) -"aiw" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/table/reinforced, -/obj/item/crowbar, -/obj/item/restraints/handcuffs, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/checkpoint2) -"aix" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/device/radio, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/checkpoint/checkpoint2) -"aiy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aiz" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/maintenance/starboard/fore) -"aiA" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/maintenance/starboard/fore) -"aiB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aiC" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aiD" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/starboard/fore) -"aiE" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/blood/random{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/reagent_containers/blood/random, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"aiF" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aiG" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"aiH" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/box/donkpockets, -/obj/item/kitchen/knife/butcher, -/obj/item/stack/packageWrap, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"aiI" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/suit/apron/chef, -/obj/item/clothing/head/chefhat, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"aiJ" = ( -/obj/structure/table, -/obj/machinery/microwave{ - desc = "Cooks and boils stuff, somehow."; - pixel_x = -3; - pixel_y = 5 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"aiK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"aiL" = ( -/obj/structure/table_frame, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/maintenance/starboard/fore) -"aiM" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/retractor, -/obj/item/hemostat, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/maintenance/starboard/fore) -"aiV" = ( -/obj/machinery/power/tracker, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/port/fore) -"aiW" = ( -/turf/closed/wall/r_wall, -/area/engine/atmospherics_engine) -"aiX" = ( -/turf/closed/wall, -/area/crew_quarters/electronic_marketing_den) -"aiY" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/electronic_marketing_den) -"aiZ" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/maintenance/port/fore) -"aja" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/maintenance/port/fore) -"ajb" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"ajd" = ( -/turf/open/floor/plasteel/grimy, -/area/security/vacantoffice) -"aje" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/vacantoffice) -"ajf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/vacantoffice) -"ajg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"ajh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/security/vacantoffice) -"aji" = ( -/obj/structure/table/wood, -/obj/item/folder/blue{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/folder/yellow, -/obj/item/pen, -/turf/open/floor/plasteel/grimy, -/area/security/vacantoffice) -"ajj" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/security/vacantoffice) -"ajk" = ( -/obj/machinery/ai_status_display{ - pixel_x = 32 - }, -/obj/structure/frame/computer, -/turf/open/floor/carpet, -/area/security/vacantoffice) -"ajl" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ajm" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Customs Desk APC"; - areastring = "/area/security/checkpoint/customs"; - pixel_x = -26 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 8 - }, -/area/security/checkpoint/customs) -"ajn" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"ajo" = ( -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/blue/side{ - dir = 4 - }, -/area/security/checkpoint/customs) -"ajp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - cyclelinkeddir = 0; - name = "Customs Desk"; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"ajq" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/blue/corner{ - dir = 8 - }, -/area/hallway/secondary/entry) -"ajr" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/obj/machinery/camera{ - c_tag = "Arrivals - Center"; - dir = 2; - name = "arrivals camera" - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"ajs" = ( -/obj/structure/chair/comfy/brown, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"ajt" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"aju" = ( -/obj/structure/chair/comfy/brown, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"ajv" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"ajw" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/red/corner, -/area/hallway/secondary/entry) -"ajx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Security Checkpoint"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/security/checkpoint/checkpoint2) -"ajy" = ( -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/checkpoint/checkpoint2) -"ajz" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/checkpoint/checkpoint2) -"ajA" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Security Checkpoint APC"; - areastring = "/area/security/checkpoint/checkpoint2"; - pixel_x = 26 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/checkpoint/checkpoint2) -"ajB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ajC" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ajD" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ajE" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/starboard/fore) -"ajF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/crowbar/red, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/starboard/fore) -"ajG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 - }, -/obj/item/device/flashlight, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/neutral/side{ - dir = 6 - }, -/area/maintenance/starboard/fore) -"ajJ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/fore) -"ajK" = ( -/obj/structure/reflector/single/anchored{ - dir = 6 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/atmospherics_engine) -"ajL" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmospherics_engine) -"ajM" = ( -/obj/structure/reflector/box/anchored{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmospherics_engine) -"ajN" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmospherics_engine) -"ajO" = ( -/obj/machinery/camera{ - c_tag = "Supermatter Engine - Fore"; - name = "atmospherics camera"; - network = list("SS13","Engine") - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmospherics_engine) -"ajP" = ( -/obj/structure/reflector/single/anchored{ - dir = 10 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/atmospherics_engine) -"ajR" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/electronic_marketing_den) -"ajS" = ( -/obj/structure/table/wood, -/obj/item/storage/box/matches{ - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/plasteel/black, -/area/crew_quarters/electronic_marketing_den) -"ajT" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/electronic_marketing_den) -"ajU" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/wood, -/area/crew_quarters/electronic_marketing_den) -"ajV" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/wood, -/area/crew_quarters/electronic_marketing_den) -"ajW" = ( -/obj/structure/table/wood, -/obj/item/storage/briefcase, -/obj/item/device/taperecorder, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/crew_quarters/electronic_marketing_den) -"ajX" = ( -/obj/structure/table/wood, -/obj/item/electronics/firelock, -/obj/item/electronics/airlock, -/turf/open/floor/wood, -/area/crew_quarters/electronic_marketing_den) -"ajZ" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/wood, -/area/crew_quarters/electronic_marketing_den) -"aka" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/electronics/apc, -/turf/open/floor/wood, -/area/crew_quarters/electronic_marketing_den) -"akb" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/maintenance/port/fore) -"akc" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/maintenance/port/fore) -"akd" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ake" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/turf/open/floor/plasteel/grimy, -/area/security/vacantoffice) -"akf" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/security/vacantoffice) -"akg" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen, -/turf/open/floor/carpet, -/area/security/vacantoffice) -"akh" = ( -/turf/open/floor/wood, -/area/security/vacantoffice) -"aki" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/mob/living/simple_animal/cockroach, -/turf/open/floor/wood, -/area/security/vacantoffice) -"akj" = ( -/obj/structure/table/wood, -/obj/item/device/paicard, -/turf/open/floor/plasteel/grimy, -/area/security/vacantoffice) -"akk" = ( -/turf/open/floor/carpet, -/area/security/vacantoffice) -"akl" = ( -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/structure/frame/computer, -/turf/open/floor/carpet, -/area/security/vacantoffice) -"akm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"akn" = ( -/obj/machinery/computer/crew, -/obj/machinery/ai_status_display{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 10 - }, -/area/security/checkpoint/customs) -"ako" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/security/checkpoint/customs) -"akp" = ( -/obj/structure/table/reinforced, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/turf/open/floor/plasteel/blue/side{ - dir = 4 - }, -/area/security/checkpoint/customs) -"akq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/checkpoint/customs) -"akr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/blue/corner{ - dir = 8 - }, -/area/hallway/secondary/entry) -"aks" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"akt" = ( -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"aku" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"akv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"akw" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"akx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/entry) -"aky" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner, -/area/hallway/secondary/entry) -"akz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/checkpoint/checkpoint2) -"akA" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/checkpoint/checkpoint2) -"akB" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/security/checkpoint/checkpoint2) -"akC" = ( -/obj/machinery/computer/prisoner, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/camera{ - c_tag = "Security Post - Arrivals"; - dir = 8; - name = "security camera" - }, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/checkpoint/checkpoint2) -"akD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/starboard/fore) -"akE" = ( -/obj/machinery/computer/arcade, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"akF" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Starboard Bow Maintenance APC"; - areastring = "/area/maintenance/starboard/fore"; - pixel_y = 24 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/stool/bar, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"akG" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/maintenance/starboard/fore) -"akH" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/redyellow, -/area/maintenance/starboard/fore) -"akI" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/redyellow, -/area/maintenance/starboard/fore) -"akJ" = ( -/obj/structure/table/wood, -/obj/item/clothing/suit/syndicatefake, -/obj/item/clothing/head/syndicatefake, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/redyellow, -/area/maintenance/starboard/fore) -"akP" = ( -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/atmospherics_engine) -"akQ" = ( -/obj/structure/reflector/double/anchored{ - dir = 6 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmospherics_engine) -"akR" = ( -/obj/structure/reflector/double/anchored{ - dir = 10 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmospherics_engine) -"akS" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/electronic_marketing_den) -"akT" = ( -/turf/open/floor/plasteel/black, -/area/crew_quarters/electronic_marketing_den) -"akU" = ( -/obj/structure/table/wood, -/obj/item/clothing/neck/tie/red, -/obj/item/clothing/head/that, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/electronic_marketing_den) -"akV" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/crew_quarters/electronic_marketing_den) -"akW" = ( -/turf/open/floor/wood, -/area/crew_quarters/electronic_marketing_den) -"akX" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/crew_quarters/electronic_marketing_den) -"akZ" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/crew_quarters/electronic_marketing_den) -"ala" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/crew_quarters/electronic_marketing_den) -"alb" = ( -/obj/structure/frame/computer, -/obj/item/stack/cable_coil/white, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/wood, -/area/crew_quarters/electronic_marketing_den) -"alc" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/maintenance/port/fore) -"ald" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port/fore) -"ale" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/grimy, -/area/security/vacantoffice) -"alf" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/turf/open/floor/carpet, -/area/security/vacantoffice) -"alg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/security/vacantoffice) -"alh" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"ali" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"alj" = ( -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = -26 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"alk" = ( -/obj/machinery/door/airlock/maintenance_hatch/abandoned{ - name = "Office Maintenance"; - req_access_txt = "32" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/vacantoffice) -"all" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"alm" = ( -/obj/machinery/computer/card, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Customs"; - dir = 4; - name = "customs camera" - }, -/turf/open/floor/plasteel/blue, -/area/security/checkpoint/customs) -"aln" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/security/checkpoint/customs) -"alo" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/table/reinforced, -/obj/item/folder/blue, -/obj/item/pen, -/turf/open/floor/plasteel/blue/side{ - dir = 4 - }, -/area/security/checkpoint/customs) -"alp" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/door/window/brigdoor/southright{ - dir = 8; - name = "Customs Desk"; - req_access_txt = "19" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"alq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"alr" = ( -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"als" = ( -/obj/machinery/holopad, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"alt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"alu" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/checkpoint2) -"alv" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/table/reinforced, -/obj/item/folder/red, -/obj/item/pen, -/obj/machinery/door/window/brigdoor/southright{ - dir = 8; - name = "Security Desk"; - pixel_x = -8; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/checkpoint/checkpoint2) -"alw" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/security/checkpoint/checkpoint2) -"alx" = ( -/obj/machinery/computer/security, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26 - }, -/turf/open/floor/plasteel/red, -/area/security/checkpoint/checkpoint2) -"aly" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/starboard/fore) -"alz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"alA" = ( -/obj/structure/table/wood, -/obj/item/toy/plush/carpplushie, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/maintenance/starboard/fore) -"alB" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/maintenance/starboard/fore) -"alC" = ( -/obj/machinery/computer/arcade, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/maintenance/starboard/fore) -"alD" = ( -/obj/structure/table/wood, -/obj/item/coin/antagtoken, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/maintenance/starboard/fore) -"alE" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/chair/stool/bar, -/turf/open/floor/plasteel/black, -/area/maintenance/starboard/fore) -"alF" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/folder, -/obj/item/toy/dummy, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/redyellow, -/area/maintenance/starboard/fore) -"alG" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/redyellow, -/area/maintenance/starboard/fore) -"alH" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/toy/syndicateballoon, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/redyellow, -/area/maintenance/starboard/fore) -"alI" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/disposal) -"alJ" = ( -/turf/closed/wall, -/area/maintenance/disposal) -"alO" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/solar{ - id = "foreport"; - name = "Fore-Port Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/port/fore) -"alP" = ( -/obj/structure/reflector/double/anchored{ - dir = 6 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmospherics_engine) -"alQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmospherics_engine) -"alR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmospherics_engine) -"alS" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/black, -/area/crew_quarters/electronic_marketing_den) -"alT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/electronic_marketing_den) -"alU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/black, -/area/crew_quarters/electronic_marketing_den) -"alV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/electronic_marketing_den) -"alW" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/electronic_marketing_den) -"alX" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/electronics/airalarm, -/obj/item/electronics/airlock, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/electronic_marketing_den) -"alY" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/electronic_marketing_den) -"alZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/electronic_marketing_den) -"ama" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/electronic_marketing_den) -"amb" = ( -/obj/structure/frame/computer, -/obj/item/circuitboard/computer/secure_data, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood{ - icon_state = "wood-broken2" - }, -/area/crew_quarters/electronic_marketing_den) -"amc" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"amd" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"ame" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"amf" = ( -/obj/structure/chair/office/dark, -/turf/open/floor/plasteel/grimy, -/area/security/vacantoffice) -"amg" = ( -/mob/living/simple_animal/cockroach, -/turf/open/floor/plasteel/grimy, -/area/security/vacantoffice) -"amh" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"ami" = ( -/obj/structure/table/wood, -/obj/item/device/camera_film{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/device/camera_film, -/turf/open/floor/wood, -/area/security/vacantoffice) -"amj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/maintenance/port/fore) -"amk" = ( -/obj/machinery/computer/med_data, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 9 - }, -/area/security/checkpoint/customs) -"aml" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/neutral, -/area/security/checkpoint/customs) -"amm" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/blue/side{ - dir = 4 - }, -/area/security/checkpoint/customs) -"amn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/white, -/turf/open/floor/plating, -/area/security/checkpoint/customs) -"amo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"amp" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/entry) -"amq" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"amr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"ams" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"amt" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"amu" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/white, -/turf/open/floor/plating, -/area/security/checkpoint/checkpoint2) -"amv" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/checkpoint/checkpoint2) -"amw" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/neutral, -/area/security/checkpoint/checkpoint2) -"amx" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/ai_status_display{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/checkpoint/checkpoint2) -"amy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/starboard/fore) -"amz" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"amA" = ( -/obj/structure/chair/stool/bar, -/turf/open/floor/plasteel/black, -/area/maintenance/starboard/fore) -"amB" = ( -/obj/structure/chair/stool/bar, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/black, -/area/maintenance/starboard/fore) -"amC" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"amD" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/black, -/area/maintenance/starboard/fore) -"amE" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/maintenance/starboard/fore) -"amF" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/coin/iron{ - icon_state = "coin_bananium_heads"; - name = "arcade coin"; - pixel_x = 6 - }, -/obj/item/coin/iron{ - icon_state = "coin_bananium_heads"; - name = "arcade coin"; - pixel_x = -6 - }, -/obj/item/coin/iron{ - icon_state = "coin_bananium_heads"; - name = "arcade coin"; - pixel_y = 6 - }, -/turf/open/floor/plasteel/redyellow, -/area/maintenance/starboard/fore) -"amG" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/clothing/head/collectable/HoP, -/turf/open/floor/plasteel/redyellow, -/area/maintenance/starboard/fore) -"amH" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/disposal) -"amI" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/conveyor{ - dir = 5; - id = "garbage"; - verted = -1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating, -/area/maintenance/disposal) -"amJ" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/sign/vacuum{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"amK" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"amL" = ( -/obj/machinery/mass_driver{ - dir = 4; - id = "trash" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"amM" = ( -/obj/machinery/door/poddoor{ - id = "trash"; - name = "Disposals Launch Seal" - }, -/obj/structure/fans/tiny, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"amW" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/fore) -"amX" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/fore) -"amY" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/fore) -"amZ" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/fore) -"ana" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmospherics_engine) -"anb" = ( -/obj/structure/reflector/box/anchored, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmospherics_engine) -"anc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmospherics_engine) -"and" = ( -/obj/structure/table/wood, -/obj/item/circuitboard/computer/arcade, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/electronic_marketing_den) -"ane" = ( -/obj/structure/table/wood, -/obj/item/electronics/airalarm, -/obj/item/circuitboard/computer/med_data, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/electronic_marketing_den) -"anf" = ( -/obj/structure/chair/stool/bar, -/turf/open/floor/wood, -/area/crew_quarters/electronic_marketing_den) -"ang" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/turf/open/floor/wood, -/area/crew_quarters/electronic_marketing_den) -"anh" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/pen, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/wood, -/area/crew_quarters/electronic_marketing_den) -"ani" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/electronic_marketing_den) -"anj" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/wood, -/area/crew_quarters/electronic_marketing_den) -"ank" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/crew_quarters/electronic_marketing_den) -"anl" = ( -/obj/structure/frame/computer, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/electronic_marketing_den) -"anm" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port/fore) -"ann" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel/neutral/side{ - dir = 6 - }, -/area/maintenance/port/fore) -"ano" = ( -/obj/structure/table/wood, -/obj/item/phone{ - desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; - pixel_x = -3; - pixel_y = 3 - }, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/grimy, -/area/security/vacantoffice) -"anq" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/grimy, -/area/security/vacantoffice) -"anr" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/machinery/camera{ - c_tag = "Vacant Office"; - dir = 1; - name = "security camera" - }, -/turf/open/floor/plasteel/grimy, -/area/security/vacantoffice) -"ans" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/wood, -/area/security/vacantoffice) -"ant" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Auxiliary Office APC"; - areastring = "/area/security/vacantoffice"; - pixel_y = -26 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white, -/turf/open/floor/wood, -/area/security/vacantoffice) -"anv" = ( -/obj/structure/table/wood, -/obj/item/device/camera, -/obj/machinery/light/small, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"anw" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"anx" = ( -/obj/structure/closet/secure_closet/contraband/heads, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/item/storage/secure/briefcase, -/turf/open/floor/plasteel/blue/side{ - dir = 10 - }, -/area/security/checkpoint/customs) -"any" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/blue/side, -/area/security/checkpoint/customs) -"anz" = ( -/obj/structure/filingcabinet/medical, -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 6 - }, -/area/security/checkpoint/customs) -"anA" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/chips, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"anB" = ( -/obj/structure/chair/comfy/brown{ - buildstackamount = 0; - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"anC" = ( -/obj/machinery/light, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"anD" = ( -/obj/structure/chair/comfy/brown{ - buildstackamount = 0; - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"anE" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"anF" = ( -/obj/structure/closet/wardrobe/red, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/checkpoint/checkpoint2) -"anG" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/checkpoint2) -"anH" = ( -/obj/structure/closet/secure_closet/security, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/checkpoint/checkpoint2) -"anI" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"anJ" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"anK" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/maintenance/starboard/fore) -"anL" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"anM" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/maintenance/starboard/fore) -"anN" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/maintenance/starboard/fore) -"anO" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/maintenance/starboard/fore) -"anP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/maintenance/starboard/fore) -"anQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/maintenance/disposal) -"anR" = ( -/obj/machinery/conveyor{ - dir = 2; - id = "garbage" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"anS" = ( -/obj/machinery/button/door{ - id = "Disposal Exit"; - name = "Disposal Vent Control"; - pixel_x = -25; - pixel_y = 4; - req_access_txt = "12" - }, -/obj/machinery/button/massdriver{ - id = "trash"; - name = "Trash Ejector Control"; - pixel_x = -26; - pixel_y = -6 - }, -/obj/structure/chair/stool, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"anT" = ( -/obj/machinery/conveyor_switch/oneway{ - convdir = -1; - id = "garbage"; - name = "disposal conveyor" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"anU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"anV" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"anZ" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "foreport"; - name = "Fore-Port Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/port/fore) -"aoa" = ( -/obj/structure/reflector/single/anchored{ - dir = 9 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/atmospherics_engine) -"aob" = ( -/obj/structure/table/wood, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/light_switch{ - pixel_y = -26 - }, -/obj/item/stack/cable_coil/white, -/obj/item/stack/cable_coil/white, -/obj/item/stock_parts/console_screen, -/obj/item/stock_parts/console_screen, -/obj/item/circuitboard/machine/microwave, -/turf/open/floor/plasteel/black, -/area/crew_quarters/electronic_marketing_den) -"aoc" = ( -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/electronic_marketing_den) -"aoe" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/crew_quarters/electronic_marketing_den) -"aof" = ( -/obj/machinery/light/small, -/turf/open/floor/wood, -/area/crew_quarters/electronic_marketing_den) -"aog" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/electronic_marketing_den) -"aoi" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/structure/cable/white, -/obj/machinery/power/apc{ - dir = 2; - name = "Electronics Marketing APC"; - areastring = "/area/crew_quarters/electronic_marketing_den"; - pixel_y = -26 - }, -/turf/open/floor/wood, -/area/crew_quarters/electronic_marketing_den) -"aoj" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/obj/item/folder/red, -/obj/item/lighter, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/electronic_marketing_den) -"aok" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aom" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port/fore) -"aon" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Customs Maintenance"; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"aoo" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Security Maintenance"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"aop" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/starboard/fore) -"aor" = ( -/obj/structure/chair/stool/bar, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/black, -/area/maintenance/starboard/fore) -"aos" = ( -/turf/open/floor/plasteel/black, -/area/maintenance/starboard/fore) -"aot" = ( -/obj/structure/table/wood, -/obj/item/toy/talking/AI, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aou" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/maintenance/disposal) -"aov" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right"; - layer = 3 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"aow" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 1; - icon_state = "left"; - name = "Danger: Conveyor Access"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"aox" = ( -/obj/machinery/mineral/stacking_machine{ - input_dir = 2 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"aoy" = ( -/obj/machinery/mineral/stacking_unit_console{ - dir = 2; - machinedir = 8; - pixel_x = 32 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/maintenance/disposal) -"aoG" = ( -/obj/structure/lattice/catwalk, -/obj/effect/landmark/xeno_spawn, -/turf/open/space, -/area/solar/port/fore) -"aoH" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/emitter/anchored{ - dir = 1; - state = 2 - }, -/turf/open/floor/circuit/green, -/area/engine/atmospherics_engine) -"aoI" = ( -/obj/structure/sign/electricshock, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/atmospherics_engine) -"aoJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos{ - name = "Reflector Access"; - req_access_txt = "0"; - req_one_access_txt = "24;10" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aoK" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/atmospherics_engine) -"aoL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos{ - name = "Reflector Access"; - req_access_txt = "0"; - req_one_access_txt = "24;10" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aoN" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/electronic_marketing_den) -"aoO" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/electronic_marketing_den) -"aoP" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aoQ" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aoR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aoS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/maintenance/port/fore) -"aoT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aoU" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aoV" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aoW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/maintenance/port/fore) -"aoX" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/maintenance/port/fore) -"aoY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aoZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/port/fore) -"apa" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"apb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"apc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/space_heater, -/turf/open/floor/plasteel/neutral/side{ - dir = 5 - }, -/area/maintenance/port/fore) -"apd" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/secondary/entry) -"ape" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/secondary/entry) -"apf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"apg" = ( -/obj/machinery/vending/cola/random, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Arrivals - Aft"; - dir = 2; - name = "arrivals camera" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aph" = ( -/obj/machinery/vending/snack/random, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"api" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"apj" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/secondary/entry) -"apk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/neutral/side{ - dir = 9 - }, -/area/maintenance/starboard/fore) -"apl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"apm" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"apn" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/coin/iron{ - icon_state = "coin_bananium_heads"; - name = "arcade coin" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"apo" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"app" = ( -/obj/structure/table/wood, -/obj/item/toy/talking/codex_gigas, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/maintenance/starboard/fore) -"apq" = ( -/obj/structure/table/wood, -/obj/item/clothing/glasses/regular/hipster, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/maintenance/starboard/fore) -"apr" = ( -/obj/machinery/computer/arcade, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aps" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/coin/iron{ - icon_state = "coin_bananium_heads"; - name = "arcade coin" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"apt" = ( -/obj/structure/table/wood, -/obj/item/gun/ballistic/automatic/toy/pistol/unrestricted, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/maintenance/starboard/fore) -"apu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/disposal) -"apv" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/conveyor{ - dir = 9; - id = "garbage"; - verted = -1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"apw" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"apx" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"apy" = ( -/obj/machinery/conveyor{ - dir = 6; - id = "garbage" - }, -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 4; - icon_state = "left"; - name = "Danger: Conveyor Access"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"apz" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/maintenance/disposal) -"apD" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/port/fore) -"apE" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/fore) -"apF" = ( -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/glasses/meson/engine, -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"apG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"apH" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"apI" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"apJ" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"apK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"apL" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"apM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/caution{ - dir = 4 - }, -/area/engine/atmospherics_engine) -"apN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/circuit/green, -/area/engine/atmospherics_engine) -"apO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/caution{ - dir = 8 - }, -/area/engine/atmospherics_engine) -"apQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"apR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"apS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"apT" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/suit/radiation, -/obj/item/clothing/head/radiation, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"apU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/barsign{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/maintenance/port/fore) -"apV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"apW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 5 - }, -/area/maintenance/port/fore) -"apX" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"apY" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port/fore) -"apZ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqb" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port/fore) -"aqc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 10; - heat_capacity = 1e+006 - }, -/area/maintenance/port/fore) -"aqe" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"aqf" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port/fore) -"aqg" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqh" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/maintenance/port/fore) -"aqj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port/fore) -"aqk" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aql" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqm" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port/fore) -"aqo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqq" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/port/fore) -"aqs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port/fore) -"aqt" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port/fore) -"aqu" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqv" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"aqw" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/secondary/entry) -"aqx" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/entry) -"aqy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/entry) -"aqz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/entry) -"aqA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall1"; - location = "hall15" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/entry) -"aqB" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/entry) -"aqC" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/entry) -"aqD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/secondary/entry) -"aqE" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"aqF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aqG" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/maintenance/starboard/fore) -"aqH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/maintenance/starboard/fore) -"aqI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/maintenance/starboard/fore) -"aqJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/starboard/fore) -"aqK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch/abandoned{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"aqL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/closed/wall, -/area/maintenance/starboard/fore) -"aqM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/starboard/fore) -"aqN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/disposal) -"aqO" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/item/weldingtool, -/obj/item/device/assembly/voice, -/obj/item/clothing/head/welding, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"aqP" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"aqQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aqR" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aqS" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aqT" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aqU" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/obj/machinery/recycler, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aqV" = ( -/obj/machinery/door/window/eastright{ - dir = 4; - name = "Danger: Conveyor Access"; - req_access_txt = "12" - }, -/obj/machinery/conveyor{ - dir = 10; - id = "garbage" - }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aqW" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aqX" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/fore) -"aqY" = ( -/obj/structure/table/reinforced, -/obj/item/device/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/bot, -/obj/item/clothing/glasses/meson{ - pixel_y = 1 - }, -/obj/item/clothing/glasses/meson{ - pixel_y = 1 - }, -/obj/item/clothing/glasses/meson{ - pixel_y = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aqZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"ara" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 6 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmospherics_engine) -"arb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow, -/area/engine/atmospherics_engine) -"arc" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/trinary/filter/critical{ - dir = 4; - filter_type = "n2" - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmospherics_engine) -"ard" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow, -/area/engine/atmospherics_engine) -"are" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/trinary/filter/critical{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"arf" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/caution{ - dir = 4 - }, -/area/engine/atmospherics_engine) -"arg" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/circuit/green, -/area/engine/atmospherics_engine) -"arh" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/caution{ - dir = 8 - }, -/area/engine/atmospherics_engine) -"ari" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/filter/critical{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"arj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow, -/area/engine/atmospherics_engine) -"ark" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmospherics_engine) -"arl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow, -/area/engine/atmospherics_engine) -"arm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"arn" = ( -/obj/structure/table/reinforced, -/obj/item/tank/internals/emergency_oxygen/engi{ - pixel_x = -5 - }, -/obj/item/tank/internals/emergency_oxygen/engi{ - pixel_x = 5 - }, -/obj/item/device/geiger_counter, -/obj/item/device/geiger_counter, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"arp" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"arq" = ( -/obj/machinery/door/airlock/maintenance_hatch/abandoned{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"arr" = ( -/obj/machinery/door/airlock/maintenance_hatch/abandoned{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"ars" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/port/fore) -"art" = ( -/turf/closed/wall, -/area/janitor) -"aru" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"arv" = ( -/turf/closed/wall, -/area/crew_quarters/toilet/auxiliary) -"arw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/secondary/entry) -"arx" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/secondary/entry) -"ary" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/secondary/entry) -"arz" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"arA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/secondary/entry) -"arB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/secondary/entry) -"arC" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/secondary/entry) -"arD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/starboard/fore) -"arE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"arF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"arG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/starboard/fore) -"arH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"arI" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"arJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 6 - }, -/area/maintenance/starboard/fore) -"arK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"arL" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/starboard/fore) -"arM" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"arN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"arO" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"arP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/maintenance/starboard/fore) -"arQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"arR" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/starboard/fore) -"arS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"arT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"arU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"arV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"arW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/brown, -/area/maintenance/disposal) -"arX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/plating, -/area/maintenance/disposal) -"arY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/plasteel/brown, -/area/maintenance/disposal) -"arZ" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Disposal APC"; - areastring = "/area/maintenance/disposal"; - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/brown{ - dir = 6 - }, -/area/maintenance/disposal) -"asa" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space) -"asb" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space) -"asc" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/engine/atmospherics_engine) -"asd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"ase" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Cooling to Unfiltered"; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"asf" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/orange/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow, -/area/engine/atmospherics_engine) -"asg" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"ash" = ( -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"asi" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"asj" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"ask" = ( -/obj/structure/sign/electricshock{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/caution{ - dir = 4 - }, -/area/engine/atmospherics_engine) -"asl" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/circuit/green, -/area/engine/atmospherics_engine) -"asm" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/caution{ - dir = 8 - }, -/area/engine/atmospherics_engine) -"asn" = ( -/obj/structure/sign/nosmoking_2{ - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aso" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = -26 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"asp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"asq" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/yellow, -/area/engine/atmospherics_engine) -"asr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"ass" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"ast" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/port/fore) -"asu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"asv" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"asw" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 - }, -/obj/item/crowbar/red, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port/fore) -"asx" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/gloves/color/white, -/obj/item/clothing/head/rabbitears, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"asy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/redblue/redside{ - dir = 8 - }, -/area/maintenance/port/fore) -"asz" = ( -/obj/structure/table_frame/wood, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"asA" = ( -/obj/structure/easel, -/obj/item/canvas/twentythreeXtwentythree, -/obj/item/canvas/twentythreeXtwentythree, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"asB" = ( -/obj/structure/easel, -/obj/item/canvas/twentythreeXtwentythree, -/obj/item/canvas/twentythreeXtwentythree, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/port/fore) -"asC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/port/fore) -"asD" = ( -/obj/structure/table/wood, -/obj/item/device/camera_film, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/wood, -/area/maintenance/port/fore) -"asE" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port/fore) -"asF" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, -/obj/item/storage/box/mousetraps{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/mousetraps, -/obj/item/restraints/legcuffs/beartrap{ - icon_state = "beartrap0" - }, -/obj/item/restraints/legcuffs/beartrap{ - icon_state = "beartrap0" - }, -/obj/item/restraints/legcuffs/beartrap{ - icon_state = "beartrap0" - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/neutral, -/area/janitor) -"asG" = ( -/obj/vehicle/janicart, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/bag/trash, -/obj/item/key/janitor, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/neutral, -/area/janitor) -"asH" = ( -/obj/structure/closet/jcloset, -/obj/machinery/power/apc{ - dir = 1; - name = "Custodial Closet APC"; - areastring = "/area/janitor"; - pixel_y = 24 - }, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/item/clothing/under/maid, -/obj/item/clothing/shoes/laceup, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/neutral, -/area/janitor) -"asI" = ( -/obj/structure/closet/l3closet/janitor, -/obj/machinery/requests_console{ - department = "Custodial Closet"; - departmentType = 0; - name = "Custodial RC"; - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Custodial Closet"; - dir = 2; - name = "service camera" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/neutral, -/area/janitor) -"asJ" = ( -/obj/structure/table/reinforced, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/item/clipboard, -/obj/item/toy/figure/janitor, -/turf/open/floor/plasteel/neutral, -/area/janitor) -"asK" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/stack/packageWrap, -/obj/item/crowbar, -/obj/item/hand_labeler, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/neutral, -/area/janitor) -"asL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"asM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/effect/turf_decal/bot, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/toilet/auxiliary) -"asN" = ( -/obj/structure/urinal{ - pixel_y = 28 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/toilet/auxiliary) -"asO" = ( -/obj/structure/urinal{ - pixel_y = 28 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/crew_quarters/toilet/auxiliary) -"asP" = ( -/obj/structure/urinal{ - pixel_y = 28 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/toilet/auxiliary) -"asQ" = ( -/obj/machinery/door/airlock{ - name = "Auxiliary Restroom" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/toilet/auxiliary) -"asR" = ( -/obj/structure/sign/directions/evac{ - pixel_y = -8 - }, -/obj/structure/sign/directions/science{ - dir = 2 - }, -/obj/structure/sign/directions/engineering{ - dir = 2; - pixel_y = 8 - }, -/turf/closed/wall, -/area/crew_quarters/toilet/auxiliary) -"asS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Fore Primary Hallway" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"asT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Fore Primary Hallway" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"asU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/glass{ - name = "Fore Primary Hallway" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"asV" = ( -/obj/structure/sign/directions/evac{ - pixel_y = -8 - }, -/obj/structure/sign/directions/medical{ - dir = 2 - }, -/obj/structure/sign/directions/security{ - dir = 2; - pixel_y = 8 - }, -/turf/closed/wall, -/area/quartermaster/warehouse) -"asW" = ( -/turf/closed/wall, -/area/quartermaster/warehouse) -"asX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Warehouse Maintenance"; - req_access_txt = "31" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"asY" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/closed/wall, -/area/quartermaster/warehouse) -"asZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/quartermaster/warehouse) -"ata" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/quartermaster/storage) -"atb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall, -/area/quartermaster/storage) -"atc" = ( -/turf/closed/wall, -/area/quartermaster/storage) -"atd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Cargo Maintenance"; - req_access_txt = "31" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"ate" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space, -/area/solar/port/fore) -"atf" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space) -"atg" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"ath" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"atj" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - icon_state = "pump_map"; - name = "Gas to Loop" - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmospherics_engine) -"atk" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"atl" = ( -/obj/machinery/ai_status_display, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"atm" = ( -/obj/machinery/status_display, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"atn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"ato" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plasteel/neutral, -/area/engine/atmospherics_engine) -"atp" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 8; - name = "scrubbers pipe" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"atq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"atr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/atmospherics_engine) -"ats" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8; - frequency = 1441; - id = "n2_in"; - volume_rate = 200 - }, -/turf/open/space, -/area/engine/atmospherics_engine) -"att" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral, -/area/maintenance/port/fore) -"atu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atv" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atw" = ( -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/suit/suspenders, -/obj/effect/spawner/lootdrop/costume, -/turf/open/floor/plasteel/redblue, -/area/maintenance/port/fore) -"atx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/redblue/redside{ - dir = 8 - }, -/area/maintenance/port/fore) -"aty" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/melee/skateboard, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/maintenance/port/fore) -"atz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - icon_state = "wood-broken2" - }, -/area/maintenance/port/fore) -"atA" = ( -/mob/living/simple_animal/cockroach, -/turf/open/floor/wood, -/area/maintenance/port/fore) -"atB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/port/fore) -"atC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/port/fore) -"atD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/port/fore) -"atE" = ( -/obj/machinery/door/airlock/maintenance_hatch/abandoned{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"atF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atG" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port/fore) -"atH" = ( -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/orange, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/neutral, -/area/janitor) -"atI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/janitor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/janitor) -"atJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/janitor) -"atK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/janitor) -"atL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/janitor, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 5 - }, -/area/janitor) -"atM" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/neutral, -/area/janitor) -"atN" = ( -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/mirror{ - pixel_x = -26 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/toilet/auxiliary) -"atP" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/crew_quarters/toilet/auxiliary) -"atQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/crew_quarters/toilet/auxiliary) -"atR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/crew_quarters/toilet/auxiliary) -"atS" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/camera{ - c_tag = "Auxiliary Restroom"; - dir = 2; - name = "restroom camera" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/crew_quarters/toilet/auxiliary) -"atT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/crew_quarters/toilet/auxiliary) -"atU" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 5 - }, -/area/crew_quarters/toilet/auxiliary) -"atV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/fore) -"atW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/fore) -"atX" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Hallway - Fore"; - dir = 8; - name = "hallway camera" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/fore) -"atY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/warehouse) -"atZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"aua" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"aub" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"auc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/warehouse) -"aud" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Cargo - Warehouse"; - dir = 2; - name = "cargo camera" - }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"aue" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/warehouse) -"auf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"aug" = ( -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/structure/table, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"auh" = ( -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/structure/filingcabinet/filingcabinet, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aui" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/filingcabinet/filingcabinet, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"auj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/storage) -"auk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aul" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/storage) -"aum" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/storage) -"aun" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/lights/mixed, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/storage) -"auo" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/stockexchange, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/storage) -"aup" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/storage) -"auq" = ( -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/storage) -"aur" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aus" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aut" = ( -/obj/machinery/status_display{ - name = "cargo display"; - supply_display = 1 - }, -/turf/closed/wall, -/area/quartermaster/storage) -"auu" = ( -/obj/item/stack/cable_coil, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/fore) -"auv" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/space, -/area/space) -"auw" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"aux" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/bot, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"auy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"auz" = ( -/obj/machinery/meter, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow, -/area/engine/atmospherics_engine) -"auA" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"auB" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"auC" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"auD" = ( -/obj/machinery/power/rad_collector/anchored, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/window/plasma/reinforced{ - dir = 4 - }, -/turf/open/floor/circuit/green, -/area/engine/supermatter) -"auE" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"auF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"auG" = ( -/obj/machinery/power/rad_collector/anchored, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/window/plasma/reinforced{ - dir = 8 - }, -/turf/open/floor/circuit/green, -/area/engine/supermatter) -"auH" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/camera{ - c_tag = "Supermatter Chamber"; - dir = 2; - network = list("Engine") - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"auI" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"auJ" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"auK" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Filter to Gas" - }, -/turf/open/floor/plasteel/yellow, -/area/engine/atmospherics_engine) -"auL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"auM" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"auN" = ( -/turf/open/floor/plasteel/neutral, -/area/maintenance/port/fore) -"auO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/maintenance/port/fore) -"auP" = ( -/obj/structure/rack, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auQ" = ( -/obj/structure/table_frame/wood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/redblue, -/area/maintenance/port/fore) -"auR" = ( -/turf/open/floor/plasteel/redblue, -/area/maintenance/port/fore) -"auS" = ( -/turf/open/floor/plasteel/redblue/redside{ - dir = 8 - }, -/area/maintenance/port/fore) -"auT" = ( -/obj/structure/dresser, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/cafeteria, -/area/maintenance/port/fore) -"auU" = ( -/obj/structure/table/wood, -/obj/item/device/camera, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/maintenance/port/fore) -"auV" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/maintenance/port/fore) -"auW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/nosmoking_2{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auY" = ( -/obj/machinery/photocopier, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/mob/living/simple_animal/cockroach, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ava" = ( -/obj/structure/table/reinforced, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/item/storage/box/lights/mixed{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/lights/mixed, -/obj/item/device/lightreplacer, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/janitor) -"avb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 8 - }, -/area/janitor) -"avc" = ( -/obj/machinery/holopad, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/neutral, -/area/janitor) -"avd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/landmark/event_spawn, -/mob/living/simple_animal/hostile/lizard{ - name = "Eats-The-Roaches"; - real_name = "Wags-His-Tail" - }, -/turf/open/floor/plasteel/neutral, -/area/janitor) -"ave" = ( -/turf/open/floor/plasteel/whitepurple/side{ - dir = 4 - }, -/area/janitor) -"avg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/maintenance/port/fore) -"avh" = ( -/obj/machinery/light/small, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/crew_quarters/toilet/auxiliary) -"avi" = ( -/turf/open/floor/plasteel/neutral/side, -/area/crew_quarters/toilet/auxiliary) -"avj" = ( -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/neutral/side, -/area/crew_quarters/toilet/auxiliary) -"avk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral/side, -/area/crew_quarters/toilet/auxiliary) -"avl" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc{ - dir = 2; - name = "Auxiliary Restrooms APC"; - areastring = "/area/crew_quarters/toilet/auxiliary"; - pixel_y = -26 - }, -/turf/open/floor/plating, -/area/crew_quarters/toilet/auxiliary) -"avm" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral/side{ - dir = 6 - }, -/area/crew_quarters/toilet/auxiliary) -"avn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/fore) -"avo" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/fore) -"avp" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/fore) -"avq" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"avr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"avs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/secure/loot, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"avt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/warehouse) -"avu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"avv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"avw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/cardboard, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"avx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/warehouse) -"avy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Cargo Warehouse"; - req_access_txt = "31" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"avz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"avA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"avB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"avC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"avD" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"avE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"avF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"avG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"avH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"avI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/loadingarea{ - dir = 8 - }, -/area/quartermaster/storage) -"avJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor{ - dir = 1; - id = "cargounload" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"avK" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/storage) -"avL" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/supply) -"avN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - icon_state = "pump_map"; - name = "Thermo to Gas" - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"avO" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"avP" = ( -/obj/machinery/power/rad_collector/anchored, -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/window/plasma/reinforced{ - dir = 4 - }, -/turf/open/floor/circuit/green, -/area/engine/supermatter) -"avQ" = ( -/obj/machinery/power/supermatter_shard/crystal/engine, -/turf/open/floor/engine, -/area/engine/supermatter) -"avR" = ( -/obj/machinery/power/rad_collector/anchored, -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/window/plasma/reinforced{ - dir = 8 - }, -/turf/open/floor/circuit/green, -/area/engine/supermatter) -"avS" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"avT" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"avU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmospherics_engine) -"avV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"avW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avX" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avY" = ( -/obj/machinery/light/small, -/obj/machinery/power/apc{ - dir = 2; - name = "Port Bow Maintenance APC"; - areastring = "/area/maintenance/port/fore"; - pixel_y = -26 - }, -/obj/structure/cable/white, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port/fore) -"awa" = ( -/obj/machinery/vending/autodrobe{ - req_access_txt = "0" - }, -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/redblue/redside{ - dir = 8 - }, -/area/maintenance/port/fore) -"awc" = ( -/obj/structure/table/wood, -/obj/item/lipstick/random{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/lipstick/random{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/lipstick/random, -/obj/structure/sign/nosmoking_2{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/cafeteria, -/area/maintenance/port/fore) -"awd" = ( -/obj/structure/table/wood, -/obj/item/canvas/twentythreeXnineteen, -/obj/item/canvas/nineteenXnineteen, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/port/fore) -"awf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 10 - }, -/area/janitor) -"awg" = ( -/obj/machinery/light_switch{ - pixel_y = -26 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 1 - }, -/area/janitor) -"awh" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/neutral, -/area/janitor) -"awi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/neutral, -/area/janitor) -"awj" = ( -/obj/machinery/disposal/bin, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/neutral, -/area/janitor) -"awk" = ( -/obj/machinery/door/airlock{ - name = "Toilet Unit" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/toilet/auxiliary) -"awl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/toilet/auxiliary) -"awm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/fore) -"awn" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/fore) -"awo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/fore) -"awp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"awq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/quartermaster/warehouse) -"awr" = ( -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"aws" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/warehouse) -"awt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"awu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"awv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/internals, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"aww" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"awx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/warehouse) -"awy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Cargo Warehouse"; - req_access_txt = "31" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"awz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"awA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"awB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"awC" = ( -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"awD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"awE" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"awF" = ( -/obj/effect/landmark/start/cargo_technician, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"awG" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"awH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"awI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"awJ" = ( -/turf/open/floor/plasteel/loadingarea{ - dir = 8 - }, -/area/quartermaster/storage) -"awK" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/storage) -"awL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"awM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"awN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"awO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"awP" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/space, -/area/solar/port/fore) -"awQ" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space) -"awR" = ( -/obj/structure/sign/securearea{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Supermatter Engine - Port"; - dir = 4; - name = "atmospherics camera"; - network = list("SS13","Engine") - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"awS" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"awT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel/yellow, -/area/engine/atmospherics_engine) -"awU" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"awV" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"awW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/securearea{ - pixel_x = 32 - }, -/obj/machinery/camera{ - c_tag = "Supermatter Engine - Starboard"; - dir = 8; - name = "atmospherics camera"; - network = list("SS13","Engine") - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"awX" = ( -/turf/closed/wall, -/area/hydroponics/garden/abandoned) -"awY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral/side{ - dir = 9 - }, -/area/maintenance/port/fore) -"awZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"axa" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/maintenance/port/fore) -"axb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port/fore) -"axc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/janitor) -"axd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock{ - name = "Custodial Closet"; - req_access_txt = "26" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/janitor) -"axe" = ( -/obj/machinery/door/poddoor/shutters{ - id = "custodialshutters"; - name = "Custodial Closet Shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/janitor) -"axf" = ( -/obj/machinery/door/poddoor/shutters{ - id = "custodialshutters"; - name = "Custodial Closet Shutters" - }, -/obj/machinery/button/door{ - id = "custodialshutters"; - name = "Custodial Shutters"; - pixel_x = 26; - req_access_txt = "26" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/janitor) -"axg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port/fore) -"axh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit/old, -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/crew_quarters/toilet/auxiliary) -"axi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/machinery/light/small, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/toilet/auxiliary) -"axj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/machinery/light/small, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/toilet/auxiliary) -"axk" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/crew_quarters/toilet/auxiliary) -"axl" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/fore) -"axm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/fore) -"axn" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"axo" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"axp" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/warehouse) -"axq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/cargo_technician, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/warehouse) -"axr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/warehouse) -"axs" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/warehouse) -"axt" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/warehouse) -"axu" = ( -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/warehouse) -"axv" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "QM #1" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"axw" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel/loadingarea{ - dir = 4 - }, -/area/quartermaster/storage) -"axx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"axy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"axz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"axA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"axB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor_switch{ - id = "cargounload" - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/storage) -"axC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Virology - Break Room"; - dir = 8; - name = "virology camera" - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 4 - }, -/area/medical/virology) -"axD" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/storage) -"axE" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/vacuum, -/turf/open/floor/plating, -/area/quartermaster/storage) -"axF" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/storage) -"axG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"axH" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"axI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"axJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"axK" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/space, -/area/solar/port/fore) -"axL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"axM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"axN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel/neutral, -/area/engine/atmospherics_engine) -"axO" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"axP" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"axQ" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"axR" = ( -/obj/machinery/door/airlock/glass_atmos{ - heat_proof = 1; - name = "Supermatter Chamber"; - req_access_txt = "0"; - req_one_access_txt = "24;10" - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"axS" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"axT" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"axU" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"axV" = ( -/obj/machinery/meter, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmospherics_engine) -"axW" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - icon_state = "pump_map"; - name = "Atmos to Gas" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"axX" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"axY" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmospherics_engine) -"axZ" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 10 - }, -/turf/open/space, -/area/space) -"aya" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/sunflower, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hydroponics/garden/abandoned) -"ayb" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hydroponics/garden/abandoned) -"ayc" = ( -/obj/structure/table, -/obj/item/clothing/suit/apron/overalls, -/obj/item/cultivator, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics/garden/abandoned) -"ayd" = ( -/obj/machinery/biogenerator, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hydroponics/garden/abandoned) -"aye" = ( -/obj/structure/table, -/obj/item/seeds/poppy/lily{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/seeds/poppy/geranium, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/snacks/grown/wheat, -/obj/item/reagent_containers/food/snacks/grown/corn, -/obj/item/reagent_containers/food/snacks/grown/apple, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/hydroponics/garden/abandoned) -"ayf" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/tea, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hydroponics/garden/abandoned) -"ayg" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hydroponics/garden/abandoned) -"ayh" = ( -/obj/structure/table, -/obj/item/stack/packageWrap, -/obj/effect/decal/cleanable/dirt, -/obj/item/hand_labeler, -/obj/item/reagent_containers/food/snacks/grown/tea, -/obj/item/reagent_containers/food/snacks/grown/grapes, -/obj/item/reagent_containers/food/snacks/grown/cherries, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics/garden/abandoned) -"ayi" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/poppy, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hydroponics/garden/abandoned) -"ayj" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ayk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ayl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aym" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port/fore) -"ayn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port/fore) -"ayo" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ayp" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ayq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 9 - }, -/area/maintenance/port/fore) -"ayr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - icon_state = "pipe-j2s"; - name = "Bar Junction"; - sortType = 19 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"ays" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/maintenance/port/fore) -"ayt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"ayu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - icon_state = "pipe-j1s"; - name = "Custodial Junction"; - sortType = 22 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"ayv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ayw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/maintenance/port/fore) -"ayx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 5 - }, -/area/maintenance/port/fore) -"ayy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/toilet/auxiliary) -"ayA" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/fore) -"ayB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/warehouse) -"ayC" = ( -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"ayD" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"ayE" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/warehouse) -"ayF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/deadcockroach, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"ayG" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"ayH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/box/mousetraps, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"ayI" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"ayJ" = ( -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"ayK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "QM #2" - }, -/obj/effect/turf_decal/delivery, -/mob/living/simple_animal/bot/mulebot{ - home_destination = "QM #3"; - suffix = "#3" - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"ayL" = ( -/turf/open/floor/plasteel/loadingarea{ - dir = 4 - }, -/area/quartermaster/storage) -"ayM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"ayN" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"ayO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"ayP" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"ayQ" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"ayR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"ayS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"ayT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/storage) -"ayU" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "cargounload" - }, -/obj/machinery/door/poddoor{ - id = "cargounload"; - name = "supply dock unloading door" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"ayV" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "cargounload" - }, -/obj/structure/plasticflaps, -/turf/open/floor/plating, -/area/quartermaster/storage) -"ayW" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "cargounload" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/poddoor{ - id = "cargounload"; - name = "supply dock unloading door" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"ayX" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "cargounload" - }, -/obj/machinery/door/poddoor{ - id = "cargounload"; - name = "supply dock unloading door" - }, -/turf/open/floor/plating, -/area/shuttle/supply) -"ayY" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"ayZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"aza" = ( -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - filter_type = "n2"; - name = "nitrogen filter" - }, -/turf/open/floor/plasteel/yellow, -/area/engine/atmospherics_engine) -"azc" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"azd" = ( -/obj/structure/sign/radiation, -/turf/closed/wall/r_wall, -/area/engine/atmospherics_engine) -"aze" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Gas to Filter" - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"azf" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - icon_state = "pump_map"; - name = "Gas to Chamber" - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"azg" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"azh" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"azi" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"azj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/yellow, -/area/engine/atmospherics_engine) -"azk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"azl" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/escape{ - dir = 4 - }, -/area/engine/atmospherics_engine) -"azm" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space) -"azn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/hydrofloor, -/area/hydroponics/garden/abandoned) -"azo" = ( -/turf/open/floor/plasteel/hydrofloor, -/area/hydroponics/garden/abandoned) -"azp" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"azq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/port/fore) -"azr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/port/fore) -"azs" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/closed/wall, -/area/maintenance/port/fore) -"azt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"azu" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"azv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port/fore) -"azw" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"azx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/maintenance/port/fore) -"azy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/maintenance/port/fore) -"azz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"azA" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/fore) -"azB" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/fore) -"azC" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/fore) -"azD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"azE" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Warehouse Maintenance"; - req_access_txt = "31" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"azF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - icon_state = "pipe-j1s"; - sortType = 1 - }, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/quartermaster/warehouse) -"azG" = ( -/obj/effect/decal/cleanable/oil, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"azH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/warehouse) -"azI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"azJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"azK" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"azL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"azM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Cargo Warehouse APC"; - areastring = "/area/quartermaster/warehouse"; - pixel_x = 26 - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/warehouse) -"azN" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "QM #3" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"azO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/loadingarea{ - dir = 4 - }, -/area/quartermaster/storage) -"azP" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"azQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"azR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"azS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"azT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"azU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; - name = "Supply Dock Airlock"; - req_access_txt = "31" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"azV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"azW" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; - name = "Supply Dock Airlock"; - req_access_txt = "31" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"azX" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Supply Shuttle Airlock"; - req_access_txt = "31" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/shuttle/supply) -"azY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"azZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aAb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 5 - }, -/obj/item/wrench, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aAc" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aAd" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"aAe" = ( -/obj/machinery/atmospherics/components/binary/pump, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aAf" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "External Gas to Loop" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aAg" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmospherics_engine) -"aAh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aAi" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/pump, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/engine/atmospherics_engine) -"aAj" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space) -"aAk" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/sign/nosmoking_2{ - pixel_x = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics/garden/abandoned) -"aAl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/hydrofloor, -/area/hydroponics/garden/abandoned) -"aAm" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/sign/botany{ - pixel_x = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics/garden/abandoned) -"aAn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/port/fore) -"aAo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/hallway/secondary/service) -"aAp" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/service) -"aAq" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/service) -"aAr" = ( -/obj/structure/bed, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/item/bedsheet/rainbow, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/service) -"aAs" = ( -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/service) -"aAt" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/service) -"aAu" = ( -/turf/closed/wall, -/area/hallway/secondary/service) -"aAv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/hallway/secondary/service) -"aAw" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Service Hallway Maintenance Hatch"; - req_access_txt = "0"; - req_one_access_txt = "12;25;28;46" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"aAx" = ( -/turf/closed/wall, -/area/crew_quarters/bar) -"aAy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/fore) -"aAz" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/fore) -"aAA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/brown, -/area/quartermaster/warehouse) -"aAB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"aAC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/brown, -/area/quartermaster/warehouse) -"aAD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/brown, -/area/quartermaster/warehouse) -"aAE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"aAF" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"aAG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/brown, -/area/quartermaster/warehouse) -"aAH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/brown, -/area/quartermaster/warehouse) -"aAI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/brown{ - dir = 6 - }, -/area/quartermaster/warehouse) -"aAJ" = ( -/obj/machinery/camera{ - c_tag = "Cargo Bay - Port"; - dir = 4; - name = "cargo camera" - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "QM #4" - }, -/obj/effect/turf_decal/delivery, -/mob/living/simple_animal/bot/mulebot{ - beacon_freq = 1400; - home_destination = "QM #1"; - suffix = "#1" - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aAK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/loadingarea{ - dir = 4 - }, -/area/quartermaster/storage) -"aAL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aAM" = ( -/obj/structure/closet/cardboard, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aAN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/cargo_technician, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aAO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aAP" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aAQ" = ( -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/storage) -"aAR" = ( -/obj/machinery/button/door{ - dir = 2; - id = "cargounload"; - layer = 4; - name = "Loading Doors"; - pixel_x = 24; - pixel_y = 8 - }, -/obj/machinery/button/door{ - id = "cargoload"; - layer = 4; - name = "Loading Doors"; - pixel_x = 24; - pixel_y = -8 - }, -/obj/machinery/computer/cargo, -/obj/machinery/camera{ - c_tag = "Cargo Bay - Starboard"; - dir = 8; - name = "cargo camera" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aAS" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aAT" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aAU" = ( -/obj/machinery/button/door{ - dir = 2; - id = "cargounload"; - name = "Loading Doors"; - pixel_x = -24; - pixel_y = 8 - }, -/obj/machinery/button/door{ - id = "cargoload"; - name = "Loading Doors"; - pixel_x = -24; - pixel_y = -8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"aAV" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Gas to Cooling Loop"; - on = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aAW" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/green/visible, -/turf/open/floor/plasteel/yellow, -/area/engine/atmospherics_engine) -"aAX" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aAY" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aAZ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/sign/fire{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/trinary/filter/critical{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aBa" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/button/door{ - id = "engsm"; - name = "Radiation Shutters Control"; - pixel_y = 24; - req_access_txt = "24" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/green/visible, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aBb" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Gas to Filter"; - on = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aBc" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/camera{ - c_tag = "Supermatter Engine - Aft"; - name = "atmospherics camera"; - network = list("SS13","Engine") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aBd" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/engine{ - pixel_y = 23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/supermatter) -"aBe" = ( -/obj/machinery/meter, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aBf" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aBg" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aBh" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/yellow, -/area/engine/atmospherics_engine) -"aBi" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aBj" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Atmospherics Engine APC"; - areastring = "/area/engine/atmospherics_engine"; - pixel_x = 26 - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aBk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/hydrofloor, -/area/hydroponics/garden/abandoned) -"aBl" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/hydrofloor, -/area/hydroponics/garden/abandoned) -"aBm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/hydrofloor, -/area/hydroponics/garden/abandoned) -"aBn" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/hydrofloor, -/area/hydroponics/garden/abandoned) -"aBo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aBp" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/service) -"aBq" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/service) -"aBr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/service) -"aBs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/service) -"aBt" = ( -/obj/machinery/door/airlock{ - id_tag = "AuxCabinA"; - name = "Cabin A"; - req_access_txt = "25" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/service) -"aBu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/secondary/service) -"aBv" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/secondary/service) -"aBw" = ( -/obj/structure/table/wood, -/obj/structure/reagent_dispensers/beerkeg, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/crew_quarters/bar) -"aBx" = ( -/obj/structure/closet/secure_closet/bar, -/obj/machinery/power/apc{ - dir = 1; - name = "Bar APC"; - areastring = "/area/crew_quarters/bar"; - pixel_y = 24 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/bar) -"aBy" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "sink"; - pixel_y = 28 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/camera{ - c_tag = "Bar Backroom"; - dir = 2; - name = "service camera" - }, -/turf/open/floor/plasteel/black, -/area/crew_quarters/bar) -"aBz" = ( -/obj/structure/closet/secure_closet/bar, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/bar) -"aBA" = ( -/obj/structure/table/wood, -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = 26 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/item/storage/box/beanbag, -/turf/open/floor/plasteel/black, -/area/crew_quarters/bar) -"aBC" = ( -/obj/structure/table/wood, -/obj/structure/sign/barsign{ - pixel_y = 32 - }, -/obj/machinery/chem_dispenser/drinks, -/turf/open/floor/plasteel/black, -/area/crew_quarters/bar) -"aBD" = ( -/obj/structure/table/wood, -/obj/machinery/chem_dispenser/drinks/beer, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/bar) -"aBE" = ( -/obj/machinery/vending/boozeomat, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/black, -/area/crew_quarters/bar) -"aBF" = ( -/obj/structure/table/wood, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/requests_console{ - department = "Bar Counter"; - departmentType = 0; - name = "Bar RC"; - pixel_y = 32; - receive_ore_updates = 1 - }, -/obj/item/book/manual/barman_recipes, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/item/reagent_containers/glass/rag, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/bar) -"aBG" = ( -/obj/structure/table/wood, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/item/clipboard, -/obj/item/toy/figure/bartender, -/turf/open/floor/plasteel/black, -/area/crew_quarters/bar) -"aBH" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/cigarettes/cigars{ - pixel_y = 6 - }, -/obj/item/storage/fancy/cigarettes/cigars/cohiba{ - pixel_y = 3 - }, -/obj/item/storage/fancy/cigarettes/cigars/havana, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/bar) -"aBI" = ( -/obj/machinery/disposal/bin, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/crew_quarters/bar) -"aBJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Port Primary Hallway APC"; - areastring = "/area/hallway/primary/fore"; - pixel_x = -26; - pixel_y = 3 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/fore) -"aBK" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/fore) -"aBL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/fore) -"aBM" = ( -/turf/closed/wall, -/area/quartermaster/sorting) -"aBN" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/quartermaster/sorting) -"aBO" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/mining{ - name = "Cargo Warehouse"; - req_access_txt = "31" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aBP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/quartermaster/sorting) -"aBQ" = ( -/turf/closed/wall, -/area/security/checkpoint/supply) -"aBR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aBS" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; - name = "Supply Dock Airlock"; - req_access_txt = "31" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aBT" = ( -/obj/docking_port/mobile/supply{ - dwidth = 5; - roundstart_move = "supply_away"; - width = 12 - }, -/obj/docking_port/stationary{ - dir = 8; - dwidth = 5; - height = 7; - id = "supply_home"; - name = "Cargo Bay"; - width = 12 - }, -/turf/closed/wall/mineral/titanium, -/area/shuttle/supply) -"aBU" = ( -/turf/closed/wall/r_wall, -/area/security/prison) -"aBV" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/prison) -"aBW" = ( -/obj/structure/lattice, -/obj/structure/grille/broken, -/turf/open/space, -/area/space) -"aBX" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"aBY" = ( -/turf/closed/wall/r_wall, -/area/maintenance/solars/port/fore) -"aBZ" = ( -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"aCa" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"aCb" = ( -/obj/structure/table/reinforced, -/obj/item/tank/internals/plasma, -/obj/machinery/light/small, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = -32 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aCc" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aCd" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -28; - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aCe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/yellow, -/area/engine/atmospherics_engine) -"aCf" = ( -/turf/open/floor/plasteel/neutral, -/area/engine/atmospherics_engine) -"aCg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/yellow, -/area/engine/atmospherics_engine) -"aCh" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/yellow, -/area/engine/atmospherics_engine) -"aCi" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aCj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/yellow, -/area/engine/atmospherics_engine) -"aCk" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmospherics_engine) -"aCl" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/yellow, -/area/engine/atmospherics_engine) -"aCm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aCn" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aCo" = ( -/obj/structure/table/reinforced, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/item/clothing/mask/gas, -/obj/machinery/light/small, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aCp" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hydroponics/garden/abandoned) -"aCq" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/harebell, -/obj/machinery/light/small, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hydroponics/garden/abandoned) -"aCr" = ( -/obj/structure/table, -/obj/item/shovel/spade, -/obj/item/reagent_containers/glass/bottle/nutrient/rh{ - pixel_x = 5 - }, -/obj/item/reagent_containers/glass/bottle/nutrient/ez{ - pixel_x = -5 - }, -/obj/item/reagent_containers/syringe, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white, -/obj/machinery/power/apc{ - dir = 2; - name = "Abandoned Garden APC"; - areastring = "/area/hydroponics/garden/abandoned"; - pixel_y = -26 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics/garden/abandoned) -"aCs" = ( -/obj/machinery/seed_extractor, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hydroponics/garden/abandoned) -"aCt" = ( -/obj/structure/table, -/obj/item/device/plant_analyzer, -/obj/item/hatchet, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics/garden/abandoned) -"aCu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hydroponics/garden/abandoned) -"aCv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hydroponics/garden/abandoned) -"aCw" = ( -/obj/structure/table, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics/garden/abandoned) -"aCx" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/tower, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hydroponics/garden/abandoned) -"aCy" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aCz" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/obj/machinery/button/door{ - id = "AuxCabinA"; - name = "Dormitory Door Lock"; - normaldoorcontrol = 1; - pixel_x = -26; - pixel_y = 7; - req_access_txt = "0"; - specialfunctions = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/service) -"aCA" = ( -/obj/structure/table/wood, -/obj/item/device/paicard, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/service) -"aCB" = ( -/obj/machinery/light, -/obj/structure/closet/wardrobe/mixed, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/service) -"aCC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/service) -"aCD" = ( -/obj/structure/dresser, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/service) -"aCE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/hallway/secondary/service) -"aCF" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/secondary/service) -"aCG" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"aCH" = ( -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "Bar" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"aCI" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"aCJ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar) -"aCK" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar) -"aCL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar) -"aCM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/bar) -"aCN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Bar Backroom"; - req_access_txt = "25" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/crew_quarters/bar) -"aCO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/black, -/area/crew_quarters/bar) -"aCP" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/crew_quarters/bar) -"aCQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/black, -/area/crew_quarters/bar) -"aCR" = ( -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/bar) -"aCS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aCT" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "cargodeliver" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aCU" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "cargodeliver" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aCV" = ( -/obj/machinery/conveyor{ - dir = 2; - id = "cargodeliver" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aCW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/trunk{ - icon_state = "pipe-t"; - dir = 1 - }, -/obj/structure/disposaloutlet, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aCX" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aCY" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aCZ" = ( -/obj/structure/disposalpipe/trunk{ - icon_state = "pipe-t"; - dir = 1 - }, -/obj/structure/disposaloutlet, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aDa" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -32 - }, -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/device/radio, -/obj/machinery/button/door{ - desc = "A remote control switch."; - id = "cardoor"; - name = "Cargo Cell Control"; - normaldoorcontrol = 1; - pixel_x = -36; - pixel_y = -7 - }, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/checkpoint/supply) -"aDb" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/supply) -"aDc" = ( -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/light_switch{ - pixel_x = 38 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26; - pixel_y = 32 - }, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/checkpoint/supply) -"aDd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/red/corner{ - dir = 8 - }, -/area/quartermaster/storage) -"aDe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"aDf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aDg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aDh" = ( -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/structure/closet/crate/internals, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aDi" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "cargoload" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aDj" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "cargoload" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/poddoor{ - id = "cargoload"; - name = "supply dock loading door" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aDk" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "cargoload" - }, -/obj/structure/plasticflaps, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aDl" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "cargoload" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/poddoor{ - id = "cargoload"; - name = "supply dock loading door" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aDm" = ( -/obj/machinery/door/poddoor{ - id = "cargoload"; - name = "supply dock loading door" - }, -/obj/machinery/conveyor{ - dir = 4; - id = "cargoload" - }, -/turf/open/floor/plating, -/area/shuttle/supply) -"aDn" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/seeds/carrot, -/obj/structure/sign/electricshock{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/security/prison) -"aDo" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/item/cultivator, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/security/prison) -"aDp" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Prison - Garden"; - dir = 2; - name = "prison camera"; - network = list("SS13","prison") - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/security/prison) -"aDq" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/mouse, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/security/prison) -"aDr" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/seeds/tower, -/obj/item/seeds/amanita{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/structure/sign/electricshock{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating, -/area/security/prison) -"aDs" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"aDt" = ( -/obj/machinery/power/smes, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"aDu" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK"; - pixel_x = 32 - }, -/obj/machinery/camera{ - c_tag = "Solar - Fore Port"; - name = "solar camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"aDv" = ( -/obj/machinery/disposal/bin, -/obj/structure/sign/deathsposal{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel/vault, -/area/maintenance/disposal/incinerator) -"aDw" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault, -/area/maintenance/disposal/incinerator) -"aDx" = ( -/obj/machinery/atmospherics/components/unary/tank/toxins, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault, -/area/maintenance/disposal/incinerator) -"aDy" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel/vault, -/area/maintenance/disposal/incinerator) -"aDz" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/camera{ - c_tag = "Atmospherics - Incinerator"; - name = "atmospherics camera" - }, -/turf/open/floor/plasteel/vault, -/area/maintenance/disposal/incinerator) -"aDA" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault, -/area/maintenance/disposal/incinerator) -"aDB" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/vault, -/area/maintenance/disposal/incinerator) -"aDC" = ( -/obj/machinery/power/smes{ - charge = 1e+006 - }, -/obj/structure/sign/electricshock{ - pixel_y = 32 - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/vault, -/area/maintenance/disposal/incinerator) -"aDD" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aDE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aDF" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aDG" = ( -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/machinery/light, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aDH" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aDI" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aDJ" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmospherics_engine) -"aDK" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aDL" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/light_switch{ - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aDM" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/sign/electricshock{ - pixel_y = -32 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aDN" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aDO" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aDP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aDQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/hydroponics/garden/abandoned) -"aDR" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hydroponics/garden/abandoned) -"aDS" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hydroponics/garden/abandoned) -"aDT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port/fore) -"aDU" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Service Hallway - Fore"; - dir = 4; - name = "hallway camera" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/secondary/service) -"aDV" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"aDW" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - name = "Bar Backroom"; - req_access_txt = "25" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"aDX" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"aDY" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar) -"aDZ" = ( -/obj/effect/landmark/start/bartender, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar) -"aEa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar) -"aEb" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/black, -/area/crew_quarters/bar) -"aEd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/black, -/area/crew_quarters/bar) -"aEe" = ( -/obj/effect/landmark/start/bartender, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/bar) -"aEf" = ( -/turf/open/floor/plasteel/black, -/area/crew_quarters/bar) -"aEg" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/bar) -"aEh" = ( -/obj/effect/landmark/start/bartender, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/bar) -"aEi" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/plasteel/black, -/area/crew_quarters/bar) -"aEj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aEk" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aEl" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aEm" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/sorting) -"aEn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aEo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor{ - dir = 2; - id = "cargodisposals" - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aEp" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"aEq" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/checkpoint/supply) -"aEr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/security/checkpoint/supply) -"aEs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/checkpoint/supply) -"aEt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Security Post - Cargo"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aEu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/quartermaster/storage) -"aEv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"aEw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"aEx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"aEy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor_switch{ - id = "cargoload" - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/storage) -"aEz" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "cargoload" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aEA" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aEB" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aEC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"aED" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"aEE" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"aEF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"aEG" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/prison) -"aEH" = ( -/obj/machinery/seed_extractor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"aEI" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/neutral, -/area/security/prison) -"aEJ" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/security/prison) -"aEK" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/neutral, -/area/security/prison) -"aEL" = ( -/obj/machinery/biogenerator, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"aEM" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/prison) -"aEN" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; - name = "External Solar Access"; - req_access_txt = "10"; - req_one_access = null; - req_one_access_txt = "13; 24" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars/port/fore) -"aEO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/solars/port/fore) -"aEP" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"aEQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"aER" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"aES" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/atmos{ - name = "Port Bow Solar Access"; - req_access_txt = "0"; - req_one_access = null; - req_one_access_txt = "13; 24" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars/port/fore) -"aET" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/maintenance/disposal/incinerator) -"aEU" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aEV" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Gas to Turbine" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aEW" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Gas to Turbine" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aEX" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aEY" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aEZ" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aFa" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Turbine Generator APC"; - areastring = "/area/maintenance/disposal/incinerator"; - pixel_y = 24 - }, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aFb" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/light_switch{ - pixel_x = 24; - pixel_y = 24 - }, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aFc" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Access"; - req_access_txt = "0"; - req_one_access_txt = "24;10" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aFd" = ( -/obj/structure/sign/securearea, -/turf/closed/wall/r_wall, -/area/engine/atmospherics_engine) -"aFe" = ( -/obj/structure/sign/biohazard, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/atmospherics_engine) -"aFf" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Engine Access"; - req_access_txt = "0"; - req_one_access_txt = "24;10" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aFg" = ( -/obj/structure/sign/radiation, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/engine/atmospherics_engine) -"aFh" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/atmospherics_engine) -"aFi" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass_atmos{ - name = "Power Monitoring"; - req_access_txt = "0"; - req_one_access_txt = "24;10" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aFj" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/atmospherics_engine) -"aFk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"aFl" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aFm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/maintenance/port/fore) -"aFn" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/side{ - dir = 5 - }, -/area/maintenance/port/fore) -"aFo" = ( -/obj/structure/table/wood, -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"aFp" = ( -/obj/structure/table/wood, -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"aFq" = ( -/obj/structure/bed, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/item/bedsheet/orange, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"aFr" = ( -/obj/structure/dresser, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/hallway/secondary/service) -"aFs" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"aFt" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/secondary/service) -"aFu" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/loadingarea, -/area/hallway/secondary/service) -"aFv" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"aFw" = ( -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar) -"aFx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar) -"aFy" = ( -/obj/structure/table/wood, -/obj/item/gun/ballistic/revolver/doublebarrel, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/bar) -"aFz" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/crew_quarters/bar) -"aFA" = ( -/obj/structure/table/reinforced, -/obj/item/lighter{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/lighter, -/obj/machinery/camera{ - c_tag = "Bar - Fore"; - dir = 4; - name = "service camera" - }, -/turf/open/floor/plasteel/vault, -/area/crew_quarters/bar) -"aFB" = ( -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault, -/area/crew_quarters/bar) -"aFC" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/matches{ - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/plasteel/vault, -/area/crew_quarters/bar) -"aFD" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/crew_quarters/bar) -"aFE" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Hallway - Center"; - dir = 4; - name = "hallway camera" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/fore) -"aFF" = ( -/obj/effect/landmark/lightsout, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/fore) -"aFG" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aFH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor_switch/oneway{ - convdir = -1; - id = "cargodeliver"; - name = "delivery conveyor"; - pixel_x = -12 - }, -/turf/open/floor/plasteel/loadingarea, -/area/quartermaster/sorting) -"aFI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/loadingarea, -/area/quartermaster/sorting) -"aFJ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/sorting) -"aFK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aFL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor{ - dir = 2; - id = "cargodisposals" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aFM" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"aFN" = ( -/obj/machinery/computer/security, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red, -/area/security/checkpoint/supply) -"aFO" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/neutral, -/area/security/checkpoint/supply) -"aFP" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/checkpoint/supply) -"aFQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"aFR" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/quartermaster/storage) -"aFS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"aFT" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"aFU" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aFV" = ( -/obj/effect/landmark/start/cargo_technician, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aFW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aFX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"aFY" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"aFZ" = ( -/obj/machinery/hydroponics/constructable, -/obj/item/seeds/glowshroom, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/security/prison) -"aGa" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/security/prison) -"aGb" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aGc" = ( -/obj/item/device/plant_analyzer, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner, -/area/security/prison) -"aGd" = ( -/obj/machinery/hydroponics/constructable, -/obj/item/seeds/ambrosia, -/turf/open/floor/plating, -/area/security/prison) -"aGe" = ( -/turf/closed/wall, -/area/space) -"aGf" = ( -/obj/machinery/power/solar_control{ - id = "foreport"; - name = "Port Bow Solar Control"; - track = 0 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"aGg" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"aGh" = ( -/obj/structure/cable/white, -/obj/machinery/power/apc/highcap/ten_k{ - dir = 2; - name = "Port Bow Solar APC"; - areastring = "/area/maintenance/solars/port/fore"; - pixel_y = -26 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"aGi" = ( -/obj/structure/sign/electricshock, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/maintenance/solars/port/fore) -"aGj" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/emergency, -/obj/item/wrench, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/caution{ - dir = 9 - }, -/area/maintenance/disposal/incinerator) -"aGk" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aGl" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/plasteel/neutral, -/area/maintenance/disposal/incinerator) -"aGm" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/machinery/meter, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral, -/area/maintenance/disposal/incinerator) -"aGn" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/turf/open/floor/plasteel/neutral, -/area/maintenance/disposal/incinerator) -"aGo" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/neutral, -/area/maintenance/disposal/incinerator) -"aGp" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Mix to Turbine" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral, -/area/maintenance/disposal/incinerator) -"aGq" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/maintenance/disposal/incinerator) -"aGr" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral, -/area/maintenance/disposal/incinerator) -"aGs" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aGt" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/atmos{ - name = "Turbine Generator Access"; - req_access_txt = "24" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aGu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aGv" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aGw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/atmospherics, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aGy" = ( -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aGz" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aGA" = ( -/obj/machinery/shower{ - dir = 8; - name = "emergency shower" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aGB" = ( -/obj/structure/closet/radiation, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aGC" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aGD" = ( -/obj/structure/cable, -/obj/machinery/power/terminal, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aGE" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/machinery/power/terminal, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aGF" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aGG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port/fore) -"aGH" = ( -/obj/structure/closet, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aGI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port/fore) -"aGJ" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port/fore) -"aGK" = ( -/obj/structure/table/wood, -/obj/item/device/camera, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"aGL" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"aGM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"aGN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"aGO" = ( -/obj/machinery/door/airlock{ - id_tag = "AuxCabinB"; - name = "Cabin B" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"aGP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/secondary/service) -"aGQ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/secondary/service) -"aGR" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/crew_quarters/bar) -"aGS" = ( -/obj/machinery/chem_master/condimaster{ - name = "HoochMaster 2000" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/bar) -"aGT" = ( -/obj/structure/closet/gmcloset, -/obj/item/wrench, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random, -/obj/machinery/light, -/turf/open/floor/plasteel/black, -/area/crew_quarters/bar) -"aGU" = ( -/obj/structure/table/wood, -/obj/machinery/reagentgrinder{ - desc = "Used to grind things up into raw materials and liquids."; - pixel_y = 5 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/bar) -"aGV" = ( -/obj/structure/table/wood, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/turf/open/floor/plasteel/black, -/area/crew_quarters/bar) -"aGW" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aGX" = ( -/obj/structure/chair/stool/bar, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aGY" = ( -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aGZ" = ( -/obj/structure/chair/stool/bar, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aHa" = ( -/obj/structure/chair/stool/bar, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26 - }, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aHb" = ( -/turf/closed/wall, -/area/crew_quarters/bar/atrium) -"aHc" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/machinery/door/window/southleft{ - dir = 4; - name = "Cargo Desk"; - req_access_txt = "50" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aHd" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/plasteel/brown{ - dir = 9 - }, -/area/quartermaster/sorting) -"aHe" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/sorting) -"aHf" = ( -/obj/effect/landmark/lightsout, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/sorting) -"aHg" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/brown{ - dir = 5 - }, -/area/quartermaster/sorting) -"aHh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/machinery/conveyor_switch/oneway{ - id = "cargodisposals"; - name = "Trash Filter Switch"; - pixel_x = -1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aHi" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"aHj" = ( -/obj/machinery/computer/cargo, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/checkpoint/supply) -"aHk" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/neutral, -/area/security/checkpoint/supply) -"aHl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/checkpoint/supply) -"aHm" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/brigdoor/southright{ - dir = 8; - name = "Security Desk"; - req_access_txt = "63" - }, -/obj/machinery/door/window/northright{ - dir = 4; - name = "Security Desk" - }, -/obj/item/folder/red, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aHn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/quartermaster/storage) -"aHo" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"aHp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"aHq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"aHr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"aHs" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/shuttle/engine/heater, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/supply) -"aHt" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/shuttle/engine/heater, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/supply) -"aHu" = ( -/turf/closed/wall, -/area/security/prison) -"aHv" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/ai_status_display{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/security/prison) -"aHw" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass{ - name = "Garden" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aHx" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/security/prison) -"aHy" = ( -/turf/closed/wall/r_wall, -/area/security/execution/education) -"aHz" = ( -/obj/machinery/door/poddoor{ - id = "justiceblast"; - name = "Justice Blast door" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/black, -/area/security/execution/education) -"aHA" = ( -/obj/structure/lattice/catwalk, -/obj/item/wrench, -/turf/open/space, -/area/space) -"aHB" = ( -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plasteel/caution{ - dir = 8 - }, -/area/maintenance/disposal/incinerator) -"aHC" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aHD" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/turf/open/floor/plasteel/caution/corner, -/area/maintenance/disposal/incinerator) -"aHE" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/caution, -/area/maintenance/disposal/incinerator) -"aHF" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/caution, -/area/maintenance/disposal/incinerator) -"aHG" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aHH" = ( -/obj/machinery/meter, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/turf/open/floor/plasteel/caution, -/area/maintenance/disposal/incinerator) -"aHI" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Port to Turbine" - }, -/turf/open/floor/plasteel/caution, -/area/maintenance/disposal/incinerator) -"aHJ" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/caution, -/area/maintenance/disposal/incinerator) -"aHK" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aHL" = ( -/obj/structure/sign/vacuum{ - pixel_x = -32 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics - Turbine Access"; - dir = 1; - name = "atmospherics camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aHM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aHN" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/structure/closet/emcloset/anchored, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aHO" = ( -/obj/structure/closet/radiation, -/obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aHP" = ( -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aHQ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aHR" = ( -/obj/machinery/shower{ - dir = 8; - name = "emergency shower" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aHS" = ( -/obj/structure/closet/radiation, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"aHT" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/computer/monitor{ - name = "Engineering Power Monitoring Console" - }, -/obj/structure/cable/white, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault, -/area/engine/atmospherics_engine) -"aHU" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/machinery/power/smes{ - charge = 2e+006 - }, -/obj/machinery/light/small, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/turf/open/floor/circuit/green, -/area/engine/atmospherics_engine) -"aHV" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = -24 - }, -/turf/open/floor/plasteel/vault, -/area/engine/atmospherics_engine) -"aHW" = ( -/turf/closed/wall, -/area/crew_quarters/abandoned_gambling_den) -"aHX" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port/fore) -"aHY" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/machinery/button/door{ - id = "AuxCabinB"; - name = "Dormitory Door Lock"; - normaldoorcontrol = 1; - pixel_x = -26; - pixel_y = 7; - req_access_txt = "0"; - specialfunctions = 4 - }, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"aHZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"aIa" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/closet/wardrobe/mixed, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"aIb" = ( -/obj/structure/table/wood, -/obj/item/storage/briefcase, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"aIc" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"aId" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/secondary/service) -"aIe" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/secondary/service) -"aIf" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aIg" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aIh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/loadingarea, -/area/hallway/primary/fore) -"aIi" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/quartermaster/sorting) -"aIj" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/sorting) -"aIk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/sorting) -"aIl" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/sorting) -"aIm" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Cargo - Delivery Office"; - dir = 1; - name = "cargo camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aIn" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/machinery/door_timer{ - id = "cargocell"; - name = "Cargo Cell"; - pixel_x = -32; - pixel_y = -32 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Security Post - Cargo APC"; - areastring = "/area/security/checkpoint/supply"; - pixel_x = -26 - }, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/checkpoint/supply) -"aIo" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/supply) -"aIp" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Security Post - Cargo"; - dir = 8; - name = "security camera" - }, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/checkpoint/supply) -"aIq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/quartermaster/storage) -"aIr" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aIs" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "cargoload" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aIt" = ( -/obj/structure/shuttle/engine/propulsion/burst/left, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/supply) -"aIu" = ( -/obj/structure/shuttle/engine/propulsion, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/supply) -"aIv" = ( -/obj/structure/shuttle/engine/propulsion/burst/right, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/supply) -"aIw" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/item/soap/nanotrasen, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/floorgrime, -/area/security/prison) -"aIx" = ( -/obj/structure/table, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/obj/structure/sign/electricshock{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/security/prison) -"aIy" = ( -/obj/structure/table, -/obj/machinery/computer/libraryconsole/bookmanagement, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/security/prison) -"aIz" = ( -/obj/structure/easel, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/security/prison) -"aIA" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/security/prison) -"aIB" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/security/prison) -"aIC" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/security/prison) -"aID" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/security/prison) -"aIE" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/security/prison) -"aIF" = ( -/obj/structure/table, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/item/paper_bin, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/security/prison) -"aIG" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/item/toy/figure/syndie, -/obj/structure/sign/electricshock{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/security/prison) -"aIH" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/security/prison) -"aII" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/punching_bag, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/arrival{ - dir = 1 - }, -/area/security/prison) -"aIJ" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/weightlifter, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/security/prison) -"aIK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/sign/vacuum{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/execution/education) -"aIL" = ( -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/execution/education) -"aIM" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK"; - pixel_x = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/execution/education) -"aIN" = ( -/obj/structure/sign/fire, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"aIO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"aIP" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"aIQ" = ( -/obj/machinery/doorButtons/access_button{ - idDoor = "incinerator_airlock_exterior"; - idSelf = "incinerator_access_control"; - layer = 3.1; - name = "Incinerator airlock control"; - pixel_x = -24; - pixel_y = -8 - }, -/obj/machinery/doorButtons/access_button{ - idDoor = "incinerator_airlock_interior"; - idSelf = "incinerator_access_control"; - name = "Incinerator airlock control"; - pixel_x = 24; - pixel_y = -8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"aIR" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/caution{ - dir = 10 - }, -/area/maintenance/disposal/incinerator) -"aIS" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aIT" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/caution{ - dir = 4 - }, -/area/maintenance/disposal/incinerator) -"aIU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/atmos) -"aIV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/engine/atmos) -"aIW" = ( -/obj/machinery/door/airlock/atmos{ - name = "Turbine Generator Access"; - req_access_txt = "24" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aIX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/plating, -/area/engine/atmos) -"aIY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"aIZ" = ( -/turf/closed/wall/r_wall, -/area/engine/atmos) -"aJa" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Access"; - req_access_txt = "0"; - req_one_access_txt = "24;10" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aJb" = ( -/obj/structure/sign/radiation, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"aJc" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Engine Access"; - req_access_txt = "0"; - req_one_access_txt = "24;10" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aJd" = ( -/obj/structure/sign/fire, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"aJe" = ( -/obj/structure/sign/electricshock, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"aJf" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 5 - }, -/turf/open/space, -/area/space) -"aJg" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/space, -/area/space) -"aJh" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/space, -/area/space) -"aJj" = ( -/obj/structure/table/wood, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/abandoned_gambling_den) -"aJk" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/abandoned_gambling_den) -"aJl" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/abandoned_gambling_den) -"aJm" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"aJn" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Abandoned Gambling Den APC"; - areastring = "/area/crew_quarters/abandoned_gambling_den"; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/crew_quarters/abandoned_gambling_den) -"aJo" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/wood, -/area/crew_quarters/abandoned_gambling_den) -"aJp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/theatre) -"aJq" = ( -/turf/closed/wall, -/area/crew_quarters/theatre) -"aJr" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/secondary/service) -"aJs" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/secondary/service) -"aJt" = ( -/obj/structure/table/wood, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/item/device/camera_film{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/device/camera_film, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/bar/atrium) -"aJv" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Atrium APC"; - areastring = "/area/crew_quarters/bar/atrium"; - pixel_y = 24 - }, -/obj/machinery/camera{ - c_tag = "Theatre Stage"; - dir = 2; - name = "service camera" - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar/atrium) -"aJx" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar/atrium) -"aJy" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/bar/atrium) -"aJz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aJA" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aJB" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/bar/atrium) -"aJC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/fore) -"aJD" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/quartermaster/sorting) -"aJE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/sorting) -"aJF" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aJG" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/quartermaster/sorting) -"aJH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor{ - dir = 2; - id = "cargodisposals" - }, -/obj/structure/plasticflaps, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aJI" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"aJJ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/door/window/brigdoor{ - id = "cargocell"; - name = "Cargo Cell"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/red, -/area/security/checkpoint/supply) -"aJK" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"aJL" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aJM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"aJN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/loadingarea{ - dir = 1 - }, -/area/quartermaster/storage) -"aJO" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/security/prison) -"aJQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/prison) -"aJR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/mob/living/simple_animal/mouse, -/turf/open/floor/plasteel/neutral, -/area/security/prison) -"aJS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/security/prison) -"aJT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/security/prison) -"aJU" = ( -/obj/structure/table, -/obj/item/storage/pill_bottle/dice, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/security/prison) -"aJV" = ( -/obj/structure/table, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/item/paper, -/obj/item/pen, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/security/prison) -"aJW" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/security/prison) -"aJX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/security/prison) -"aJY" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/security/prison) -"aJZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/security/prison) -"aKa" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/security/prison) -"aKb" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/security/prison) -"aKc" = ( -/obj/machinery/sparker{ - dir = 1; - id = "justicespark"; - pixel_x = -22 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/darkred/corner{ - dir = 1 - }, -/area/security/execution/education) -"aKd" = ( -/obj/structure/chair, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/execution/education) -"aKe" = ( -/obj/machinery/flasher{ - id = "justiceflash"; - pixel_x = 26; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/darkred/corner{ - dir = 4 - }, -/area/security/execution/education) -"aKf" = ( -/obj/machinery/door/poddoor{ - id = "turbinevent"; - name = "Turbine Vent" - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"aKg" = ( -/obj/machinery/power/turbine{ - icon_state = "turbine"; - dir = 8; - luminosity = 2 - }, -/obj/structure/sign/vacuum{ - pixel_y = -32 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"aKh" = ( -/obj/machinery/power/compressor{ - icon_state = "compressor"; - dir = 4; - luminosity = 2; - comp_id = "incineratorturbine" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"aKi" = ( -/obj/machinery/igniter{ - icon_state = "igniter0"; - id = "Incinerator"; - luminosity = 2; - on = 0 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"aKj" = ( -/obj/machinery/door/airlock/glass{ - autoclose = 0; - frequency = 1449; - heat_proof = 1; - icon_state = "door_locked"; - id_tag = "incinerator_airlock_exterior"; - locked = 1; - name = "Incinerator Exterior Airlock"; - req_access_txt = "12" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"aKk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"aKl" = ( -/obj/machinery/door/airlock/glass{ - autoclose = 0; - frequency = 1449; - heat_proof = 1; - icon_state = "door_locked"; - id_tag = "incinerator_airlock_interior"; - locked = 1; - name = "Incinerator Interior Airlock"; - req_access_txt = "12" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"aKm" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/maintenance/disposal/incinerator) -"aKn" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/binary/valve, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aKo" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aKp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault, -/area/engine/atmos) -"aKq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault, -/area/engine/atmos) -"aKr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault, -/area/engine/atmos) -"aKs" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/vault, -/area/engine/atmos) -"aKt" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 6 - }, -/turf/open/floor/plasteel/vault, -/area/engine/atmos) -"aKu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 10 - }, -/area/engine/atmos) -"aKv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aKw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 6 - }, -/area/engine/atmos) -"aKx" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/vault, -/area/engine/atmos) -"aKy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/vault, -/area/engine/atmos) -"aKz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 10 - }, -/area/engine/atmos) -"aKA" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aKB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 6 - }, -/area/engine/atmos) -"aKC" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/vault, -/area/engine/atmos) -"aKD" = ( -/turf/open/floor/plasteel/vault, -/area/engine/atmos) -"aKE" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/vault, -/area/engine/atmos) -"aKF" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/abandoned_gambling_den) -"aKG" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/abandoned_gambling_den) -"aKH" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/folder/red, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/abandoned_gambling_den) -"aKI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/crew_quarters/abandoned_gambling_den) -"aKJ" = ( -/obj/structure/chair/stool/bar, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/abandoned_gambling_den) -"aKL" = ( -/obj/structure/dresser, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/redblue, -/area/crew_quarters/theatre) -"aKN" = ( -/obj/machinery/vending/autodrobe, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Theatre Backstage APC"; - areastring = "/area/crew_quarters/theatre"; - pixel_y = 24 - }, -/turf/open/floor/plasteel/redblue, -/area/crew_quarters/theatre) -"aKP" = ( -/obj/structure/table/wood, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/obj/item/device/flashlight/lamp/bananalamp{ - pixel_y = 5 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/obj/item/toy/figure/clown, -/obj/item/clipboard, -/turf/open/floor/plasteel/redblue, -/area/crew_quarters/theatre) -"aKQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/secondary/service) -"aKS" = ( -/obj/structure/table/wood, -/obj/item/device/instrument/guitar, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/bar/atrium) -"aKT" = ( -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar/atrium) -"aKU" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/carpet, -/area/crew_quarters/bar/atrium) -"aKV" = ( -/turf/open/floor/carpet, -/area/crew_quarters/bar/atrium) -"aKW" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar/atrium) -"aKX" = ( -/obj/structure/table/wood, -/obj/item/clothing/head/fedora, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/bar/atrium) -"aKY" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aKZ" = ( -/obj/structure/table/wood, -/obj/item/storage/pill_bottle/dice, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aLa" = ( -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = -8 - }, -/obj/structure/table/wood, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aLb" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/soda_cans/cola, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aLc" = ( -/obj/structure/table, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/item/stack/wrapping_paper{ - pixel_y = 5 - }, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/machinery/power/apc{ - dir = 8; - name = "Delivery Office APC"; - areastring = "/area/quartermaster/sorting"; - pixel_x = -26; - pixel_y = 3 - }, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/quartermaster/sorting) -"aLd" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/sorting) -"aLe" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/sorting) -"aLf" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/sorting) -"aLg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/plasticflaps, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aLh" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"aLi" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/closet/secure_closet/brig{ - id = "cargocell"; - name = "Cargo Cell Locker" - }, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/checkpoint/supply) -"aLj" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/supply) -"aLk" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/checkpoint/supply) -"aLl" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aLm" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aLn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aLo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aLp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aLq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aLr" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aLs" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Cargo Bay - Aft Starboard"; - dir = 1; - name = "cargo camera" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aLt" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aLu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aLv" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aLw" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aLx" = ( -/obj/structure/table, -/obj/item/book/manual/chef_recipes, -/obj/item/storage/box/donkpockets, -/obj/item/clothing/head/chefhat, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/security/prison) -"aLy" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/security/prison) -"aLz" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/prison) -"aLA" = ( -/obj/structure/chair/stool, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/security/prison) -"aLB" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/snacks/deadmouse{ - pixel_y = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/security/prison) -"aLC" = ( -/obj/structure/table, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/item/toy/cards/deck, -/turf/open/floor/plasteel/neutral, -/area/security/prison) -"aLD" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/security/prison) -"aLE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral, -/area/security/prison) -"aLF" = ( -/turf/open/floor/plasteel/neutral, -/area/security/prison) -"aLG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/security/prison) -"aLH" = ( -/obj/structure/chair/stool, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/security/prison) -"aLI" = ( -/obj/machinery/vending/coffee, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/redyellow/side, -/area/security/prison) -"aLJ" = ( -/turf/open/floor/plasteel/redyellow/side, -/obj/machinery/vending/sustenance, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/security/prison) -"aLK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault, -/area/security/execution/education) -"aLL" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on, -/turf/open/floor/plasteel/vault, -/area/security/execution/education) -"aLN" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4; - frequency = 1441; - id = "mix_in"; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"aLO" = ( -/obj/structure/sign/fire, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"aLP" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"aLQ" = ( -/obj/machinery/doorButtons/airlock_controller{ - idExterior = "incinerator_airlock_exterior"; - idInterior = "incinerator_airlock_interior"; - idSelf = "incinerator_access_control"; - name = "Incinerator Access Console"; - pixel_x = 8; - pixel_y = -24; - req_access_txt = "12" - }, -/obj/machinery/button/ignition{ - id = "Incinerator"; - pixel_x = 8; - pixel_y = -36 - }, -/obj/machinery/button/door{ - id = "turbinevent"; - name = "Turbine Vent Control"; - pixel_x = -8; - pixel_y = -36; - req_access_txt = "12" - }, -/obj/machinery/button/door{ - id = "auxincineratorvent"; - name = "Auxiliary Vent Control"; - pixel_x = -8; - pixel_y = -24; - req_access_txt = "12" - }, -/obj/machinery/computer/turbine_computer{ - id = "incineratorturbine" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/caution{ - dir = 10 - }, -/area/maintenance/disposal/incinerator) -"aLR" = ( -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/item/reagent_containers/pill/patch/silver_sulf, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/caution, -/area/maintenance/disposal/incinerator) -"aLS" = ( -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/caution, -/area/maintenance/disposal/incinerator) -"aLT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmos) -"aLU" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/caution{ - dir = 9 - }, -/area/engine/atmos) -"aLV" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/tank_dispenser, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/caution{ - dir = 1 - }, -/area/engine/atmos) -"aLW" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/computer/atmos_control, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/caution{ - dir = 1 - }, -/area/engine/atmos) -"aLX" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/computer/atmos_alert, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/caution{ - dir = 1 - }, -/area/engine/atmos) -"aLY" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/table/reinforced, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/item/clothing/mask/gas, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/caution{ - dir = 1 - }, -/area/engine/atmos) -"aLZ" = ( -/obj/structure/table/reinforced, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 6 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -6 - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/caution{ - dir = 5 - }, -/area/engine/atmos) -"aMa" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/atmos) -"aMb" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aMd" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/item/electronics/airalarm, -/obj/item/electronics/airalarm, -/obj/item/electronics/firealarm, -/obj/item/electronics/firealarm, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/caution{ - dir = 9 - }, -/area/engine/atmos) -"aMe" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil/white, -/obj/item/pipe_dispenser, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/caution{ - dir = 5 - }, -/area/engine/atmos) -"aMf" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/atmos) -"aMg" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aMh" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/atmos) -"aMi" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/item/stack/rods{ - amount = 23 - }, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plasteel/caution{ - dir = 9 - }, -/area/engine/atmos) -"aMj" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/turf/open/floor/plasteel/caution{ - dir = 1 - }, -/area/engine/atmos) -"aMk" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/table/reinforced, -/obj/item/stack/sheet/plasteel{ - amount = 20 - }, -/obj/item/stack/sheet/rglass{ - amount = 20; - pixel_x = 2; - pixel_y = -2 - }, -/turf/open/floor/plasteel/caution{ - dir = 5 - }, -/area/engine/atmos) -"aMl" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/atmos) -"aMm" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmos) -"aMn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/port/fore) -"aMp" = ( -/obj/structure/table/wood, -/obj/item/storage/briefcase, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/abandoned_gambling_den) -"aMq" = ( -/obj/structure/table/wood, -/obj/item/toy/cards/deck/syndicate{ - icon_state = "deck_syndicate_full"; - pixel_y = 6 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/abandoned_gambling_den) -"aMr" = ( -/turf/open/floor/wood, -/area/crew_quarters/abandoned_gambling_den) -"aMs" = ( -/obj/structure/chair/stool/bar, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/abandoned_gambling_den) -"aMu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port/fore) -"aMv" = ( -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/open/floor/plasteel/redblue, -/area/crew_quarters/theatre) -"aMw" = ( -/obj/effect/landmark/start/clown, -/turf/open/floor/plasteel/redblue, -/area/crew_quarters/theatre) -"aMx" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/redblue, -/area/crew_quarters/theatre) -"aMy" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/theatre) -"aMz" = ( -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "Theatre" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/theatre) -"aMA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"aMB" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/secondary/service) -"aMC" = ( -/obj/structure/table/wood, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/item/device/camera, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/bar/atrium) -"aMD" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/crew_quarters/bar/atrium) -"aME" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/carpet, -/area/crew_quarters/bar/atrium) -"aMF" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar/atrium) -"aMG" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/bar/atrium) -"aMH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/chair/stool, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aMI" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/reagent_containers/food/drinks/bottle/orangejuice, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aMJ" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/reagent_containers/food/snacks/cheesiehonkers, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aMK" = ( -/obj/structure/table/wood, -/obj/item/toy/cards/deck, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aML" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aMM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aMN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/glass{ - name = "Atrium" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar/atrium) -"aMO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/fore) -"aMP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/hallway/primary/fore) -"aMQ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/fore) -"aMR" = ( -/obj/structure/table, -/obj/item/storage/box{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/lights/mixed, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = -26 - }, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/brown{ - dir = 10 - }, -/area/quartermaster/sorting) -"aMS" = ( -/obj/structure/table, -/obj/item/folder/yellow, -/obj/item/device/destTagger, -/turf/open/floor/plasteel/brown, -/area/quartermaster/sorting) -"aMT" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/brown, -/area/quartermaster/sorting) -"aMU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/brown{ - dir = 6 - }, -/area/quartermaster/sorting) -"aMV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aMW" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/checkpoint/supply) -"aMX" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/supply) -"aMY" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/checkpoint/supply) -"aMZ" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"aNa" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/brown{ - dir = 9 - }, -/area/quartermaster/storage) -"aNb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/storage) -"aNc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/storage) -"aNd" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/brown{ - dir = 5 - }, -/area/quartermaster/storage) -"aNe" = ( -/obj/machinery/status_display{ - name = "cargo display"; - supply_display = 1 - }, -/turf/closed/wall, -/area/quartermaster/qm) -"aNf" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/qm) -"aNg" = ( -/turf/closed/wall, -/area/quartermaster/qm) -"aNh" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/qm) -"aNi" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/qm) -"aNj" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/qm) -"aNk" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/quartermaster/qm) -"aNl" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/qm) -"aNm" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/bottle/morphine, -/obj/item/reagent_containers/syringe, -/turf/open/floor/plasteel/whitered/side{ - dir = 9 - }, -/area/security/prison) -"aNn" = ( -/obj/structure/table/glass, -/obj/item/folder/blue, -/obj/item/device/healthanalyzer, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/whitered/side{ - dir = 1 - }, -/area/security/prison) -"aNo" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/bottle/morphine, -/obj/item/reagent_containers/syringe, -/turf/open/floor/plasteel/whitered/side{ - dir = 5 - }, -/area/security/prison) -"aNp" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -2; - pixel_y = 5 - }, -/turf/open/floor/plating, -/area/security/prison) -"aNq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/security/prison) -"aNr" = ( -/obj/machinery/light/small, -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/red/corner{ - dir = 8 - }, -/area/security/prison) -"aNs" = ( -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/security/prison) -"aNt" = ( -/obj/machinery/camera{ - c_tag = "Prison - Relaxation Area"; - dir = 1; - name = "prison camera"; - network = list("SS13","prison") - }, -/turf/open/floor/plating, -/area/security/prison) -"aNu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral/corner, -/area/security/prison) -"aNv" = ( -/obj/machinery/holopad, -/obj/item/device/radio/intercom{ - desc = "Talk through this. It looks like it has been modified to not broadcast."; - dir = 2; - name = "Prison Intercom"; - pixel_y = -28; - prison_radio = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/prison) -"aNw" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/security/prison) -"aNx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/security/prison) -"aNy" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/plating, -/area/security/prison) -"aNz" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "justicechamber"; - name = "Justice Chamber Blast door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/security/execution/education) -"aNA" = ( -/obj/machinery/door/poddoor/preopen{ - id = "justicechamber"; - name = "Justice Chamber Blast door" - }, -/obj/machinery/door/window/brigdoor/northright{ - dir = 2; - name = "Justice Chamber"; - req_access_txt = "3" - }, -/obj/machinery/door/window/brigdoor/northright{ - name = "Justice Chamber"; - req_access_txt = "3" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/general/hidden, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/execution/education) -"aNB" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "justicechamber"; - name = "Justice Chamber Blast door" - }, -/obj/structure/sign/electricshock{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/security/execution/education) -"aNC" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space) -"aND" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/space) -"aNE" = ( -/obj/machinery/door/poddoor{ - id = "auxincineratorvent"; - name = "Incineration Chamber Vent" - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"aNF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"aNG" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 6 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmos) -"aNH" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/plasteel/caution{ - dir = 8 - }, -/area/engine/atmos) -"aNI" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aNJ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/stool, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aNK" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aNL" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aNM" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aNN" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aNO" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aNP" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aNQ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aNR" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aNS" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/atmos) -"aNT" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmos) -"aNU" = ( -/obj/structure/lattice, -/turf/open/space, -/area/engine/atmos) -"aNV" = ( -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"aNW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"aNX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/crew_quarters/abandoned_gambling_den) -"aNY" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken2" - }, -/area/crew_quarters/abandoned_gambling_den) -"aNZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/crew_quarters/abandoned_gambling_den) -"aOa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/mob/living/simple_animal/cockroach, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/crew_quarters/abandoned_gambling_den) -"aOb" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/abandoned_gambling_den) -"aOc" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 2; - icon_state = "pipe-j2s"; - name = "Theatre Junction"; - sortType = 18 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"aOd" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Theatre Backstage"; - req_access_txt = "46" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"aOe" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/redblue/redside{ - dir = 1 - }, -/area/crew_quarters/theatre) -"aOf" = ( -/obj/machinery/holopad, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/theatre) -"aOg" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/redblue/redside{ - dir = 1 - }, -/area/crew_quarters/theatre) -"aOh" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/redblue/redside{ - dir = 1 - }, -/area/crew_quarters/theatre) -"aOi" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/theatre) -"aOj" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - name = "Theatre Backstage"; - req_access_txt = "46" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/theatre) -"aOk" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"aOl" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"aOm" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - name = "Theatre Backstage"; - req_access_txt = "46" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar/atrium) -"aOn" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/bar/atrium) -"aOo" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar/atrium) -"aOp" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/carpet, -/area/crew_quarters/bar/atrium) -"aOq" = ( -/obj/machinery/holopad, -/turf/open/floor/carpet, -/area/crew_quarters/bar/atrium) -"aOr" = ( -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aOs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Atrium" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar/atrium) -"aOt" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/goonplaque, -/area/hallway/primary/fore) -"aOu" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass_mining{ - name = "Delivery Office"; - req_access_txt = 0; - req_one_access_txt = "48;50" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aOv" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aOw" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/closed/wall, -/area/quartermaster/sorting) -"aOx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/security/checkpoint/supply) -"aOy" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"aOz" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/door/airlock/glass_security{ - id_tag = "cardoor"; - name = "Cargo Cell"; - req_access_txt = "63" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aOA" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"aOB" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Cargo Bay APC"; - areastring = "/area/quartermaster/storage"; - pixel_x = -26; - pixel_y = 3 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/camera{ - c_tag = "Cargo Bay - Aft Port"; - dir = 4; - name = "cargo camera" - }, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/quartermaster/storage) -"aOC" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/stockexchange, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"aOD" = ( -/obj/structure/table/reinforced, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"aOE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"aOF" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/donkpockets, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"aOG" = ( -/obj/structure/table/reinforced, -/obj/machinery/microwave{ - desc = "Cooks and boils stuff, somehow."; - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"aOH" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/storage) -"aOI" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel/brown{ - dir = 9 - }, -/area/quartermaster/qm) -"aOJ" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/toy/figure/qm, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/qm) -"aOK" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/qm) -"aOL" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Quartermaster's Office APC"; - areastring = "/area/quartermaster/qm"; - pixel_y = 28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/qm) -"aOM" = ( -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/qm) -"aON" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/qm) -"aOO" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26; - pixel_y = 32 - }, -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = 28 - }, -/turf/open/floor/plasteel/brown{ - dir = 5 - }, -/area/quartermaster/qm) -"aOP" = ( -/obj/structure/bed, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/item/bedsheet/qm, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/qm) -"aOQ" = ( -/obj/structure/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plasteel/brown{ - dir = 5 - }, -/area/quartermaster/qm) -"aOR" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/qm) -"aOS" = ( -/obj/structure/bed, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/obj/item/clothing/glasses/sunglasses/blindfold, -/turf/open/floor/plasteel/whitered/side{ - dir = 8 - }, -/area/security/prison) -"aOT" = ( -/turf/open/floor/plasteel/white, -/area/security/prison) -"aOU" = ( -/obj/structure/bed, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/obj/item/clothing/glasses/sunglasses/blindfold, -/turf/open/floor/plasteel/whitered/side{ - dir = 4 - }, -/area/security/prison) -"aOV" = ( -/obj/machinery/door/poddoor/preopen{ - id = "permacell3"; - name = "Cell Shutters" - }, -/obj/machinery/door/airlock/glass{ - id_tag = "permabolt3"; - name = "Cell 3" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aOW" = ( -/obj/machinery/door/poddoor/preopen{ - id = "permacell2"; - name = "Cell Shutters" - }, -/obj/machinery/door/airlock/glass{ - id_tag = "permabolt2"; - name = "Cell 2" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aOX" = ( -/obj/machinery/door/poddoor/preopen{ - id = "permacell1"; - name = "Cell Shutters" - }, -/obj/machinery/door/airlock/glass{ - id_tag = "permabolt1"; - name = "Cell 1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aOY" = ( -/obj/structure/table/reinforced, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/item/reagent_containers/glass/bottle/morphine{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/reagent_containers/glass/bottle/morphine{ - pixel_x = -7; - pixel_y = 7 - }, -/obj/item/reagent_containers/glass/bottle/chloralhydrate{ - pixel_x = -7 - }, -/obj/item/reagent_containers/glass/bottle/facid{ - pixel_x = 7 - }, -/obj/item/storage/backpack/duffelbag/sec/surgery{ - pixel_y = 5 - }, -/turf/open/floor/plasteel/darkred/side{ - dir = 9 - }, -/area/security/execution/education) -"aOZ" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/table/reinforced, -/obj/machinery/button/ignition{ - id = "justicespark"; - pixel_x = 7; - pixel_y = 26; - req_access_txt = "63" - }, -/obj/machinery/button/flasher{ - id = "justiceflash"; - pixel_x = 7; - pixel_y = 38; - req_access_txt = "63" - }, -/obj/machinery/button/door{ - id = "justiceblast"; - name = "Justice Shutters Control"; - pixel_x = -7; - pixel_y = 26; - req_access_txt = "63" - }, -/obj/machinery/button/door{ - id = "justicechamber"; - name = "Justice Chamber Control"; - pixel_x = -7; - pixel_y = 38; - req_access_txt = "3" - }, -/obj/item/folder/red{ - pixel_x = 3 - }, -/obj/item/restraints/handcuffs, -/obj/item/device/taperecorder, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/darkred/side{ - dir = 1 - }, -/area/security/execution/education) -"aPa" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/darkred/side{ - dir = 1 - }, -/area/security/execution/education) -"aPb" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/general/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/darkred/side{ - dir = 1 - }, -/area/security/execution/education) -"aPc" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/closet/secure_closet/injection, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/darkred/side{ - dir = 5 - }, -/area/security/execution/education) -"aPd" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/execution/education) -"aPe" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/execution/education) -"aPf" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/space, -/area/space) -"aPg" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/space, -/area/space) -"aPh" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/space, -/area/space) -"aPi" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/space, -/area/space) -"aPj" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmos) -"aPk" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/turf/open/floor/plasteel/caution{ - dir = 10 - }, -/area/engine/atmos) -"aPl" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aPm" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aPn" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - icon_state = "pump_map"; - name = "Port to Turbine" - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aPo" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - icon_state = "pump_map"; - name = "Port to Filter" - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aPp" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/obj/effect/landmark/lightsout, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aPq" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aPr" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aPs" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aPt" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 1 - }, -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aPu" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Air to Pure" - }, -/turf/open/floor/plasteel/arrival{ - dir = 5 - }, -/area/engine/atmos) -"aPv" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmos) -"aPw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"aPx" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/space, -/area/engine/atmos) -"aPy" = ( -/obj/machinery/meter{ - name = "Mixed Air Tank Out" - }, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"aPz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/on{ - dir = 8; - frequency = 1441; - id_tag = "air_out"; - name = "air out" - }, -/turf/open/floor/engine/air, -/area/engine/atmos) -"aPA" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics - Air Supply"; - name = "atmospherics camera" - }, -/turf/open/floor/engine/air, -/area/engine/atmos) -"aPB" = ( -/turf/open/floor/engine/air, -/area/engine/atmos) -"aPC" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/abandoned_gambling_den) -"aPD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"aPE" = ( -/obj/structure/chair/stool/bar, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/crew_quarters/abandoned_gambling_den) -"aPF" = ( -/obj/structure/chair/stool/bar, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"aPG" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/crew_quarters/abandoned_gambling_den) -"aPH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"aPI" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/abandoned_gambling_den) -"aPJ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"aPK" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/closed/wall, -/area/crew_quarters/theatre) -"aPL" = ( -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/theatre) -"aPM" = ( -/obj/effect/landmark/start/mime, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/theatre) -"aPN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/theatre) -"aPO" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = -26 - }, -/obj/machinery/disposal/bin, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Theatre Backstage"; - dir = 8; - name = "service camera" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/theatre) -"aPP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/theatre) -"aPQ" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel/loadingarea, -/area/hallway/secondary/service) -"aPR" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/item/storage/pod{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/secondary/service) -"aPS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/bar/atrium) -"aPT" = ( -/obj/structure/table/wood, -/obj/item/lipstick/random{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/lipstick/random{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/lipstick/random, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/bar/atrium) -"aPU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar/atrium) -"aPV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/crew_quarters/bar/atrium) -"aPW" = ( -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/bar/atrium) -"aPX" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/coffee, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aPY" = ( -/obj/structure/table/wood, -/obj/item/device/paicard, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aPZ" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aQa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aQb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/glass{ - name = "Atrium" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar/atrium) -"aQc" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/side, -/area/hallway/primary/fore) -"aQd" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/stockexchange, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/brown{ - dir = 9 - }, -/area/quartermaster/office) -"aQe" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/device/multitool, -/obj/item/pen/red, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/office) -"aQf" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/office) -"aQg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/office) -"aQh" = ( -/obj/machinery/photocopier, -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/office) -"aQi" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/machinery/requests_console{ - department = "Cargo Office"; - departmentType = 0; - name = "Cargo Office RC"; - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Cargo - Office"; - dir = 2; - name = "cargo camera" - }, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/office) -"aQj" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/machinery/power/apc{ - dir = 1; - name = "Cargo Office APC"; - areastring = "/area/quartermaster/office"; - pixel_y = 28 - }, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/office) -"aQk" = ( -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/office) -"aQl" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/office) -"aQm" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/plasteel/brown{ - dir = 5 - }, -/area/quartermaster/office) -"aQn" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/quartermaster/storage) -"aQo" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"aQp" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/cargo_technician, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"aQq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"aQr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"aQs" = ( -/obj/effect/decal/cleanable/oil, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"aQt" = ( -/obj/machinery/computer/cargo, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"aQu" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/storage) -"aQv" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/qm) -"aQw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/quartermaster/qm) -"aQx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/qm) -"aQy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/qm) -"aQz" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/qm) -"aQA" = ( -/obj/structure/table/reinforced, -/obj/item/device/flashlight/lamp, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/qm) -"aQB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/qm) -"aQC" = ( -/obj/machinery/computer/cargo, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/qm) -"aQD" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/qm) -"aQE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/quartermaster/qm) -"aQF" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/qm) -"aQG" = ( -/obj/machinery/computer/security/mining, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/camera{ - c_tag = "Cargo - Quartermaster's Quarters"; - dir = 8; - name = "cargo camera" - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/qm) -"aQH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/whitered/side{ - dir = 8 - }, -/area/security/prison) -"aQI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/whitered/side{ - dir = 4 - }, -/area/security/prison) -"aQJ" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/obj/effect/landmark/revenantspawn, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/prison) -"aQK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side, -/area/security/prison) -"aQL" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "permabolt3"; - name = "Cell Bolt Control"; - normaldoorcontrol = 1; - pixel_y = 25; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/structure/chair/stool, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/camera{ - c_tag = "Prison - Cell 3"; - dir = 2; - name = "prison camera"; - network = list("SS13","prison") - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/security/prison) -"aQM" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/revenantspawn, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/prison) -"aQN" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/side, -/area/security/prison) -"aQO" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "permabolt2"; - name = "Cell Bolt Control"; - normaldoorcontrol = 1; - pixel_y = 25; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/item/chair/stool, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/camera{ - c_tag = "Prison - Cell 2"; - dir = 2; - name = "prison camera"; - network = list("SS13","prison") - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/prison) -"aQP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/security/prison) -"aQQ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "permabolt1"; - name = "Cell Bolt Control"; - normaldoorcontrol = 1; - pixel_y = 25; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/structure/chair/stool, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/camera{ - c_tag = "Prison - Cell 1"; - dir = 2; - name = "prison camera"; - network = list("SS13","prison") - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/prison) -"aQR" = ( -/obj/structure/table/reinforced, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -32 - }, -/obj/item/device/electropack, -/obj/item/device/assembly/signaler, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/clothing/head/helmet/sec, -/turf/open/floor/plasteel/darkred/side{ - dir = 8 - }, -/area/security/execution/education) -"aQS" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/execution/education) -"aQT" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/execution/education) -"aQU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/general/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/execution/education) -"aQV" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/darkred/side{ - dir = 4 - }, -/area/security/execution/education) -"aQW" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/obj/machinery/meter, -/obj/machinery/door/window/westright, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/execution/education) -"aQX" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4 - }, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/obj/item/tank/internals/oxygen/red{ - pixel_x = 3 - }, -/obj/item/tank/internals/oxygen/red{ - pixel_x = -3 - }, -/obj/item/wrench, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/execution/education) -"aQY" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; - name = "Security External Airlock"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/security/prison) -"aQZ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmos) -"aRa" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/atmos) -"aRb" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aRc" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aRd" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aRe" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/caution, -/area/engine/atmos) -"aRf" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics - Fore"; - dir = 1; - name = "atmospherics camera" - }, -/turf/open/floor/plasteel/caution, -/area/engine/atmos) -"aRg" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/caution, -/area/engine/atmos) -"aRh" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/caution, -/area/engine/atmos) -"aRi" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aRj" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aRk" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aRl" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1441; - input_tag = "air_in"; - name = "Mixed Air Supply Control"; - output_tag = "air_out"; - sensors = list("air_sensor" = "Tank") - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/engine/atmos) -"aRn" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "air_sensor" - }, -/turf/open/floor/engine/air, -/area/engine/atmos) -"aRo" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/engine/air, -/area/engine/atmos) -"aRp" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine/air, -/area/engine/atmos) -"aRr" = ( -/obj/machinery/light/small, -/obj/structure/table/wood, -/obj/item/storage/pill_bottle, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"aRu" = ( -/obj/machinery/light/small, -/obj/structure/table/wood, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/syringe{ - pixel_y = 5 - }, -/obj/item/reagent_containers/syringe, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"aRv" = ( -/obj/structure/table/wood, -/obj/machinery/requests_console{ - department = "Theatre Backstage"; - departmentType = 0; - name = "Theatre RC"; - pixel_x = -32 - }, -/obj/item/lipstick/random{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/lipstick/random{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/lipstick/random, -/obj/structure/sign/nosmoking_2{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/theatre) -"aRx" = ( -/obj/machinery/vending/autodrobe, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/theatre) -"aRy" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/toy/figure/mime, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/theatre) -"aRA" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Service Hallway - Aft"; - dir = 8; - name = "hallway camera" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/secondary/service) -"aRB" = ( -/obj/structure/table/wood, -/obj/item/device/instrument/violin, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/bar/atrium) -"aRC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/bar/atrium) -"aRD" = ( -/obj/structure/table/wood, -/obj/item/clothing/mask/cigarette/pipe, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/bar/atrium) -"aRE" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aRF" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/chips, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aRG" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aRH" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/britcup, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aRI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair/stool, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aRJ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - icon_state = "pipe-j1s"; - name = "Quartermaster Junction"; - sortType = 3 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/fore) -"aRK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/brown/corner{ - dir = 4 - }, -/area/hallway/primary/fore) -"aRL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"aRM" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/quartermaster/office) -"aRN" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/cargo_technician, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/office) -"aRO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/office) -"aRP" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/office) -"aRQ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/office) -"aRR" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/office) -"aRS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/office) -"aRT" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/office) -"aRU" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/mining{ - name = "Cargo Bay"; - req_access_txt = "0"; - req_one_access_txt = "48;50" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aRV" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/quartermaster/storage) -"aRW" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"aRX" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"aRY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"aRZ" = ( -/obj/machinery/holopad, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/landmark/start/quartermaster, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aSa" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"aSb" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"aSc" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"aSd" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/storage) -"aSe" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Quartermaster's Office"; - req_access_txt = "41" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"aSf" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/quartermaster/qm) -"aSg" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/qm) -"aSh" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/mob/living/simple_animal/sloth/citrus, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/qm) -"aSi" = ( -/obj/machinery/holopad, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"aSj" = ( -/obj/structure/table/reinforced, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/item/folder/yellow, -/obj/item/stamp/qm, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/qm) -"aSk" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/landmark/start/quartermaster, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/qm) -"aSl" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/qm) -"aSm" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Quartermaster's Quarters"; - req_access_txt = "41" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"aSn" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/start/quartermaster, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/qm) -"aSo" = ( -/obj/machinery/computer/shuttle/mining, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/ai_status_display{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/qm) -"aSp" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/regular, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitered/side{ - dir = 8 - }, -/area/security/prison) -"aSq" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitered/side{ - dir = 4 - }, -/area/security/prison) -"aSr" = ( -/obj/machinery/flasher{ - id = "PCell 3"; - pixel_x = -28 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/prison) -"aSs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/security/prison) -"aSt" = ( -/obj/structure/table, -/obj/item/paper, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/prison) -"aSu" = ( -/obj/machinery/flasher{ - id = "PCell 2"; - pixel_x = -28 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/security/prison) -"aSv" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/security/prison) -"aSw" = ( -/obj/machinery/flasher{ - id = "PCell 1"; - pixel_x = -28 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/security/prison) -"aSx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/security/prison) -"aSy" = ( -/obj/structure/table, -/obj/item/paper, -/obj/item/pen, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/prison) -"aSz" = ( -/obj/structure/table/reinforced, -/obj/machinery/light_switch{ - pixel_x = -7; - pixel_y = -26 - }, -/obj/item/device/flashlight/lamp, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26 - }, -/turf/open/floor/plasteel/darkred/side{ - dir = 10 - }, -/area/security/execution/education) -"aSA" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/darkred/side, -/area/security/execution/education) -"aSB" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/darkred/side, -/area/security/execution/education) -"aSC" = ( -/obj/machinery/newscaster/security_unit{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/darkred/side, -/area/security/execution/education) -"aSD" = ( -/obj/structure/cable/white, -/obj/machinery/power/apc{ - dir = 2; - name = "Education Chamber APC"; - areastring = "/area/security/execution/education"; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/darkred/side{ - dir = 6 - }, -/area/security/execution/education) -"aSE" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Justice gas pump"; - on = 0 - }, -/obj/machinery/door/window/westleft, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/execution/education) -"aSF" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/obj/machinery/space_heater, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/execution/education) -"aSG" = ( -/obj/structure/sign/securearea{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/security/prison) -"aSH" = ( -/turf/open/floor/engine/co2, -/area/engine/atmos) -"aSI" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics - co2 Cell"; - name = "atmospherics camera" - }, -/turf/open/floor/engine/co2, -/area/engine/atmos) -"aSJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 4; - frequency = 1441; - id_tag = "co2_out"; - name = "co2 vent" - }, -/turf/open/floor/engine/co2, -/area/engine/atmos) -"aSK" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"aSL" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/space, -/area/engine/atmos) -"aSM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"aSN" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmos) -"aSO" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "CO2 to Pure"; - on = 0 - }, -/turf/open/floor/plasteel/vault, -/area/engine/atmos) -"aSP" = ( -/obj/machinery/atmospherics/pipe/manifold4w/yellow/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aSQ" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aSR" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aSS" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aST" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aSU" = ( -/obj/machinery/ai_status_display, -/turf/closed/wall, -/area/engine/atmos) -"aSV" = ( -/turf/closed/wall, -/area/engine/atmos) -"aSW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_atmos{ - name = "Atmospherics Storage"; - req_access_txt = "0"; - req_one_access_txt = "24;10" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aSX" = ( -/obj/structure/sign/nosmoking_2, -/turf/closed/wall, -/area/engine/atmos) -"aSY" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/engine/atmos) -"aSZ" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aTa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aTb" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 6 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aTc" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aTd" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/arrival{ - dir = 6 - }, -/area/engine/atmos) -"aTe" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmos) -"aTf" = ( -/obj/machinery/meter{ - name = "Mixed Air Tank In" - }, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"aTg" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8; - frequency = 1441; - id = "air_in" - }, -/turf/open/floor/engine/air, -/area/engine/atmos) -"aTh" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Service Hall APC"; - areastring = "/area/hallway/secondary/service"; - pixel_x = -26; - pixel_y = 3 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/secondary/service) -"aTi" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/secondary/service) -"aTj" = ( -/obj/structure/table/wood, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26; - pixel_y = -32 - }, -/obj/item/staff/broom, -/obj/item/clothing/head/witchwig, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/bar/atrium) -"aTl" = ( -/obj/structure/piano{ - icon_state = "piano" - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar/atrium) -"aTn" = ( -/obj/machinery/door/window/eastright{ - name = "Theatre Stage" - }, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar/atrium) -"aTo" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/bar/atrium) -"aTp" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26; - pixel_y = -26 - }, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aTq" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aTr" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - icon_state = "pipe-j1s"; - name = "Cargo Junction"; - sortType = 2 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/fore) -"aTs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aTt" = ( -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aTu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aTv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/office) -"aTw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/office) -"aTx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/office) -"aTy" = ( -/obj/effect/decal/cleanable/oil, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/office) -"aTz" = ( -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aTA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/office) -"aTB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/office) -"aTC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/office) -"aTD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Cargo Bay"; - req_access_txt = "0"; - req_one_access_txt = "48;50" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aTE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/quartermaster/storage) -"aTF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"aTG" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"aTH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"aTI" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/storage) -"aTJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/quartermaster/qm) -"aTK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/quartermaster/qm) -"aTL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/qm) -"aTM" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/qm) -"aTN" = ( -/obj/structure/table/reinforced, -/obj/item/cartridge/quartermaster{ - pixel_x = -6 - }, -/obj/item/cartridge/quartermaster{ - pixel_x = 6 - }, -/obj/item/cartridge/quartermaster{ - pixel_y = 6 - }, -/obj/item/device/gps/mining, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/qm) -"aTO" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/qm) -"aTP" = ( -/obj/machinery/computer/security/mining, -/obj/machinery/requests_console{ - department = "Quartermaster's Desk"; - departmentType = 0; - name = "Quartermaster RC"; - pixel_x = 32; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 23 - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/qm) -"aTQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/quartermaster/qm) -"aTR" = ( -/obj/structure/closet/secure_closet/quartermaster, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"aTS" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"aTT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/suit_storage_unit/mining/eva, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"aTU" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/qm) -"aTV" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/security/prison) -"aTW" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Sanitarium"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/security/prison) -"aTX" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/bluecross_2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/security/prison) -"aTY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/status_display, -/turf/closed/wall, -/area/security/prison) -"aTZ" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Long-Term Cell 3"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/floorgrime, -/area/security/prison) -"aUa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/security/prison) -"aUb" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Long-Term Cell 2"; - req_access_txt = "2" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/prison) -"aUc" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Long-Term Cell 1"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/floorgrime, -/area/security/prison) -"aUd" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Education Chamber"; - req_access_txt = "3" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/execution/education) -"aUe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/security/prison) -"aUf" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; - name = "Security External Airlock"; - req_access_txt = "63" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK"; - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/security/prison) -"aUg" = ( -/turf/closed/wall/mineral/plastitanium, -/area/security/prison) -"aUh" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/engine/co2, -/area/engine/atmos) -"aUi" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/engine/co2, -/area/engine/atmos) -"aUj" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "co2_sensor" - }, -/turf/open/floor/engine/co2, -/area/engine/atmos) -"aUk" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmos) -"aUl" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1441; - input_tag = "co2_in"; - name = "Carbon Dioxide Supply Control"; - output_tag = "co2_out"; - sensors = list("co2_sensor" = "Tank") - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel/vault, -/area/engine/atmos) -"aUm" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aUn" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 4; - on = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aUo" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aUp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aUq" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aUr" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/device/lightreplacer, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aUs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/engine/atmos) -"aUt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/disposal/bin, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/caution{ - dir = 8 - }, -/area/engine/atmos) -"aUu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aUv" = ( -/obj/structure/table/reinforced, -/obj/item/wrench, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aUw" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/mask/gas, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aUx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aUy" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aUz" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aUA" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aUB" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "O2 to Pure" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/atmos) -"aUC" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/securearea{ - pixel_x = 32 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics - Starboard"; - dir = 8; - name = "atmospherics camera" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmos) -"aUD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aUE" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 5 - }, -/area/maintenance/port/fore) -"aUF" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aUG" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aUH" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - icon_state = "pipe-j2s"; - name = "Hydroponics Junction"; - sortType = 21 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aUI" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"aUJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aUK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port/fore) -"aUL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"aUM" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"aUN" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/secondary/service) -"aUO" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/landmark/lightsout, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/secondary/service) -"aUP" = ( -/turf/closed/wall, -/area/crew_quarters/kitchen) -"aUQ" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/crew_quarters/kitchen) -"aUR" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Bar - Aft"; - dir = 4; - name = "service camera" - }, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aUS" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aUT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Arrivals Hallway - Bar"; - dir = 4; - name = "hallway camera" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/fore) -"aUU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/fore) -"aUV" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/brown/corner{ - dir = 4 - }, -/area/hallway/primary/fore) -"aUW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/quartermaster/office) -"aUX" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/office) -"aUY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/office) -"aUZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/office) -"aVa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/office) -"aVb" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/office) -"aVc" = ( -/obj/structure/table/reinforced, -/obj/item/folder, -/obj/item/stamp/denied{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stamp, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/office) -"aVd" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = -32 - }, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 10 - }, -/area/quartermaster/storage) -"aVe" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/brown, -/area/quartermaster/storage) -"aVf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/purple/side, -/area/quartermaster/storage) -"aVg" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/brown, -/area/quartermaster/storage) -"aVh" = ( -/obj/structure/closet/wardrobe/cargotech, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aVi" = ( -/obj/structure/closet/wardrobe/cargotech, -/obj/machinery/ai_status_display{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aVj" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aVk" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel/brown, -/area/quartermaster/storage) -"aVl" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/item/storage/pod{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/purple/side{ - dir = 6 - }, -/area/quartermaster/storage) -"aVm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/quartermaster/qm) -"aVn" = ( -/obj/machinery/photocopier, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = -32 - }, -/turf/open/floor/plasteel/brown{ - dir = 10 - }, -/area/quartermaster/qm) -"aVo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/paper_bin, -/turf/open/floor/plasteel/brown, -/area/quartermaster/qm) -"aVp" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/light, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/brown, -/area/quartermaster/qm) -"aVq" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Cargo - Quartermaster's Office"; - dir = 1; - name = "cargo camera" - }, -/turf/open/floor/plasteel/brown, -/area/quartermaster/qm) -"aVr" = ( -/turf/open/floor/plasteel/brown, -/area/quartermaster/qm) -"aVs" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/brown, -/area/quartermaster/qm) -"aVt" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/stockexchange, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 6 - }, -/area/quartermaster/qm) -"aVu" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/white, -/turf/open/floor/plating, -/area/quartermaster/qm) -"aVv" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/qm) -"aVw" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/red/corner, -/area/security/prison) -"aVx" = ( -/obj/machinery/newscaster/security_unit{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/red/corner, -/area/security/prison) -"aVy" = ( -/obj/machinery/camera{ - c_tag = "Security - Prison Port"; - dir = 2; - name = "security camera" - }, -/turf/open/floor/plasteel/red/corner, -/area/security/prison) -"aVz" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red/corner, -/area/security/prison) -"aVA" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/red/corner, -/area/security/prison) -"aVB" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/red/corner, -/area/security/prison) -"aVC" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner, -/area/security/prison) -"aVD" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/red/corner, -/area/security/prison) -"aVE" = ( -/obj/machinery/button/door{ - id = "permacell3"; - name = "Cell 3 Lockdown"; - pixel_x = -4; - pixel_y = 25; - req_access_txt = "2" - }, -/obj/machinery/button/flasher{ - id = "PCell 3"; - pixel_x = 6; - pixel_y = 24 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 2 - }, -/area/security/prison) -"aVF" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/computer/security/telescreen{ - name = "Prisoner Telescreen"; - network = list("prison"); - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/red/corner, -/area/security/prison) -"aVG" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Security - Prison"; - dir = 2; - name = "security camera" - }, -/turf/open/floor/plasteel/red/corner, -/area/security/prison) -"aVH" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner, -/area/security/prison) -"aVI" = ( -/obj/machinery/button/door{ - id = "permacell2"; - name = "Cell 2 Lockdown"; - pixel_x = -4; - pixel_y = 25; - req_access_txt = "2" - }, -/obj/machinery/button/flasher{ - id = "PCell 2"; - pixel_x = 6; - pixel_y = 24 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 2 - }, -/area/security/prison) -"aVJ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen{ - name = "Prisoner Telescreen"; - network = list("prison"); - pixel_y = 32 - }, -/turf/open/floor/plasteel/red/corner, -/area/security/prison) -"aVK" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/red/corner, -/area/security/prison) -"aVL" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner, -/area/security/prison) -"aVM" = ( -/obj/machinery/button/door{ - id = "permacell1"; - name = "Cell 1 Lockdown"; - pixel_x = -4; - pixel_y = 25; - req_access_txt = "2" - }, -/obj/machinery/button/flasher{ - id = "PCell 1"; - pixel_x = 6; - pixel_y = 24 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 2 - }, -/area/security/prison) -"aVN" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner, -/area/security/prison) -"aVO" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/red/corner, -/area/security/prison) -"aVP" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/button/door{ - id = "brigprison"; - name = "Prison Lockdown"; - pixel_x = 26; - pixel_y = 26; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/security/prison) -"aVQ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/prison) -"aVR" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_security{ - name = "Prison Wing"; - req_access_txt = "1" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aVS" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aVT" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "brigprison"; - name = "Prison Blast door" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/prison) -"aVU" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/prison) -"aVV" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/security/prison) -"aVW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Security - Escape Pod"; - dir = 2; - name = "security camera" - }, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/prison) -"aVX" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/prison) -"aVY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating{ - luminosity = 2; - initial_gas_mix = "o2=0.01;n2=0.01"; - temperature = 2.7 - }, -/area/security/prison) -"aVZ" = ( -/obj/structure/shuttle/engine/propulsion/burst{ - dir = 8 - }, -/turf/closed/wall/mineral/titanium, -/area/shuttle/pod_3) -"aWa" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/pod_3) -"aWb" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4; - frequency = 1441; - id = "co2_in"; - pixel_y = 1 - }, -/turf/open/floor/engine/co2, -/area/engine/atmos) -"aWc" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"aWd" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/space, -/area/engine/atmos) -"aWe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"aWf" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmos) -"aWg" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 2; - filter_type = "co2"; - name = "co2 filter"; - on = 1 - }, -/turf/open/floor/plasteel/vault, -/area/engine/atmos) -"aWh" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aWi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aWj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aWk" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/obj/machinery/meter, -/obj/item/wrench, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aWl" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aWm" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/caution{ - dir = 8 - }, -/area/engine/atmos) -"aWn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aWo" = ( -/obj/structure/closet/secure_closet/atmospherics, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aWp" = ( -/obj/machinery/pipedispenser/disposal/transit_tube, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aWq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aWr" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aWs" = ( -/obj/machinery/atmospherics/components/trinary/mixer{ - dir = 1; - name = "air mixer"; - node1_concentration = 0.8; - node2_concentration = 0.2; - on = 1; - target_pressure = 4500 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aWt" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "O2 to Airmix"; - on = 1 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 5 - }, -/area/engine/atmos) -"aWu" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmos) -"aWv" = ( -/obj/machinery/meter, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"aWw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 8; - frequency = 1441; - id_tag = "o2_out"; - name = "oxygen vent" - }, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"aWx" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics - Oxygen Supply"; - name = "atmospherics camera" - }, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"aWy" = ( -/turf/open/floor/engine/o2, -/area/engine/atmos) -"aWz" = ( -/turf/open/floor/plasteel/neutral/corner, -/area/maintenance/port/fore) -"aWA" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aWB" = ( -/turf/closed/wall, -/area/hydroponics) -"aWC" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/hydroponics) -"aWD" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Hydroponics Maintenance"; - req_access_txt = "35" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"aWE" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/closed/wall, -/area/hydroponics) -"aWF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/hydroponics) -"aWG" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"aWH" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"aWI" = ( -/obj/structure/kitchenspike, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"aWJ" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "sink"; - pixel_y = 28 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"aWK" = ( -/obj/machinery/gibber, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"aWL" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "sink"; - pixel_y = 28 - }, -/obj/machinery/camera{ - c_tag = "Kitchen Cold Room"; - dir = 2; - name = "service camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"aWM" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"aWN" = ( -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aWO" = ( -/obj/structure/chair/stool/bar, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aWP" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"aWQ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/fore) -"aWR" = ( -/obj/machinery/autolathe, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -33 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/turf/open/floor/plasteel/brown{ - dir = 10 - }, -/area/quartermaster/office) -"aWS" = ( -/obj/machinery/disposal/bin, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/brown, -/area/quartermaster/office) -"aWT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/brown, -/area/quartermaster/office) -"aWU" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/brown, -/area/quartermaster/office) -"aWV" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/toy/figure/cargotech, -/turf/open/floor/plasteel/brown, -/area/quartermaster/office) -"aWX" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/plasteel/brown, -/area/quartermaster/office) -"aWY" = ( -/obj/machinery/computer/cargo, -/turf/open/floor/plasteel/brown, -/area/quartermaster/office) -"aWZ" = ( -/obj/structure/chair/office/dark, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/plasteel/brown, -/area/quartermaster/office) -"aXa" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/stockexchange, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = 28 - }, -/turf/open/floor/plasteel/brown{ - dir = 6 - }, -/area/quartermaster/office) -"aXb" = ( -/turf/closed/wall, -/area/quartermaster/miningoffice) -"aXc" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/quartermaster/miningoffice) -"aXd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/quartermaster/miningoffice) -"aXe" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_mining{ - name = "Mining Office"; - req_access_txt = "48" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"aXf" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/miningoffice) -"aXg" = ( -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"aXh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/mining{ - name = "Mining Dock"; - req_access_txt = "48" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"aXi" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/quartermaster/qm) -"aXj" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/structure/cable/white, -/turf/open/floor/plating, -/area/quartermaster/qm) -"aXk" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aXl" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/security/prison) -"aXm" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/machinery/light, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/security/prison) -"aXn" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/security/prison) -"aXo" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/security/prison) -"aXp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/security/prison) -"aXq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/security/prison) -"aXr" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/security/prison) -"aXs" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/security/prison) -"aXt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/security/prison) -"aXu" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/lightsout, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/security/prison) -"aXv" = ( -/obj/structure/cable/white, -/obj/machinery/power/apc/highcap/five_k{ - dir = 2; - name = "Prison Wing APC"; - areastring = "/area/security/prison"; - pixel_x = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/security/prison) -"aXw" = ( -/obj/machinery/light, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/security/prison) -"aXx" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/security/prison) -"aXy" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/structure/sign/pods{ - dir = 8; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/prison) -"aXz" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/prison) -"aXA" = ( -/obj/machinery/light/small, -/obj/structure/sign/securearea{ - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aXB" = ( -/obj/machinery/door/poddoor/preopen{ - id = "brigprison"; - name = "Prison Blast door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/prison) -"aXC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/security/prison) -"aXD" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/security/prison) -"aXE" = ( -/turf/open/floor/plating, -/area/security/prison) -"aXF" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod 3" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aXG" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Escape Pod Airlock" - }, -/obj/docking_port/mobile/pod{ - dir = 4; - id = "pod3"; - name = "escape pod 3"; - port_direction = 2; - preferred_direction = 4 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/pod_3) -"aXH" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - pixel_y = 24 - }, -/obj/item/storage/pod{ - pixel_x = 6; - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/machinery/light/small, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/pod_3) -"aXI" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/machinery/computer/shuttle/pod{ - pixel_y = -32; - possible_destinations = "pod_lavaland3"; - shuttleId = "pod3" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/pod_3) -"aXJ" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/pod_3) -"aXK" = ( -/obj/docking_port/stationary/random{ - dir = 4; - id = "pod_lavaland4"; - name = "lavaland" - }, -/turf/open/space, -/area/space) -"aXM" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/structure/sign/securearea{ - pixel_x = -32 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics - Port"; - dir = 4; - name = "atmospherics camera" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmos) -"aXN" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/atmos) -"aXO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aXP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aXQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aXR" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/fireaxecabinet{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/caution{ - dir = 8 - }, -/area/engine/atmos) -"aXS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/atmospheric_technician, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aXT" = ( -/obj/machinery/suit_storage_unit/atmos, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aXU" = ( -/obj/machinery/pipedispenser/disposal, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aXV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aXX" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aXY" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1441; - input_tag = "o2_in"; - name = "Oxygen Supply Control"; - output_tag = "o2_out"; - sensors = list("o2_sensor" = "Tank") - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel/blue/side{ - dir = 4 - }, -/area/engine/atmos) -"aXZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmos) -"aYa" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "o2_sensor" - }, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"aYb" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"aYc" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"aYd" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics) -"aYe" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics) -"aYf" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics) -"aYg" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics) -"aYh" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics) -"aYi" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics) -"aYj" = ( -/obj/structure/closet/wardrobe/botanist, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics) -"aYk" = ( -/obj/structure/table/glass, -/obj/item/wrench, -/obj/item/clothing/suit/apron, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics) -"aYl" = ( -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/chem_master/condimaster{ - name = "BrewMaster 3000" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics) -"aYm" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/loadingarea{ - dir = 1 - }, -/area/hallway/secondary/service) -"aYn" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"aYo" = ( -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "Kitchen" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"aYp" = ( -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"aYq" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/kitchen) -"aYr" = ( -/mob/living/simple_animal/hostile/retaliate/goat{ - name = "Pete" - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/kitchen) -"aYs" = ( -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/kitchen) -"aYt" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"aYu" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchencounter"; - name = "Kitchen Counter Shutters" - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = -8 - }, -/obj/item/reagent_containers/food/drinks/britcup, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"aYv" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchencounter"; - name = "Kitchen Counter Shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"aYw" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchencounter"; - name = "Kitchen Counter Shutters" - }, -/obj/item/storage/fancy/donut_box, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"aYx" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/crew_quarters/kitchen) -"aYy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aYz" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aYA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aYB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/quartermaster/office) -"aYC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_mining{ - name = "Cargo Office"; - req_access_txt = "0"; - req_one_access_txt = "48;50" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aYD" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/machinery/door/window/southleft{ - dir = 1; - req_access_txt = "50" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aYE" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26 - }, -/turf/open/floor/plasteel/brown{ - dir = 9 - }, -/area/quartermaster/miningoffice) -"aYF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/purple/side{ - dir = 1 - }, -/area/quartermaster/miningoffice) -"aYG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/miningoffice) -"aYH" = ( -/obj/structure/table/reinforced, -/obj/item/storage/belt/utility, -/turf/open/floor/plasteel/purple/side{ - dir = 1 - }, -/area/quartermaster/miningoffice) -"aYI" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/stockexchange, -/turf/open/floor/plasteel/brown{ - dir = 5 - }, -/area/quartermaster/miningoffice) -"aYJ" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/clipboard, -/obj/item/toy/figure/miner, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light_switch{ - pixel_x = -38 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"aYK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"aYL" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"aYM" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"aYN" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"aYO" = ( -/obj/machinery/mineral/equipment_vendor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"aYP" = ( -/obj/structure/table, -/obj/machinery/microwave{ - desc = "Cooks and boils stuff, somehow."; - pixel_x = -3; - pixel_y = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"aYQ" = ( -/obj/structure/table, -/obj/item/storage/box/donkpockets, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"aYR" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/miningoffice) -"aYS" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/mining) -"aYT" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/mining) -"aYU" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red, -/obj/item/pen, -/turf/open/floor/plasteel/vault, -/area/security/prison) -"aYV" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/open/floor/plasteel/vault, -/area/security/prison) -"aYW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Prison Wing"; - req_access_txt = "1" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aYX" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/prison) -"aYY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Prison Wing"; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aYZ" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = -32 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/vault, -/area/security/prison) -"aZa" = ( -/obj/structure/rack, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/device/assembly/flash/handheld, -/turf/open/floor/plasteel/vault, -/area/security/prison) -"aZb" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/bodybags{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/prisoner, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault, -/area/security/prison) -"aZc" = ( -/obj/structure/closet/secure_closet/brig{ - name = "Prisoner Locker" - }, -/obj/machinery/ai_status_display{ - pixel_y = -32 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/vault, -/area/security/prison) -"aZd" = ( -/obj/structure/closet/secure_closet/brig{ - name = "Prisoner Locker" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/vault, -/area/security/prison) -"aZe" = ( -/obj/structure/closet/secure_closet/brig{ - name = "Prisoner Locker" - }, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault, -/area/security/prison) -"aZf" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/prison) -"aZg" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/table, -/obj/item/restraints/handcuffs, -/obj/item/clothing/suit/armor/vest, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/red/side, -/area/security/prison) -"aZh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating{ - luminosity = 2; - initial_gas_mix = "o2=0.01;n2=0.01"; - temperature = 2.7 - }, -/area/security/prison) -"aZi" = ( -/turf/open/floor/engine/plasma, -/area/engine/atmos) -"aZj" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics - Plasma Cell"; - name = "atmospherics camera" - }, -/turf/open/floor/engine/plasma, -/area/engine/atmos) -"aZk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 4; - frequency = 1441; - id_tag = "tox_out"; - name = "plasma vent" - }, -/turf/open/floor/engine/plasma, -/area/engine/atmos) -"aZl" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmos) -"aZm" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Plasma to Pure"; - on = 0 - }, -/turf/open/floor/plasteel/purple/side{ - dir = 9 - }, -/area/engine/atmos) -"aZn" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aZo" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aZq" = ( -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aZr" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aZs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/caution{ - dir = 8 - }, -/area/engine/atmos) -"aZt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"aZu" = ( -/obj/structure/closet/secure_closet/atmospherics, -/obj/effect/turf_decal/stripes/end, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aZv" = ( -/obj/machinery/pipedispenser, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aZw" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 1; - filter_type = "o2"; - name = "oxygen filter"; - on = 1 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 6 - }, -/area/engine/atmos) -"aZx" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmos) -"aZy" = ( -/obj/machinery/meter, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"aZz" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8; - frequency = 1441; - id = "o2_in" - }, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"aZA" = ( -/mob/living/simple_animal/cockroach, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aZB" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port/fore) -"aZD" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/greenblue/side{ - dir = 1 - }, -/area/hydroponics) -"aZE" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/greenblue/side{ - dir = 1 - }, -/area/hydroponics) -"aZF" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/greenblue/side{ - dir = 1 - }, -/area/hydroponics) -"aZG" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/greenblue/side{ - dir = 1 - }, -/area/hydroponics) -"aZH" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/greenblue/side{ - dir = 1 - }, -/area/hydroponics) -"aZI" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/greenblue/side{ - dir = 1 - }, -/area/hydroponics) -"aZJ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hydroponics) -"aZK" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - name = "Hydroponics Backroom"; - req_access_txt = "35" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"aZL" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"aZM" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"aZN" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - name = "Kitchen Coldroom"; - req_access_txt = "28" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"aZO" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"aZP" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/kitchen) -"aZQ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/landmark/start/cook, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/kitchen) -"aZR" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/kitchen) -"aZS" = ( -/obj/structure/closet/chefcloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"aZT" = ( -/obj/structure/rack, -/obj/item/book/manual/chef_recipes, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"aZU" = ( -/turf/open/floor/plasteel/red, -/area/crew_quarters/kitchen) -"aZV" = ( -/turf/open/floor/plasteel/white, -/area/crew_quarters/kitchen) -"aZW" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "sink"; - pixel_y = 28 - }, -/turf/open/floor/plasteel/red, -/area/crew_quarters/kitchen) -"aZX" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/red, -/area/crew_quarters/kitchen) -"aZY" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "kitchencounter"; - name = "Kitchen Counter Shutters"; - pixel_x = 26; - pixel_y = 8; - req_access_txt = "28" - }, -/obj/machinery/button/door{ - id = "kitchenside"; - name = "Kitchen Side Shutters"; - pixel_x = 26; - pixel_y = -8; - req_access_txt = "28" - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"aZZ" = ( -/turf/closed/wall, -/area/hallway/primary/fore) -"baa" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26 - }, -/turf/open/floor/plasteel/brown{ - dir = 9 - }, -/area/hallway/primary/fore) -"bab" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/hallway/primary/fore) -"bac" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/hallway/primary/fore) -"bad" = ( -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/hallway/primary/fore) -"bae" = ( -/obj/machinery/camera{ - c_tag = "Cargo - Waiting Room"; - dir = 2; - name = "cargo camera" - }, -/turf/open/floor/plasteel/loadingarea{ - dir = 4 - }, -/area/hallway/primary/fore) -"baf" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bag" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bah" = ( -/obj/machinery/computer/cargo/request, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bai" = ( -/obj/machinery/computer/cargo/request, -/turf/open/floor/plasteel/purple/side{ - dir = 8 - }, -/area/quartermaster/miningoffice) -"baj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/miningoffice) -"bak" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/miningoffice) -"bal" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/miningoffice) -"bam" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/plasteel/purple/side{ - dir = 4 - }, -/area/quartermaster/miningoffice) -"ban" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/quartermaster/miningoffice) -"bao" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/miningoffice) -"bap" = ( -/turf/open/floor/plasteel/loadingarea{ - dir = 1 - }, -/area/quartermaster/miningoffice) -"baq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/loadingarea{ - dir = 1 - }, -/area/quartermaster/miningoffice) -"bar" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/miningoffice) -"bas" = ( -/turf/open/floor/plasteel/purple/side{ - dir = 1 - }, -/area/quartermaster/miningoffice) -"bat" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/brown{ - dir = 5 - }, -/area/quartermaster/miningoffice) -"bau" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/miningoffice) -"bav" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/miningoffice) -"baw" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/vacuum, -/turf/open/floor/plating, -/area/quartermaster/miningoffice) -"bax" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/miningoffice) -"bay" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/emergency, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) -"baz" = ( -/obj/machinery/computer/shuttle/mining, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) -"baA" = ( -/obj/structure/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) -"baB" = ( -/obj/machinery/door/poddoor/preopen{ - id = "brigprison"; - name = "Prison Blast door" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/pods{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/prison) -"baC" = ( -/obj/machinery/door/poddoor/preopen{ - id = "brigprison"; - name = "Prison Blast door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/prison) -"baD" = ( -/obj/machinery/door/poddoor/preopen{ - id = "brigprison"; - name = "Prison Blast door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/prison) -"baE" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"baF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/bombcloset/security, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/prison) -"baG" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/engine/plasma, -/area/engine/atmos) -"baH" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/engine/plasma, -/area/engine/atmos) -"baI" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "tox_sensor" - }, -/turf/open/floor/engine/plasma, -/area/engine/atmos) -"baJ" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1441; - input_tag = "tox_in"; - name = "Plasma Supply Control"; - output_tag = "tox_out"; - sensors = list("tox_sensor" = "Tank") - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/purple/side{ - dir = 8 - }, -/area/engine/atmos) -"baK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"baL" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"baM" = ( -/obj/structure/table/reinforced, -/obj/item/device/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"baN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/caution{ - dir = 8 - }, -/area/engine/atmos) -"baO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/atmos) -"baP" = ( -/obj/structure/closet/wardrobe/atmospherics_yellow, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/storage/backpack/satchel/eng, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"baQ" = ( -/obj/structure/sign/atmosplaque, -/turf/closed/wall, -/area/engine/atmos) -"baR" = ( -/obj/structure/table/reinforced, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"baS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"baT" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"baU" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "N2 to Pure" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/atmos) -"baV" = ( -/obj/structure/sign/securearea{ - pixel_x = 32 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmos) -"baW" = ( -/obj/structure/closet/firecloset, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"baX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port/fore) -"baY" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/cultivator, -/obj/item/hatchet, -/obj/item/wirecutters, -/obj/item/shovel/spade, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics) -"baZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/greenblue/side, -/area/hydroponics) -"bba" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/greenblue/side, -/area/hydroponics) -"bbb" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hydroponics) -"bbc" = ( -/obj/machinery/camera{ - c_tag = "Hydroponics Backroom"; - dir = 1; - name = "service camera" - }, -/turf/open/floor/plasteel/greenblue/side, -/area/hydroponics) -"bbd" = ( -/obj/structure/cable/white, -/obj/machinery/power/apc{ - dir = 2; - name = "Hydroponics APC"; - areastring = "/area/hydroponics"; - pixel_y = -26 - }, -/turf/open/floor/plasteel/greenblue/side, -/area/hydroponics) -"bbe" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/greenblue/side, -/area/hydroponics) -"bbf" = ( -/turf/open/floor/plasteel/greenblue/side, -/area/hydroponics) -"bbg" = ( -/obj/machinery/light_switch{ - pixel_x = 8; - pixel_y = -26 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hydroponics) -"bbh" = ( -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "Hydroponics" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"bbi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"bbj" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/secondary/service) -"bbk" = ( -/obj/structure/kitchenspike, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"bbl" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26; - pixel_y = -26 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"bbm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"bbn" = ( -/obj/structure/cable/white, -/obj/machinery/power/apc{ - dir = 2; - name = "Kitchen APC"; - areastring = "/area/crew_quarters/kitchen"; - pixel_y = -26 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"bbo" = ( -/obj/machinery/chem_master/condimaster, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"bbp" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"bbq" = ( -/obj/machinery/deepfryer, -/mob/living/carbon/monkey/punpun, -/turf/open/floor/plasteel/red, -/area/crew_quarters/kitchen) -"bbr" = ( -/obj/machinery/holopad, -/obj/effect/landmark/start/cook, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"bbs" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/crew_quarters/kitchen) -"bbt" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchenside"; - name = "Kitchen Hall Shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"bbu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/brown/corner{ - dir = 4 - }, -/area/hallway/primary/fore) -"bbv" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/primary/fore) -"bbw" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/hallway/primary/fore) -"bbx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/fore) -"bby" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/fore) -"bbz" = ( -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/fore) -"bbA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/fore) -"bbB" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Mining Desk"; - req_access_txt = "48" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bbC" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/quartermaster/miningoffice) -"bbD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/miningoffice) -"bbE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/miningoffice) -"bbF" = ( -/turf/open/floor/plasteel/neutral, -/area/quartermaster/miningoffice) -"bbG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/miningoffice) -"bbH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Mining Dock"; - req_access_txt = "48" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bbI" = ( -/turf/open/floor/plasteel/purple/side{ - dir = 8 - }, -/area/quartermaster/miningoffice) -"bbJ" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/miningoffice) -"bbK" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/miningoffice) -"bbL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/shaft_miner, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/miningoffice) -"bbM" = ( -/obj/effect/landmark/start/shaft_miner, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/miningoffice) -"bbN" = ( -/obj/effect/landmark/start/shaft_miner, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/miningoffice) -"bbO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/miningoffice) -"bbP" = ( -/turf/open/floor/plasteel/purple/side{ - dir = 4 - }, -/area/quartermaster/miningoffice) -"bbQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/pods{ - name = "MINING POD" - }, -/turf/open/floor/plating, -/area/quartermaster/miningoffice) -"bbR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/ore_box, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bbS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bbT" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/miningoffice) -"bbU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) -"bbV" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/shuttle/mining) -"bbW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) -"bbX" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/sign/securearea{ - pixel_x = -32 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"bbY" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"bbZ" = ( -/obj/machinery/button/door{ - id = "brigprison"; - name = "Prison Lockdown"; - pixel_x = 26; - pixel_y = 26; - req_access_txt = "63" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"bca" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_security{ - name = "Storage Closet"; - req_access_txt = "63" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"bcb" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"bcc" = ( -/obj/structure/closet/l3closet/security, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/prison) -"bcd" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4; - frequency = 1441; - id = "tox_in"; - pixel_y = 1 - }, -/turf/open/floor/engine/plasma, -/area/engine/atmos) -"bce" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmos) -"bcf" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 2; - filter_type = "plasma"; - name = "waste filter"; - on = 1 - }, -/turf/open/floor/plasteel/purple/side{ - dir = 10 - }, -/area/engine/atmos) -"bcg" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Port Mix to Port Ports"; - on = 0 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bch" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Port Mix to Starboard Ports"; - on = 0 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bci" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/engine/atmos) -"bcj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_atmos{ - name = "Atmospherics Storage"; - req_access_txt = "0"; - req_one_access_txt = "24;10" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bck" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 5 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bcl" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bcm" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "N2 to Airmix"; - on = 1 - }, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/engine/atmos) -"bcn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/yellow/visible, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmos) -"bco" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 8; - frequency = 1441; - id_tag = "n2_out"; - name = "n2 vent" - }, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"bcp" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics - Nitrogen Cell"; - name = "atmospherics camera" - }, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"bcq" = ( -/turf/open/floor/engine/n2, -/area/engine/atmos) -"bcr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port/fore) -"bcs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"bct" = ( -/obj/structure/sign/botany, -/turf/closed/wall, -/area/hydroponics) -"bcu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/hydroponics) -"bcv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Hydroponics Backroom"; - req_access_txt = "35" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bcw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Service Hall"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"bcx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/hallway/secondary/service) -"bcy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/kitchen) -"bcz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Kitchen Coldroom"; - req_access_txt = "28" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"bcA" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Kitchen"; - dir = 4; - name = "service camera" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"bcB" = ( -/obj/structure/table/reinforced, -/obj/item/storage/bag/tray, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"bcC" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/glass/bowl, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"bcD" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/flour, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"bcE" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j1" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/fore) -"bcF" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/brown/corner{ - dir = 4 - }, -/area/hallway/primary/fore) -"bcG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bcH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/hallway/primary/fore) -"bcI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/fore) -"bcJ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bcK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bcL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/fore) -"bcM" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bcN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/loadingarea{ - dir = 1 - }, -/area/hallway/primary/fore) -"bcO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/miningoffice) -"bcP" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/purple/side{ - dir = 8 - }, -/area/quartermaster/miningoffice) -"bcQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/miningoffice) -"bcR" = ( -/obj/machinery/holopad, -/obj/effect/landmark/lightsout, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bcS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/miningoffice) -"bcT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/purple/side{ - dir = 4 - }, -/area/quartermaster/miningoffice) -"bcU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/quartermaster/miningoffice) -"bcV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bcW" = ( -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bcX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bcZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; - name = "Mining Dock Airlock"; - req_access = null; - req_access_txt = "48" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bda" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bdb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bdc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; - name = "Mining Dock Airlock"; - req_access = null; - req_access_txt = "48" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bdd" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Mining Shuttle Airlock"; - req_access_txt = "0" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/mining) -"bde" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) -"bdf" = ( -/turf/open/floor/plasteel/neutral, -/area/shuttle/mining) -"bdg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) -"bdh" = ( -/obj/docking_port/mobile{ - dir = 8; - dwidth = 3; - height = 5; - id = "mining"; - name = "mining shuttle"; - port_direction = 4; - width = 7 - }, -/obj/docking_port/stationary{ - dir = 8; - dwidth = 3; - height = 5; - id = "mining_home"; - name = "mining shuttle bay"; - width = 7 - }, -/obj/machinery/door/airlock/shuttle{ - name = "Mining Shuttle Airlock"; - req_access_txt = "0" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/mining) -"bdi" = ( -/turf/closed/wall/r_wall, -/area/security/brig) -"bdj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Prison Wing"; - req_access_txt = "1" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bdk" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: BLAST DOORS" - }, -/turf/open/floor/plating, -/area/security/brig) -"bdl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Prison Wing"; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bdm" = ( -/turf/closed/wall/r_wall, -/area/security/main) -"bdn" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/main) -"bdo" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/securearea{ - pixel_x = -32 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmos) -"bdp" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bdq" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/caution{ - dir = 1 - }, -/area/engine/atmos) -"bdr" = ( -/obj/machinery/power/apc/highcap/five_k{ - dir = 1; - name = "Atmospherics APC"; - areastring = "/area/engine/atmos"; - pixel_y = 24 - }, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/caution{ - dir = 1 - }, -/area/engine/atmos) -"bds" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/caution{ - dir = 1 - }, -/area/engine/atmos) -"bdt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/caution{ - dir = 1 - }, -/area/engine/atmos) -"bdu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/caution{ - dir = 1 - }, -/area/engine/atmos) -"bdv" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics - Aft"; - name = "atmospherics camera" - }, -/turf/open/floor/plasteel/caution{ - dir = 1 - }, -/area/engine/atmos) -"bdw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/caution{ - dir = 1 - }, -/area/engine/atmos) -"bdx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bdy" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bdz" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bdA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bdB" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1441; - input_tag = "n2_in"; - name = "Nitrogen Supply Control"; - output_tag = "n2_out"; - sensors = list("n2_sensor" = "Tank") - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/engine/atmos) -"bdC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmos) -"bdD" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "n2_sensor" - }, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"bdE" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"bdF" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"bdG" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_containers/glass/bucket, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics) -"bdH" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_containers/glass/bucket, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics) -"bdI" = ( -/obj/machinery/disposal/bin, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics) -"bdJ" = ( -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hydroponics) -"bdK" = ( -/obj/structure/table/glass, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/obj/item/storage/box/beakers{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/syringes, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics) -"bdL" = ( -/obj/machinery/reagentgrinder{ - desc = "Used to grind things up into raw materials and liquids."; - pixel_y = 5 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics) -"bdM" = ( -/obj/structure/table/glass, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/item/clipboard, -/obj/item/toy/figure/botanist, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics) -"bdN" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics) -"bdO" = ( -/obj/machinery/smartfridge, -/turf/closed/wall, -/area/hydroponics) -"bdP" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/greenblue/side{ - dir = 8 - }, -/area/hallway/secondary/service) -"bdQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/green/side{ - dir = 1 - }, -/area/hallway/secondary/service) -"bdR" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/hallway/secondary/service) -"bdS" = ( -/obj/machinery/smartfridge, -/turf/closed/wall, -/area/crew_quarters/kitchen) -"bdT" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 32 - }, -/obj/machinery/light_switch{ - pixel_x = -7; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/crew_quarters/kitchen) -"bdU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red, -/area/crew_quarters/kitchen) -"bdV" = ( -/obj/machinery/requests_console{ - department = "Kitchen"; - departmentType = 0; - name = "Kitchen RC"; - pixel_y = 32 - }, -/turf/open/floor/plasteel/red, -/area/crew_quarters/kitchen) -"bdW" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/kitchen) -"bdX" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/snacks/dough, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"bdY" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"bdZ" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/papersack{ - icon_state = "paperbag_NanotrasenStandard_closed" - }, -/obj/item/storage/box/papersack{ - icon_state = "paperbag_NanotrasenStandard_closed" - }, -/obj/item/storage/box/papersack{ - icon_state = "paperbag_NanotrasenStandard_closed" - }, -/obj/item/storage/box/papersack{ - icon_state = "paperbag_NanotrasenStandard_closed" - }, -/obj/item/storage/box/papersack{ - icon_state = "paperbag_NanotrasenStandard_closed" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"bea" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/fore) -"beb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/fore) -"bec" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/brown/corner{ - dir = 4 - }, -/area/hallway/primary/fore) -"bed" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bee" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/hallway/primary/fore) -"bef" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/fore) -"beg" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"beh" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bei" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/fore) -"bej" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bek" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bel" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/glass_mining{ - name = "Mining Office"; - req_access_txt = "48" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bem" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/quartermaster/miningoffice) -"ben" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/miningoffice) -"beo" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/miningoffice) -"bep" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/miningoffice) -"beq" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/miningoffice) -"ber" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Mining Dock"; - req_access_txt = "48" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bes" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/purple/side{ - dir = 8 - }, -/area/quartermaster/miningoffice) -"bet" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/miningoffice) -"beu" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/miningoffice) -"bev" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/miningoffice) -"bew" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/miningoffice) -"bex" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/miningoffice) -"bey" = ( -/obj/structure/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plasteel/purple/side{ - dir = 4 - }, -/area/quartermaster/miningoffice) -"bez" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"beA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"beB" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/miningoffice) -"beC" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) -"beD" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) -"beE" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) -"beF" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/brig) -"beH" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/whitered/side{ - dir = 1 - }, -/area/security/brig) -"beI" = ( -/obj/structure/bed, -/obj/machinery/iv_drip, -/obj/item/bedsheet/medical, -/obj/machinery/vending/wallmed{ - name = "Emergency NanoMed"; - pixel_y = 26; - req_access_txt = "0"; - use_power = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Security - Medbay"; - dir = 2; - name = "security camera" - }, -/turf/open/floor/plasteel/whitered/side{ - dir = 1 - }, -/area/security/brig) -"beJ" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/brig) -"beK" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/brig) -"beL" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/brig) -"beM" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/brig) -"beN" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/main) -"beO" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/main) -"beP" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/main) -"beQ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Security - Office Fore"; - dir = 2; - name = "security camera" - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/main) -"beR" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/newscaster/security_unit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/main) -"beS" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/main) -"beT" = ( -/obj/machinery/recharger, -/obj/structure/table/reinforced, -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/main) -"beU" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26; - pixel_y = 26 - }, -/obj/effect/landmark/start/security_officer, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/main) -"beV" = ( -/obj/machinery/computer/security, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/main) -"beW" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hos) -"beX" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosspace"; - name = "HoS Space Blast door" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) -"beY" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosspace"; - name = "HoS Space Blast door" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) -"beZ" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosspace"; - name = "HoS Space Blast door" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) -"bfa" = ( -/turf/open/floor/engine/n2o, -/area/engine/atmos) -"bfb" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics - n2o Cell"; - name = "atmospherics camera" - }, -/turf/open/floor/engine/n2o, -/area/engine/atmos) -"bfc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 4; - frequency = 1441; - id_tag = "n2o_out"; - name = "n2o vent" - }, -/turf/open/floor/engine/n2o, -/area/engine/atmos) -"bfd" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "N2O to Pure"; - on = 0 - }, -/turf/open/floor/plasteel/escape{ - dir = 9 - }, -/area/engine/atmos) -"bfe" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bff" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bfg" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Pure to Ports"; - on = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bfh" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Mix to Ports"; - on = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bfi" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Air to Ports"; - on = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bfj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Port Mix to Engine" - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bfk" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bfl" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bfm" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bfn" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bfo" = ( -/obj/machinery/holopad, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bfp" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bfq" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/meter, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bfr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bfs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bft" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 1; - filter_type = "n2"; - name = "nitrogen filter"; - on = 1 - }, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/engine/atmos) -"bfx" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8; - frequency = 1441; - id = "n2_in" - }, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"bfy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 - }, -/obj/item/device/flashlight, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"bfz" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics) -"bfA" = ( -/turf/open/floor/plasteel/greenblue/side{ - dir = 9 - }, -/area/hydroponics) -"bfB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/greenblue/side{ - dir = 1 - }, -/area/hydroponics) -"bfC" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/greenblue/side{ - dir = 1 - }, -/area/hydroponics) -"bfD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/greenblue/side{ - dir = 1 - }, -/area/hydroponics) -"bfE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/greenblue/side{ - dir = 5 - }, -/area/hydroponics) -"bfF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hydroponics) -"bfG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - name = "Hydroponics"; - req_access_txt = "35" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bfH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/greenblue/side{ - dir = 8 - }, -/area/hallway/secondary/service) -"bfI" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"bfJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/hallway/secondary/service) -"bfK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Kitchen"; - req_access_txt = "28" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"bfL" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/crew_quarters/kitchen) -"bfM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/red, -/area/crew_quarters/kitchen) -"bfN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/kitchen) -"bfO" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/red, -/area/crew_quarters/kitchen) -"bfP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/kitchen) -"bfQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/red, -/area/crew_quarters/kitchen) -"bfR" = ( -/obj/effect/landmark/start/cook, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/kitchen) -"bfS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/red, -/area/crew_quarters/kitchen) -"bfT" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/red, -/area/crew_quarters/kitchen) -"bfU" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/kitchen) -"bfV" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchenside"; - name = "Kitchen Hall Shutters" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"bfW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/fore) -"bfX" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - icon_state = "pipe-j2s"; - name = "Kitchen Junction"; - sortType = 20 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/fore) -"bfY" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/hallway/primary/fore) -"bfZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/fore) -"bga" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/fore) -"bgb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/hallway/primary/fore) -"bgc" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plasteel/purple/side{ - dir = 8 - }, -/area/quartermaster/miningoffice) -"bgd" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/miningoffice) -"bge" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/miningoffice) -"bgf" = ( -/obj/machinery/photocopier, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/purple/side{ - dir = 4 - }, -/area/quartermaster/miningoffice) -"bgg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/quartermaster/miningoffice) -"bgh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/purple/side, -/area/quartermaster/miningoffice) -"bgi" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/brown, -/area/quartermaster/miningoffice) -"bgj" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/purple/side, -/area/quartermaster/miningoffice) -"bgk" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/requests_console{ - department = "Mining"; - departmentType = 0; - name = "Mining Dock RC"; - pixel_y = -32 - }, -/obj/machinery/camera{ - c_tag = "Cargo - Mining Dock"; - dir = 1; - name = "cargo camera" - }, -/turf/open/floor/plasteel/brown, -/area/quartermaster/miningoffice) -"bgl" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/brown, -/area/quartermaster/miningoffice) -"bgm" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/purple/side, -/area/quartermaster/miningoffice) -"bgn" = ( -/obj/structure/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/item/folder/yellow, -/obj/item/device/gps/mining, -/turf/open/floor/plasteel/brown{ - dir = 6 - }, -/area/quartermaster/miningoffice) -"bgo" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/miningoffice) -"bgp" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/miningoffice) -"bgq" = ( -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/structure/closet/crate/internals, -/obj/effect/decal/cleanable/dirt, -/obj/item/pickaxe/emergency, -/obj/item/pickaxe/emergency, -/obj/effect/turf_decal/delivery, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) -"bgr" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/mining) -"bgs" = ( -/obj/structure/ore_box, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) -"bgt" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/brig) -"bgu" = ( -/obj/structure/table/glass, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/item/clothing/gloves/color/latex, -/obj/item/device/healthanalyzer, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 5; - pixel_y = -1 - }, -/turf/open/floor/plasteel/whitered/side{ - dir = 8 - }, -/area/security/brig) -"bgv" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"bgw" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"bgx" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/door/airlock/glass_medical{ - name = "Infirmary" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitered/side{ - dir = 4 - }, -/area/security/brig) -"bgy" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/brig) -"bgz" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/security/brig) -"bgA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/brig) -"bgB" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -26; - pixel_y = 32 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/main) -"bgC" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/red/corner, -/area/security/main) -"bgD" = ( -/obj/structure/chair/office/dark, -/obj/effect/landmark/start/security_officer, -/turf/open/floor/plasteel/red/side, -/area/security/main) -"bgE" = ( -/turf/open/floor/plasteel/red/corner{ - dir = 8 - }, -/area/security/main) -"bgF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/neutral, -/area/security/main) -"bgG" = ( -/turf/open/floor/plasteel/neutral, -/area/security/main) -"bgH" = ( -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/main) -"bgI" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/main) -"bgJ" = ( -/obj/structure/bed/dogbed/cayenne, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Security - Head of Security's Office"; - dir = 2; - name = "security camera" - }, -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/crew_quarters/heads/hos) -"bgK" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/crew_quarters/heads/hos) -"bgL" = ( -/obj/structure/table/wood, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/item/device/taperecorder{ - pixel_x = 3 - }, -/obj/item/storage/box/deputy, -/obj/item/device/flashlight/seclite, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/crew_quarters/heads/hos) -"bgM" = ( -/obj/structure/table/wood, -/obj/item/storage/secure/briefcase, -/obj/item/book/manual/wiki/security_space_law, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/crew_quarters/heads/hos) -"bgN" = ( -/obj/machinery/photocopier, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Head of Security's Desk"; - departmentType = 5; - name = "Head of Security RC"; - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/crew_quarters/heads/hos) -"bgO" = ( -/obj/structure/window/reinforced, -/turf/open/space, -/area/space) -"bgP" = ( -/obj/structure/window/reinforced, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"bgQ" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/engine/n2o, -/area/engine/atmos) -"bgR" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide{ - valve_open = 1 - }, -/turf/open/floor/engine/n2o, -/area/engine/atmos) -"bgS" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "n2o_sensor" - }, -/turf/open/floor/engine/n2o, -/area/engine/atmos) -"bgT" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1441; - input_tag = "n2o_in"; - name = "Nitrous Oxide Supply Control"; - output_tag = "n2o_out"; - sensors = list("n2o_sensor" = "Tank") - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel/escape{ - dir = 8 - }, -/area/engine/atmos) -"bgU" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bgV" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bgW" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bgX" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bgY" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bgZ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bhb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bhc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bhd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bhe" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bhf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bhg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bhh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4; - name = "SM Coolant Loop" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/atmos) -"bhi" = ( -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmos) -"bhj" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/engine/atmos) -"bhk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bhl" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bhm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port/fore) -"bhn" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hydroponics) -"bho" = ( -/turf/open/floor/plasteel/greenblue/side{ - dir = 8 - }, -/area/hydroponics) -"bhp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/neutral, -/area/hydroponics) -"bhq" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hydroponics) -"bhr" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hydroponics) -"bhs" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/hydroponics) -"bht" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/greenblue/side{ - dir = 4 - }, -/area/hydroponics) -"bhu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics) -"bhv" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/window/eastleft{ - dir = 8; - name = "Hydroponics Desk"; - req_access_txt = "35" - }, -/obj/item/storage/bag/plants/portaseeder, -/obj/machinery/door/window/eastright, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hydroponics) -"bhw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/greenblue/side{ - dir = 8 - }, -/area/hallway/secondary/service) -"bhx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral/side, -/area/hallway/secondary/service) -"bhy" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/hallway/secondary/service) -"bhz" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/window/eastleft{ - dir = 4; - name = "Kitchen Desk"; - req_access_txt = "28" - }, -/obj/item/storage/bag/tray, -/obj/machinery/door/window/westleft, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"bhB" = ( -/obj/machinery/food_cart, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"bhC" = ( -/obj/machinery/light, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/machinery/vending/dinnerware, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"bhD" = ( -/obj/machinery/icecream_vat, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"bhE" = ( -/obj/structure/rack, -/obj/machinery/button/door{ - id = "kitchenwindows"; - name = "Kitchen Privacy Control"; - pixel_y = -26; - req_access_txt = "28" - }, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/obj/item/clothing/head/chefhat, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"bhF" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/snacks/mint, -/obj/item/reagent_containers/food/condiment/enzyme{ - pixel_y = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"bhG" = ( -/obj/structure/table/reinforced, -/obj/machinery/reagentgrinder{ - desc = "Used to grind things up into raw materials and liquids."; - pixel_y = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"bhH" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/toy/figure/chef, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"bhI" = ( -/obj/machinery/light, -/obj/machinery/processor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"bhJ" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/suit/apron/chef, -/obj/item/kitchen/rollingpin, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"bhK" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = -8 - }, -/obj/item/kitchen/knife, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"bhL" = ( -/obj/structure/table/reinforced, -/obj/machinery/microwave{ - desc = "Cooks and boils stuff, somehow."; - pixel_x = -3; - pixel_y = 5 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"bhN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Arrivals Hallway - Aft"; - dir = 8; - name = "hallway camera" - }, -/turf/open/floor/plasteel/brown/corner{ - dir = 4 - }, -/area/hallway/primary/fore) -"bhO" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/hallway/primary/fore) -"bhP" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/clipboard, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/turf/open/floor/plasteel/brown{ - dir = 10 - }, -/area/hallway/primary/fore) -"bhQ" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/brown, -/area/hallway/primary/fore) -"bhR" = ( -/turf/open/floor/plasteel/brown, -/area/hallway/primary/fore) -"bhS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/brown, -/area/hallway/primary/fore) -"bhT" = ( -/obj/machinery/light, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/brown, -/area/hallway/primary/fore) -"bhU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/brown, -/area/hallway/primary/fore) -"bhV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/brown, -/area/hallway/primary/fore) -"bhW" = ( -/obj/structure/table, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plasteel/brown, -/area/hallway/primary/fore) -"bhX" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 6 - }, -/area/hallway/primary/fore) -"bhY" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/stockexchange, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/brown{ - dir = 10 - }, -/area/quartermaster/miningoffice) -"bhZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/loadingarea{ - dir = 4 - }, -/area/quartermaster/miningoffice) -"bia" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bib" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/loadingarea{ - dir = 8 - }, -/area/quartermaster/miningoffice) -"bic" = ( -/obj/structure/table, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/item/storage/firstaid/regular, -/obj/machinery/light, -/obj/machinery/power/apc{ - dir = 4; - name = "Mining Dock APC"; - areastring = "/area/quartermaster/miningoffice"; - pixel_x = 26 - }, -/obj/machinery/camera{ - c_tag = "Cargo - Mining Office"; - dir = 8; - name = "cargo camera" - }, -/turf/open/floor/plasteel/brown{ - dir = 6 - }, -/area/quartermaster/miningoffice) -"bid" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/toolbox/emergency{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/emergency, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/item/shovel, -/obj/item/shovel, -/obj/item/pickaxe, -/obj/item/pickaxe, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bie" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bif" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"big" = ( -/obj/structure/closet/wardrobe/miner, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light, -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_y = -26 - }, -/obj/item/storage/backpack/satchel/explorer, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bih" = ( -/obj/machinery/disposal/bin, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bii" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bij" = ( -/obj/machinery/computer/security/mining, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bik" = ( -/obj/machinery/computer/shuttle/mining, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bil" = ( -/obj/structure/shuttle/engine/propulsion/burst, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/mining) -"bim" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/brig) -"bin" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/regular, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/glass/bottle/charcoal, -/obj/item/reagent_containers/syringe, -/turf/open/floor/plasteel/whitered/side{ - dir = 10 - }, -/area/security/brig) -"bio" = ( -/obj/machinery/light/small, -/obj/machinery/holopad, -/turf/open/floor/plasteel/whitered/side, -/area/security/brig) -"bip" = ( -/obj/structure/bed/roller, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = -26 - }, -/turf/open/floor/plasteel/whitered/side, -/area/security/brig) -"biq" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/bluecross_2, -/turf/open/floor/plating, -/area/security/brig) -"bir" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/brig) -"bis" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/neutral, -/area/security/brig) -"bit" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/brig) -"biu" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/main) -"biv" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/main) -"biw" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/start/security_officer, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/main) -"bix" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red, -/obj/item/clothing/mask/gas/sechailer, -/turf/open/floor/plasteel/red, -/area/security/main) -"biy" = ( -/obj/structure/table/reinforced, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/plasteel/red, -/area/security/main) -"biz" = ( -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/main) -"biA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/security/main) -"biB" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/main) -"biC" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosprivacy"; - name = "HoS Privacy Blast door" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) -"biD" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -32; - pixel_y = 32 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"biE" = ( -/mob/living/simple_animal/hostile/carp/cayenne{ - color = ""; - desc = "A failed experiment of Nanotrasen to create weaponised carp technology. This less than intimidating carp now serves as an authority figure's pet."; - health = 200; - icon_dead = "magicarp_dead"; - icon_gib = "magicarp_gib"; - icon_living = "magicarp"; - icon_state = "magicarp"; - maxHealth = 200; - melee_damage_lower = 20; - melee_damage_upper = 20; - name = "Lia" - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"biF" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"biG" = ( -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"biH" = ( -/obj/machinery/ai_status_display{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26; - pixel_y = 58 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"biI" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/pen, -/obj/machinery/button/door{ - id = "hosprivacy"; - name = "Privacy Control"; - pixel_x = 26; - pixel_y = 7; - req_access_txt = "58" - }, -/obj/machinery/button/door{ - id = "hosspace"; - name = "Space Shutters Control"; - pixel_x = 26; - pixel_y = -7; - req_access_txt = "58" - }, -/obj/machinery/light_switch{ - pixel_x = 38 - }, -/obj/machinery/keycard_auth{ - pixel_x = 26; - pixel_y = 26 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/crew_quarters/heads/hos) -"biJ" = ( -/turf/closed/wall, -/area/crew_quarters/heads/hos) -"biK" = ( -/obj/structure/dresser, -/obj/machinery/newscaster/security_unit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"biL" = ( -/obj/structure/bed, -/obj/item/bedsheet/hos, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Security - Head of Security's Quarters"; - dir = 2; - name = "security camera" - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"biM" = ( -/obj/structure/table/wood, -/obj/item/storage/secure/safe/HoS{ - pixel_x = 32 - }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"biN" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space) -"biO" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"biP" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"biQ" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"biR" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space) -"biS" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4; - frequency = 1441; - id = "n2o_in"; - pixel_y = 1 - }, -/turf/open/floor/engine/n2o, -/area/engine/atmos) -"biT" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 2; - filter_type = "n2o"; - name = "n2o filter"; - on = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/escape{ - dir = 10 - }, -/area/engine/atmos) -"biU" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 5 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"biV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"biW" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 9 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"biX" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/atmos) -"biY" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"biZ" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bja" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 6 - }, -/turf/open/floor/plasteel/caution{ - dir = 9 - }, -/area/engine/atmos) -"bjb" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible, -/turf/open/floor/plasteel/caution{ - dir = 1 - }, -/area/engine/atmos) -"bjc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 1 - }, -/turf/open/floor/plasteel/caution{ - dir = 1 - }, -/area/engine/atmos) -"bjd" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 1 - }, -/turf/open/floor/plasteel/caution{ - dir = 5 - }, -/area/engine/atmos) -"bje" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bjf" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bjg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bjh" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bji" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bjk" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/atmos) -"bjl" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 5 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmos) -"bjn" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 9 - }, -/turf/open/space, -/area/space) -"bjo" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/costume, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"bjp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bjq" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hydroponics) -"bjr" = ( -/obj/effect/landmark/start/botanist, -/turf/open/floor/plasteel/neutral, -/area/hydroponics) -"bjs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/hydroponics) -"bjt" = ( -/turf/open/floor/plasteel/neutral, -/area/hydroponics) -"bju" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/hydroponics) -"bjv" = ( -/turf/open/floor/plasteel/greenblue/side{ - dir = 4 - }, -/area/hydroponics) -"bjw" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = 8 - }, -/obj/machinery/plantgenes, -/obj/machinery/camera{ - c_tag = "Hydroponics"; - dir = 8; - name = "service camera" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hydroponics) -"bjx" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/service) -"bjy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Service Foyer" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"bjz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/hallway/secondary/service) -"bjA" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "kitchenwindows"; - name = "Kitchen Privacy Shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/kitchen) -"bjB" = ( -/obj/structure/sign/directions/evac{ - pixel_y = -8 - }, -/obj/structure/sign/directions/science{ - dir = 8 - }, -/obj/structure/sign/directions/engineering{ - dir = 8; - pixel_y = 8 - }, -/turf/closed/wall, -/area/crew_quarters/kitchen) -"bjC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/glass{ - name = "Fore Primary Hallway" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bjD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Fore Primary Hallway" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bjE" = ( -/obj/structure/sign/directions/security{ - dir = 4; - pixel_y = 8 - }, -/obj/structure/sign/directions/engineering{ - desc = "A direction sign, pointing out which way the Supply department is."; - dir = 4; - icon_state = "direction_supply"; - name = "supply department" - }, -/obj/structure/sign/directions/medical{ - pixel_y = -8 - }, -/turf/closed/wall, -/area/hallway/primary/fore) -"bjF" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bjG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bjH" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/hallway/primary/fore) -"bjI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bjJ" = ( -/obj/machinery/mineral/ore_redemption, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bjK" = ( -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"bjL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/mining{ - name = "Mining Dock"; - req_access_txt = "48" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"bjM" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/miningoffice) -"bjN" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/execution/transfer) -"bjO" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/execution/transfer) -"bjP" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/execution/transfer) -"bjQ" = ( -/turf/closed/wall/r_wall, -/area/security/execution/transfer) -"bjR" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/brig) -"bjS" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/security/brig) -"bjT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/brig) -"bjU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/security/main) -"bjV" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Security Office APC"; - areastring = "/area/security/main"; - pixel_x = -26 - }, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/main) -"bjW" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/landmark/start/security_officer, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/main) -"bjX" = ( -/obj/structure/table/reinforced, -/obj/item/restraints/handcuffs, -/obj/item/device/assembly/flash/handheld, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red, -/area/security/main) -"bjY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/main) -"bjZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/security/main) -"bka" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/folder/blue{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/lighter, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/main) -"bkb" = ( -/obj/machinery/photocopier, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/main) -"bkc" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/main) -"bkd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/main) -"bke" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosprivacy"; - name = "HoS Privacy Blast door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) -"bkf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"bkg" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"bkh" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"bki" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"bkj" = ( -/obj/machinery/computer/card/minor/hos, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/crew_quarters/heads/hos) -"bkk" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) -"bkl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"bkm" = ( -/obj/machinery/computer/prisoner, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"bkn" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosroom"; - name = "HoS Room Blast door" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) -"bko" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space) -"bkp" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"bkq" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/aisat) -"bkr" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/aisat) -"bks" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"bkt" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space) -"bku" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8 - }, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"bkv" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"bkw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"bkx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_atmos{ - name = "Distribution Loop"; - req_access_txt = "24" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bky" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/turf/open/floor/plating, -/area/engine/atmos) -"bkz" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical, -/obj/item/device/flashlight, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bkA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 2 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bkB" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/effect/decal/cleanable/dirt, -/obj/item/toy/figure/atmos, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 2 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bkC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bkD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bkE" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 28 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bkF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bkG" = ( -/obj/machinery/hydroponics/constructable, -/obj/structure/sign/botany{ - pixel_x = -32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hydroponics) -"bkH" = ( -/obj/machinery/biogenerator, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics) -"bkI" = ( -/obj/machinery/seed_extractor, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics) -"bkJ" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics) -"bkK" = ( -/obj/machinery/smartfridge/disks, -/turf/open/floor/plasteel, -/area/hydroponics) -"bkL" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/hydroponics) -"bkM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"bkN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"bkO" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"bkP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"bkQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Central Hallway - Fore Port"; - dir = 2; - name = "hallway camera" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"bkR" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"bkS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bkT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"bkU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/hallway/primary/central) -"bkV" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/brown/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"bkW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/brown/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"bkX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/brown/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"bkY" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/brown/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"bkZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Central Hallway - Fore Starboard"; - dir = 2; - name = "hallway camera" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"bla" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"blb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"blc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/purple/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"bld" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Central Primary Hallway APC"; - areastring = "/area/hallway/primary/central"; - pixel_y = 24 - }, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"ble" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"blf" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"blg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/maintenance/starboard/fore) -"blh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"blj" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"blk" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/execution/transfer) -"bll" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"blm" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/execution/transfer) -"bln" = ( -/obj/machinery/computer/shuttle/labor, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/execution/transfer) -"blo" = ( -/obj/machinery/computer/security{ - name = "Labor Camp Monitoring"; - network = list("Labor") - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/turf/open/floor/plasteel/red, -/area/security/execution/transfer) -"blp" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Security - Transfer Centre"; - dir = 2; - name = "security camera" - }, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/execution/transfer) -"blq" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/execution/transfer) -"blr" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/execution/transfer) -"bls" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel/neutral, -/area/security/brig) -"blt" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/security/main) -"blu" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/main) -"blv" = ( -/turf/open/floor/plasteel/red, -/area/security/main) -"blw" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/main) -"blx" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/clothing/accessory/armband/deputy, -/obj/item/clothing/accessory/armband/deputy, -/obj/item/clothing/accessory/armband/deputy, -/obj/item/clothing/accessory/armband/deputy, -/obj/item/clothing/accessory/armband/deputy, -/obj/item/reagent_containers/food/snacks/donut/jelly/cherryjelly, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/main) -"bly" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/main) -"blz" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/main) -"blA" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/main) -"blB" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/door/airlock/command{ - name = "Head of Security's Office"; - req_access = null; - req_access_txt = "58" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/crew_quarters/heads/hos) -"blC" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"blD" = ( -/obj/machinery/holopad, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"blE" = ( -/obj/structure/table/wood, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/item/folder/red, -/obj/item/stamp/hos, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"blF" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/landmark/start/head_of_security, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"blG" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"blH" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/crew_quarters/heads/hos) -"blI" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/door/airlock/command{ - name = "Head of Security's Quarters"; - req_access = null; - req_access_txt = "58" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/crew_quarters/heads/hos) -"blJ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"blK" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/landmark/start/head_of_security, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"blL" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/computer/crew, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"blM" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosroom"; - name = "HoS Room Blast door" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) -"blN" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"blO" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/southleft, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"blP" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"blQ" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"blR" = ( -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"blS" = ( -/obj/structure/window/reinforced, -/obj/machinery/camera{ - c_tag = "AI Satellite - Fore"; - dir = 1; - name = "ai camera"; - network = list("Sat"); - start_active = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"blT" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"blU" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/southright, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"blV" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"blW" = ( -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"blX" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4; - frequency = 1441; - id = "mix_in"; - pixel_y = 1 - }, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"blY" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plasteel/green/side{ - dir = 9 - }, -/area/engine/atmos) -"blZ" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Unfiltered & Air to Mix"; - on = 1 - }, -/turf/open/floor/plasteel/caution{ - dir = 1 - }, -/area/engine/atmos) -"bma" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/caution{ - dir = 1 - }, -/area/engine/atmos) -"bmb" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 2; - name = "Pure to Mix"; - on = 0 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/caution{ - dir = 1 - }, -/area/engine/atmos) -"bmc" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 6 - }, -/turf/open/floor/plasteel/caution{ - dir = 1 - }, -/area/engine/atmos) -"bmd" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/caution{ - dir = 1 - }, -/area/engine/atmos) -"bme" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 6 - }, -/turf/open/floor/plasteel/caution{ - dir = 1 - }, -/area/engine/atmos) -"bmf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"bmg" = ( -/obj/item/clothing/gloves/color/black, -/obj/structure/table/reinforced, -/obj/item/clothing/glasses/meson/engine/tray, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bmh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 2 - }, -/obj/effect/landmark/start/atmospheric_technician, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bmi" = ( -/obj/item/weldingtool, -/obj/item/clothing/head/welding, -/obj/structure/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 2 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bmj" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bml" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bmm" = ( -/obj/machinery/space_heater, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bmn" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bmo" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bmp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bmq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bmr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bms" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bmt" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/hallway/primary/port) -"bmu" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 4 - }, -/area/hallway/primary/port) -"bmv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"bmw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"bmx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bmy" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port/fore) -"bmz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/side{ - dir = 10; - heat_capacity = 1e+006 - }, -/area/maintenance/port/fore) -"bmA" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"bmB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bmC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bmD" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hydroponics) -"bmE" = ( -/obj/machinery/seed_extractor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics) -"bmF" = ( -/obj/machinery/biogenerator, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics) -"bmG" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start/botanist, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics) -"bmH" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/door/window/eastleft{ - dir = 8; - name = "Hydroponics Desk"; - req_access_txt = "35" - }, -/obj/item/reagent_containers/food/snacks/grown/apple, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hydroponics) -"bmI" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"bmJ" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall3"; - location = "hall2" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"bmK" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"bmL" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"bmM" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"bmN" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bmO" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/hallway/primary/central) -"bmP" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "L1" - }, -/area/hallway/primary/central) -"bmQ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "L3" - }, -/area/hallway/primary/central) -"bmR" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall2"; - location = "hall1" - }, -/turf/open/floor/plasteel{ - icon_state = "L5" - }, -/area/hallway/primary/central) -"bmS" = ( -/obj/effect/landmark/lightsout, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall15"; - location = "hall14" - }, -/turf/open/floor/plasteel{ - icon_state = "L7" - }, -/area/hallway/primary/central) -"bmT" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "L9" - }, -/area/hallway/primary/central) -"bmU" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "L11" - }, -/area/hallway/primary/central) -"bmV" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - desc = ""; - icon_state = "L13" - }, -/area/hallway/primary/central) -"bmW" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/hallway/primary/central) -"bmX" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"bmY" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"bmZ" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bna" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"bnb" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"bnc" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall14"; - location = "hall13" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"bnd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"bne" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/labor) -"bnf" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/labor) -"bng" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/sign/electricshock{ - pixel_x = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bnh" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/execution/transfer) -"bni" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bnj" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bnk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bnl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/execution/transfer) -"bnm" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"bnn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/brig) -"bno" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral, -/area/security/brig) -"bnp" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/brig) -"bnq" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass_security{ - name = "Security Office"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/main) -"bnr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/security/main) -"bns" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/start/security_officer, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/main) -"bnt" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red, -/obj/item/device/flashlight/seclite, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red, -/area/security/main) -"bnu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/main) -"bnv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 8 - }, -/area/security/main) -"bnw" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/device/taperecorder, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/main) -"bnx" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/main) -"bny" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/main) -"bnz" = ( -/obj/effect/landmark/secequipment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/main) -"bnA" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosprivacy"; - name = "HoS Privacy Blast door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) -"bnB" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"bnC" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"bnD" = ( -/obj/structure/table/wood, -/obj/item/phone{ - desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/mask/cigarette/cigar/cohiba{ - pixel_x = 6 - }, -/obj/item/clothing/mask/cigarette/cigar/havana{ - pixel_x = 2 - }, -/obj/item/clothing/mask/cigarette/cigar{ - pixel_x = 4.5 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"bnE" = ( -/obj/machinery/computer/security, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"bnF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"bnG" = ( -/obj/machinery/computer/prisoner, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/crew_quarters/heads/hos) -"bnH" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) -"bnI" = ( -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"bnJ" = ( -/obj/machinery/button/door{ - id = "hosroom"; - name = "Privacy Control"; - pixel_x = 64; - pixel_y = -26; - req_access_txt = "58" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"bnK" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"bnL" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosroom"; - name = "HoS Room Blast door" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) -"bnM" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"bnN" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space) -"bnO" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"bnP" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/space, -/area/space) -"bnQ" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/space, -/area/space) -"bnR" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/space, -/area/space) -"bnS" = ( -/obj/structure/lattice/catwalk, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/space, -/area/space) -"bnT" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/space, -/area/space) -"bnU" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space) -"bnV" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"bnW" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "mix_sensor" - }, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"bnX" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1441; - input_tag = "mix_in"; - name = "Gas Mix Tank Control"; - output_tag = "mix_in"; - sensors = list("mix_sensor" = "Tank") - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plasteel/green/side{ - dir = 8 - }, -/area/engine/atmos) -"bnY" = ( -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bnZ" = ( -/obj/machinery/atmospherics/pipe/manifold/green/visible, -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"boa" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bob" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"boc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Mix to Filter"; - on = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bod" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"boe" = ( -/obj/structure/table/reinforced, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/item/clothing/mask/gas, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 6 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bof" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bog" = ( -/obj/structure/table/reinforced, -/obj/item/storage/belt/utility, -/obj/item/device/t_scanner, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 2 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"boh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"boi" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"boj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "External Waste Ports to Filter"; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bok" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/engine/atmos) -"bol" = ( -/obj/machinery/space_heater, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bom" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bon" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"boo" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bop" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"boq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/nosmoking_2, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bor" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bos" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=engi3"; - location = "engi2" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/port) -"bot" = ( -/turf/open/floor/plasteel/yellow/corner{ - dir = 4 - }, -/area/hallway/primary/port) -"bou" = ( -/turf/closed/wall, -/area/storage/tech) -"bov" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/storage/tech) -"bow" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/closed/wall, -/area/storage/tech) -"box" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/maintenance/port/fore) -"boy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/hydroponics) -"boz" = ( -/obj/machinery/hydroponics/constructable, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hydroponics) -"boA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hydroponics) -"boB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/neutral, -/area/hydroponics) -"boC" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/eastright{ - dir = 8; - name = "Hydroponics Desk"; - req_access_txt = "35" - }, -/obj/item/seeds/lime{ - pixel_x = 6 - }, -/obj/item/seeds/watermelon, -/obj/item/seeds/grape{ - pixel_x = -6 - }, -/obj/item/reagent_containers/food/snacks/grown/wheat, -/obj/item/reagent_containers/food/snacks/grown/watermelon, -/obj/item/reagent_containers/food/snacks/grown/banana, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hydroponics) -"boD" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"boE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) -"boF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) -"boG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) -"boH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) -"boJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"boK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "L2" - }, -/area/hallway/primary/central) -"boL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "L4" - }, -/area/hallway/primary/central) -"boM" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "L6" - }, -/area/hallway/primary/central) -"boN" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/observer_start, -/turf/open/floor/plasteel{ - icon_state = "L8" - }, -/area/hallway/primary/central) -"boO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "L10" - }, -/area/hallway/primary/central) -"boP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = -26 - }, -/obj/machinery/camera{ - c_tag = "Central Hallway - Fore"; - dir = 1; - name = "hallway camera" - }, -/turf/open/floor/plasteel{ - icon_state = "L12" - }, -/area/hallway/primary/central) -"boQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "L14" - }, -/area/hallway/primary/central) -"boR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"boS" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"boU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"boV" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"boW" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"boX" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"boY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"boZ" = ( -/turf/closed/wall, -/area/hallway/primary/central) -"bpa" = ( -/obj/machinery/computer/shuttle/labor, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -31 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/labor) -"bpb" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/labor) -"bpc" = ( -/obj/item/folder/red, -/obj/item/restraints/handcuffs, -/obj/structure/table/reinforced, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/labor) -"bpd" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/execution/transfer) -"bpe" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/vacuum, -/turf/open/floor/plating, -/area/security/execution/transfer) -"bpf" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/execution/transfer) -"bpg" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bph" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/execution/transfer) -"bpi" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red, -/obj/item/restraints/handcuffs, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/storage/box/prisoner, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/execution/transfer) -"bpj" = ( -/obj/machinery/gulag_teleporter, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/execution/transfer) -"bpk" = ( -/obj/machinery/computer/gulag_teleporter_computer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/execution/transfer) -"bpl" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/execution/transfer) -"bpm" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/door/airlock/glass_security{ - name = "Security Transferring Control"; - req_access_txt = "63" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/red, -/area/security/execution/transfer) -"bpn" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/brig) -"bpo" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/security/brig) -"bpp" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/brig) -"bpq" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_security{ - name = "Security Office"; - req_access_txt = "63" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/main) -"bpr" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"bps" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/effect/landmark/start/security_officer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/main) -"bpt" = ( -/obj/structure/table/reinforced, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/item/folder/red, -/obj/item/storage/secure/briefcase, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/red, -/area/security/main) -"bpu" = ( -/obj/structure/table/reinforced, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/red, -/area/security/main) -"bpv" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/main) -"bpw" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/security/main) -"bpx" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/security/main) -"bpy" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/main) -"bpz" = ( -/obj/effect/landmark/secequipment, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/main) -"bpA" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosprivacy"; - name = "HoS Privacy Blast door" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) -"bpB" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = -32 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"bpC" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"bpD" = ( -/obj/machinery/status_display{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"bpE" = ( -/obj/structure/table/wood, -/obj/machinery/computer/med_data/laptop, -/obj/machinery/newscaster/security_unit{ - pixel_x = 32 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26; - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/crew_quarters/heads/hos) -"bpF" = ( -/obj/structure/closet/secure_closet/hos, -/obj/item/clothing/head/HoS/beret, -/obj/item/clothing/suit/armor/hos/trenchcoat, -/obj/item/clothing/under/rank/head_of_security/grey, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hos) -"bpG" = ( -/obj/machinery/light, -/obj/machinery/ai_status_display{ - pixel_y = -32 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26; - pixel_y = -26 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hos) -"bpH" = ( -/obj/machinery/suit_storage_unit/hos, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hos) -"bpI" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space) -"bpJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai) -"bpK" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai) -"bpL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai) -"bpM" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space) -"bpN" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics - Mix Cell"; - dir = 1; - name = "atmospherics camera" - }, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"bpO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 4; - frequency = 1441; - id_tag = "mix_in"; - name = "distro vent" - }, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"bpQ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/green/side{ - dir = 10 - }, -/area/engine/atmos) -"bpR" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bpS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bpT" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 1 - }, -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bpU" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bpV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bpW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Waste to Filter"; - on = 1 - }, -/turf/open/floor/plasteel/caution{ - dir = 4 - }, -/area/engine/atmos) -"bpX" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bpY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 2 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bpZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 2 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bqa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bqb" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bqc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bqd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_atmos{ - name = "Atmospherics Desk"; - req_access_txt = "24" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bqe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bqf" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bqg" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bqh" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bqi" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/camera{ - c_tag = "Atmospherics - Desk"; - dir = 8; - name = "atmospherics camera" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bqj" = ( -/obj/machinery/status_display, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bqk" = ( -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bql" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/port) -"bqm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bqn" = ( -/obj/machinery/vending/hydroseeds, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics) -"bqo" = ( -/obj/machinery/vending/hydronutrients, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics) -"bqp" = ( -/obj/structure/table/glass, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/stack/packageWrap, -/obj/item/book/manual/hydroponics_pod_people, -/obj/item/hand_labeler, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics) -"bqq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bqr" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bqs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bqt" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/primary/central) -"bqu" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/hallway/primary/central) -"bqv" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bqw" = ( -/turf/closed/wall/r_wall, -/area/security/nuke_storage) -"bqx" = ( -/obj/structure/grille, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/labor) -"bqy" = ( -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/labor) -"bqz" = ( -/obj/machinery/button/flasher{ - id = "gulagshuttleflasher"; - name = "Flash Control"; - pixel_y = -26; - req_access_txt = "1" - }, -/obj/machinery/light, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/labor) -"bqA" = ( -/obj/machinery/mineral/labor_claim_console{ - machinedir = 2; - pixel_x = 30; - pixel_y = 30 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/labor) -"bqB" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Labor Shuttle Airlock"; - req_access_txt = "2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/labor) -"bqC" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; - name = "Gulag Shuttle Airlock"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bqD" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bqE" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; - name = "Gulag Shuttle Airlock"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bqF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bqG" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/execution/transfer) -"bqH" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bqI" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bqJ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bqK" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/execution/transfer) -"bqL" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"bqM" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/brig) -"bqN" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/security/brig) -"bqO" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/main) -"bqP" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = -32 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 8 - }, -/area/security/main) -"bqQ" = ( -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/security/main) -"bqR" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/security_officer, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/main) -"bqS" = ( -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/security/main) -"bqT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/security/main) -"bqU" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/main) -"bqV" = ( -/obj/effect/landmark/secequipment, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/main) -"bqW" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/power/apc{ - dir = 2; - name = "Head of Security's Office APC"; - areastring = "/area/crew_quarters/heads/hos"; - pixel_y = -26 - }, -/obj/structure/cable/white, -/turf/open/floor/plasteel/vault{ - dir = 1 - }, -/area/crew_quarters/heads/hos) -"bqX" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/toy/figure/hos, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/crew_quarters/heads/hos) -"bqY" = ( -/obj/structure/table/wood, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/crew_quarters/heads/hos) -"bqZ" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/crew_quarters/heads/hos) -"bra" = ( -/obj/machinery/disposal/bin, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/light, -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/crew_quarters/heads/hos) -"brb" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/arrival{ - dir = 9 - }, -/area/engine/atmos) -"brc" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"brd" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 2; - name = "Mix to Distro"; - on = 0 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bre" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/atmos) -"brf" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - icon_state = "freezer"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/atmos) -"brg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/caution{ - dir = 4 - }, -/area/engine/atmos) -"brh" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/pump, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/arrival, -/area/engine/atmos) -"bri" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics - Pumps"; - dir = 1; - name = "atmospherics camera" - }, -/turf/open/floor/plasteel/arrival, -/area/engine/atmos) -"brj" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel/escape, -/area/engine/atmos) -"brk" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/escape, -/area/engine/atmos) -"brl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"brm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/atmos) -"brn" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/light/small, -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bro" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"brp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"brq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"brr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"brs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"brt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/loadingarea{ - dir = 1 - }, -/area/engine/atmos) -"bru" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "atmoslock"; - name = "Atmospherics Lockdown Blast door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"brv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"brw" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/port) -"brx" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel/escape{ - dir = 4 - }, -/area/hallway/primary/port) -"bry" = ( -/obj/structure/sign/electricshock, -/turf/closed/wall/r_wall, -/area/storage/tech) -"brz" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/storage/tech) -"brA" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/storage/tech) -"brB" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/storage/tech) -"brD" = ( -/turf/open/floor/plasteel/greenblue/side{ - dir = 10 - }, -/area/hydroponics) -"brE" = ( -/turf/open/floor/plasteel/greenblue/side{ - dir = 6 - }, -/area/hydroponics) -"brF" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/requests_console{ - department = "Hydroponics"; - departmentType = 2; - name = "Hydroponics RC"; - pixel_x = 32; - pixel_y = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics) -"brG" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hydroponics) -"brH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"brI" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"brJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) -"brK" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"brL" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/space) -"brM" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"brN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"brO" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"brP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"brQ" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/primary/central) -"brR" = ( -/turf/open/floor/plasteel/vault{ - dir = 1 - }, -/area/security/nuke_storage) -"brS" = ( -/obj/structure/closet/crate{ - name = "Silver Crate" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/coin/silver{ - pixel_x = -6 - }, -/obj/item/coin/silver{ - pixel_x = 6 - }, -/obj/item/coin/silver{ - pixel_x = 6 - }, -/obj/item/coin/silver, -/obj/item/coin/silver, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/nuke_storage) -"brT" = ( -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/nuke_storage) -"brU" = ( -/obj/structure/filingcabinet, -/obj/item/folder/documents, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/nuke_storage) -"brV" = ( -/obj/machinery/computer/bank_machine, -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/security/nuke_storage) -"brW" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Labor Shuttle Airlock"; - req_access_txt = "2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/labor) -"brX" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/labor) -"brY" = ( -/obj/machinery/mineral/stacking_machine/laborstacker{ - input_dir = 2; - output_dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/labor) -"brZ" = ( -/obj/structure/closet/emcloset, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bsa" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/execution/transfer) -"bsb" = ( -/turf/open/floor/plasteel/red/side, -/area/security/execution/transfer) -"bsc" = ( -/obj/structure/cable/white, -/obj/machinery/power/apc{ - dir = 2; - name = "Security Transferring APC"; - areastring = "/area/security/execution/transfer"; - pixel_y = -26 - }, -/turf/open/floor/plasteel/red/side, -/area/security/execution/transfer) -"bsd" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/red/side, -/area/security/execution/transfer) -"bse" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/execution/transfer) -"bsf" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/main) -"bsg" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 8 - }, -/area/security/main) -"bsh" = ( -/turf/open/floor/plasteel, -/area/security/main) -"bsi" = ( -/obj/structure/sign/goldenplaque{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/red/corner, -/area/security/main) -"bsj" = ( -/obj/machinery/light, -/obj/machinery/ai_status_display{ - pixel_y = -32 - }, -/obj/machinery/camera{ - c_tag = "Security - Office Aft"; - dir = 1; - name = "security camera" - }, -/turf/open/floor/plasteel/red/side, -/area/security/main) -"bsk" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/red/side, -/area/security/main) -"bsl" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/security/main) -"bsm" = ( -/obj/item/storage/pod{ - pixel_x = 32 - }, -/obj/effect/landmark/secequipment, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/main) -"bsn" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosspace"; - name = "HoS Space Blast door" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) -"bso" = ( -/obj/machinery/ai_status_display, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai) -"bsp" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/black, -/area/ai_monitored/turret_protected/ai) -"bsq" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/structure/sign/electricshock{ - pixel_y = 32 - }, -/obj/machinery/camera/motion{ - c_tag = "AI Chamber - Fore"; - name = "motion-sensitive ai camera"; - network = list("AI") - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/black, -/area/ai_monitored/turret_protected/ai) -"bsr" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/item/twohanded/required/kirbyplants/random, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/black, -/area/ai_monitored/turret_protected/ai) -"bss" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel/arrival{ - dir = 10 - }, -/area/engine/atmos) -"bst" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bsu" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Air to Distro"; - on = 1; - target_pressure = 101 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/caution, -/area/engine/atmos) -"bsv" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/visible, -/obj/machinery/camera{ - c_tag = "Atmospherics - Distro Loop"; - dir = 1; - name = "atmospherics camera" - }, -/turf/open/floor/plasteel/caution, -/area/engine/atmos) -"bsw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/meter{ - frequency = 1441; - id_tag = "distro_meter"; - name = "Distribution Loop" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/visible, -/turf/open/floor/plasteel/caution, -/area/engine/atmos) -"bsx" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Distro to Waste"; - on = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/caution, -/area/engine/atmos) -"bsy" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/meter{ - frequency = 1441; - id_tag = "waste_meter"; - name = "Waste Loop" - }, -/turf/open/floor/plasteel/caution{ - dir = 6 - }, -/area/engine/atmos) -"bsz" = ( -/obj/machinery/status_display, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bsA" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bsB" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Access"; - req_access_txt = "0"; - req_one_access_txt = "24;10" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bsC" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/light_switch{ - pixel_x = -38; - pixel_y = -8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/engine/atmos) -"bsD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bsE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bsF" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bsG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bsH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "atmoslock"; - name = "Atmospherics Lockdown Blast door" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "Atmospherics" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bsI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sortjunction{ - name = "Atmospherics Junction"; - sortType = 6 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/port) -"bsK" = ( -/obj/structure/rack, -/obj/item/circuitboard/computer/robotics{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/circuitboard/computer/mecha_control, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/storage/tech) -"bsL" = ( -/obj/structure/rack, -/obj/item/circuitboard/computer/communications{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/circuitboard/computer/card, -/obj/item/circuitboard/computer/crew{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/storage/tech) -"bsM" = ( -/obj/structure/rack, -/obj/item/circuitboard/aicore{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/circuitboard/computer/aiupload, -/obj/item/circuitboard/computer/borgupload{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/storage/tech) -"bsN" = ( -/obj/item/shovel/spade, -/obj/item/crowbar, -/obj/item/cultivator, -/obj/structure/table/glass, -/obj/item/seeds/wheat{ - pixel_x = 6 - }, -/obj/item/seeds/potato, -/obj/item/seeds/pumpkin{ - pixel_x = -6 - }, -/obj/item/reagent_containers/food/snacks/grown/wheat, -/obj/item/reagent_containers/food/snacks/grown/watermelon, -/obj/item/reagent_containers/food/snacks/grown/grapes, -/obj/item/reagent_containers/food/snacks/grown/tomato, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hydroponics) -"bsO" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hydroponics) -"bsP" = ( -/obj/machinery/hydroponics/constructable, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = -26 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hydroponics) -"bsQ" = ( -/obj/machinery/hydroponics/constructable, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hydroponics) -"bsS" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "bridgewindows"; - name = "Bridge View Blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bsT" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "bridgewindows"; - name = "Bridge View Blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bsU" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "bridgewindows"; - name = "Bridge View Blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bsV" = ( -/turf/closed/wall/r_wall, -/area/bridge) -"bsW" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "bridgewindows"; - name = "Bridge View Blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bsX" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "bridgewindows"; - name = "Bridge View Blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bsY" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "bridgewindows"; - name = "Bridge View Blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bsZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bta" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"btb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"btc" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"btd" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/nuke_storage) -"bte" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/security/nuke_storage) -"btf" = ( -/obj/machinery/camera/motion{ - c_tag = "Vault"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/nuke_storage) -"btg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/circuit/green, -/area/security/nuke_storage) -"bth" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/circuit/green, -/area/security/nuke_storage) -"bti" = ( -/turf/open/floor/circuit/green, -/area/security/nuke_storage) -"btj" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/nuke_storage) -"btk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/shuttle/labor) -"btl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/labor) -"btm" = ( -/obj/machinery/mineral/labor_claim_console{ - machinedir = 1; - pixel_x = 30 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/shuttle/labor) -"btn" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/door/airlock/glass_security{ - name = "Security Transferring Control"; - req_access_txt = "63" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/red, -/area/security/execution/transfer) -"bto" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/execution/transfer) -"btp" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/brig) -"btq" = ( -/obj/machinery/newscaster/security_unit{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Security - Brig Fore"; - dir = 8; - name = "security camera" - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/brig) -"btr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Interrogation"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/main) -"bts" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/security/main) -"btt" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/security{ - name = "Interrogation Monitoring"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/main) -"btu" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/security/main) -"btv" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "AI Satellite - Fore Port"; - dir = 8; - name = "ai camera"; - network = list("Sat"); - start_active = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"btw" = ( -/obj/machinery/porta_turret/ai, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/ai) -"btx" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai) -"bty" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai) -"btz" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai) -"btA" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai) -"btB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai) -"btC" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "AI Satellite - Fore Starboard"; - dir = 4; - name = "ai camera"; - network = list("Sat"); - start_active = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"btD" = ( -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"btE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; - name = "External Airlock"; - req_access_txt = "13" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"btF" = ( -/turf/closed/wall/r_wall, -/area/engine/break_room) -"btG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/engine/break_room) -"btH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/break_room) -"btI" = ( -/obj/machinery/status_display, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/break_room) -"btJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/engine/break_room) -"btK" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/break_room) -"btM" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/break_room) -"btN" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/plasteel/redyellow, -/area/engine/break_room) -"btO" = ( -/obj/structure/closet/firecloset, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/machinery/firealarm{ - pixel_x = -32; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/break_room) -"btP" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"btQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/break_room) -"btR" = ( -/obj/structure/table/reinforced, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/item/device/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/caution{ - dir = 8 - }, -/area/engine/atmos) -"btS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"btT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/caution{ - dir = 4 - }, -/area/engine/atmos) -"btU" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "atmoslock"; - name = "Atmospherics Lockdown Blast door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/engine/atmos) -"btV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"btW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/port) -"btX" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/item/wrench, -/obj/item/clothing/mask/gas, -/turf/open/floor/plasteel/caution{ - dir = 4 - }, -/area/hallway/primary/port) -"btY" = ( -/turf/closed/wall/r_wall, -/area/storage/tech) -"btZ" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/tech) -"bua" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/storage/tech) -"bub" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Technology Storage - Secure"; - dir = 8; - name = "engineering camera" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/tech) -"buc" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port/fore) -"bud" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"bue" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "bridgewindows"; - name = "Bridge View Blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"buf" = ( -/obj/machinery/computer/card, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/bridge) -"bug" = ( -/obj/machinery/computer/crew, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"buh" = ( -/obj/machinery/computer/med_data, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"bui" = ( -/obj/structure/table/reinforced, -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/item/restraints/handcuffs, -/obj/item/device/assembly/flash/handheld, -/turf/open/floor/plasteel/black, -/area/bridge) -"buj" = ( -/obj/machinery/computer/prisoner, -/turf/open/floor/plasteel/darkred/side{ - dir = 1 - }, -/area/bridge) -"buk" = ( -/obj/machinery/computer/security, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/darkred/side{ - dir = 1 - }, -/area/bridge) -"bul" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel/darkred/side{ - dir = 1 - }, -/area/bridge) -"bum" = ( -/obj/structure/table/reinforced, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plasteel/black, -/area/bridge) -"bun" = ( -/obj/machinery/computer/station_alert, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/darkyellow/side{ - dir = 1 - }, -/area/bridge) -"buo" = ( -/obj/machinery/computer/atmos_alert, -/turf/open/floor/plasteel/darkyellow/side{ - dir = 1 - }, -/area/bridge) -"bup" = ( -/obj/machinery/computer/monitor, -/turf/open/floor/plasteel/darkyellow/corner{ - dir = 4 - }, -/area/bridge) -"buq" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"bur" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"bus" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/vault{ - cyclelinkeddir = 4; - locked = 1; - name = "Vault Door"; - req_access_txt = "53" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/hallway/primary/central) -"but" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/nuke_storage) -"buu" = ( -/obj/machinery/door/airlock/vault{ - cyclelinkeddir = 8; - locked = 1; - name = "Vault Door"; - req_access_txt = "53" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/sign/electricshock{ - pixel_y = -32 - }, -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/nuke_storage) -"buv" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/circuit/green, -/area/security/nuke_storage) -"buw" = ( -/obj/machinery/nuclearbomb/selfdestruct{ - layer = 2 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/nuke_storage) -"bux" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/circuit/green, -/area/security/nuke_storage) -"buy" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Vault APC"; - areastring = "/area/security/nuke_storage"; - pixel_x = 26 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/nuke_storage) -"buz" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/shuttle/labor) -"buA" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/shuttle/labor) -"buB" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/flasher{ - id = "gulagshuttleflasher"; - pixel_x = 25 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/shuttle/labor) -"buC" = ( -/obj/machinery/gulag_item_reclaimer{ - pixel_y = 28 - }, -/obj/item/twohanded/required/kirbyplants/random, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"buD" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/execution/transfer) -"buE" = ( -/obj/structure/table/reinforced, -/obj/item/storage/briefcase{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/secure/briefcase, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/execution/transfer) -"buF" = ( -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/folder/red, -/obj/item/book/manual/wiki/security_space_law, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/execution/transfer) -"buG" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/execution/transfer) -"buH" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/execution/transfer) -"buI" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/brig) -"buJ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/brig) -"buK" = ( -/turf/closed/wall, -/area/security/main) -"buM" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/main) -"buN" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/main) -"buO" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/security/main) -"buP" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/main) -"buQ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/main) -"buR" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"buS" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue, -/obj/item/bodypart/l_leg/robot, -/obj/item/bodypart/r_leg/robot, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/ai) -"buT" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai) -"buU" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"buV" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"buW" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"buX" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"buY" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"buZ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"bva" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"bvb" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai) -"bvc" = ( -/obj/structure/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/ai) -"bvd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/closet/emcloset/anchored, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bve" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bvf" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bvg" = ( -/turf/closed/wall, -/area/engine/break_room) -"bvh" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bvi" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/electrical, -/obj/item/wrench/power, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bvj" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/break_room) -"bvk" = ( -/obj/structure/table/reinforced, -/obj/item/stack/rods{ - amount = 50 - }, -/obj/item/stack/sheet/rglass{ - amount = 30; - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/stack/cable_coil/white, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bvl" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/stack/sheet/plasteel{ - amount = 50 - }, -/obj/item/crowbar/power, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bvm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/bonfire, -/obj/item/reagent_containers/food/drinks/bottle/orangejuice{ - desc = "For the weary spacemen on their quest to rekindle the first plasma fire."; - name = "Carton of Estus" - }, -/obj/item/nullrod/claymore/glowing{ - desc = "Don't tell anyone you put any points into dex, though."; - force = 10; - name = "moonlight greatsword" - }, -/obj/effect/decal/remains/human, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/break_room) -"bvn" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/donkpockets, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/redyellow, -/area/engine/break_room) -"bvo" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bvp" = ( -/obj/machinery/vending/cola/random, -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/redyellow, -/area/engine/break_room) -"bvq" = ( -/obj/structure/sign/nosmoking_2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/break_room) -"bvr" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Access"; - req_access_txt = "0"; - req_one_access_txt = "24;10" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bvs" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/engine/break_room) -"bvt" = ( -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/machinery/modular_computer/console/preset/engineering, -/turf/open/floor/plasteel/caution{ - dir = 8 - }, -/area/engine/atmos) -"bvu" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bvv" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/holopad, -/obj/effect/landmark/start/atmospheric_technician, -/obj/effect/turf_decal/bot, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bvw" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bvx" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/caution{ - dir = 4 - }, -/area/engine/atmos) -"bvy" = ( -/obj/structure/table/reinforced, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/machinery/door/poddoor/preopen{ - id = "atmoslock"; - name = "Atmospherics Lockdown Blast door" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/window/westright{ - name = "Atmospherics Desk"; - req_access_txt = "24" - }, -/obj/machinery/door/window/eastright, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bvz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bvA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/port) -"bvB" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/camera{ - c_tag = "Engineering Hallway - Fore"; - dir = 8; - name = "hallway camera" - }, -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/hallway/primary/port) -"bvC" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Tech Storage"; - req_access_txt = "19;23" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/storage/tech) -"bvD" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/r_wall, -/area/storage/tech) -"bvE" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"bvF" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bvG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port/fore) -"bvH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bvI" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"bvJ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"bvK" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"bvL" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26 - }, -/obj/machinery/camera{ - c_tag = "Central Hallway - Bridge Port"; - dir = 8; - name = "hallway camera" - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) -"bvM" = ( -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/bridge) -"bvN" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/bridge) -"bvO" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/bridge) -"bvP" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/bridge) -"bvQ" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/bridge) -"bvR" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/bridge) -"bvS" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/bridge) -"bvT" = ( -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/wrench, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/signaler, -/turf/open/floor/plasteel/darkyellow/corner{ - dir = 4 - }, -/area/bridge) -"bvU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bvV" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bvW" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/primary/central) -"bvX" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/nuke_storage) -"bvY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/circuit/green, -/area/security/nuke_storage) -"bvZ" = ( -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/structure/closet/crate/internals, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/shuttle/labor) -"bwa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/labor) -"bwb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/shuttle/labor) -"bwc" = ( -/obj/machinery/door/airlock/shuttle{ - id_tag = "prisonshuttle"; - name = "Labor Shuttle Airlock" - }, -/obj/docking_port/mobile{ - dir = 8; - dwidth = 2; - height = 5; - id = "laborcamp"; - name = "labor camp shuttle"; - port_direction = 4; - width = 9 - }, -/obj/docking_port/stationary{ - dir = 8; - dwidth = 2; - height = 5; - id = "laborcamp_home"; - name = "fore bay 1"; - width = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/labor) -"bwd" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; - name = "Gulag Shuttle Airlock"; - req_access_txt = "0" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bwe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bwf" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; - name = "Gulag Shuttle Airlock"; - req_access_txt = "0" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bwg" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/execution/transfer) -"bwh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/security/execution/transfer) -"bwi" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bwj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/execution/transfer) -"bwk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Security Transferring Center"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red, -/area/security/execution/transfer) -"bwl" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/brig) -"bwm" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/security/brig) -"bwn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/brig) -"bwo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Interrogation"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/main) -"bwp" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/main) -"bwq" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red, -/obj/item/pen, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/main) -"bwr" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/main) -"bws" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/security/main) -"bwt" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/main) -"bwu" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/item/device/radio/intercom{ - anyai = 1; - broadcasting = 0; - freerange = 1; - frequency = 1424; - listening = 1; - name = "Interrogation Intercom"; - pixel_y = -58 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/main) -"bwv" = ( -/obj/structure/table/wood, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/camera{ - c_tag = "Security - Interrogation Monitoring"; - dir = 8; - name = "security camera" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/main) -"bww" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"bwx" = ( -/obj/machinery/status_display, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai) -"bwy" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/ai) -"bwz" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai) -"bwA" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"bwB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai) -"bwC" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai) -"bwD" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai) -"bwE" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"bwF" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai) -"bwG" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue, -/obj/item/pen, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/ai) -"bwH" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/gravity_generator) -"bwI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/gravity_generator) -"bwJ" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/electricshock{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/gravity_generator) -"bwK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bwL" = ( -/obj/machinery/power/apc/highcap/five_k{ - dir = 1; - name = "Gravity Generator APC"; - areastring = "/area/engine/gravity_generator"; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bwM" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bwN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bwO" = ( -/turf/closed/wall, -/area/engine/gravity_generator) -"bwP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; - name = "External Airlock"; - req_access_txt = "13" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bwQ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bwR" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bwS" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/break_room) -"bwT" = ( -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bwU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/engine/break_room) -"bwV" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/redyellow, -/area/engine/break_room) -"bwW" = ( -/obj/machinery/vending/snack/random, -/turf/open/floor/plasteel/redyellow, -/area/engine/break_room) -"bwX" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmoslock"; - name = "Atmospherics Lockdown Blast door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bwY" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "atmoslock"; - name = "Atmospherics Lockdown Blast door" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bwZ" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmoslock"; - name = "Atmospherics Lockdown Blast door" - }, -/obj/machinery/button/door{ - id = "atmoslock"; - name = "Atmospherics Lockdown Control"; - pixel_x = 26; - req_access_txt = "24" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bxa" = ( -/obj/machinery/computer/atmos_control, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/button/door{ - id = "atmoslock"; - name = "Atmospherics Lockdown Control"; - pixel_x = -38; - req_access_txt = "24" - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the Engine."; - dir = 4; - layer = 4; - name = "Engine Monitor"; - network = list("Engine"); - pixel_x = -24 - }, -/turf/open/floor/plasteel/caution{ - dir = 8 - }, -/area/engine/atmos) -"bxb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/office/dark, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bxc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"bxd" = ( -/obj/structure/table/reinforced, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 6 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -6 - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/plasteel/caution{ - dir = 4 - }, -/area/engine/atmos) -"bxe" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "atmoslock"; - name = "Atmospherics Lockdown Blast door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"bxf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bxg" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/port) -"bxh" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/hallway/primary/port) -"bxi" = ( -/obj/structure/table/reinforced, -/obj/item/device/plant_analyzer, -/obj/item/device/plant_analyzer, -/obj/item/device/radio, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/storage/tech) -"bxj" = ( -/obj/structure/table/reinforced, -/obj/item/device/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/device/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/signaler, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/tech) -"bxk" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/storage/tech) -"bxl" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/storage/tech) -"bxn" = ( -/obj/structure/table/reinforced, -/obj/item/aiModule/reset, -/obj/item/device/assembly/flash/handheld, -/obj/item/device/assembly/flash/handheld, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/tech) -"bxo" = ( -/obj/structure/table/reinforced, -/obj/item/bodypart/chest/robot, -/obj/item/device/mmi, -/obj/item/device/mmi, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/storage/tech) -"bxp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/maintenance/port/fore) -"bxq" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/closed/wall, -/area/storage/primary) -"bxr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/storage/primary) -"bxs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"bxt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - dir = 2; - freq = 1400; - location = "Tool Storage" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/storage/primary) -"bxu" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"bxv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/blue/corner, -/area/hallway/primary/central) -"bxw" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/bridge) -"bxx" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: BLAST DOORS"; - pixel_y = 32 - }, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"bxy" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridgedoors"; - name = "Bridge Access Blast door" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/bridge) -"bxz" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"bxA" = ( -/obj/machinery/vending/cola/random, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"bxB" = ( -/obj/machinery/vending/snack/random, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"bxC" = ( -/turf/closed/wall, -/area/bridge) -"bxD" = ( -/obj/machinery/computer/security/mining, -/turf/open/floor/plasteel/darkpurple/side{ - dir = 1 - }, -/area/bridge) -"bxE" = ( -/obj/machinery/computer/cargo/request, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/darkyellow/side{ - dir = 1 - }, -/area/bridge) -"bxF" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/mining_voucher, -/turf/open/floor/plasteel/black, -/area/bridge) -"bxG" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26; - pixel_y = 26 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/bridge) -"bxH" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/bridge) -"bxI" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/item/device/radio/beacon, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/bridge) -"bxJ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/bridge) -"bxK" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26; - pixel_y = 26 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/bridge) -"bxL" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the RD's goons and the AI's satellite from the safety of his office."; - name = "Research Monitor"; - network = list("RD","Sat"); - pixel_y = 2 - }, -/turf/open/floor/plasteel/black, -/area/bridge) -"bxM" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/modular_computer/console/preset/command, -/turf/open/floor/plasteel/darkpurple/side{ - dir = 1 - }, -/area/bridge) -"bxN" = ( -/obj/machinery/modular_computer/console/preset/engineering, -/turf/open/floor/plasteel/darkpurple/side{ - dir = 1 - }, -/area/bridge) -"bxO" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"bxP" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"bxQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/blue/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bxR" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/primary/central) -"bxS" = ( -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/security/nuke_storage) -"bxT" = ( -/obj/structure/closet/crate{ - name = "Gold Crate" - }, -/obj/item/storage/belt/champion, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/light/small, -/obj/item/stack/sheet/mineral/gold, -/obj/item/stack/sheet/mineral/gold, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/nuke_storage) -"bxU" = ( -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/nuke_storage) -"bxV" = ( -/obj/structure/safe, -/obj/item/clothing/neck/stethoscope, -/obj/item/book{ - desc = "An undeniably handy book."; - icon_state = "bookknock"; - name = "A Simpleton's Guide to Safe-cracking with Stethoscopes" - }, -/obj/item/stack/sheet/mineral/diamond, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c500, -/obj/item/stack/spacecash/c500, -/obj/item/stack/spacecash/c500, -/obj/item/stack/spacecash/c500, -/obj/item/stack/spacecash/c500, -/obj/machinery/light/small, -/obj/item/gun/ballistic/automatic/pistol/deagle, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/nuke_storage) -"bxW" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/labor) -"bxX" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/execution/transfer) -"bxY" = ( -/turf/open/floor/plasteel/neutral, -/area/security/execution/transfer) -"bxZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/security/execution/transfer) -"bya" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/execution/transfer) -"byb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/security/execution/transfer) -"byc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light/small, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/brig) -"byd" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/brig) -"bye" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = -26 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/brig) -"byf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/main) -"byg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/main) -"byh" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/main) -"byi" = ( -/obj/structure/table/reinforced, -/obj/item/device/flashlight/lamp, -/obj/item/device/radio/intercom{ - anyai = 1; - broadcasting = 1; - freerange = 1; - frequency = 1424; - listening = 0; - name = "Interrogation Intercom"; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Security - Interrogation"; - dir = 1; - name = "security camera" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/main) -"byk" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/main) -"byl" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/main) -"bym" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/main) -"byn" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/pen, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/main) -"byo" = ( -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/ai_monitored/turret_protected/ai) -"byp" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"byq" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai) -"byr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "aicorewindow"; - name = "AI Core Shutters" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"bys" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"byt" = ( -/turf/open/floor/plasteel/vault{ - dir = 1 - }, -/area/ai_monitored/turret_protected/ai) -"byu" = ( -/turf/open/floor/plasteel/vault{ - dir = 1 - }, -/area/engine/gravity_generator) -"byv" = ( -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/gravity_generator) -"byw" = ( -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/engine/gravity_generator) -"byx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/gravity_generator) -"byy" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/gravity_generator) -"byz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"byA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/neutral, -/area/engine/gravity_generator) -"byB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"byC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"byD" = ( -/obj/structure/sign/radiation, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"byE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Engineering - Gravity Generator Foyer"; - dir = 4; - name = "engineering camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"byF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"byG" = ( -/obj/structure/closet/radiation, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"byH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/engine/break_room) -"byI" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/break_room) -"byJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - cyclelinkeddir = 0; - name = "Power Tools Storage"; - req_access_txt = "19" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"byK" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/break_room) -"byL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - cyclelinkeddir = 0; - name = "Power Tools Storage"; - req_access_txt = "19" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"byM" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/engine/break_room) -"byN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"byO" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"byP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/yellow/side{ - dir = 9 - }, -/area/engine/break_room) -"byQ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"byR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"byS" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/power/apc/highcap/five_k{ - dir = 1; - name = "Engineering Foyer APC"; - areastring = "/area/engine/break_room"; - pixel_y = 24 - }, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"byT" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/caution{ - dir = 1 - }, -/area/engine/break_room) -"byU" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/caution{ - dir = 1 - }, -/area/engine/break_room) -"byV" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/caution{ - dir = 5 - }, -/area/engine/break_room) -"byW" = ( -/obj/structure/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plasteel/caution{ - dir = 10 - }, -/area/engine/atmos) -"byX" = ( -/obj/machinery/computer/station_alert, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/caution, -/area/engine/atmos) -"byY" = ( -/obj/machinery/computer/atmos_alert, -/obj/machinery/light, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/caution, -/area/engine/atmos) -"byZ" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = -26 - }, -/turf/open/floor/plasteel/caution, -/area/engine/atmos) -"bza" = ( -/obj/structure/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/machinery/requests_console{ - department = "Atmospherics Office"; - departmentType = 0; - name = "Atmospherics RC"; - pixel_x = 30 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26; - pixel_y = -32 - }, -/turf/open/floor/plasteel/caution{ - dir = 6 - }, -/area/engine/atmos) -"bzb" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/port) -"bzc" = ( -/obj/structure/table/reinforced, -/obj/item/device/healthanalyzer, -/obj/item/stack/cable_coil/white{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil/white, -/obj/item/device/healthanalyzer, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/storage/tech) -"bzd" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/storage/tech) -"bze" = ( -/turf/open/floor/plasteel/neutral, -/area/storage/tech) -"bzf" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/storage/tech) -"bzg" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/storage/tech) -"bzh" = ( -/obj/structure/table/reinforced, -/obj/item/device/aicard, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/storage/tech) -"bzi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/storage/primary) -"bzj" = ( -/obj/structure/table/reinforced, -/obj/item/device/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/device/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/signaler, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/primary) -"bzl" = ( -/obj/machinery/disposal/bin, -/obj/machinery/requests_console{ - department = "Primary Tool Storage"; - departmentType = 0; - name = "Primary Tool Storage RC"; - pixel_y = 32 - }, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/primary) -"bzm" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/primary) -"bzn" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/storage/primary) -"bzo" = ( -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/structure/closet/crate/internals, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/primary) -"bzp" = ( -/obj/structure/table/reinforced, -/obj/item/storage/belt/utility, -/obj/item/weldingtool, -/obj/item/clothing/head/welding, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/primary) -"bzq" = ( -/obj/structure/table/reinforced, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/primary) -"bzr" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/storage/primary) -"bzs" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/lightsout, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"bzt" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/blue/corner, -/area/hallway/primary/central) -"bzu" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass_command{ - cyclelinkeddir = 4; - name = "Bridge Access"; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/bridge) -"bzv" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/bridge) -"bzw" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridgedoors"; - name = "Bridge Access Blast door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/bridge) -"bzx" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass_command{ - cyclelinkeddir = 8; - name = "Bridge Access"; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/bridge) -"bzy" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/bridge) -"bzz" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/bridge) -"bzA" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/bridge) -"bzB" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/bridge) -"bzC" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/bridge) -"bzD" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/darkblue/corner, -/area/bridge) -"bzE" = ( -/obj/structure/window/reinforced, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/darkblue/side, -/area/bridge) -"bzF" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/window/brigdoor/southright{ - name = "Command Chair"; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/darkblue/side, -/area/bridge) -"bzG" = ( -/obj/structure/window/reinforced, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/darkblue/side, -/area/bridge) -"bzH" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/bridge) -"bzI" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/bridge) -"bzJ" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/bridge) -"bzK" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/bridge) -"bzL" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass_command{ - cyclelinkeddir = 4; - name = "Bridge Access"; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/bridge) -"bzM" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridgedoors"; - name = "Bridge Access Blast door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/bridge) -"bzN" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass_command{ - cyclelinkeddir = 8; - name = "Bridge Access"; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/bridge) -"bzO" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/blue/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bzP" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"bzQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Central Hallway - Bridge Starboard"; - dir = 8; - name = "hallway camera" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"bzR" = ( -/obj/structure/shuttle/engine/propulsion, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/labor) -"bzS" = ( -/turf/closed/wall, -/area/security/execution/transfer) -"bzT" = ( -/obj/structure/closet/emcloset, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = -32; - pixel_y = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/button/door{ - desc = "A remote control switch."; - id = "gulagdoor"; - name = "Transfer Door Control"; - normaldoorcontrol = 1; - pixel_x = -24; - pixel_y = -8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bzU" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - icon_state = "pipe-j1s"; - name = "HoS Junction"; - sortType = 8 - }, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/execution/transfer) -"bzV" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/red/side, -/area/security/execution/transfer) -"bzX" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/red/side, -/area/security/execution/transfer) -"bzY" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/execution/transfer) -"bzZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/security/brig) -"bAb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/security/brig) -"bAc" = ( -/obj/item/device/radio/intercom{ - anyai = 1; - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_x = -10; - pixel_y = 22 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 1; - listening = 1; - name = "Common Channel"; - pixel_x = -27 - }, -/obj/item/device/radio/intercom{ - anyai = 1; - broadcasting = 0; - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = -10; - pixel_y = -25 - }, -/obj/machinery/door/window{ - base_state = "rightsecure"; - dir = 4; - icon_state = "rightsecure"; - layer = 4.1; - name = "Secondary AI Core Access"; - pixel_x = 4; - req_access_txt = "16" - }, -/obj/effect/landmark/tripai, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"bAd" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/ai) -"bAe" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"bAf" = ( -/obj/machinery/turretid{ - icon_state = "control_stun"; - name = "AI Chamber turret control"; - pixel_x = 3; - pixel_y = -23 - }, -/obj/machinery/door/window{ - base_state = "leftsecure"; - dir = 8; - icon_state = "leftsecure"; - name = "Primary AI Core Access"; - req_access_txt = "16" - }, -/obj/machinery/newscaster/security_unit{ - pixel_x = 4; - pixel_y = 33 - }, -/turf/open/floor/plasteel/vault{ - dir = 6 - }, -/area/ai_monitored/turret_protected/ai) -"bAg" = ( -/obj/machinery/requests_console{ - department = "AI"; - departmentType = 5; - name = "AI RC"; - pixel_x = 30; - pixel_y = 30 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_x = 23; - pixel_y = -23 - }, -/turf/open/floor/plasteel/vault, -/area/ai_monitored/turret_protected/ai) -"bAh" = ( -/obj/machinery/door/window{ - base_state = "rightsecure"; - dir = 4; - icon_state = "rightsecure"; - name = "Primary AI Core Access"; - req_access_txt = "16" - }, -/turf/open/floor/plasteel/vault{ - dir = 10 - }, -/area/ai_monitored/turret_protected/ai) -"bAi" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"bAj" = ( -/obj/item/device/radio/intercom{ - anyai = 1; - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_x = 10; - pixel_y = 22 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 1; - listening = 1; - name = "Common Channel"; - pixel_x = 27 - }, -/obj/item/device/radio/intercom{ - anyai = 1; - broadcasting = 0; - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = 10; - pixel_y = -25 - }, -/obj/machinery/door/window{ - base_state = "leftsecure"; - dir = 8; - icon_state = "leftsecure"; - layer = 4.1; - name = "Tertiary AI Core Access"; - pixel_x = -3; - req_access_txt = "16" - }, -/obj/effect/landmark/tripai, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"bAk" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/sign/radiation{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/gravity_generator) -"bAl" = ( -/turf/open/floor/circuit/green, -/area/engine/gravity_generator) -"bAm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - name = "Gravity Generator Chamber"; - req_access_txt = "19; 61" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bAn" = ( -/obj/machinery/holopad, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bAo" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bAp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bAq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - name = "Gravity Generator Room"; - req_access_txt = "19;23" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bAr" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bAs" = ( -/obj/machinery/holopad, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bAt" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bAu" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/highsecurity{ - name = "Gravity Generator Foyer"; - req_access_txt = "10" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bAv" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bAw" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bAx" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bAy" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bAz" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bAA" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/highsecurity{ - name = "Engineering Heavy-Equipment Storage"; - req_access_txt = "32" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bAB" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bAC" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bAD" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/yellow/side{ - dir = 8 - }, -/area/engine/break_room) -"bAE" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/break_room) -"bAF" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/break_room) -"bAG" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/break_room) -"bAH" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/neutral, -/area/engine/break_room) -"bAI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/caution{ - dir = 4 - }, -/area/engine/break_room) -"bAJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bAK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bAL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/port) -"bAM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 4 - }, -/area/hallway/primary/port) -"bAN" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/storage/tech) -"bAO" = ( -/obj/structure/rack, -/obj/item/circuitboard/computer/scan_consolenew{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/circuitboard/computer/med_data, -/obj/item/circuitboard/computer/pandemic{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/bot, -/obj/item/circuitboard/machine/smoke_machine, -/turf/open/floor/plasteel, -/area/storage/tech) -"bAP" = ( -/obj/structure/rack, -/obj/item/circuitboard/computer/aifixer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/circuitboard/computer/rdconsole, -/obj/item/circuitboard/machine/rdserver{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/bot, -/obj/item/circuitboard/machine/autolathe, -/turf/open/floor/plasteel, -/area/storage/tech) -"bAQ" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/ai_status_display{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/storage/tech) -"bAR" = ( -/obj/structure/table/reinforced, -/obj/item/stack/rods{ - amount = 25 - }, -/obj/item/stack/cable_coil/white{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil/white, -/obj/machinery/power/apc{ - dir = 8; - name = "Primary Tool Storage APC"; - areastring = "/area/storage/primary"; - pixel_x = -26; - pixel_y = 3 - }, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/primary) -"bAS" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 9 - }, -/area/storage/primary) -"bAT" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/storage/primary) -"bAU" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/storage/primary) -"bAV" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/storage/primary) -"bAW" = ( -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/storage/primary) -"bAX" = ( -/turf/open/floor/plasteel/yellow/side{ - dir = 5 - }, -/area/storage/primary) -"bAY" = ( -/obj/structure/table/reinforced, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/device/gps, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/primary) -"bAZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/storage/primary) -"bBa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"bBb" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/blue/corner, -/area/hallway/primary/central) -"bBc" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass_command{ - cyclelinkeddir = 4; - name = "Bridge Access"; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/bridge) -"bBd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/bridge) -"bBe" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridgedoors"; - name = "Bridge Access Blast door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - icon_state = "pipe-j1s"; - name = "HoP Junction"; - sortType = 15 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/bridge) -"bBf" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass_command{ - cyclelinkeddir = 8; - name = "Bridge Access"; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/bridge) -"bBg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/bridge) -"bBh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/bridge) -"bBi" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/bridge) -"bBj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/bridge) -"bBk" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/bridge) -"bBl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 9 - }, -/area/bridge) -"bBm" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"bBn" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/item/restraints/handcuffs, -/obj/item/device/assembly/flash/handheld, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/bridge) -"bBo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/bridge) -"bBp" = ( -/obj/machinery/computer/communications, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/bridge) -"bBq" = ( -/obj/structure/table/wood, -/obj/machinery/computer/security/wooden_tv, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/bridge) -"bBr" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/device/flashlight/lamp, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/bridge) -"bBs" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"bBt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 5 - }, -/area/bridge) -"bBu" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/bridge) -"bBv" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/bridge) -"bBw" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridgedoors"; - name = "Bridge Access Blast door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/bridge) -"bBx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/blue/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bBy" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"bBz" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"bBA" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/electricshock{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"bBB" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/door/airlock/glass_security{ - id_tag = "gulagdoor"; - name = "Security Transferring Center"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/execution/transfer) -"bBC" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/security/execution/transfer) -"bBD" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/brig) -"bBE" = ( -/obj/machinery/disposal/bin, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/brig) -"bBF" = ( -/turf/closed/wall/r_wall, -/area/security/warden) -"bBG" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/warden) -"bBH" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/warden) -"bBI" = ( -/obj/structure/closet/secure_closet/evidence, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/warden) -"bBJ" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/warden) -"bBK" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"bBL" = ( -/obj/machinery/suit_storage_unit/security, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/warden) -"bBM" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai) -"bBN" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 1; - listening = 1; - name = "Common Channel"; - pixel_x = -27; - pixel_y = -7 - }, -/obj/item/device/radio/intercom{ - anyai = 1; - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_y = -27 - }, -/obj/item/device/radio/intercom{ - anyai = 1; - broadcasting = 0; - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = 27; - pixel_y = -7 - }, -/obj/machinery/button/door{ - id = "aicorewindow"; - name = "AI Core Shutters"; - pixel_x = 24; - pixel_y = -22; - req_access_txt = "16" - }, -/obj/machinery/button/door{ - id = "aicoredoor"; - name = "AI Chamber Access Control"; - pixel_x = -23; - pixel_y = -23; - req_access_txt = "16" - }, -/obj/effect/landmark/start/ai, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"bBO" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai) -"bBP" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"bBQ" = ( -/obj/machinery/gravity_generator/main/station, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/gravity_generator) -"bBR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/gravity_generator) -"bBS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bBT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/gravity_generator) -"bBU" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bBV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/port_gen/pacman, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bBW" = ( -/obj/structure/sign/radiation, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"bBX" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bBY" = ( -/obj/machinery/status_display{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bBZ" = ( -/obj/structure/closet/radiation, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/machinery/light/small, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bCa" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bCb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Engineering - Power Tools"; - dir = 1; - name = "engineering camera" - }, -/turf/open/floor/plasteel/caution, -/area/engine/break_room) -"bCc" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/caution, -/area/engine/break_room) -"bCd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/caution, -/area/engine/break_room) -"bCe" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bCf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bCg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 2 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 8 - }, -/area/engine/break_room) -"bCh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/break_room) -"bCi" = ( -/obj/structure/chair/stool/bar, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/break_room) -"bCj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/break_room) -"bCk" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/break_room) -"bCl" = ( -/obj/machinery/status_display{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 4 - }, -/area/engine/break_room) -"bCm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"bCn" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 5 - }, -/area/engine/break_room) -"bCo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/engine/break_room) -"bCp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bCq" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bCr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bCs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/break_room) -"bCt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bCu" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/port) -"bCv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/yellow/corner{ - dir = 4 - }, -/area/hallway/primary/port) -"bCw" = ( -/obj/structure/table/reinforced, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/machinery/cell_charger, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bCx" = ( -/obj/structure/rack, -/obj/item/circuitboard/computer/cloning{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/circuitboard/machine/clonescanner, -/obj/item/circuitboard/machine/clonepod{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/tech) -"bCy" = ( -/obj/structure/rack, -/obj/item/circuitboard/machine/destructive_analyzer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/circuitboard/machine/protolathe, -/obj/item/circuitboard/machine/mechfab, -/obj/item/circuitboard/machine/circuit_imprinter{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/tech) -"bCz" = ( -/obj/structure/table/reinforced, -/obj/item/stock_parts/matter_bin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/micro_laser, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bCA" = ( -/obj/structure/rack, -/obj/item/airlock_painter, -/obj/item/device/toner, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/primary) -"bCB" = ( -/turf/open/floor/plasteel/yellow/side{ - dir = 8 - }, -/area/storage/primary) -"bCC" = ( -/turf/open/floor/plasteel/neutral, -/area/storage/primary) -"bCD" = ( -/obj/machinery/holopad, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/primary) -"bCE" = ( -/turf/open/floor/plasteel/yellow/side{ - dir = 4 - }, -/area/storage/primary) -"bCF" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/primary) -"bCG" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"bCH" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/blue/corner, -/area/hallway/primary/central) -"bCI" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/bridge) -"bCJ" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/machinery/light/small, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel/darkblue/side, -/area/bridge) -"bCK" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridgedoors"; - name = "Bridge Access Blast door" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/bridge) -"bCL" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/bridge) -"bCM" = ( -/obj/machinery/light_switch{ - pixel_x = -7; - pixel_y = -26 - }, -/turf/open/floor/plasteel/darkblue/side, -/area/bridge) -"bCN" = ( -/turf/open/floor/plasteel/darkblue/side, -/area/bridge) -"bCO" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/darkblue/side, -/area/bridge) -"bCP" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/darkblue/side, -/area/bridge) -"bCQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Bridge - Port"; - dir = 1; - name = "command camera" - }, -/turf/open/floor/plasteel/darkblue/side, -/area/bridge) -"bCR" = ( -/obj/structure/cable/white, -/obj/machinery/power/apc{ - dir = 2; - name = "Bridge APC"; - areastring = "/area/bridge"; - pixel_y = -26 - }, -/turf/open/floor/plasteel/darkblue/side, -/area/bridge) -"bCS" = ( -/obj/structure/fireaxecabinet{ - pixel_y = -28 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/darkblue/side, -/area/bridge) -"bCT" = ( -/turf/open/floor/plasteel/darkblue/side{ - dir = 8 - }, -/area/bridge) -"bCU" = ( -/obj/structure/rack, -/obj/machinery/light/small, -/obj/item/device/aicard, -/obj/item/storage/secure/briefcase, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/bridge) -"bCV" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/item/device/taperecorder, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/grimy, -/area/bridge) -"bCW" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/bridge) -"bCX" = ( -/obj/structure/chair/comfy/brown{ - color = "#596479"; - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/bridge) -"bCY" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/bridge) -"bCZ" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/folder/blue, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/grimy, -/area/bridge) -"bDa" = ( -/obj/structure/rack, -/obj/machinery/light/small, -/obj/item/storage/toolbox/emergency, -/obj/item/wrench, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/bridge) -"bDb" = ( -/turf/open/floor/plasteel/darkblue/side{ - dir = 4 - }, -/area/bridge) -"bDc" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/darkblue/side, -/area/bridge) -"bDd" = ( -/obj/machinery/camera{ - c_tag = "Bridge - Starboard"; - dir = 1; - name = "command camera" - }, -/turf/open/floor/plasteel/darkblue/side, -/area/bridge) -"bDe" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/darkblue/side, -/area/bridge) -"bDf" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/turf/open/floor/plasteel/darkblue/side, -/area/bridge) -"bDg" = ( -/obj/machinery/light_switch{ - pixel_x = 7; - pixel_y = -26 - }, -/turf/open/floor/plasteel/darkblue/side, -/area/bridge) -"bDh" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/machinery/light/small, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel/darkblue/side, -/area/bridge) -"bDi" = ( -/turf/closed/wall/r_wall, -/area/security/detectives_office) -"bDj" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "detectivewindows"; - name = "Detective Privacy Blast door" - }, -/turf/open/floor/plating, -/area/security/detectives_office) -"bDk" = ( -/obj/structure/disposalpipe/segment, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bDl" = ( -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/starboard) -"bDm" = ( -/obj/structure/disposalpipe/segment, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bDn" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "brigwindows"; - name = "Brig Front Blast door" - }, -/turf/open/floor/plating, -/area/security/brig) -"bDo" = ( -/obj/structure/closet/secure_closet/brig{ - id = "brig1"; - name = "Cell 1 Locker" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/brig) -"bDp" = ( -/obj/machinery/flasher{ - id = "brig1"; - pixel_y = 26 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/brig) -"bDq" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/brig) -"bDr" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/security/brig) -"bDs" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/security/brig) -"bDt" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/brig) -"bDu" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/security{ - name = "Evidence Storage"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/warden) -"bDv" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/warden) -"bDw" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/warden) -"bDx" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/warden) -"bDy" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/warden) -"bDz" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/door/airlock/glass_security{ - name = "Security E.V.A. Storage"; - req_access_txt = "3" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"bDA" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"bDB" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/warden) -"bDC" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/warden) -"bDD" = ( -/obj/structure/table/reinforced, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/device/mmi, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/ai) -"bDE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/gravity_generator) -"bDF" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/electricshock{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/gravity_generator) -"bDG" = ( -/obj/machinery/light, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Engineering - Gravity Generator"; - dir = 1; - name = "engineering camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bDH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bDI" = ( -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bDJ" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/light_switch{ - pixel_y = -26 - }, -/obj/structure/table/reinforced, -/obj/item/stack/sheet/plasteel{ - amount = 20 - }, -/obj/item/wrench, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bDK" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "transitlock"; - name = "Transit Tube Lockdown Door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bDL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/poddoor/preopen{ - id = "transitlock"; - name = "Transit Tube Lockdown Door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bDM" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/chief) -"bDN" = ( -/obj/structure/sign/directions/engineering{ - desc = "A handy sign praising the engineering department."; - icon_state = "safety"; - name = "engineering plaque" - }, -/turf/closed/wall, -/area/engine/break_room) -"bDO" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/engine/break_room) -"bDP" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Engineering - Foyer"; - dir = 4; - name = "engineering camera" - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 8 - }, -/area/engine/break_room) -"bDQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/engine/break_room) -"bDR" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bDS" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bDT" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/device/lightreplacer, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bDU" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/neutral, -/area/engine/break_room) -"bDV" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/engine/break_room) -"bDW" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral, -/area/engine/break_room) -"bDX" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 4 - }, -/area/engine/break_room) -"bDY" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering{ - name = "Engineering Foyer"; - req_access_txt = "0"; - req_one_access_txt = "32;19" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bDZ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bEa" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel/neutral, -/area/engine/break_room) -"bEb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bEc" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering{ - name = "Engineering Foyer"; - req_access_txt = "0"; - req_one_access_txt = "32;19" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bEd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 8 - }, -/area/hallway/primary/port) -"bEe" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/port) -"bEf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 4 - }, -/area/hallway/primary/port) -"bEg" = ( -/obj/structure/table/reinforced, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/item/folder/yellow, -/obj/item/electronics/airlock, -/obj/machinery/power/apc{ - dir = 8; - name = "Technology Storage APC"; - areastring = "/area/storage/tech"; - pixel_x = -26; - pixel_y = 3 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bEh" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/storage/tech) -"bEi" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/neutral, -/area/storage/tech) -"bEj" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/storage/tech) -"bEk" = ( -/obj/machinery/holopad, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/item/circuitboard/machine/autolathe, -/turf/open/floor/plasteel, -/area/storage/tech) -"bEl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/storage/tech) -"bEm" = ( -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil/white{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil/white, -/obj/item/stock_parts/scanning_module{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bEn" = ( -/obj/machinery/vending/assist, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/machinery/camera{ - c_tag = "Primary Tool Storage"; - dir = 4; - name = "engineering camera" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/storage/primary) -"bEo" = ( -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel/neutral, -/area/storage/primary) -"bEp" = ( -/obj/structure/table/reinforced, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/primary) -"bEq" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical, -/obj/item/device/flashlight, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/primary) -"bEr" = ( -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/storage/primary) -"bEs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 4 - }, -/area/storage/primary) -"bEt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/storage/primary) -"bEu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Primary Tool Storage"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"bEv" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"bEw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) -"bEx" = ( -/turf/closed/wall/r_wall, -/area/bridge/meeting_room/council) -"bEy" = ( -/turf/closed/wall, -/area/bridge/meeting_room/council) -"bEz" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/command{ - name = "Council Chambers"; - req_access = null; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/bridge/meeting_room/council) -"bEA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/bridge/meeting_room/council) -"bEB" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/bridge) -"bEC" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/bridge) -"bED" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/bridge) -"bEE" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/storage/fancy/donut_box, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/grimy, -/area/bridge) -"bEF" = ( -/obj/machinery/button/door{ - id = "bridgedoors"; - name = "Bridge Access Blast doors"; - pixel_x = 7; - pixel_y = -26; - req_access_txt = "19" - }, -/obj/machinery/button/door{ - id = "bridgewindows"; - name = "Bridge View Blast doors"; - pixel_x = -7; - pixel_y = -26; - req_access_txt = "19" - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC"; - pixel_x = -32; - pixel_y = -32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Bridge - Command Chair"; - dir = 1; - name = "command camera" - }, -/turf/open/floor/carpet, -/area/bridge) -"bEG" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/bridge) -"bEH" = ( -/obj/machinery/button/door{ - id = "evastorage"; - name = "E.V.A. Shutters"; - pixel_x = 7; - pixel_y = -26; - req_access_txt = "19" - }, -/obj/machinery/button/door{ - id = "teleportershutters"; - name = "Teleporter Shutters"; - pixel_x = -7; - pixel_y = -26 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26; - pixel_y = -26 - }, -/obj/machinery/keycard_auth{ - pixel_x = -7; - pixel_y = -38 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/bridge) -"bEI" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/paper_bin, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/grimy, -/area/bridge) -"bEJ" = ( -/obj/machinery/ai_status_display, -/turf/closed/wall, -/area/bridge) -"bEK" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/bridge) -"bEL" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/captain) -"bEM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/captain) -"bEN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Captain's Office"; - req_access = null; - req_access_txt = "20" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) -"bEO" = ( -/obj/machinery/computer/security/telescreen/entertainment, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/captain) -"bEP" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"bEQ" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bER" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/maintenance/starboard) -"bES" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bET" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"bEV" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 5 - }, -/area/maintenance/starboard) -"bEX" = ( -/obj/structure/closet/secure_closet/detective, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/item/clothing/head/fedora/det_hat{ - icon_state = "curator" - }, -/obj/item/clothing/suit/det_suit{ - icon_state = "curator" - }, -/obj/item/clothing/under/rank/det{ - icon_state = "curator" - }, -/turf/open/floor/plasteel/vault, -/area/security/detectives_office) -"bEY" = ( -/obj/structure/table/wood, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/device/camera/detective, -/turf/open/floor/plasteel/vault, -/area/security/detectives_office) -"bEZ" = ( -/obj/structure/table/wood, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Detective's Office APC"; - areastring = "/area/security/detectives_office"; - pixel_y = 24 - }, -/obj/item/device/taperecorder, -/obj/item/restraints/handcuffs, -/turf/open/floor/plasteel/vault, -/area/security/detectives_office) -"bFa" = ( -/obj/structure/filingcabinet/security, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/vault, -/area/security/detectives_office) -"bFb" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/bin, -/turf/open/floor/plasteel/vault, -/area/security/detectives_office) -"bFc" = ( -/obj/machinery/photocopier, -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault, -/area/security/detectives_office) -"bFd" = ( -/obj/structure/rack, -/obj/item/storage/briefcase{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/secure/briefcase, -/turf/open/floor/plasteel/vault, -/area/security/detectives_office) -"bFe" = ( -/obj/structure/dresser, -/turf/open/floor/plasteel/vault, -/area/security/detectives_office) -"bFf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Security Hallway - Fore"; - dir = 4; - name = "hallway camera" - }, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bFg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/starboard) -"bFh" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bFi" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "brigwindows"; - name = "Brig Front Blast door" - }, -/turf/open/floor/plating, -/area/security/brig) -"bFj" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/brig) -"bFk" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/brig) -"bFl" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/window/brigdoor/security/cell/westright{ - id = "brig1"; - name = "Cell 1" - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/brig) -"bFm" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"bFn" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/security/brig) -"bFo" = ( -/obj/machinery/newscaster/security_unit{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/red/corner, -/area/security/brig) -"bFp" = ( -/obj/structure/table, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/warden) -"bFq" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/warden) -"bFr" = ( -/obj/structure/closet/secure_closet/evidence, -/obj/machinery/camera{ - c_tag = "Security - Evidence Storage"; - dir = 1; - name = "security camera" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/warden) -"bFs" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/warden) -"bFt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"bFu" = ( -/obj/machinery/suit_storage_unit/security, -/obj/machinery/light/small, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/warden) -"bFv" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai) -"bFw" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"bFx" = ( -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai) -"bFy" = ( -/obj/machinery/flasher{ - id = "AI"; - pixel_y = 26 - }, -/obj/machinery/porta_turret/ai, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/ai) -"bFz" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "AI Chamber APC"; - areastring = "/area/ai_monitored/turret_protected/ai"; - pixel_y = 24 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai) -"bFA" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai) -"bFB" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"bFC" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai) -"bFD" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue, -/obj/item/device/assembly/flash/handheld, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/ai) -"bFE" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Transit Tube Access"; - req_one_access_txt = "32;19" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/transit_tube) -"bFF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/transit_tube) -"bFG" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bFH" = ( -/obj/machinery/disposal/bin, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/crew_quarters/heads/chief) -"bFI" = ( -/obj/machinery/cell_charger, -/obj/structure/table/reinforced, -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/item/stock_parts/cell/high, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/twohanded/rcl/pre_loaded, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bFJ" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/device/gps/engineering{ - gpstag = "CE0" - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bFK" = ( -/obj/structure/rack, -/obj/item/crowbar, -/obj/item/storage/toolbox/mechanical, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bFL" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/button/door{ - id = "ceblast"; - name = "Lockdown Control"; - pixel_x = 26; - pixel_y = 26; - req_access_txt = "56" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bFM" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/chief) -"bFN" = ( -/obj/machinery/door/poddoor/preopen{ - id = "ceblast"; - name = "Chief's Lockdown Shutters" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bFO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bFP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/sortjunction{ - name = "CE's Junction"; - sortType = 5 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 8 - }, -/area/engine/break_room) -"bFQ" = ( -/turf/open/floor/plasteel/neutral, -/area/engine/break_room) -"bFR" = ( -/obj/structure/chair/stool/bar, -/turf/open/floor/plasteel/neutral, -/area/engine/break_room) -"bFS" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/break_room) -"bFT" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/break_room) -"bFU" = ( -/obj/machinery/holopad, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bFV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/break_room) -"bFW" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 4 - }, -/area/engine/break_room) -"bFX" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/engine/break_room) -"bFY" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bFZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bGa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bGb" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/break_room) -"bGc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/yellow/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bGd" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/port) -"bGe" = ( -/obj/structure/table/reinforced, -/obj/item/electronics/airalarm, -/obj/item/electronics/apc, -/obj/machinery/camera{ - c_tag = "Technology Storage"; - dir = 4; - name = "engineering camera" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bGf" = ( -/obj/structure/rack, -/obj/item/circuitboard/computer/security{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/circuitboard/computer/prisoner, -/obj/item/circuitboard/computer/secure_data{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/tech) -"bGg" = ( -/obj/structure/rack, -/obj/item/circuitboard/computer/atmos_alert{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/circuitboard/computer/powermonitor, -/obj/item/circuitboard/computer/stationalert{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/tech) -"bGh" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/console_screen, -/obj/item/stock_parts/console_screen, -/obj/item/stock_parts/console_screen, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bGi" = ( -/obj/machinery/vending/tool, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/storage/primary) -"bGj" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/yellow, -/obj/item/storage/box/lights/mixed, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/primary) -"bGk" = ( -/turf/open/floor/plasteel/yellow/corner, -/area/storage/primary) -"bGl" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/storage/primary) -"bGm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Primary Tool Storage"; - req_access_txt = "0" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"bGn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) -"bGo" = ( -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/turf/open/floor/wood, -/area/bridge/meeting_room/council) -"bGp" = ( -/obj/structure/bookcase/random, -/turf/open/floor/wood, -/area/bridge/meeting_room/council) -"bGq" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/wood, -/area/bridge/meeting_room/council) -"bGr" = ( -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room/council) -"bGs" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/highcap/ten_k{ - dir = 1; - name = "Council Chambers APC"; - areastring = "/area/bridge/meeting_room/council"; - pixel_y = 26 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room/council) -"bGt" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/wood, -/area/bridge/meeting_room/council) -"bGu" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/wood, -/area/bridge/meeting_room/council) -"bGv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/bridge/meeting_room/council) -"bGw" = ( -/obj/structure/table/wood, -/obj/item/device/paicard, -/turf/open/floor/wood, -/area/bridge/meeting_room/council) -"bGx" = ( -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"bGy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"bGz" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Telecomms Control Room"; - req_access = null; - req_access_txt = "19; 61" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tcommsat/computer) -"bGA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"bGB" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/toy/figure/captain, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) -"bGC" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) -"bGD" = ( -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = 26 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) -"bGE" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) -"bGF" = ( -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) -"bGG" = ( -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 6 - }, -/area/crew_quarters/heads/captain) -"bGH" = ( -/obj/structure/fireplace, -/turf/open/floor/plasteel/vault, -/area/crew_quarters/heads/captain) -"bGI" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 10 - }, -/area/crew_quarters/heads/captain) -"bGJ" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) -"bGK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bGL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"bGM" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Auxiliary Tool Storage Maintenance"; - req_access_txt = "12" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bGN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bGO" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Detective's Office Maintenance"; - req_access_txt = "4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"bGP" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -26; - pixel_y = 32 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/detectives_office) -"bGQ" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/detectives_office) -"bGR" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"bGS" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"bGT" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"bGU" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 64; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"bGV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"bGW" = ( -/obj/machinery/door/airlock/security{ - name = "Private Interrogation"; - req_access = null; - req_access_txt = "4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/detectives_office) -"bGX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/detectives_office) -"bGY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Detective's Interrogation"; - dir = 8; - name = "security camera" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/detectives_office) -"bGZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bHa" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "brigwindows"; - name = "Brig Front Blast door" - }, -/turf/open/floor/plating, -/area/security/brig) -"bHb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/brig) -"bHc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/brig) -"bHd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red/corner{ - dir = 8 - }, -/area/security/brig) -"bHe" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/security/brig) -"bHf" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/brig) -"bHg" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/warden) -"bHh" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass_security{ - name = "Warden's Office"; - req_access_txt = "3" - }, -/turf/open/floor/plasteel/red, -/area/security/warden) -"bHi" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"bHj" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"bHk" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"bHl" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"bHm" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space) -"bHn" = ( -/obj/structure/table/reinforced, -/obj/item/bodypart/chest/robot, -/obj/item/bodypart/r_arm/robot{ - pixel_x = 6 - }, -/obj/item/bodypart/l_arm/robot{ - pixel_x = -6 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/ai) -"bHo" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"bHp" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"bHq" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"bHr" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"bHs" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"bHt" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"bHu" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"bHv" = ( -/turf/closed/wall/r_wall, -/area/engine/transit_tube) -"bHw" = ( -/obj/structure/closet/emcloset/anchored, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/transit_tube) -"bHx" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/engine/transit_tube) -"bHy" = ( -/obj/machinery/power/apc/highcap/five_k{ - dir = 1; - name = "Transit Tube Access APC"; - areastring = "/area/engine/transit_tube"; - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/vault, -/area/engine/transit_tube) -"bHz" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault, -/area/engine/transit_tube) -"bHA" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/button/door{ - id = "transitlock"; - name = "Transit Tube Lockdown Control"; - pixel_y = 26; - req_access_txt = "39; 19" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/transit_tube) -"bHB" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/button/door{ - id = "atmoslock"; - name = "Atmospherics Lockdown Control"; - pixel_x = -26; - req_access_txt = "25" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bHC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/crew_quarters/heads/chief) -"bHD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/crew_quarters/heads/chief) -"bHE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/crew_quarters/heads/chief) -"bHF" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bHG" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Chief Engineer's Office"; - req_access_txt = "56" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bHH" = ( -/obj/machinery/door/poddoor/preopen{ - id = "ceblast"; - name = "Chief's Lockdown Shutters" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bHI" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bHJ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 8 - }, -/area/engine/break_room) -"bHK" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/break_room) -"bHL" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/break_room) -"bHM" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/break_room) -"bHN" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/break_room) -"bHO" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral, -/area/engine/break_room) -"bHP" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 4 - }, -/area/engine/break_room) -"bHQ" = ( -/turf/closed/wall, -/area/security/checkpoint/engineering) -"bHR" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"bHS" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/door/airlock/glass_security{ - id_tag = "engdoor"; - name = "Engineering Cell"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red, -/area/security/checkpoint/engineering) -"bHT" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"bHU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/electricshock, -/turf/closed/wall/r_wall, -/area/security/checkpoint/engineering) -"bHV" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bHW" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/ai_status_display{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/storage/tech) -"bHX" = ( -/obj/structure/rack, -/obj/item/circuitboard/machine/teleporter_hub{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/circuitboard/machine/teleporter_station, -/obj/item/circuitboard/computer/teleporter{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/tech) -"bHY" = ( -/obj/structure/rack, -/obj/item/circuitboard/machine/telecomms/server{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/circuitboard/machine/telecomms/relay, -/obj/item/circuitboard/machine/telecomms/receiver, -/obj/item/circuitboard/machine/telecomms/processor, -/obj/item/circuitboard/machine/telecomms/hub, -/obj/item/circuitboard/machine/telecomms/bus, -/obj/item/circuitboard/machine/telecomms/broadcaster{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/tech) -"bHZ" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/storage/tech) -"bIa" = ( -/obj/structure/rack, -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/book/manual/wiki/engineering_guide, -/obj/item/book/manual/wiki/engineering_construction{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/primary) -"bIb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/neutral, -/area/storage/primary) -"bId" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "councilblast"; - name = "Council Chambers Blast door" - }, -/turf/open/floor/plating, -/area/bridge/meeting_room/council) -"bIe" = ( -/obj/structure/table/wood, -/obj/item/clothing/mask/cigarette/cigar/cohiba{ - pixel_x = 3 - }, -/obj/item/clothing/mask/cigarette/cigar/havana{ - pixel_x = -3 - }, -/obj/item/clothing/mask/cigarette/cigar, -/turf/open/floor/wood, -/area/bridge/meeting_room/council) -"bIf" = ( -/turf/open/floor/plasteel/grimy, -/area/bridge/meeting_room/council) -"bIg" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room/council) -"bIh" = ( -/obj/structure/chair/comfy/black, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room/council) -"bIi" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/chair/comfy/brown, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room/council) -"bIj" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/chair/comfy/black, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/bridge/meeting_room/council) -"bIk" = ( -/obj/structure/table/wood, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 7 - }, -/obj/item/phone{ - desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; - pixel_x = -3; - pixel_y = 3 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/grimy, -/area/bridge/meeting_room/council) -"bIl" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room/council) -"bIm" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room/council) -"bIn" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/bridge/meeting_room/council) -"bIo" = ( -/obj/structure/table/wood, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/paper_bin, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tcommsat/computer) -"bIp" = ( -/obj/structure/table/wood, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/obj/item/folder/blue, -/obj/item/pen, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bIq" = ( -/obj/machinery/power/apc/highcap/ten_k{ - dir = 1; - name = "Telecomms Monitoring APC"; - areastring = "/area/tcommsat/computer"; - pixel_y = 28 - }, -/obj/item/twohanded/required/kirbyplants/random, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bIr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/machinery/camera{ - c_tag = "Telecomms - Monitoring"; - dir = 2; - name = "telecomms camera"; - network = list("SS13","tcomm") - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bIs" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = 26 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bIt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bIu" = ( -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bIv" = ( -/obj/structure/table/wood, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/obj/item/device/radio{ - pixel_y = 5 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bIw" = ( -/obj/structure/table/wood, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tcommsat/computer) -"bIx" = ( -/obj/machinery/vending/boozeomat, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/crew_quarters/heads/captain) -"bIy" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) -"bIz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) -"bIA" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) -"bIB" = ( -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) -"bIC" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/effect/landmark/start/captain, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"bID" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"bIE" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"bIF" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) -"bIG" = ( -/turf/closed/wall, -/area/storage/tools) -"bIH" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/yellow/side{ - dir = 9 - }, -/area/storage/tools) -"bII" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/power/apc/highcap/five_k{ - dir = 1; - name = "Auxiliary Tool Storage APC"; - areastring = "/area/storage/tools"; - pixel_y = 24 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/storage/tools) -"bIJ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"bIK" = ( -/obj/structure/closet/toolcloset, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 4 - }, -/area/storage/tools) -"bIL" = ( -/obj/structure/closet/toolcloset, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/yellow/side{ - dir = 5 - }, -/area/storage/tools) -"bIM" = ( -/turf/closed/wall, -/area/security/detectives_office) -"bIN" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/newscaster/security_unit{ - pixel_x = -32 - }, -/obj/machinery/camera{ - c_tag = "Detective's Office"; - dir = 4; - name = "security camera" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/detectives_office) -"bIO" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/detectives_office) -"bIP" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"bIQ" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"bIR" = ( -/obj/structure/table/wood, -/obj/item/clothing/mask/cigarette/cigar/cohiba{ - pixel_x = 3 - }, -/obj/item/clothing/mask/cigarette/cigar/havana{ - pixel_x = -3 - }, -/obj/item/clothing/mask/cigarette/cigar, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/carpet, -/area/security/detectives_office) -"bIS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/security/detectives_office) -"bIT" = ( -/obj/machinery/computer/med_data, -/obj/machinery/requests_console{ - department = "Detective's Office"; - departmentType = 0; - name = "Detective RC"; - pixel_x = 30 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"bIU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/security/detectives_office) -"bIV" = ( -/obj/structure/chair/office/dark, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/detectives_office) -"bIW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/detectives_office) -"bIX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bIY" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_x = 32 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bIZ" = ( -/turf/closed/wall, -/area/security/brig) -"bJa" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/door_timer{ - id = "brig1"; - name = "Cell 1"; - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Security - Brig Center"; - dir = 4; - name = "security camera" - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/brig) -"bJb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/brig) -"bJc" = ( -/obj/machinery/computer/crew, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 0; - name = "Security RC"; - pixel_x = -32; - pixel_y = 32 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/warden) -"bJd" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/warden) -"bJe" = ( -/obj/structure/rack, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/flashbangs{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26 - }, -/obj/item/clothing/mask/gas/sechailer, -/obj/item/clothing/mask/gas/sechailer, -/obj/item/device/flashlight/seclite, -/obj/item/device/flashlight/seclite, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/warden) -"bJf" = ( -/obj/machinery/flasher/portable, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) -"bJg" = ( -/obj/item/grenade/barrier{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/grenade/barrier, -/obj/item/grenade/barrier{ - pixel_x = 3; - pixel_y = -1 - }, -/obj/item/grenade/barrier{ - pixel_x = 6; - pixel_y = -2 - }, -/obj/structure/table/reinforced, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) -"bJh" = ( -/obj/item/storage/box/chemimp{ - pixel_x = 6 - }, -/obj/item/storage/box/trackimp{ - pixel_x = -3 - }, -/obj/item/storage/lockbox/loyalty, -/obj/structure/table/reinforced, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) -"bJi" = ( -/obj/item/storage/box/firingpins, -/obj/item/storage/box/firingpins, -/obj/item/key/security, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) -"bJj" = ( -/obj/item/storage/box/teargas{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/flashbangs{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) -"bJk" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space) -"bJl" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai) -"bJm" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 6 - }, -/area/ai_monitored/turret_protected/ai) -"bJn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/machinery/camera/motion{ - c_tag = "AI Chamber - Aft"; - dir = 1; - name = "motion-sensitive ai camera"; - network = list("AI") - }, -/turf/open/floor/plasteel/vault, -/area/ai_monitored/turret_protected/ai) -"bJo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault, -/area/ai_monitored/turret_protected/ai) -"bJp" = ( -/turf/open/floor/plasteel/vault{ - dir = 10 - }, -/area/ai_monitored/turret_protected/ai) -"bJq" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai) -"bJr" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space) -"bJs" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"bJt" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"bJu" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Exterior Access"; - req_one_access_txt = "32;19" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/aisat) -"bJv" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/space, -/area/space) -"bJw" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/space, -/area/space) -"bJx" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/space, -/area/space) -"bJy" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/hatch{ - cyclelinkeddir = 4; - name = "MiniSat Exterior Access"; - req_one_access_txt = "32;19" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/transit_tube) -"bJz" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/transit_tube) -"bJA" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/transit_tube) -"bJB" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/transit_tube) -"bJC" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/transit_tube) -"bJD" = ( -/obj/machinery/computer/card/minor/ce, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bJE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/crew_quarters/heads/chief) -"bJF" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/heads/chief) -"bJG" = ( -/obj/structure/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/heads/chief) -"bJH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/crew_quarters/heads/chief) -"bJI" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bJJ" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/heads/chief) -"bJK" = ( -/obj/machinery/door/poddoor/preopen{ - id = "ceblast"; - name = "Chief's Lockdown Shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bJL" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = -26 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 10 - }, -/area/engine/break_room) -"bJM" = ( -/obj/structure/rack, -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/book/manual/wiki/engineering_guide, -/obj/item/book/manual/wiki/engineering_construction{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/plasteel/yellow/side, -/area/engine/break_room) -"bJN" = ( -/obj/structure/table/reinforced, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/machinery/cell_charger, -/turf/open/floor/plasteel/yellow/side, -/area/engine/break_room) -"bJO" = ( -/obj/machinery/light, -/obj/machinery/light_switch{ - pixel_y = -26 - }, -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/yellow/side, -/area/engine/break_room) -"bJP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/yellow/side, -/area/engine/break_room) -"bJQ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/yellow/side, -/area/engine/break_room) -"bJR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/yellow/side, -/area/engine/break_room) -"bJS" = ( -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/yellow/side, -/area/engine/break_room) -"bJT" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/yellow/side{ - dir = 6 - }, -/area/engine/break_room) -"bJU" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"bJV" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/checkpoint/engineering) -"bJW" = ( -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/engineering) -"bJX" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/closet/secure_closet/brig{ - id = "engcell"; - name = "Engineering Cell Locker" - }, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/checkpoint/engineering) -"bJY" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/security/checkpoint/engineering) -"bJZ" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/yellow, -/obj/item/storage/toolbox/electrical, -/obj/item/device/multitool, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/storage/tech) -"bKa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/storage/tech) -"bKb" = ( -/obj/structure/table/reinforced, -/obj/item/electronics/firelock, -/obj/item/electronics/firelock, -/obj/item/electronics/firealarm, -/obj/item/electronics/firealarm, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/storage/tech) -"bKc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port/fore) -"bKd" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/primary) -"bKe" = ( -/turf/open/floor/plasteel/yellow/side{ - dir = 10 - }, -/area/storage/primary) -"bKf" = ( -/turf/open/floor/plasteel/yellow/side, -/area/storage/primary) -"bKg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/yellow/corner{ - dir = 8 - }, -/area/storage/primary) -"bKh" = ( -/turf/open/floor/plasteel/yellow/side{ - dir = 6 - }, -/area/storage/primary) -"bKi" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/electrical, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/primary) -"bKj" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "councilblast"; - name = "Council Chambers Blast door" - }, -/turf/open/floor/plating, -/area/bridge/meeting_room/council) -"bKk" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/photocopier, -/turf/open/floor/wood, -/area/bridge/meeting_room/council) -"bKl" = ( -/obj/machinery/holopad, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/grimy, -/area/bridge/meeting_room/council) -"bKm" = ( -/obj/structure/chair/comfy/brown{ - color = "#c45c57"; - dir = 4; - icon_state = "comfychair" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room/council) -"bKn" = ( -/obj/structure/table/wood, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/item/folder/blue, -/obj/item/pen, -/turf/open/floor/carpet, -/area/bridge/meeting_room/council) -"bKo" = ( -/obj/structure/table/wood, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/item/folder/red, -/obj/item/lighter, -/turf/open/floor/carpet, -/area/bridge/meeting_room/council) -"bKp" = ( -/obj/structure/table/wood, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/item/folder/yellow, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/bridge/meeting_room/council) -"bKq" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/donut_box, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/bridge/meeting_room/council) -"bKr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room/council) -"bKs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room/council) -"bKt" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/bridge/meeting_room/council) -"bKu" = ( -/obj/machinery/announcement_system, -/obj/machinery/ai_status_display{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tcommsat/computer) -"bKv" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bKw" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bKx" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bKy" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/holopad, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bKz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bKA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bKB" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bKC" = ( -/obj/machinery/computer/telecomms/monitor, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tcommsat/computer) -"bKD" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/crew_quarters/heads/captain) -"bKE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) -"bKF" = ( -/obj/machinery/holopad, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) -"bKG" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) -"bKH" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) -"bKI" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"bKJ" = ( -/obj/structure/table/wood, -/obj/item/clothing/mask/cigarette/cigar/cohiba{ - pixel_x = 3 - }, -/obj/item/clothing/mask/cigarette/cigar/havana{ - pixel_x = -3 - }, -/obj/item/clothing/mask/cigarette/cigar, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"bKK" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) -"bKL" = ( -/obj/structure/rack, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/clothing/suit/hazardvest, -/obj/item/device/multitool, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 8 - }, -/area/storage/tools) -"bKM" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/storage/tools) -"bKN" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/neutral, -/area/storage/tools) -"bKO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/neutral, -/area/storage/tools) -"bKP" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Auxiliary Tool Storage"; - dir = 8; - name = "engineering camera" - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 4 - }, -/area/storage/tools) -"bKQ" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags, -/obj/item/clothing/gloves/color/latex, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/detectives_office) -"bKR" = ( -/obj/machinery/door/window/eastright{ - name = "Detective's Morgue" - }, -/turf/open/floor/plasteel/black, -/area/security/detectives_office) -"bKS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/detectives_office) -"bKT" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"bKU" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"bKV" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/hand_labeler, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/security/detectives_office) -"bKW" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/start/detective, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/security/detectives_office) -"bKX" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"bKY" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/folder/red, -/obj/item/pen, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/detectives_office) -"bKZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/detective, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/detectives_office) -"bLa" = ( -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/starboard) -"bLb" = ( -/obj/structure/closet/secure_closet/brig{ - id = "brig2"; - name = "Cell 2 Locker" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/brig) -"bLc" = ( -/obj/machinery/flasher{ - id = "brig2"; - pixel_y = 26 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/brig) -"bLd" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/security/brig) -"bLe" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/brig) -"bLf" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/brigdoor/northright{ - dir = 4; - name = "Warden's Desk"; - req_access_txt = "3" - }, -/obj/machinery/door/window/westleft{ - name = "Warden's Desk" - }, -/obj/item/folder/red, -/obj/item/pen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/warden) -"bLg" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/start/warden, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/warden) -"bLh" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/neutral, -/area/security/warden) -"bLi" = ( -/obj/machinery/computer/secure_data, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/warden) -"bLj" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/ai_monitored/security/armory) -"bLk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"bLl" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"bLm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"bLn" = ( -/obj/structure/closet/secure_closet/contraband/armory, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) -"bLo" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "AI Satellite - Port"; - dir = 8; - name = "ai camera"; - network = list("Sat"); - start_active = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"bLp" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"bLq" = ( -/obj/machinery/ai_status_display, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"bLr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"bLs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - locked = 1; - name = "MiniSat Chamber"; - req_access_txt = "16" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "aicoredoor"; - name = "AI Core Access" - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_x = -26 - }, -/obj/item/device/radio/intercom{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "AI Intercom"; - pixel_x = 28 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bLt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"bLu" = ( -/obj/structure/sign/kiddieplaque, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"bLv" = ( -/obj/machinery/status_display, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"bLw" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "AI Satellite - Starboard"; - dir = 4; - name = "ai camera"; - network = list("Sat"); - start_active = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"bLx" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/space, -/area/space) -"bLy" = ( -/obj/machinery/light/small, -/obj/structure/sign/vacuum{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/transit_tube) -"bLz" = ( -/turf/closed/wall, -/area/engine/transit_tube) -"bLA" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_x = -26; - pixel_y = -26 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/transit_tube) -"bLB" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/transit_tube) -"bLC" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/transit_tube) -"bLD" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Chief Engineer's Desk"; - departmentType = 5; - name = "Chief Engineer's RC"; - pixel_x = -32 - }, -/obj/machinery/camera{ - c_tag = "Engineering - Chief Engineer's Office"; - dir = 4; - name = "engineering camera" - }, -/obj/machinery/computer/apc_control, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bLE" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/crew_quarters/heads/chief) -"bLF" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/chief_engineer, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/heads/chief) -"bLG" = ( -/obj/structure/table/reinforced, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/item/folder/blue{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/folder/yellow, -/obj/item/lighter, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/heads/chief) -"bLH" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/crew_quarters/heads/chief) -"bLI" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bLJ" = ( -/obj/structure/sign/electricshock, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/chief) -"bLK" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/chief) -"bLL" = ( -/obj/structure/sign/nosmoking_2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/engine/break_room) -"bLM" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/engineering{ - name = "Engineering Access"; - req_access_txt = "10" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bLN" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/engine/break_room) -"bLO" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bLP" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"bLQ" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/checkpoint/engineering) -"bLR" = ( -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/engineering) -"bLS" = ( -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/checkpoint/engineering) -"bLT" = ( -/turf/closed/wall/r_wall, -/area/security/checkpoint/engineering) -"bLU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bLV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/port) -"bLW" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 4 - }, -/area/hallway/primary/port) -"bLX" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_y = 3 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/storage/tech) -"bLY" = ( -/obj/structure/table/reinforced, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/voice, -/obj/item/device/assembly/voice, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/tech) -"bLZ" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/storage/tech) -"bMa" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/light_switch{ - pixel_y = -26 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/storage/tech) -"bMb" = ( -/obj/structure/table/reinforced, -/obj/item/wrench, -/obj/item/crowbar, -/obj/item/device/paicard, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/tech) -"bMc" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/storage/tech) -"bMd" = ( -/obj/structure/table/reinforced, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/timer, -/obj/item/device/multitool, -/obj/item/device/multitool, -/obj/machinery/light, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/primary) -"bMe" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/storage/primary) -"bMf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/storage/primary) -"bMg" = ( -/obj/structure/table/reinforced, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/machinery/cell_charger, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/primary) -"bMh" = ( -/obj/structure/table/reinforced, -/obj/item/device/radio{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/device/radio{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/device/radio, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/light_switch{ - pixel_x = 26 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/primary) -"bMi" = ( -/turf/closed/wall, -/area/storage/primary) -"bMj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Central Hallway - Port"; - dir = 4; - name = "hallway camera" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"bMk" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "councilblast"; - name = "Council Chambers Blast door" - }, -/turf/open/floor/plating, -/area/bridge/meeting_room/council) -"bMl" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/book/manual/wiki/security_space_law, -/turf/open/floor/wood, -/area/bridge/meeting_room/council) -"bMm" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/bridge/meeting_room/council) -"bMn" = ( -/obj/structure/chair/comfy/brown{ - buildstackamount = 0; - dir = 1 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room/council) -"bMo" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room/council) -"bMp" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/chair/comfy/brown{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/bridge/meeting_room/council) -"bMq" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/grimy, -/area/bridge/meeting_room/council) -"bMr" = ( -/obj/machinery/newscaster{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/bridge/meeting_room/council) -"bMs" = ( -/turf/open/floor/wood, -/area/bridge/meeting_room/council) -"bMt" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/bridge/meeting_room/council) -"bMu" = ( -/obj/machinery/computer/message_monitor, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/item/paper/monitorkey, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tcommsat/computer) -"bMv" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bMw" = ( -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bMx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bMy" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bMA" = ( -/obj/structure/chair/office/dark, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bMB" = ( -/obj/machinery/computer/telecomms/server, -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tcommsat/computer) -"bMC" = ( -/obj/structure/bed/dogbed/renault, -/mob/living/simple_animal/pet/fox/Renault, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/crew_quarters/heads/captain) -"bMD" = ( -/obj/machinery/newscaster{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/item/device/radio/intercom{ - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) -"bME" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) -"bMF" = ( -/obj/structure/chair/comfy/brown, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) -"bMG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) -"bMH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) -"bMI" = ( -/obj/machinery/power/apc/highcap/ten_k{ - dir = 2; - name = "Captain's Office APC"; - areastring = "/area/crew_quarters/heads/captain"; - pixel_y = -24 - }, -/obj/structure/cable/white, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) -"bMJ" = ( -/obj/structure/sign/goldenplaque/captain{ - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) -"bMK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"bML" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/emergency{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/emergency, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 10 - }, -/area/storage/tools) -"bMM" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/yellow/corner{ - dir = 8 - }, -/area/storage/tools) -"bMN" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/storage/tools) -"bMO" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty, -/obj/item/storage/box/lights/mixed, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/yellow/corner, -/area/storage/tools) -"bMP" = ( -/obj/structure/table, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/yellow/side{ - dir = 6 - }, -/area/storage/tools) -"bMQ" = ( -/obj/structure/bodycontainer/morgue, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/landmark/revenantspawn, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/detectives_office) -"bMR" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/black, -/area/security/detectives_office) -"bMS" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/detectives_office) -"bMT" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/detectives_office) -"bMU" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"bMV" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"bMW" = ( -/obj/structure/table/wood, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/security/detectives_office) -"bMX" = ( -/obj/structure/table/wood, -/obj/machinery/button/door{ - id = "detectivewindows"; - name = "Privacy Shutters"; - pixel_x = 26; - pixel_y = -26; - req_access_txt = "4" - }, -/obj/machinery/light_switch{ - pixel_x = 38; - pixel_y = -26 - }, -/obj/structure/disposalpipe/segment, -/obj/item/device/flashlight/lamp, -/obj/item/reagent_containers/food/drinks/flask/det, -/turf/open/floor/carpet, -/area/security/detectives_office) -"bMY" = ( -/obj/structure/table/wood, -/obj/item/storage/secure/safe{ - pixel_x = 32 - }, -/obj/machinery/computer/security/wooden_tv, -/turf/open/floor/carpet, -/area/security/detectives_office) -"bMZ" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/detectives_office) -"bNa" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/detectives_office) -"bNb" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/window/brigdoor/security/cell/westright{ - id = "brig2"; - name = "Cell 2" - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/brig) -"bNc" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/warden) -"bNd" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/security/warden) -"bNe" = ( -/obj/machinery/computer/security, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red, -/area/security/warden) -"bNf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"bNg" = ( -/obj/structure/rack, -/obj/item/gun/ballistic/shotgun/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/ballistic/shotgun/riot, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/obj/item/gun/ballistic/shotgun/riot, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"bNh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"bNi" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/vest{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/vest, -/obj/item/clothing/suit/armor/vest{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/head/helmet{ - layer = 3.00001; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet{ - layer = 3.00001 - }, -/obj/item/clothing/head/helmet{ - layer = 3.00001; - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) -"bNj" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space) -"bNk" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"bNl" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"bNm" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"bNn" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/sign/electricshock{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"bNo" = ( -/obj/machinery/cell_charger, -/obj/structure/table/reinforced, -/obj/item/stock_parts/cell/high, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"bNp" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"bNq" = ( -/obj/machinery/porta_turret/ai, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bNr" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/vault, -/area/ai_monitored/turret_protected/aisat_interior) -"bNs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "AI Satellite - Antechamber"; - dir = 2; - name = "ai camera"; - network = list("Sat"); - start_active = 1 - }, -/turf/open/floor/plasteel/vault, -/area/ai_monitored/turret_protected/aisat_interior) -"bNt" = ( -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bNu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault, -/area/ai_monitored/turret_protected/aisat_interior) -"bNw" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bNx" = ( -/obj/machinery/teleport/hub, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/black, -/area/ai_monitored/turret_protected/aisat_interior) -"bNy" = ( -/obj/machinery/teleport/station, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/black, -/area/ai_monitored/turret_protected/aisat_interior) -"bNz" = ( -/obj/machinery/computer/teleporter, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/black, -/area/ai_monitored/turret_protected/aisat_interior) -"bNA" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space) -"bNB" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced, -/turf/open/space, -/area/space) -"bNC" = ( -/obj/structure/sign/vacuum, -/turf/closed/wall, -/area/space) -"bND" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/curved/flipped{ - icon_state = "curved1"; - dir = 4 - }, -/turf/open/space, -/area/space) -"bNE" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/crossing/horizontal, -/turf/open/space, -/area/space) -"bNF" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/curved{ - icon_state = "curved0"; - dir = 8 - }, -/turf/open/space, -/area/space) -"bNG" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/space, -/area/space) -"bNH" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/space, -/area/space) -"bNI" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/transit_tube) -"bNJ" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Transit Tube Access"; - req_one_access_txt = "32;19" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/transit_tube) -"bNK" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/engine/transit_tube) -"bNL" = ( -/obj/machinery/keycard_auth{ - pixel_x = -26 - }, -/obj/machinery/button/door{ - id = "engstorage"; - name = "Engineering Secure Storage Control"; - pixel_x = -38; - pixel_y = 8; - req_access_txt = "11" - }, -/obj/machinery/button/door{ - id = "transitlock"; - name = "Transit Tube Lockdown Control"; - pixel_x = -38; - pixel_y = -8; - req_access_txt = "39; 19" - }, -/obj/machinery/modular_computer/console/preset/engineering, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bNM" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bNN" = ( -/obj/structure/table/reinforced, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/item/clipboard, -/obj/item/toy/figure/ce, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/heads/chief) -"bNO" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/crew_quarters/heads/chief) -"bNP" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/crew_quarters/heads/chief) -"bNQ" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bNR" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/chief) -"bNS" = ( -/obj/structure/bed, -/obj/item/bedsheet/ce, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/chief) -"bNT" = ( -/obj/structure/dresser, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/chief) -"bNU" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/obj/machinery/button/door{ - id = "ceprivacy"; - name = "Privacy Control"; - pixel_x = 26; - req_access_txt = "56" - }, -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = 26 - }, -/obj/machinery/camera{ - c_tag = "Engineering - Chief Engineer's Quarters"; - dir = 2; - name = "engineering camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bNV" = ( -/obj/structure/closet/radiation, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bNW" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bNX" = ( -/obj/structure/closet/toolcloset, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bNY" = ( -/turf/closed/wall, -/area/engine/engineering) -"bNZ" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"bOa" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/door/window/brigdoor{ - dir = 1; - id = "engcell"; - name = "Engineering Cell"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/red, -/area/security/checkpoint/engineering) -"bOb" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"bOc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Engineering Hallway - Center"; - dir = 8; - name = "hallway camera" - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 4 - }, -/area/hallway/primary/port) -"bOd" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/storage/tech) -"bOe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/storage/tech) -"bOf" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/engineering{ - name = "Technology Storage"; - req_access_txt = "23" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/storage/tech) -"bOg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Primary Tool Storage"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"bOh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Primary Tool Storage"; - req_access_txt = "0" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"bOi" = ( -/obj/structure/sign/directions/science{ - dir = 2 - }, -/obj/structure/sign/directions/engineering{ - dir = 8; - pixel_y = 8 - }, -/obj/structure/sign/directions/engineering{ - desc = "A direction sign, pointing out which way the Command department is."; - dir = 4; - icon_state = "direction_bridge"; - name = "command department"; - pixel_y = -8 - }, -/turf/closed/wall, -/area/storage/primary) -"bOj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bOk" = ( -/obj/machinery/ai_status_display{ - pixel_x = -32 - }, -/obj/structure/table/wood, -/obj/item/storage/briefcase{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/secure/briefcase, -/turf/open/floor/wood, -/area/bridge/meeting_room/council) -"bOl" = ( -/obj/machinery/button/door{ - id = "councilblast"; - name = "Council Blast doors"; - pixel_x = -26; - pixel_y = -26 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = -26 - }, -/obj/structure/bookcase/random, -/turf/open/floor/wood, -/area/bridge/meeting_room/council) -"bOm" = ( -/obj/machinery/light, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/wood, -/area/bridge/meeting_room/council) -"bOn" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/camera{ - c_tag = "Bridge - Council Chamber"; - dir = 1; - name = "command camera" - }, -/turf/open/floor/wood, -/area/bridge/meeting_room/council) -"bOo" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = -26 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/bridge/meeting_room/council) -"bOp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/bridge/meeting_room/council) -"bOq" = ( -/obj/structure/table/wood, -/obj/machinery/microwave{ - desc = "Cooks and boils stuff, somehow."; - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tcommsat/computer) -"bOr" = ( -/obj/structure/table/wood, -/obj/item/storage/box/donkpockets, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bOs" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bOt" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bOu" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bOv" = ( -/obj/structure/filingcabinet/medical, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bOw" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/pen, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bOx" = ( -/obj/structure/table/wood, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/item/phone{ - desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 6 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tcommsat/computer) -"bOy" = ( -/obj/structure/table/wood, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/device/flashlight/lamp/green, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Bridge - Captain's Office"; - dir = 4; - name = "command camera" - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"bOz" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/pen/fourcolor, -/obj/item/stamp/captain, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/window/brigdoor/northleft{ - name = "Captain's Desk"; - req_access_txt = "20" - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"bOA" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"bOB" = ( -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"bOC" = ( -/obj/structure/table/wood, -/obj/item/storage/secure/briefcase{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/lockbox/medal, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"bOD" = ( -/obj/structure/table/wood, -/obj/item/storage/photo_album, -/obj/item/device/camera, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) -"bOE" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) -"bOF" = ( -/obj/structure/sign/directions/science{ - dir = 2; - pixel_y = -8 - }, -/obj/structure/sign/directions/engineering{ - desc = "A direction sign, pointing out which way the Command department is."; - dir = 1; - icon_state = "direction_bridge"; - name = "command department" - }, -/obj/structure/sign/directions/engineering{ - desc = "A direction sign, pointing out which way the Supply department is."; - dir = 1; - icon_state = "direction_supply"; - name = "supply department"; - pixel_y = 8 - }, -/turf/closed/wall, -/area/storage/tools) -"bOG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/storage/tools) -"bOH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Auxiliary Tool Storage"; - req_access_txt = "12" - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"bOI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/storage/tools) -"bOJ" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "detectivewindows"; - name = "Detective Privacy Blast door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/security/detectives_office) -"bOK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Detective's Office"; - req_access = null; - req_access_txt = "4" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/detectives_office) -"bOL" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "detectivewindows"; - name = "Detective Privacy Blast door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/security/detectives_office) -"bOM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "detectivewindows"; - name = "Detective Privacy Blast door" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/detectives_office) -"bON" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bOO" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/brig) -"bOP" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/brig) -"bOQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 8 - }, -/area/security/brig) -"bOR" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/security/brig) -"bOS" = ( -/obj/structure/table/reinforced, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/item/clipboard, -/obj/item/toy/figure/warden, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/warden) -"bOT" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/security/warden) -"bOU" = ( -/obj/machinery/computer/prisoner, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Warden's Office APC"; - areastring = "/area/security/warden"; - pixel_x = 26 - }, -/obj/machinery/camera{ - c_tag = "Security - Warden's Office"; - dir = 8; - name = "security camera" - }, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/warden) -"bOV" = ( -/obj/structure/rack, -/obj/item/storage/box/rubbershot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/rubbershot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/storage/box/rubbershot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) -"bOW" = ( -/obj/structure/rack, -/obj/item/gun/energy/laser{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/energy/laser, -/obj/item/gun/energy/laser{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"bOX" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001; - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/storage/secure/safe{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) -"bOY" = ( -/obj/machinery/camera/motion{ - c_tag = "Armoury - Exterior"; - dir = 4; - network = list("SS13") - }, -/turf/open/space, -/area/space) -"bOZ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/northleft, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"bPa" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"bPb" = ( -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"bPc" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"bPd" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"bPe" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"bPf" = ( -/obj/machinery/camera{ - c_tag = "AI Satellite - Maintenance"; - dir = 8; - name = "ai camera"; - network = list("Sat"); - start_active = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"bPg" = ( -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bPh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"bPi" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"bPj" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"bPk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"bPl" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"bPm" = ( -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bPn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"bPo" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/turretid{ - control_area = "/area/ai_monitored/turret_protected/aisat_interior"; - enabled = 1; - icon_state = "control_standby"; - name = "Antechamber Turret Control"; - pixel_x = -32; - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "AI Satellite - Teleporter"; - dir = 4; - name = "ai camera"; - network = list("Sat"); - start_active = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 6 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bPp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault, -/area/ai_monitored/turret_protected/aisat_interior) -"bPq" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/vault, -/area/ai_monitored/turret_protected/aisat_interior) -"bPr" = ( -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 10 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bPs" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"bPt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/window/northright, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"bPu" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"bPv" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/transit_tube/curved, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"bPw" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/diagonal{ - icon_state = "diagonal"; - dir = 4 - }, -/turf/open/space, -/area/space) -"bPx" = ( -/obj/structure/lattice/catwalk, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space) -"bPy" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "AI Satellite - Transit Tube"; - dir = 2; - name = "ai camera"; - network = list("Sat"); - start_active = 1 - }, -/obj/item/clipboard, -/obj/item/folder/blue, -/obj/item/pen, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/transit_tube) -"bPz" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_x = -26; - pixel_y = 26 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/transit_tube) -"bPA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/transit_tube) -"bPC" = ( -/obj/machinery/computer/station_alert, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bPD" = ( -/obj/item/phone{ - desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/mask/cigarette/cigar/cohiba{ - pixel_x = 6 - }, -/obj/item/clothing/mask/cigarette/cigar/havana{ - pixel_x = 2 - }, -/obj/item/clothing/mask/cigarette/cigar{ - pixel_x = 4.5 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/heads/chief) -"bPE" = ( -/obj/structure/table/reinforced, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/item/cartridge/engineering{ - pixel_x = 6 - }, -/obj/item/cartridge/engineering{ - pixel_x = -6 - }, -/obj/item/cartridge/engineering{ - pixel_y = 6 - }, -/obj/item/reagent_containers/pill/patch/silver_sulf, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/heads/chief) -"bPF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/crew_quarters/heads/chief) -"bPG" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bPH" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Chief Engineer's Quarters"; - req_access_txt = "56" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bPI" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bPJ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/chief) -"bPK" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/landmark/start/chief_engineer, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/chief) -"bPL" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bPM" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "ceprivacy"; - name = "Chief's Privacy Shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/chief) -"bPN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bPO" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/item/device/radio/beacon, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/engine/engineering) -"bPP" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bPQ" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"bPR" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/checkpoint/engineering) -"bPS" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Security Post - Engineering APC"; - areastring = "/area/security/checkpoint/engineering"; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/button/door{ - desc = "A remote control switch."; - id = "engdoor"; - name = "Engineering Cell Control"; - normaldoorcontrol = 1; - pixel_x = 7; - pixel_y = 36 - }, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/engineering) -"bPT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/engineering) -"bPU" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/engineering) -"bPV" = ( -/obj/structure/closet/secure_closet/security/engine, -/obj/machinery/door_timer{ - id = "engcell"; - name = "Engineering Cell"; - pixel_x = 32; - pixel_y = 32 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26 - }, -/obj/machinery/camera{ - c_tag = "Security Post - Engineering"; - dir = 8; - name = "security camera" - }, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/checkpoint/engineering) -"bPW" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/port) -"bPX" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 4 - }, -/area/hallway/primary/port) -"bPY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bPZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bQa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bQb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bQc" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bQd" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bQe" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bQf" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bQg" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Engineering Hallway - Starboard"; - dir = 2; - name = "hallway camera" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bQh" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bQi" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bQj" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bQk" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/glass{ - name = "Port Primary Hallway" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bQl" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"bQm" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) -"bQn" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hop) -"bQo" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Head of Personnel's Office"; - req_access = null; - req_access_txt = "57" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bQp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hop) -"bQq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hop) -"bQr" = ( -/turf/open/floor/plasteel/vault/telecomms{ - dir = 8 - }, -/area/tcommsat/server) -"bQs" = ( -/turf/closed/wall/r_wall, -/area/tcommsat/server) -"bQt" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/tcommsat/server) -"bQu" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/tcommsat/server) -"bQv" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/tcommsat/server) -"bQw" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - cyclelinkeddir = 2; - name = "Telecomms Server Room"; - req_access = null; - req_access_txt = "61" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tcommsat/server) -"bQy" = ( -/obj/machinery/computer/card, -/obj/machinery/keycard_auth{ - pixel_x = -26; - pixel_y = 26 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Captain's Desk"; - departmentType = 5; - name = "Captain RC"; - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"bQz" = ( -/obj/structure/chair/comfy/brown{ - buildstackamount = 0; - color = "#c45c57"; - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/start/captain, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"bQA" = ( -/obj/structure/table/wood, -/obj/machinery/computer/security/wooden_tv, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"bQB" = ( -/obj/structure/table/wood, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/item/coin/adamantine{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/hand_tele, -/obj/item/melee/chainofcommand, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"bQC" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/captain/private) -"bQD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"bQE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/glass{ - name = "Starboard Primary Hallway" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bQF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bQG" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j1" - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bQH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bQI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bQJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bQK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Security Hallway - Port"; - dir = 2; - name = "hallway camera" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bQL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bQM" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bQN" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bQO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bQP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bQQ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bQR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bQS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bQT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bQU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/starboard) -"bQV" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bQW" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/door_timer{ - id = "brig2"; - name = "Cell 2"; - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/security/brig) -"bQX" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/machinery/newscaster/security_unit{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/warden) -"bQY" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/security/warden) -"bQZ" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/electrical, -/obj/item/screwdriver{ - pixel_y = 5 - }, -/obj/item/device/multitool, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/warden) -"bRa" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/ai_monitored/security/armory) -"bRb" = ( -/obj/vehicle/secway, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) -"bRc" = ( -/obj/structure/rack, -/obj/item/gun/energy/e_gun/advtaser{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/energy/e_gun/advtaser, -/obj/item/gun/energy/e_gun/advtaser{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"bRd" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/suit/armor/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/head/helmet/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/riot, -/obj/item/clothing/head/helmet/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/shield/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/shield/riot, -/obj/item/shield/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) -"bRe" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"bRf" = ( -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/aisat) -"bRg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance"; - req_access_txt = "16" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bRh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bRi" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bRj" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/holopad, -/obj/effect/landmark/start/cyborg, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bRk" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bRl" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bRm" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Antechamber"; - req_access_txt = "16" - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bRn" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bRo" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"bRp" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"bRq" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/mob/living/simple_animal/bot/secbot/pingsky, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"bRr" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"bRs" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"bRt" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bRu" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Antechamber"; - req_one_access_txt = "32;19" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bRv" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bRw" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bRx" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Access"; - req_one_access_txt = "32;19" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bRy" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/aisat) -"bRz" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"bRA" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"bRB" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"bRC" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/aisat) -"bRD" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"bRE" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/transit_tube/station{ - icon_state = "closed_station0"; - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"bRF" = ( -/obj/structure/lattice/catwalk, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/space, -/area/space) -"bRG" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/space, -/area/space) -"bRH" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/transit_tube/junction{ - icon_state = "junction0"; - dir = 4 - }, -/turf/open/space, -/area/space) -"bRI" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/transit_tube/crossing/horizontal, -/turf/open/space, -/area/space) -"bRJ" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/transit_tube/horizontal, -/turf/open/space, -/area/space) -"bRK" = ( -/obj/structure/lattice/catwalk, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/transit_tube/curved{ - icon_state = "curved0"; - dir = 8 - }, -/turf/open/space, -/area/space) -"bRL" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the AI's satellite."; - dir = 4; - name = "Research Monitor"; - network = list("Sat"); - pixel_y = 2 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/transit_tube) -"bRM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/transit_tube) -"bRN" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/transit_tube) -"bRO" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/transit_tube) -"bRP" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the Engine."; - dir = 4; - layer = 4; - name = "Engine Monitor"; - network = list("Engine"); - pixel_x = -30 - }, -/mob/living/simple_animal/parrot/Poly, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bRQ" = ( -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/crew_quarters/heads/chief) -"bRR" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/crew_quarters/heads/chief) -"bRS" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/crew_quarters/heads/chief) -"bRT" = ( -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/heads/chief) -"bRU" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bRV" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/crew_quarters/heads/chief) -"bRW" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = -24; - pixel_y = -24 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bRX" = ( -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/chief) -"bRY" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/chief) -"bRZ" = ( -/obj/machinery/suit_storage_unit/ce, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bSa" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bSb" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/engine/engineering) -"bSc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bSd" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/engineering) -"bSe" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/checkpoint/engineering) -"bSf" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/holopad, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/neutral, -/area/security/checkpoint/engineering) -"bSg" = ( -/obj/structure/chair/office/dark, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral, -/area/security/checkpoint/engineering) -"bSh" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/neutral, -/area/security/checkpoint/engineering) -"bSi" = ( -/obj/structure/table/reinforced, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/device/radio, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/checkpoint/engineering) -"bSj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bSk" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=engi2"; - location = "engi1" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/port) -"bSl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall4"; - location = "engi3" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/port) -"bSm" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bSn" = ( -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/port) -"bSo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/port) -"bSp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/port) -"bSq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/port) -"bSr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Port Primary Hallway" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bSs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=engi1"; - location = "hall3" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"bSt" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall5"; - location = "hall4" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"bSu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) -"bSv" = ( -/obj/machinery/ai_status_display, -/turf/closed/wall, -/area/hallway/primary/central) -"bSw" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/hallway/primary/central) -"bSx" = ( -/obj/structure/table/wood, -/obj/machinery/computer/med_data/laptop, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Head of Personnel's Desk"; - departmentType = 5; - name = "Head of Personnel RC"; - pixel_x = 32; - pixel_y = 32 - }, -/obj/machinery/light_switch{ - pixel_x = -38; - pixel_y = 7 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/obj/machinery/button/door{ - id = "hopline"; - name = "Queue Shutters Control"; - pixel_x = -26; - pixel_y = -7; - req_access_txt = "57" - }, -/obj/machinery/button/door{ - id = "hopblast"; - name = "Lockdown Blast doors"; - pixel_x = -26; - pixel_y = 7; - req_access_txt = "57" - }, -/obj/machinery/button/flasher{ - id = "hopflash"; - pixel_x = -38; - pixel_y = -7; - req_access_txt = "28" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/crew_quarters/heads/hop) -"bSy" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/stamp/hop, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bSz" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bSA" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bSB" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bSC" = ( -/obj/structure/table/wood, -/obj/item/storage/box/ids{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/silver_ids, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bSD" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 8 - }, -/area/tcommsat/server) -"bSE" = ( -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"bSF" = ( -/obj/machinery/telecomms/receiver/preset_right, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"bSG" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/tcommsat/server) -"bSH" = ( -/obj/machinery/telecomms/receiver/preset_left, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"bSI" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 8 - }, -/area/tcommsat/server) -"bSJ" = ( -/obj/machinery/computer/communications, -/obj/machinery/ai_status_display{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"bSK" = ( -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = -26 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"bSL" = ( -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"bSM" = ( -/obj/item/device/radio/intercom{ - pixel_y = -26 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"bSN" = ( -/obj/structure/displaycase/captain{ - req_access = null; - req_access_txt = "20" - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"bSO" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/start/captain, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/captain/private) -"bSP" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/shower{ - pixel_y = 16 - }, -/obj/structure/curtain, -/obj/machinery/door/window/brigdoor/southleft{ - name = "Shower" - }, -/obj/item/soap/deluxe, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/captain/private) -"bSQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Central Hallway - Security Hallway"; - dir = 4; - name = "hallway camera" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bSR" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/lightsout, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall13"; - location = "hall12" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"bSS" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall11"; - location = "hall10" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"bST" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass{ - name = "Starboard Primary Hallway" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bSU" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/starboard) -"bSV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/starboard) -"bSW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/starboard) -"bSX" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bSY" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/starboard) -"bSZ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/starboard) -"bTa" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/starboard) -"bTb" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/starboard) -"bTc" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/starboard) -"bTd" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/starboard) -"bTe" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bTf" = ( -/obj/item/device/radio/beacon, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall12"; - location = "hall11" - }, -/mob/living/simple_animal/bot/secbot/beepsky{ - desc = "It's Officer Beepsky! Powered by a potato and a shot of whiskey."; - name = "Officer Beepsky" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/starboard) -"bTg" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - icon_state = "pipe-j1s"; - name = "Security Junction"; - sortType = 7 - }, -/turf/open/floor/plasteel/red/corner, -/area/hallway/primary/starboard) -"bTh" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_security{ - cyclelinkeddir = 4; - name = "Brig"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bTi" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bTj" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "brigfront"; - name = "Brig Blast door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/brig) -"bTk" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bTl" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral, -/area/security/brig) -"bTm" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 2 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/security/brig) -"bTn" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/warden) -"bTo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/security/warden) -"bTp" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/security/warden) -"bTq" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/warden) -"bTr" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/security{ - name = "Armoury"; - req_access_txt = "3" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"bTs" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"bTt" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"bTu" = ( -/obj/structure/rack, -/obj/item/gun/energy/e_gun{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/energy/e_gun, -/obj/item/gun/energy/e_gun{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"bTv" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"bTw" = ( -/obj/structure/rack, -/obj/item/gun/energy/ionrifle, -/obj/item/clothing/suit/armor/laserproof, -/obj/item/gun/energy/temperature/security, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) -"bTx" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/southright, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"bTy" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"bTz" = ( -/obj/structure/sign/nosmoking_2, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"bTA" = ( -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bTB" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bTC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bTD" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bTE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"bTF" = ( -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bTG" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"bTH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"bTI" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"bTJ" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"bTK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"bTL" = ( -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bTM" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bTN" = ( -/obj/structure/window/reinforced, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"bTO" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/window/southleft, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"bTP" = ( -/obj/structure/window/reinforced, -/obj/structure/cable/white, -/obj/machinery/power/apc{ - dir = 2; - name = "AI Satellite Exterior APC"; - areastring = "/area/aisat"; - pixel_y = -26 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"bTQ" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/transit_tube/curved/flipped{ - icon_state = "curved1"; - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"bTR" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/diagonal, -/turf/open/space, -/area/space) -"bTS" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/transit_tube/curved{ - icon_state = "curved0"; - dir = 4 - }, -/obj/structure/sign/securearea{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/transit_tube) -"bTT" = ( -/obj/structure/transit_tube/horizontal, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/transit_tube) -"bTU" = ( -/obj/machinery/ai_status_display{ - pixel_y = -32 - }, -/obj/structure/transit_tube/station/reverse/flipped, -/obj/structure/transit_tube_pod{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/transit_tube) -"bTV" = ( -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/transit_tube) -"bTW" = ( -/obj/structure/table/reinforced, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bTX" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/cartridge/atmos, -/obj/item/cartridge/atmos, -/obj/item/cartridge/atmos, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bTY" = ( -/obj/structure/rack, -/obj/item/storage/secure/briefcase, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bTZ" = ( -/obj/structure/cable/white, -/obj/machinery/power/apc{ - dir = 2; - name = "Chief Engineer's APC"; - areastring = "/area/crew_quarters/heads/chief"; - pixel_y = -26 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bUa" = ( -/obj/machinery/photocopier, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bUb" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = -26 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bUc" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "ceprivacy"; - name = "Chief's Privacy Shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/chief) -"bUd" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "ceprivacy"; - name = "Chief's Privacy Shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/chief) -"bUe" = ( -/obj/structure/closet/toolcloset, -/obj/machinery/light/small, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Engineering - Engine Foyer"; - dir = 1; - name = "engineering camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bUf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bUg" = ( -/obj/structure/closet/radiation, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bUh" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/engineering) -"bUi" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = -26 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -38; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/checkpoint/engineering) -"bUj" = ( -/obj/machinery/computer/station_alert, -/obj/machinery/ai_status_display{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/engineering) -"bUk" = ( -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/machinery/light, -/obj/machinery/computer/security, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/engineering) -"bUl" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/engineering) -"bUm" = ( -/obj/structure/table/reinforced, -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = -32 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26; - pixel_y = -32 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/recharger, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/checkpoint/engineering) -"bUn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bUo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/port) -"bUp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/yellow/corner, -/area/hallway/primary/port) -"bUq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bUr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bUs" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bUt" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bUu" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/machinery/light, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bUv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bUw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bUx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/glass{ - name = "Port Primary Hallway" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bUy" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bUz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/blue/corner, -/area/hallway/primary/central) -"bUA" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopline"; - name = "Queue Shutters" - }, -/turf/open/floor/plasteel/loadingarea{ - dir = 8 - }, -/area/hallway/primary/central) -"bUB" = ( -/obj/machinery/flasher{ - id = "hopflash"; - pixel_y = 58 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bUC" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "hopblast"; - name = "HoP Blast door" - }, -/obj/machinery/door/window/brigdoor/eastleft{ - name = "Access Desk"; - req_access_txt = "57" - }, -/obj/machinery/door/window/westright{ - name = "Access Queue" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hop) -"bUD" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/start/head_of_personnel, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/hop) -"bUE" = ( -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bUF" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hop) -"bUG" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hop) -"bUH" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hop) -"bUI" = ( -/obj/machinery/vending/cart, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bUJ" = ( -/obj/machinery/telecomms/server/presets/medical, -/turf/open/floor/plasteel/whiteblue/side/telecomms{ - dir = 9 - }, -/area/tcommsat/server) -"bUK" = ( -/obj/machinery/telecomms/server/presets/science, -/turf/open/floor/plasteel/whitepurple/side/telecomms{ - dir = 5 - }, -/area/tcommsat/server) -"bUL" = ( -/turf/open/floor/plasteel/vault/telecomms, -/area/tcommsat/server) -"bUM" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/command{ - cyclelinkeddir = 1; - name = "Telecomms Server Room"; - req_access = null; - req_access_txt = "61" - }, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 5 - }, -/area/tcommsat/server) -"bUN" = ( -/obj/machinery/telecomms/server/presets/command, -/turf/open/floor/plasteel/darkblue/side/telecomms{ - dir = 9 - }, -/area/tcommsat/server) -"bUO" = ( -/obj/machinery/telecomms/server/presets/security, -/turf/open/floor/plasteel/darkred/side/telecomms{ - dir = 5 - }, -/area/tcommsat/server) -"bUP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/captain/private) -"bUQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters"; - req_access = null; - req_access_txt = "20" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bUR" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/captain/private) -"bUS" = ( -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/captain/private) -"bUT" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/captain/private) -"bUU" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) -"bUV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/glass{ - name = "Starboard Primary Hallway" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bUW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/starboard) -"bUX" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/starboard) -"bUY" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/starboard) -"bUZ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/starboard) -"bVa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bVb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/starboard) -"bVc" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/starboard) -"bVd" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/starboard) -"bVe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/starboard) -"bVf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner, -/area/hallway/primary/starboard) -"bVg" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner, -/area/hallway/primary/starboard) -"bVh" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner, -/area/hallway/primary/starboard) -"bVi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Security Hallway - Center"; - dir = 1; - name = "hallway camera" - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/starboard) -"bVj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bVl" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bVm" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/red/corner, -/area/hallway/primary/starboard) -"bVn" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "brigwindows"; - name = "Brig Front Blast door" - }, -/turf/open/floor/plating, -/area/security/brig) -"bVo" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bVp" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "brigfront"; - name = "Brig Blast door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/brig) -"bVq" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/brig) -"bVr" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/security/brig) -"bVs" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/brig) -"bVt" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/door/airlock/glass_security{ - name = "Warden's Office"; - req_access_txt = "3" - }, -/turf/open/floor/plasteel, -/area/security/warden) -"bVu" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"bVv" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/button/door{ - id = "brigwindows"; - name = "Cell Window Control"; - pixel_x = -32; - pixel_y = -26; - req_access_txt = "63" - }, -/obj/machinery/button/door{ - id = "brigfront"; - name = "Brig Access Control"; - pixel_x = -26; - pixel_y = -36; - req_access_txt = "63" - }, -/obj/machinery/button/door{ - id = "brigprison"; - name = "Prison Lockdown"; - pixel_x = -38; - pixel_y = -36; - req_access_txt = "63" - }, -/obj/effect/landmark/start/warden, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/security/warden) -"bVw" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/warden) -"bVx" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/security{ - name = "Armoury"; - req_access_txt = "3" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"bVy" = ( -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"bVz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"bVA" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"bVB" = ( -/obj/structure/closet/secure_closet/lethalshots, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) -"bVC" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/stack/sheet/mineral/plasma{ - amount = 20 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "MiniSat APC"; - areastring = "/area/ai_monitored/turret_protected/aisat_interior"; - pixel_y = -27 - }, -/obj/structure/cable/white, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/black, -/area/ai_monitored/turret_protected/aisat_interior) -"bVD" = ( -/obj/machinery/recharge_station, -/obj/machinery/ai_status_display{ - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/black, -/area/ai_monitored/turret_protected/aisat_interior) -"bVE" = ( -/obj/machinery/computer/monitor, -/obj/machinery/light, -/obj/item/device/radio/intercom{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "AI Intercom"; - pixel_y = -26 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/black, -/area/ai_monitored/turret_protected/aisat_interior) -"bVF" = ( -/obj/machinery/recharge_station, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/black, -/area/ai_monitored/turret_protected/aisat_interior) -"bVG" = ( -/obj/item/storage/toolbox/mechanical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/electrical, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/black, -/area/ai_monitored/turret_protected/aisat_interior) -"bVH" = ( -/obj/structure/cable/white, -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/light, -/turf/open/floor/plasteel/vault, -/area/ai_monitored/turret_protected/aisat_interior) -"bVI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault, -/area/ai_monitored/turret_protected/aisat_interior) -"bVJ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bVK" = ( -/obj/machinery/turretid{ - control_area = "/area/ai_monitored/turret_protected/ai_upload"; - icon_state = "control_stun"; - name = "AI Upload turret control"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault, -/area/ai_monitored/turret_protected/aisat_interior) -"bVL" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/light, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/vault, -/area/ai_monitored/turret_protected/aisat_interior) -"bVM" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/porta_turret/ai, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bVN" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/item/pen, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bVO" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/toy/figure/borg, -/obj/machinery/light, -/obj/item/device/radio/intercom{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "AI Intercom"; - pixel_y = -26 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bVP" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/folder/yellow, -/obj/machinery/ai_status_display{ - pixel_y = -32 - }, -/obj/item/device/aicard, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bVR" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/curved{ - icon_state = "curved0"; - dir = 4 - }, -/turf/open/space, -/area/space) -"bVS" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/curved/flipped{ - icon_state = "curved1"; - dir = 8 - }, -/turf/open/space, -/area/space) -"bVT" = ( -/turf/closed/wall/r_wall, -/area/engine/engineering) -"bVU" = ( -/obj/structure/table/reinforced, -/obj/item/storage/firstaid/fire, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bVV" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bVW" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bVX" = ( -/obj/structure/table/reinforced, -/obj/item/storage/fancy/donut_box, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bVY" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/engine/engineering) -"bVZ" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/engineering{ - name = "Engineering Access"; - req_access_txt = "10" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bWa" = ( -/obj/structure/sign/radiation, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/engine/engineering) -"bWb" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Security Post - Engineering"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bWc" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"bWd" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bWe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/yellow/side, -/area/hallway/primary/port) -"bWf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel/yellow/corner, -/area/hallway/primary/port) -"bWg" = ( -/turf/closed/wall, -/area/maintenance/port) -"bWh" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"bWi" = ( -/turf/closed/wall, -/area/library) -"bWj" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/library) -"bWk" = ( -/obj/machinery/door/airlock/glass{ - name = "Library Access" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/library) -"bWl" = ( -/obj/machinery/door/airlock/glass{ - name = "Library Access" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/library) -"bWm" = ( -/obj/structure/sign/directions/evac{ - pixel_y = -8 - }, -/obj/structure/sign/directions/medical{ - dir = 2 - }, -/obj/structure/sign/directions/security{ - dir = 2; - pixel_y = 8 - }, -/turf/closed/wall, -/area/library) -"bWn" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWo" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hopblast"; - name = "HoP Blast door" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hop) -"bWp" = ( -/obj/machinery/computer/card, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/crew_quarters/heads/hop) -"bWq" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bWr" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hop) -"bWs" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hop) -"bWt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hop) -"bWu" = ( -/obj/machinery/pdapainter, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bWv" = ( -/obj/machinery/telecomms/bus/preset_one, -/turf/open/floor/plasteel/whiteblue/side/telecomms{ - dir = 10 - }, -/area/tcommsat/server) -"bWw" = ( -/obj/machinery/telecomms/processor/preset_one, -/turf/open/floor/plasteel/whitepurple/side/telecomms{ - dir = 6 - }, -/area/tcommsat/server) -"bWx" = ( -/turf/open/floor/plasteel/vault/telecomms{ - dir = 5 - }, -/area/tcommsat/server) -"bWy" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 5 - }, -/area/tcommsat/server) -"bWz" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 5 - }, -/area/tcommsat/server) -"bWA" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 5 - }, -/area/tcommsat/server) -"bWB" = ( -/obj/machinery/telecomms/processor/preset_three, -/turf/open/floor/plasteel/darkblue/side/telecomms{ - dir = 10 - }, -/area/tcommsat/server) -"bWC" = ( -/obj/machinery/telecomms/bus/preset_three, -/turf/open/floor/plasteel/darkred/side/telecomms{ - dir = 6 - }, -/area/tcommsat/server) -"bWD" = ( -/obj/machinery/photocopier, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bWE" = ( -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = 26 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bWF" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bWG" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/suit_storage_unit/captain, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/captain/private) -"bWH" = ( -/obj/structure/closet/secure_closet/captains, -/obj/item/clothing/suit/armor/vest/capcarapace, -/obj/item/clothing/head/caphat, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/captain/private) -"bWI" = ( -/turf/closed/wall, -/area/crew_quarters/heads/captain/private) -"bWJ" = ( -/obj/machinery/door/airlock/silver{ - name = "Bathroom" - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/captain/private) -"bWK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/crew_quarters/heads/captain/private) -"bWL" = ( -/obj/structure/sign/directions/evac{ - pixel_y = -8 - }, -/obj/structure/sign/directions/medical{ - dir = 2 - }, -/obj/structure/sign/directions/security{ - dir = 4; - pixel_y = 8 - }, -/turf/closed/wall, -/area/security/courtroom) -"bWM" = ( -/turf/closed/wall, -/area/security/courtroom) -"bWN" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/security/courtroom) -"bWO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Courtroom" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"bWP" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/security/courtroom) -"bWQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Courtroom"; - req_access_txt = "42" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/courtroom) -"bWR" = ( -/turf/closed/wall, -/area/lawoffice) -"bWS" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lawyerprivacy"; - name = "Lawyer's Privacy Shutter" - }, -/turf/open/floor/plating, -/area/lawoffice) -"bWT" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock{ - name = "Law Office"; - req_access_txt = "38" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/lawoffice) -"bWU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lawyerprivacy"; - name = "Lawyer's Privacy Shutter" - }, -/turf/open/floor/plating, -/area/lawoffice) -"bWV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/red/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bWW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side, -/area/hallway/primary/starboard) -"bWX" = ( -/obj/machinery/flasher{ - id = "brigflashdoor"; - pixel_x = 26; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/red/corner, -/area/hallway/primary/starboard) -"bWY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - cyclelinkeddir = 4; - name = "Brig"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bWZ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: BLAST DOORS"; - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bXa" = ( -/obj/machinery/door/poddoor/preopen{ - id = "brigfront"; - name = "Brig Blast door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/brig) -"bXb" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"bXc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/red/corner, -/area/security/brig) -"bXd" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/warden) -"bXe" = ( -/obj/structure/table/reinforced, -/obj/machinery/light_switch{ - pixel_x = -38; - pixel_y = -26 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = -26; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/red/side, -/area/security/warden) -"bXf" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side, -/area/security/warden) -"bXg" = ( -/obj/structure/closet/secure_closet/warden, -/obj/item/clothing/under/rank/warden/grey, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/warden) -"bXh" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ai_monitored/security/armory) -"bXi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"bXj" = ( -/obj/machinery/button/door{ - id = "armouryaccess"; - name = "Armoury Access"; - pixel_x = -26; - pixel_y = -26; - req_access_txt = "3" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side, -/area/ai_monitored/security/armory) -"bXk" = ( -/obj/structure/chair/office/dark, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 8 - }, -/area/ai_monitored/security/armory) -"bXl" = ( -/obj/structure/cable/white, -/obj/machinery/power/apc{ - dir = 2; - name = "Armoury APC"; - areastring = "/area/ai_monitored/security/armory"; - pixel_y = -26 - }, -/obj/machinery/camera{ - c_tag = "Armory - Interior"; - dir = 1; - name = "security camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"bXm" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 32 - }, -/obj/structure/table/reinforced, -/obj/item/clothing/mask/gas/sechailer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas/sechailer, -/obj/item/clothing/mask/gas/sechailer{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/device/flashlight/seclite, -/obj/item/device/flashlight/seclite, -/obj/item/device/flashlight/seclite, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) -"bXn" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - name = "MiniSat Upload"; - req_access_txt = "16" - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_x = -26 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bXo" = ( -/obj/structure/grille, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"bXp" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/grille, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"bXq" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/grille, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"bXr" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/grille, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"bXs" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/grille, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"bXt" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/grille, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"bXu" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/grille, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"bXv" = ( -/obj/structure/closet/emcloset/anchored, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bXw" = ( -/obj/structure/sign/vacuum, -/turf/closed/wall, -/area/engine/engineering) -"bXx" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bXy" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bXz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bXA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bXB" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Engineering - Fore"; - dir = 2; - name = "engineering camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bXC" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bXD" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/sortjunction{ - name = "Engineering Junction"; - sortType = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bXE" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bXF" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bXG" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bXH" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/engineering) -"bXI" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/power/smes/engineering{ - charge = 2e+006 - }, -/turf/open/floor/circuit/green, -/area/engine/engineering) -"bXJ" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/machinery/power/smes/engineering{ - charge = 2e+006 - }, -/turf/open/floor/circuit/green, -/area/engine/engineering) -"bXK" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"bXL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/neutral/side{ - dir = 9 - }, -/area/maintenance/port) -"bXM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bXN" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Port Maintenance APC"; - areastring = "/area/maintenance/port"; - pixel_x = 26 - }, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bXO" = ( -/obj/structure/table/wood, -/obj/machinery/computer/libraryconsole, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/turf/open/floor/plasteel/black, -/area/library) -"bXP" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library) -"bXQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/grimy, -/area/library) -"bXR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/grimy, -/area/library) -"bXS" = ( -/turf/open/floor/plasteel/black, -/area/library) -"bXT" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library) -"bXU" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -32 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/turf/open/floor/plasteel/black, -/area/library) -"bXV" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library) -"bXW" = ( -/obj/machinery/computer/libraryconsole, -/obj/structure/table/wood, -/turf/open/floor/plasteel/black, -/area/library) -"bXX" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"bXY" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"bXZ" = ( -/obj/effect/landmark/lightsout, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/blue/corner, -/area/hallway/primary/central) -"bYa" = ( -/obj/machinery/status_display, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hop) -"bYb" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/crew_quarters/heads/hop) -"bYc" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hop) -"bYd" = ( -/obj/structure/table/wood, -/obj/machinery/light, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bYe" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/camera{ - c_tag = "Telecomms - Chamber Port"; - dir = 4; - name = "telecomms camera"; - network = list("SS13","tcomm") - }, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 8 - }, -/area/tcommsat/server) -"bYf" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 10 - }, -/area/tcommsat/server) -"bYg" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 2; - external_pressure_bound = 140; - name = "server vent"; - pressure_checks = 0 - }, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 5 - }, -/area/tcommsat/server) -"bYh" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 5 - }, -/area/tcommsat/server) -"bYi" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 5 - }, -/area/tcommsat/server) -"bYj" = ( -/obj/structure/table/glass, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/item/folder/yellow, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"bYl" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 2; - external_pressure_bound = 120; - name = "server vent" - }, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 5 - }, -/area/tcommsat/server) -"bYm" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 6 - }, -/area/tcommsat/server) -"bYn" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 8 - }, -/area/tcommsat/server) -"bYo" = ( -/obj/structure/table/wood, -/obj/item/pinpointer/nuke, -/obj/item/disk/nuclear, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain/private) -"bYp" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain/private) -"bYq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bYr" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bYs" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/card/id/captains_spare, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain/private) -"bYt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain/private) -"bYu" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain/private) -"bYv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) -"bYw" = ( -/obj/machinery/vending/snack/random, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault, -/area/security/courtroom) -"bYx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault, -/area/security/courtroom) -"bYy" = ( -/turf/open/floor/plasteel/vault, -/area/security/courtroom) -"bYz" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/vault, -/area/security/courtroom) -"bYB" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/courtroom) -"bYC" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/security/courtroom) -"bYD" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/security/courtroom) -"bYE" = ( -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/security/courtroom) -"bYF" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/security/courtroom) -"bYG" = ( -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = 26 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/security/courtroom) -"bYH" = ( -/obj/structure/closet/secure_closet/courtroom, -/turf/open/floor/plasteel/neutral/side{ - dir = 5 - }, -/area/security/courtroom) -"bYI" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/device/taperecorder{ - pixel_x = 3 - }, -/obj/item/clothing/glasses/sunglasses, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/machinery/button/door{ - id = "lawyerprivacy"; - name = "Lawyer's Privacy Control"; - pixel_y = 24; - req_access_txt = "0" - }, -/turf/open/floor/wood, -/area/lawoffice) -"bYJ" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/toy/figure/lawyer, -/turf/open/floor/wood, -/area/lawoffice) -"bYK" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/lawoffice) -"bYL" = ( -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/lawoffice) -"bYM" = ( -/obj/structure/closet/lawcloset, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/wood, -/area/lawoffice) -"bYN" = ( -/turf/closed/wall/r_wall, -/area/lawoffice) -"bYO" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "brigwindows"; - name = "Brig Front Blast door" - }, -/obj/item/folder/red, -/obj/item/pen, -/obj/machinery/door/window/brigdoor/southright{ - dir = 2; - name = "Security Desk"; - req_access_txt = "63" - }, -/obj/machinery/door/window/northright{ - name = "Security Desk" - }, -/turf/open/floor/plasteel/red, -/area/security/brig) -"bYP" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 8 - }, -/area/security/brig) -"bYQ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/security/brig) -"bYR" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26; - pixel_y = -7 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Security - Brig Aft"; - dir = 8; - name = "security camera" - }, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/security/brig) -"bYT" = ( -/obj/machinery/door/poddoor{ - id = "armouryaccess"; - name = "Armoury Access" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"bYU" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/brigdoor/northright{ - name = "Armoury Desk"; - req_access_txt = "3" - }, -/obj/item/folder/red, -/obj/item/pen, -/obj/machinery/door/window/southright{ - name = "Armoury Desk" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"bYV" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai_upload) -"bYW" = ( -/obj/machinery/ai_status_display, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai_upload) -"bYX" = ( -/obj/machinery/porta_turret/ai, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/ai_upload) -"bYY" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/vault, -/area/ai_monitored/turret_protected/ai_upload) -"bYZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault, -/area/ai_monitored/turret_protected/ai_upload) -"bZa" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/ai_upload) -"bZb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera/motion{ - c_tag = "AI - Upload"; - name = "motion-sensitive ai camera"; - network = list("Sat") - }, -/turf/open/floor/plasteel/vault, -/area/ai_monitored/turret_protected/ai_upload) -"bZd" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/porta_turret/ai, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/ai_upload) -"bZe" = ( -/obj/structure/grille, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space) -"bZf" = ( -/turf/open/floor/plating/airless, -/area/engine/engineering) -"bZg" = ( -/obj/structure/cable/white, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"bZh" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/grille, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"bZi" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/grille, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"bZj" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"bZk" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; - name = "External Containment Access"; - req_access_txt = "10; 13" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/fans/tiny, -/obj/effect/turf_decal/delivery, -/obj/structure/barricade/wooden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZm" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral, -/area/engine/engineering) -"bZo" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/yellow, -/area/engine/engineering) -"bZp" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral, -/area/engine/engineering) -"bZq" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/yellow, -/area/engine/engineering) -"bZr" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/yellow, -/area/engine/engineering) -"bZs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral, -/area/engine/engineering) -"bZt" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/yellow, -/area/engine/engineering) -"bZu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/engineering) -"bZv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZw" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/door/airlock/glass_engineering{ - name = "Power Monitoring"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZx" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZy" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = 32 - }, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/neutral/side{ - dir = 9 - }, -/area/maintenance/port) -"bZB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port) -"bZC" = ( -/turf/open/floor/plating, -/area/maintenance/port) -"bZD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port) -"bZE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/maintenance/port) -"bZF" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port) -"bZG" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library) -"bZH" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/start/librarian, -/turf/open/floor/plasteel/black, -/area/library) -"bZI" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/library) -"bZJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library) -"bZK" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/obj/machinery/camera{ - c_tag = "Library - Fore"; - dir = 8; - name = "library camera" - }, -/turf/open/floor/plasteel/black, -/area/library) -"bZL" = ( -/obj/machinery/photocopier, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library) -"bZM" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/black, -/area/library) -"bZN" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library) -"bZO" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/blue/corner, -/area/hallway/primary/central) -"bZP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"bZQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bZR" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/hop) -"bZS" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hop) -"bZT" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "HoP Office APC"; - areastring = "/area/crew_quarters/heads/hop"; - pixel_x = 26 - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Bridge - Head of Personnel's Office"; - dir = 8; - name = "command camera" - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hop) -"bZU" = ( -/turf/closed/wall, -/area/crew_quarters/heads/hop) -"bZV" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Telecomms Server Room APC"; - areastring = "/area/tcommsat/server"; - pixel_x = -26 - }, -/obj/structure/cable/white, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 8 - }, -/area/tcommsat/server) -"bZW" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 10 - }, -/area/tcommsat/server) -"bZX" = ( -/obj/machinery/telecomms/broadcaster/preset_left, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 5 - }, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bZY" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 5 - }, -/area/tcommsat/server) -"bZZ" = ( -/obj/machinery/message_server, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/general/hidden{ - dir = 1 - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"caa" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 5 - }, -/area/tcommsat/server) -"cab" = ( -/obj/machinery/telecomms/hub/preset, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 4 - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"cad" = ( -/obj/machinery/blackbox_recorder, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/general/hidden{ - dir = 1 - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"cae" = ( -/obj/machinery/telecomms/broadcaster/preset_right, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 9 - }, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"caf" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 6 - }, -/area/tcommsat/server) -"cag" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable/white, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 8 - }, -/area/tcommsat/server) -"cah" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/pen/fourcolor, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain/private) -"cai" = ( -/obj/structure/chair/comfy/brown{ - color = "#c45c57"; - dir = 8; - icon_state = "comfychair" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/effect/landmark/start/captain, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain/private) -"caj" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"cak" = ( -/obj/machinery/holopad, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"cal" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"cam" = ( -/obj/machinery/door/window/brigdoor/westleft{ - name = "Captain's Bedroom"; - req_access_txt = "20" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain/private) -"can" = ( -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"cao" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/bed, -/obj/item/bedsheet/captain, -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/obj/effect/landmark/start/captain, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"cap" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"caq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"car" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"cas" = ( -/obj/structure/chair{ - dir = 2; - name = "Prosecution" - }, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/courtroom) -"cat" = ( -/obj/structure/chair{ - dir = 2; - name = "Prosecution" - }, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/courtroom) -"cau" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/security/courtroom) -"cav" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/security/courtroom) -"caw" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/security/courtroom) -"cax" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/security/courtroom) -"cay" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - name = "Law Office"; - req_access_txt = "38" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/lawoffice) -"caz" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/lawoffice) -"caA" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/grimy, -/area/lawoffice) -"caB" = ( -/obj/machinery/holopad, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/grimy, -/area/lawoffice) -"caC" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/landmark/start/lawyer, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/lawoffice) -"caD" = ( -/obj/structure/filingcabinet/employment, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/wood, -/area/lawoffice) -"caE" = ( -/obj/machinery/computer/security, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/brig) -"caF" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/security_officer, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/brig) -"caG" = ( -/obj/machinery/computer/secure_data, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/button/flasher{ - id = "gulagshuttleflasher"; - name = "Flash Control"; - pixel_x = 26; - pixel_y = 7; - req_access_txt = "63" - }, -/obj/machinery/button/door{ - id = "brigfront"; - name = "Brig Access Control"; - pixel_x = 26; - pixel_y = -7; - req_access_txt = "63" - }, -/obj/machinery/button/door{ - id = "brigwindows"; - name = "Cell Window Control"; - pixel_x = 38; - pixel_y = -7; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/brig) -"caH" = ( -/obj/structure/chair, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/brig) -"caI" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/brig) -"caJ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/security/brig) -"caK" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/effect/landmark/lightsout, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/security/brig) -"caL" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_security{ - name = "Gear Room"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"caM" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/brig) -"caN" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/brig) -"caO" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/brig) -"caP" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/highcap/ten_k{ - dir = 1; - name = "Brig APC"; - areastring = "/area/security/brig"; - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Security - Gear Room"; - dir = 2; - name = "security camera" - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/brig) -"caQ" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/brig) -"caR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/brig) -"caS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/brig) -"caT" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/brig) -"caU" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/red, -/area/security/brig) -"caV" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor{ - dir = 4; - name = "Core Modules"; - req_access_txt = "20" - }, -/obj/item/aiModule/core/full/paladin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/aiModule/core/full/asimov, -/obj/item/aiModule/core/full/corp{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/ai_upload) -"caW" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai_upload) -"caX" = ( -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai_upload) -"caY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai_upload) -"caZ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai_upload) -"cba" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai_upload) -"cbb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai_upload) -"cbc" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor/westright{ - name = "Core Modules"; - req_access_txt = "20" - }, -/obj/item/aiModule/core/full/antimov{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/aiModule/supplied/oxygen, -/obj/item/aiModule/supplied/protectStation{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/sign/electricshock{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/ai_upload) -"cbd" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"cbe" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Containment - Fore Starboard"; - dir = 8; - network = list("Singularity") - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"cbf" = ( -/obj/structure/sign/vacuum, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cbg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbh" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/engine/engineering) -"cbk" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbo" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cbp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbq" = ( -/obj/structure/chair/office/dark, -/obj/effect/landmark/start/station_engineer, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbr" = ( -/obj/structure/sign/electricshock{ - pixel_x = 32 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26; - pixel_y = -26 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbs" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cbt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/maintenance/port) -"cbu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port) -"cbv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/port) -"cbw" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cbx" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/item/twohanded/required/kirbyplants/random, -/obj/structure/sign/kiddieplaque/library{ - pixel_x = -32 - }, -/turf/open/floor/wood, -/area/library) -"cby" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library) -"cbz" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/library) -"cbA" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library) -"cbB" = ( -/obj/structure/sign/nosmoking_2, -/turf/closed/wall, -/area/library) -"cbC" = ( -/obj/machinery/door/morgue{ - name = "Private Study" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library) -"cbD" = ( -/obj/structure/sign/kiddieplaque/library{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"cbE" = ( -/obj/structure/sign/electricshock, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hop) -"cbF" = ( -/obj/machinery/computer/cargo/request, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/crew_quarters/heads/hop) -"cbG" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hop) -"cbH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hop) -"cbI" = ( -/obj/structure/table/wood, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/storage/lockbox/loyalty, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"cbJ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 10 - }, -/area/tcommsat/server) -"cbK" = ( -/turf/open/floor/plasteel/vault/telecomms{ - dir = 10 - }, -/area/tcommsat/server) -"cbL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 5 - }, -/area/tcommsat/server) -"cbM" = ( -/obj/machinery/ntnet_relay, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"cbN" = ( -/obj/machinery/atmospherics/pipe/simple/general/hidden, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 6 - }, -/area/tcommsat/server) -"cbO" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 6 - }, -/area/tcommsat/server) -"cbP" = ( -/obj/machinery/camera{ - c_tag = "Telecomms - Chamber Starboard"; - dir = 8; - name = "telecomms camera"; - network = list("SS13","tcomm") - }, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 8 - }, -/area/tcommsat/server) -"cbQ" = ( -/obj/structure/table/wood, -/obj/item/device/radio/intercom{ - dir = 8; - freerange = 1; - name = "Captain's Intercom"; - pixel_x = -26 - }, -/obj/item/reagent_containers/food/drinks/flask/gold, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/item/razor, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain/private) -"cbR" = ( -/obj/structure/table/wood, -/obj/machinery/computer/security/wooden_tv, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain/private) -"cbS" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"cbT" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"cbU" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/machinery/camera{ - c_tag = "Bridge - Captain's Quarters"; - dir = 1; - name = "command camera" - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"cbV" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/power/apc/highcap/ten_k{ - dir = 2; - name = "Captain's Quarters APC"; - areastring = "/area/crew_quarters/heads/captain/private"; - pixel_y = -24 - }, -/obj/structure/cable/white, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain/private) -"cbW" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"cbX" = ( -/obj/structure/dresser, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"cbY" = ( -/obj/structure/table, -/obj/machinery/ai_status_display{ - pixel_x = -32 - }, -/obj/item/storage/box/donkpockets, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"cbZ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"cca" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"ccb" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"ccc" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/pen, -/turf/open/floor/plasteel/neutral/side{ - dir = 9 - }, -/area/security/courtroom) -"ccd" = ( -/obj/structure/table/wood, -/obj/item/device/radio/intercom{ - name = "Station Intercom" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/security/courtroom) -"cce" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/security/courtroom) -"ccf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/security/courtroom) -"ccg" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/courtroom) -"cch" = ( -/obj/structure/chair{ - dir = 8; - name = "Judge" - }, -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/security/courtroom) -"cci" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/lawoffice) -"ccj" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/wood, -/area/lawoffice) -"cck" = ( -/obj/structure/table/wood, -/obj/item/folder/yellow, -/obj/item/clothing/glasses/sunglasses/big{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/glasses/sunglasses, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/lawoffice) -"ccl" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/lawoffice) -"ccm" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/grimy, -/area/lawoffice) -"ccn" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/turf/open/floor/wood, -/area/lawoffice) -"cco" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/table/reinforced, -/obj/machinery/newscaster/security_unit{ - pixel_x = -32 - }, -/obj/item/clipboard, -/obj/item/toy/figure/secofficer, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/brig) -"ccp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/neutral, -/area/security/brig) -"ccq" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/brig) -"ccr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/security/brig) -"ccs" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"cct" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/window/brigdoor/security/holding/westright{ - name = "Holding Cell" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ccu" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/security/brig) -"ccv" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/neutral, -/area/security/brig) -"ccw" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/red/corner, -/area/security/brig) -"ccx" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/brig) -"ccy" = ( -/obj/structure/table/reinforced, -/obj/item/restraints/handcuffs, -/obj/item/device/assembly/flash/handheld, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/brig) -"ccz" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -32; - pixel_y = -64 - }, -/obj/effect/landmark/start/security_officer, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/security/brig) -"ccA" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/effect/landmark/start/security_officer, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/security/brig) -"ccB" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/landmark/start/security_officer, -/turf/open/floor/plasteel/neutral, -/area/security/brig) -"ccC" = ( -/obj/machinery/holopad, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/brig) -"ccD" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/landmark/start/security_officer, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/security/brig) -"ccE" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral, -/area/security/brig) -"ccF" = ( -/obj/machinery/newscaster/security_unit{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/brig) -"ccG" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space) -"ccH" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "aiuploadwindow"; - name = "AI Upload Lockdown Door" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai_upload) -"ccI" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor/westright{ - dir = 4; - name = "Core Modules"; - req_access_txt = "20" - }, -/obj/structure/window/reinforced, -/obj/item/aiModule/core/freeformcore{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/aiModule/core/full/custom, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/ai_upload) -"ccJ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai_upload) -"ccK" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai_upload) -"ccL" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai_upload) -"ccM" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai_upload) -"ccN" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai_upload) -"ccO" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai_upload) -"ccP" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor{ - dir = 8; - name = "Core Modules"; - req_access_txt = "20" - }, -/obj/structure/window/reinforced, -/obj/item/aiModule/core/full/tyrant{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/aiModule/zeroth/oneHuman, -/obj/item/aiModule/reset/purge{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/ai_upload) -"ccQ" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "aiuploadwindow"; - name = "AI Upload Lockdown Door" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai_upload) -"ccR" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space) -"ccS" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/space, -/area/space) -"ccT" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/engine/engineering) -"ccU" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "engpa"; - name = "Engineering Chamber Shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"ccV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ccW" = ( -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/engineering) -"ccX" = ( -/turf/open/floor/plasteel/yellow/side{ - dir = 5 - }, -/area/engine/engineering) -"ccY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ccZ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/yellow, -/area/engine/engineering) -"cda" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cdb" = ( -/turf/open/floor/plasteel/yellow/side{ - dir = 9 - }, -/area/engine/engineering) -"cdc" = ( -/obj/machinery/vending/engivend, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cdd" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cde" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = -32 - }, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/machinery/camera{ - c_tag = "Engineering - Power Monitoring"; - dir = 1; - name = "engineering camera" - }, -/obj/machinery/modular_computer/console/preset/engineering, -/turf/open/floor/plasteel/vault, -/area/engine/engineering) -"cdf" = ( -/obj/machinery/light, -/obj/machinery/computer/station_alert, -/turf/open/floor/plasteel/vault, -/area/engine/engineering) -"cdg" = ( -/obj/machinery/computer/atmos_alert, -/obj/structure/sign/nosmoking_1{ - pixel_x = 28; - pixel_y = -28 - }, -/turf/open/floor/plasteel/vault, -/area/engine/engineering) -"cdh" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"cdi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cdj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port) -"cdk" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/port) -"cdl" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/wood, -/area/library) -"cdm" = ( -/obj/structure/chair/office/dark, -/turf/open/floor/wood, -/area/library) -"cdn" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/wood, -/area/library) -"cdo" = ( -/obj/machinery/bookbinder, -/turf/open/floor/wood, -/area/library) -"cdp" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/structure/bookcase/random, -/turf/open/floor/wood, -/area/library) -"cdq" = ( -/obj/structure/chair/comfy/brown, -/obj/effect/landmark/start/assistant, -/turf/open/floor/wood, -/area/library) -"cdr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/library) -"cds" = ( -/obj/machinery/photocopier, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/library) -"cdt" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/structure/bookcase/manuals/research_and_development, -/obj/machinery/camera{ - c_tag = "Library"; - dir = 2; - name = "library camera" - }, -/turf/open/floor/wood, -/area/library) -"cdu" = ( -/obj/structure/chair/comfy/brown, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/turf/open/floor/wood, -/area/library) -"cdv" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/wood, -/area/library) -"cdw" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopline"; - name = "Queue Shutters" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/loadingarea{ - dir = 4 - }, -/area/hallway/primary/central) -"cdx" = ( -/obj/machinery/computer/security/mining, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/crew_quarters/heads/hop) -"cdy" = ( -/obj/structure/chair/office/dark, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/landmark/start/head_of_personnel, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"cdz" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"cdA" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"cdB" = ( -/obj/machinery/telecomms/bus/preset_four, -/turf/open/floor/plasteel/brown/telecomms{ - dir = 9 - }, -/area/tcommsat/server) -"cdC" = ( -/obj/machinery/telecomms/processor/preset_four, -/turf/open/floor/plasteel/green/side/telecomms{ - dir = 5 - }, -/area/tcommsat/server) -"cdD" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 5 - }, -/area/tcommsat/server) -"cdF" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 5 - }, -/area/tcommsat/server) -"cdG" = ( -/obj/machinery/telecomms/processor/preset_two, -/turf/open/floor/plasteel/brown/telecomms{ - dir = 9 - }, -/area/tcommsat/server) -"cdH" = ( -/obj/machinery/telecomms/bus/preset_two, -/turf/open/floor/plasteel/neutral/side/telecomms{ - dir = 5 - }, -/area/tcommsat/server) -"cdI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Emergency Escape"; - req_access = null; - req_access_txt = "20" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/captain/private) -"cdJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) -"cdK" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"cdL" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"cdM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/courtroom) -"cdN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/security/courtroom) -"cdO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/security/courtroom) -"cdP" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/security/courtroom) -"cdQ" = ( -/obj/structure/table/wood, -/obj/item/gavelblock, -/obj/item/gavelhammer, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/blue/side{ - dir = 9 - }, -/area/security/courtroom) -"cdR" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 1 - }, -/area/security/courtroom) -"cdS" = ( -/turf/open/floor/plasteel/blue/side{ - dir = 1 - }, -/area/security/courtroom) -"cdT" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/structure/cable/white, -/obj/machinery/power/apc{ - dir = 8; - name = "Law Office APC"; - areastring = "/area/lawoffice"; - pixel_x = -26; - pixel_y = 3 - }, -/obj/effect/landmark/start/lawyer, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/wood, -/area/lawoffice) -"cdU" = ( -/obj/structure/table/wood, -/obj/machinery/requests_console{ - department = "Law Office"; - departmentType = 0; - name = "'Law Office RC"; - pixel_y = -64 - }, -/obj/item/folder/blue{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/folder/red, -/obj/item/stamp/law, -/turf/open/floor/plasteel/grimy, -/area/lawoffice) -"cdV" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/grimy, -/area/lawoffice) -"cdW" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/grimy, -/area/lawoffice) -"cdX" = ( -/obj/machinery/photocopier, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/camera{ - c_tag = "Lawyer's Office"; - dir = 8; - name = "security camera" - }, -/turf/open/floor/wood, -/area/lawoffice) -"cdZ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Security - Brig Desk"; - dir = 1; - name = "security camera" - }, -/turf/open/floor/plasteel/red/side, -/area/security/brig) -"cea" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/brig) -"ceb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Security Desk"; - req_access_txt = "63" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/brig) -"cec" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner, -/area/security/brig) -"ced" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side, -/area/security/brig) -"cee" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side, -/area/security/brig) -"cef" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side, -/area/security/brig) -"ceg" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/brig) -"ceh" = ( -/obj/structure/table/reinforced, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/item/device/radio{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/device/radio{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/device/radio, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/brig) -"cei" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/brig) -"cek" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/brig) -"cel" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/machinery/light, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red/side, -/area/security/brig) -"cem" = ( -/obj/machinery/vending/security, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red/side, -/area/security/brig) -"cen" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/red/side, -/area/security/brig) -"ceo" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/machinery/ai_status_display{ - pixel_y = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/brig) -"cep" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "aiuploadwindow"; - name = "AI Upload Lockdown Door" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai_upload) -"ceq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai_upload) -"cer" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai_upload) -"ces" = ( -/obj/machinery/computer/upload/ai, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai_upload) -"cet" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai_upload) -"ceu" = ( -/obj/machinery/computer/upload/borg, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai_upload) -"cev" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai_upload) -"cew" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai_upload) -"cex" = ( -/obj/structure/lattice, -/obj/machinery/camera/emp_proof{ - c_tag = "Containment - Fore Port"; - dir = 4; - network = list("Singularity") - }, -/turf/open/space, -/area/space) -"cey" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/space, -/area/space) -"cez" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/space, -/area/space) -"ceA" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/space, -/area/space) -"ceB" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/space, -/area/space) -"ceC" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/engineering) -"ceD" = ( -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"ceE" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "engpa"; - name = "Engineering Chamber Shutters" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/engine/engineering) -"ceF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ceG" = ( -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel/neutral, -/area/engine/engineering) -"ceH" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/engineering_guide{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/book/manual/engineering_particle_accelerator, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ceI" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/book/manual/wiki/engineering_construction{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/book/manual/engineering_singularity_safety, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ceJ" = ( -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel/yellow/side{ - dir = 4 - }, -/area/engine/engineering) -"ceK" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/engine/engineering) -"ceL" = ( -/turf/open/floor/plasteel/yellow/side{ - dir = 8 - }, -/area/engine/engineering) -"ceM" = ( -/turf/open/floor/plasteel/neutral, -/area/engine/engineering) -"ceN" = ( -/obj/machinery/vending/tool, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ceO" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port) -"ceP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port) -"ceQ" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/wood, -/area/library) -"ceR" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen, -/turf/open/floor/wood, -/area/library) -"ceS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/library) -"ceT" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/grimy, -/area/library) -"ceU" = ( -/obj/machinery/door/airlock/glass{ - name = "Library Access" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/library) -"ceV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"ceW" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Central Hallway - Head of Personnel Line"; - dir = 8; - name = "hallway camera" - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) -"ceY" = ( -/obj/structure/table/wood, -/obj/machinery/keycard_auth{ - pixel_x = -26 - }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/hop) -"ceZ" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/item/folder/blue, -/obj/item/pen, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"cfa" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hop) -"cfb" = ( -/obj/machinery/holopad, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hop) -"cfd" = ( -/obj/machinery/telecomms/server/presets/supply, -/turf/open/floor/plasteel/brown/telecomms{ - dir = 9 - }, -/area/tcommsat/server) -"cfe" = ( -/obj/machinery/telecomms/server/presets/service, -/turf/open/floor/plasteel/green/side/telecomms{ - dir = 6 - }, -/area/tcommsat/server) -"cff" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/command{ - cyclelinkeddir = 2; - name = "Telecomms Server Room"; - req_access = null; - req_access_txt = "61" - }, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 5 - }, -/area/tcommsat/server) -"cfg" = ( -/obj/machinery/telecomms/server/presets/engineering, -/turf/open/floor/plasteel/brown/telecomms{ - dir = 9 - }, -/area/tcommsat/server) -"cfh" = ( -/obj/machinery/telecomms/server/presets/common, -/turf/open/floor/plasteel/neutral/side/telecomms{ - dir = 5 - }, -/area/tcommsat/server) -"cfi" = ( -/turf/closed/wall/r_wall, -/area/teleporter) -"cfj" = ( -/obj/machinery/shieldwallgen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/teleporter) -"cfk" = ( -/turf/closed/wall, -/area/teleporter) -"cfl" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/camera/motion{ - c_tag = "Bridge - Captain's Emergency Escape"; - dir = 4; - name = "command camera"; - network = list("SS13") - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/blue/side{ - dir = 9 - }, -/area/teleporter) -"cfm" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/teleporter) -"cfn" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/teleporter) -"cfo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/teleporter) -"cfp" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/blue/corner{ - dir = 4 - }, -/area/teleporter) -"cfq" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) -"cfr" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/courtroom) -"cfs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"cft" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"cfu" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"cfv" = ( -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"cfw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Courtroom"; - req_access_txt = "42" - }, -/obj/effect/turf_decal/bot, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/security/courtroom) -"cfx" = ( -/obj/item/device/radio/beacon, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/security/courtroom) -"cfy" = ( -/obj/machinery/holopad, -/obj/effect/landmark/start/lawyer, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/courtroom) -"cfz" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/security/courtroom) -"cfA" = ( -/obj/structure/table/wood, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = -32 - }, -/obj/item/folder/yellow{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/folder/blue, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/blue/side{ - dir = 8 - }, -/area/security/courtroom) -"cfB" = ( -/obj/structure/chair{ - dir = 8; - name = "Judge" - }, -/turf/open/floor/plasteel/neutral, -/area/security/courtroom) -"cfC" = ( -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/camera{ - c_tag = "Courtroom - Center"; - dir = 8; - name = "security camera" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/security/courtroom) -"cfD" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26 - }, -/turf/open/floor/wood, -/area/lawoffice) -"cfE" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/turf/open/floor/wood, -/area/lawoffice) -"cfG" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/lawoffice) -"cfH" = ( -/obj/structure/rack, -/obj/item/storage/briefcase{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/secure/briefcase, -/turf/open/floor/wood, -/area/lawoffice) -"cfI" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/security/brig) -"cfJ" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Shooting Range"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"cfK" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/security/brig) -"cfL" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"cfM" = ( -/obj/structure/table/reinforced, -/obj/item/aiModule/reset, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/ai_upload) -"cfN" = ( -/obj/machinery/status_display{ - pixel_x = -32; - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai_upload) -"cfO" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai_upload) -"cfP" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai_upload) -"cfQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai_upload) -"cfR" = ( -/obj/machinery/status_display{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai_upload) -"cfS" = ( -/obj/structure/table/reinforced, -/obj/item/aiModule/supplied/quarantine, -/obj/item/device/radio/intercom{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "AI Intercom"; - pixel_x = 28 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/ai_upload) -"cfT" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/space, -/area/space) -"cfU" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space) -"cfV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/space) -"cfW" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/space) -"cfX" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/space) -"cfY" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "engpa"; - name = "Engineering Chamber Shutters" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/engine/engineering) -"cfZ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cga" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/neutral, -/area/engine/engineering) -"cgb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral, -/area/engine/engineering) -"cgc" = ( -/turf/open/floor/plasteel/yellow/side{ - dir = 4 - }, -/area/engine/engineering) -"cgd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cge" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 8 - }, -/area/engine/engineering) -"cgf" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel/neutral, -/area/engine/engineering) -"cgg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Engine Room APC"; - areastring = "/area/engine/engineering"; - pixel_x = 26 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cgh" = ( -/obj/machinery/shieldgen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cgi" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port) -"cgj" = ( -/obj/structure/rack, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cgk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cgl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/maintenance/port) -"cgm" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/wood, -/area/library) -"cgn" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/library) -"cgo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/library) -"cgp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/library) -"cgq" = ( -/obj/effect/landmark/lightsout, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/library) -"cgr" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/library) -"cgs" = ( -/obj/machinery/door/airlock/glass{ - name = "Library Access" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/library) -"cgt" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"cgu" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hop) -"cgv" = ( -/obj/structure/bed/dogbed/ian, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/mob/living/simple_animal/pet/dog/corgi/Ian, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"cgw" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 8 - }, -/area/tcommsat/server) -"cgx" = ( -/obj/structure/sign/electricshock{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 8 - }, -/area/tcommsat/server) -"cgz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/teleporter) -"cgA" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Teleporter Maintenance"; - req_access_txt = "17" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/teleporter) -"cgB" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/sign/securearea{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"cgC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) -"cgD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Courtroom" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"cgE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"cgF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"cgG" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"cgH" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"cgI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/courtroom) -"cgJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/security/courtroom) -"cgK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/security/courtroom) -"cgL" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/security/courtroom) -"cgM" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 10 - }, -/area/security/courtroom) -"cgN" = ( -/obj/structure/table/wood, -/obj/item/storage/briefcase{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/secure/briefcase, -/turf/open/floor/plasteel/blue/side, -/area/security/courtroom) -"cgO" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/blue/side, -/area/security/courtroom) -"cgP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/lawoffice) -"cgQ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Law Office Maintenance"; - req_access_txt = "38" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cgR" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/maintenance/starboard) -"cgS" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cgT" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cgU" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/item/crowbar/red, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cgV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cgW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/maintenance/starboard) -"cgX" = ( -/turf/closed/wall, -/area/security/range) -"cgY" = ( -/obj/item/stack/rods{ - amount = 50 - }, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/target, -/obj/item/target/syndicate, -/obj/item/target/alien, -/obj/item/target/clown, -/obj/structure/closet/crate/secure{ - desc = "A secure crate containing various materials for building a customised test-site."; - name = "Test Site Materials Crate"; - req_access_txt = "63" - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 32 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light_switch{ - pixel_x = -36 - }, -/turf/open/floor/plasteel, -/area/security/range) -"cgZ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/range) -"cha" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/range) -"chb" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/range) -"chc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/security/range) -"chd" = ( -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/range) -"che" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/security/range) -"chf" = ( -/turf/open/floor/plating, -/area/security/range) -"chg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/security/range) -"chh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/security/range) -"chi" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/security/range) -"chj" = ( -/obj/structure/table/reinforced, -/obj/item/aiModule/supplied/freeform, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/ai_upload) -"chk" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/flasher{ - pixel_x = -26; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai_upload) -"chl" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai_upload) -"chm" = ( -/obj/machinery/flasher{ - pixel_x = 26; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai_upload) -"chn" = ( -/obj/structure/table/reinforced, -/obj/item/aiModule/core/full/drone{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/aiModule/core/full/reporter, -/obj/item/aiModule/core/full/liveandletlive{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/ai_upload) -"cho" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/space) -"chs" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space) -"cht" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "engpa"; - name = "Engineering Chamber Shutters" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/engine/engineering) -"chu" = ( -/obj/structure/rack, -/obj/item/crowbar, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/stack/cable_coil/white, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"chv" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/engineering) -"chw" = ( -/obj/structure/rack, -/obj/machinery/button/door{ - id = "engpa"; - name = "Engineering Chamber Shutters Control"; - pixel_y = -26; - req_access_txt = "11" - }, -/obj/item/clothing/gloves/color/black, -/obj/item/wrench, -/obj/item/clothing/glasses/meson/engine, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"chx" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"chy" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"chz" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/obj/item/storage/backpack/satchel/eng, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/engineering) -"chA" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/engineering) -"chC" = ( -/obj/machinery/shieldgen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port) -"chD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/maintenance/port) -"chE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"chF" = ( -/obj/machinery/door/airlock/maintenance_hatch/abandoned{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"chG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port) -"chH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"chI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"chJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"chK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"chL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port) -"chM" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"chN" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library) -"chO" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/grimy, -/area/library) -"chP" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/library) -"chQ" = ( -/turf/open/floor/wood, -/area/library) -"chR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/library) -"chS" = ( -/obj/machinery/holopad, -/turf/open/floor/wood, -/area/library) -"chU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) -"chV" = ( -/obj/structure/dresser, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hop) -"chW" = ( -/obj/structure/filingcabinet/medical, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hop) -"chX" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"chY" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hop) -"chZ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hop) -"cia" = ( -/obj/machinery/ai_status_display{ - pixel_x = 32 - }, -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"cib" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/tcommsat/server) -"cic" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - cyclelinkeddir = 1; - name = "Telecomms Server Room"; - req_access = null; - req_access_txt = "61" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tcommsat/server) -"cid" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/loadingarea, -/area/teleporter) -"cie" = ( -/turf/open/floor/plasteel/loadingarea, -/area/teleporter) -"cif" = ( -/obj/structure/table, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/teleporter) -"cig" = ( -/obj/structure/table, -/obj/item/hand_tele, -/obj/machinery/power/apc/highcap/ten_k{ - dir = 1; - name = "Teleporter APC"; - areastring = "/area/teleporter"; - pixel_y = 28 - }, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/teleporter) -"cih" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/teleporter) -"cii" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/teleporter) -"cij" = ( -/obj/machinery/button/door{ - id = "teleporterhubshutters"; - name = "Teleporter Shutters"; - pixel_y = 26 - }, -/obj/machinery/bluespace_beacon, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"cik" = ( -/obj/machinery/teleport/hub, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/teleporter) -"cil" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "teleporterhubshutters"; - name = "Teleporter Shutters" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"cim" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"cin" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) -"cio" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"cip" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"ciq" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/pen, -/turf/open/floor/plasteel/neutral/side{ - dir = 10; - heat_capacity = 1e+006 - }, -/area/security/courtroom) -"cir" = ( -/obj/structure/table/wood, -/obj/item/device/radio/intercom{ - name = "Station Intercom" - }, -/turf/open/floor/plasteel/neutral/side, -/area/security/courtroom) -"cis" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral/side, -/area/security/courtroom) -"cit" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side, -/area/security/courtroom) -"ciu" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/pen, -/turf/open/floor/plasteel/green/side{ - dir = 8 - }, -/area/security/courtroom) -"civ" = ( -/obj/structure/chair{ - dir = 8; - name = "Judge" - }, -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/neutral, -/area/security/courtroom) -"ciw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/effect/landmark/blobstart, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 9 - }, -/area/maintenance/starboard) -"cix" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/maintenance/starboard) -"ciy" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"ciz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j1" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"ciA" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"ciB" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"ciC" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"ciD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/mob/living/simple_animal/cockroach, -/turf/open/floor/plating, -/area/maintenance/starboard) -"ciE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/maintenance/starboard) -"ciF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"ciG" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"ciH" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Security Maintenance"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"ciI" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/range) -"ciJ" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/security/range) -"ciK" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/range) -"ciL" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/window/brigdoor/westright{ - name = "Shooting Range"; - req_access_txt = "63" - }, -/turf/open/floor/plating, -/area/security/range) -"ciM" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/security/range) -"ciN" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/security/range) -"ciO" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/item/target/syndicate, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/range) -"ciP" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/range) -"ciQ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "AI Satellite - Aft Port"; - dir = 8; - name = "ai camera"; - network = list("Sat"); - start_active = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"ciR" = ( -/obj/structure/cable/white, -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/power/apc{ - dir = 2; - name = "AI Upload Access APC"; - areastring = "/area/ai_monitored/turret_protected/ai_upload"; - pixel_y = -27 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai_upload) -"ciS" = ( -/obj/machinery/porta_turret/ai, -/obj/structure/sign/electricshock{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/ai_upload) -"ciT" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/table/reinforced, -/obj/item/twohanded/required/kirbyplants/photosynthetic{ - pixel_y = 10 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai_upload) -"ciU" = ( -/obj/machinery/porta_turret/ai, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/ai_upload) -"ciV" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/light, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/ai_monitored/turret_protected/ai_upload) -"ciW" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "AI Satellite - Aft Starboard"; - dir = 4; - name = "ai camera"; - network = list("Sat"); - start_active = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"ciX" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/space, -/area/space) -"ciY" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/space) -"ciZ" = ( -/obj/structure/sign/radiation, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cja" = ( -/obj/machinery/status_display, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cjb" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "engpa"; - name = "Engineering Chamber Shutters" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cjc" = ( -/obj/machinery/requests_console{ - department = "Chapel Office"; - departmentType = 0; - name = "Chapel RC"; - pixel_y = -32 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cjd" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical, -/obj/item/device/flashlight, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cje" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/engine/engineering) -"cjf" = ( -/turf/closed/wall/r_wall, -/area/maintenance/port) -"cjg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/port) -"cjh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cji" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/library) -"cjj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/bookcase/random/fiction, -/turf/open/floor/wood, -/area/library) -"cjk" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/library) -"cjl" = ( -/obj/structure/bookcase/random/reference, -/turf/open/floor/wood, -/area/library) -"cjm" = ( -/obj/structure/bookcase/manuals/medical, -/turf/open/floor/wood, -/area/library) -"cjn" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor/wood, -/area/library) -"cjo" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/library) -"cjp" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/donut_box, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/grimy, -/area/library) -"cjq" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen, -/turf/open/floor/plasteel/grimy, -/area/library) -"cjr" = ( -/obj/structure/table/wood, -/turf/open/floor/plasteel/grimy, -/area/library) -"cjs" = ( -/obj/structure/table/wood, -/obj/item/device/camera_film{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/device/camera_film, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/grimy, -/area/library) -"cjt" = ( -/obj/structure/bed, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/item/bedsheet/hop, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hop) -"cju" = ( -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = 26 - }, -/obj/effect/landmark/start/head_of_personnel, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hop) -"cjv" = ( -/obj/machinery/door/airlock/command{ - name = "Head of Personnel's Quarters"; - req_access = null; - req_access_txt = "57" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"cjw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"cjx" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hop) -"cjy" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hop) -"cjz" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hop) -"cjA" = ( -/obj/structure/table/wood, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26 - }, -/obj/item/clipboard, -/obj/item/toy/figure/hop{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/toy/figure/ian, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"cjB" = ( -/turf/closed/wall, -/area/tcommsat/server) -"cjC" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1; - min_temperature = 80; - on = 1; - target_temperature = 80 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/tcommsat/server) -"cjD" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/tcommsat/server) -"cjE" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/tcommsat/server) -"cjF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/landmark/xeno_spawn, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/tcommsat/server) -"cjG" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1; - min_temperature = 80; - on = 1; - target_temperature = 80 - }, -/obj/machinery/camera{ - c_tag = "Telecomms - Cooling Room"; - dir = 8; - name = "telecomms camera"; - network = list("SS13","tcomm") - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/tcommsat/server) -"cjH" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/emergency, -/obj/item/wrench, -/obj/item/crowbar, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/teleporter) -"cjI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/neutral, -/area/teleporter) -"cjJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/teleporter) -"cjK" = ( -/obj/machinery/holopad, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/teleporter) -"cjL" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/plasteel/neutral, -/area/teleporter) -"cjM" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/plasteel/neutral, -/area/teleporter) -"cjN" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"cjO" = ( -/obj/machinery/teleport/station, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/teleporter) -"cjP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Central Hallway - Starboard"; - dir = 8; - name = "hallway camera" - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) -"cjQ" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"cjR" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"cjS" = ( -/obj/structure/chair{ - dir = 1; - name = "Defense" - }, -/turf/open/floor/plasteel/green/side{ - dir = 10 - }, -/area/security/courtroom) -"cjT" = ( -/obj/structure/chair{ - dir = 1; - name = "Defense" - }, -/turf/open/floor/plasteel/green/side{ - dir = 6 - }, -/area/security/courtroom) -"cjU" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/security/courtroom) -"cjV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/neutral, -/area/security/courtroom) -"cjW" = ( -/turf/open/floor/plasteel/neutral, -/area/security/courtroom) -"cjX" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/security/courtroom) -"cjY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cjZ" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"cka" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"ckb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/starboard) -"ckc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/starboard) -"ckd" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 6 - }, -/area/maintenance/starboard) -"cke" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"ckf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"ckg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/starboard) -"ckh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cki" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/range) -"ckj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc{ - dir = 8; - name = "Shooting Range APC"; - areastring = "/area/security/range"; - pixel_x = -26 - }, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/range) -"ckk" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/security/range) -"ckl" = ( -/obj/structure/table/reinforced, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/item/gun/energy/laser/practice{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/gun/energy/laser/practice, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/ears/earmuffs, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/range) -"ckm" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/range) -"ckn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/security/range) -"cko" = ( -/obj/structure/sign/securearea{ - pixel_y = -32 - }, -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Security - Shooting Range"; - dir = 1; - name = "security camera" - }, -/turf/open/floor/plating, -/area/security/range) -"ckp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/security/range) -"ckq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/security/range) -"ckr" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/security/range) -"cks" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/security/range) -"ckt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai_upload) -"cku" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai_upload) -"ckv" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/engine/engineering) -"ckw" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"ckx" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cky" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"ckz" = ( -/obj/machinery/button/door{ - id = "engpa"; - name = "Engineering Chamber Shutters Control"; - pixel_y = 26; - req_access_txt = "11" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"ckA" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/toy/figure/engineer, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ckB" = ( -/obj/structure/table/reinforced, -/obj/item/airlock_painter, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ckC" = ( -/obj/structure/sign/securearea, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"ckD" = ( -/obj/structure/closet/crate, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/crowbar/red, -/obj/item/stack/sheet/mineral/plasma{ - amount = 20 - }, -/obj/item/device/gps/engineering{ - gpstag = "ENG0" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ckE" = ( -/obj/machinery/shieldgen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ckF" = ( -/obj/machinery/shieldgen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ckG" = ( -/obj/machinery/field/generator, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ckH" = ( -/obj/machinery/shieldwallgen, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port) -"ckI" = ( -/obj/machinery/shieldwallgen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port) -"ckJ" = ( -/obj/structure/tank_dispenser, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port) -"ckK" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port) -"ckL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port) -"ckM" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Library APC"; - areastring = "/area/library"; - pixel_x = -26; - pixel_y = 3 - }, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/turf/open/floor/wood, -/area/library) -"ckN" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/wood, -/area/library) -"ckO" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/grimy, -/area/library) -"ckP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library) -"ckQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/library) -"ckR" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/librarian, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/library) -"ckS" = ( -/turf/open/floor/carpet, -/area/library) -"ckT" = ( -/obj/structure/table/wood, -/obj/machinery/computer/libraryconsole/bookmanagement, -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/grimy, -/area/library) -"ckU" = ( -/obj/structure/table/wood, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26 - }, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hop) -"ckV" = ( -/obj/structure/closet/secure_closet/hop, -/obj/item/clothing/suit/ianshirt, -/obj/item/bedsheet/ian, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hop) -"ckW" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/crew_quarters/heads/hop) -"ckX" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"ckY" = ( -/obj/machinery/disposal/bin, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"ckZ" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"cla" = ( -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = -26 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"clb" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"clc" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/tcommsat/server) -"cld" = ( -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/tcommsat/server) -"cle" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/tcommsat/server) -"clf" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/tcommsat/server) -"clg" = ( -/obj/structure/table, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/wrench, -/obj/item/screwdriver{ - pixel_y = 5 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/tcommsat/server) -"clh" = ( -/obj/structure/rack, -/obj/item/tank/internals/oxygen, -/obj/item/device/radio, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/teleporter) -"cli" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/teleporter) -"clj" = ( -/obj/machinery/light_switch{ - pixel_x = -7; - pixel_y = -26 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Bridge - Teleporter"; - dir = 1; - name = "command camera" - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/teleporter) -"clk" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/teleporter) -"cll" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/teleporter) -"clm" = ( -/obj/machinery/light, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"cln" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"clo" = ( -/obj/machinery/computer/teleporter, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/teleporter) -"clp" = ( -/obj/structure/table, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"clq" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"clr" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/neutral/side, -/area/security/courtroom) -"cls" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel/neutral/side, -/area/security/courtroom) -"clt" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/neutral/side, -/area/security/courtroom) -"clu" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral/side, -/area/security/courtroom) -"clv" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Courtroom APC"; - areastring = "/area/security/courtroom"; - pixel_x = 26 - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/neutral/side, -/area/security/courtroom) -"clw" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"clx" = ( -/turf/closed/wall, -/area/crew_quarters/locker) -"cly" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/starboard) -"clz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"clA" = ( -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Security" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/range) -"clB" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Security Maintenance"; - req_access_txt = "63" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/range) -"clC" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/range) -"clD" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"clE" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/space, -/area/space) -"clF" = ( -/obj/structure/lattice/catwalk, -/obj/structure/window/reinforced, -/turf/open/space, -/area/space) -"clG" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/space, -/area/space) -"clH" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/lattice, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"clJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/space) -"clL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/space) -"clM" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/engine/engineering) -"clN" = ( -/turf/open/floor/plating, -/area/engine/engineering) -"clP" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/engine/engineering) -"clQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"clR" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"clS" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "engpa"; - name = "Engineering Chamber Shutters" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"clT" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"clU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"clV" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/yellow, -/area/engine/engineering) -"clW" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"clX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"clY" = ( -/obj/machinery/door/poddoor{ - id = "engstorage"; - name = "Engineering Secure Storage Lockdown" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"clZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cma" = ( -/obj/machinery/shieldgen, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cmb" = ( -/obj/machinery/field/generator, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cmc" = ( -/obj/machinery/field/generator, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cmd" = ( -/obj/machinery/shieldwallgen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cme" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cmf" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cmg" = ( -/obj/structure/sign/securearea, -/turf/closed/wall/r_wall, -/area/maintenance/port) -"cmh" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"cmi" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/bookcase/random/fiction, -/turf/open/floor/wood, -/area/library) -"cmj" = ( -/obj/structure/bookcase/random/fiction, -/turf/open/floor/wood, -/area/library) -"cmk" = ( -/obj/structure/bookcase/random/adult, -/turf/open/floor/wood, -/area/library) -"cml" = ( -/obj/structure/table/wood, -/obj/item/storage/briefcase, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/library) -"cmm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/library) -"cmn" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/library) -"cmo" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/library) -"cmp" = ( -/obj/machinery/libraryscanner, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/grimy, -/area/library) -"cmq" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hop) -"cmr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hopblast"; - name = "HoP Blast door" - }, -/obj/structure/cable/white, -/turf/open/floor/plating, -/area/crew_quarters/heads/hop) -"cms" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "hopblast"; - name = "HoP Blast door" - }, -/obj/machinery/door/airlock/command{ - name = "Head of Personnel's Office"; - req_access = null; - req_access_txt = "57" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"cmt" = ( -/turf/closed/wall/r_wall, -/area/hallway/secondary/command) -"cmu" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/command) -"cmv" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/hallway/secondary/command) -"cmw" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - cyclelinkeddir = 0; - name = "Telecomms Foyer"; - req_access = null; - req_access_txt = "61" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cmx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Teleport Access"; - req_access_txt = "17" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"cmy" = ( -/obj/machinery/button/door{ - id = "teleportershutters"; - name = "Teleporter Shutters"; - pixel_x = -26; - req_access_txt = "19" - }, -/obj/machinery/door/poddoor/shutters{ - id = "teleportershutters"; - name = "Teleporter Shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"cmz" = ( -/obj/machinery/door/poddoor/shutters{ - id = "teleportershutters"; - name = "Teleporter Shutters" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"cmA" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/teleporter) -"cmB" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/teleporter) -"cmC" = ( -/obj/structure/table, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"cmD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"cmE" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Courtroom - Aft"; - dir = 8; - name = "security camera" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"cmF" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/security/courtroom) -"cmG" = ( -/obj/structure/table/wood, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/vault, -/area/security/courtroom) -"cmH" = ( -/obj/structure/table/wood, -/obj/item/device/radio/intercom{ - name = "Station Intercom" - }, -/turf/open/floor/plasteel/vault, -/area/security/courtroom) -"cmI" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/folder, -/turf/open/floor/plasteel/vault, -/area/security/courtroom) -"cmJ" = ( -/obj/structure/table/wood, -/obj/item/folder/yellow, -/obj/item/pen, -/turf/open/floor/plasteel/vault, -/area/security/courtroom) -"cmL" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/locker) -"cmM" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/locker) -"cmN" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/crew_quarters/locker) -"cmO" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel/arrival{ - dir = 1 - }, -/area/crew_quarters/locker) -"cmP" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel/escape{ - dir = 1 - }, -/area/crew_quarters/locker) -"cmQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 9 - }, -/area/maintenance/starboard) -"cmR" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cmS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"cmT" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cmU" = ( -/turf/open/floor/plating, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard) -"cmV" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cmW" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"cmX" = ( -/turf/closed/wall, -/area/maintenance/starboard) -"cmY" = ( -/obj/structure/sign/electricshock{ - pixel_x = -32; - pixel_y = 32 - }, -/turf/open/space, -/area/space) -"cmZ" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/northleft, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"cna" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"cnb" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"cnc" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/northright, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"cnd" = ( -/obj/item/wrench, -/turf/open/floor/plating/airless, -/area/space) -"cne" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space) -"cnf" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space) -"cng" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cnh" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/engine/engineering) -"cnm" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cnn" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/camera{ - c_tag = "Engineering - Central"; - dir = 4; - name = "engineering camera" - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the singularity chamber."; - dir = 4; - layer = 4; - name = "Engine Containment Telescreen"; - network = list("Singularity"); - pixel_x = -30 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cno" = ( -/obj/effect/landmark/start/station_engineer, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/yellow, -/area/engine/engineering) -"cnp" = ( -/obj/machinery/holopad, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cnq" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/yellow, -/area/engine/engineering) -"cnr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cns" = ( -/obj/machinery/door/poddoor{ - id = "engstorage"; - name = "Engineering Secure Storage Lockdown" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cnt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cnu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cnv" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cnw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/sign/fire{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cnx" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cny" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cnz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cnA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cnB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/highsecurity{ - name = "Engineering Auxiliary Storage"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cnC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"cnD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port) -"cnE" = ( -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/wood, -/area/library) -"cnF" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen/blue{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/pen/red, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/window{ - dir = 8; - name = "Library Desk"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel/grimy, -/area/library) -"cnG" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/library) -"cnH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/library) -"cnI" = ( -/obj/structure/table/wood, -/obj/item/storage/bag/books, -/obj/item/device/taperecorder, -/obj/structure/noticeboard{ - dir = 8; - pixel_x = 32 - }, -/turf/open/floor/plasteel/grimy, -/area/library) -"cnJ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"cnK" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"cnL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Command Hallway" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cnM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/secondary/command) -"cnN" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/secondary/command) -"cnO" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/secondary/command) -"cnP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/secondary/command) -"cnQ" = ( -/obj/structure/sign/electricshock{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/secondary/command) -"cnR" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/secondary/command) -"cnS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Command Hall APC"; - areastring = "/area/hallway/secondary/command"; - pixel_y = 24 - }, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/secondary/command) -"cnT" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/hallway/secondary/command) -"cnU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Central Hallway - Center"; - dir = 2; - name = "hallway camera" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/secondary/command) -"cnV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/secondary/command) -"cnW" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/secondary/command) -"cnX" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/secondary/command) -"cnY" = ( -/obj/structure/sign/electricshock{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/secondary/command) -"cnZ" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/secondary/command) -"coa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cob" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"coc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cod" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cof" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) -"cog" = ( -/obj/machinery/vending/coffee, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"coh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"coj" = ( -/obj/machinery/door/airlock{ - name = "Jury"; - req_access_txt = "42" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"cok" = ( -/obj/structure/chair{ - dir = 1; - name = "Jury" - }, -/obj/machinery/ai_status_display{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"col" = ( -/obj/structure/chair{ - dir = 1; - name = "Jury" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"com" = ( -/obj/structure/chair{ - dir = 1; - name = "Jury" - }, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"con" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"coo" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/locker) -"cop" = ( -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/locker) -"coq" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Locker Room - Fore"; - dir = 2; - name = "dormitories camera" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/crew_quarters/locker) -"cor" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/crew_quarters/locker) -"cos" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/crew_quarters/locker) -"cot" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/crew_quarters/locker) -"cou" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/item/storage/pod{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/crew_quarters/locker) -"cov" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/maintenance/starboard) -"cow" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cox" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"coy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"coz" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"coA" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/maintenance/starboard) -"coB" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"coC" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/glass_security/abandoned{ - name = "Storage Closet"; - req_access_txt = "63" - }, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"coD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"coE" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard) -"coF" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"coG" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/aisat) -"coH" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"coI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/space) -"coK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/space) -"coN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/engine/engineering) -"coO" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/engine/engineering) -"coP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"coQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"coR" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"coS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/yellow, -/area/engine/engineering) -"coT" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/engine/engineering) -"coU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"coV" = ( -/obj/machinery/door/poddoor{ - id = "engstorage"; - name = "Engineering Secure Storage Lockdown" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"coW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"coX" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"coY" = ( -/obj/machinery/power/tesla_coil, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"coZ" = ( -/obj/machinery/power/emitter, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cpa" = ( -/obj/machinery/power/emitter, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cpb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cpc" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cpd" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cpe" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cpf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/port) -"cpg" = ( -/obj/structure/bookcase/random/nonfiction, -/turf/open/floor/wood, -/area/library) -"cph" = ( -/obj/machinery/light, -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/camera{ - c_tag = "Library - Aft"; - dir = 1; - name = "library camera" - }, -/turf/open/floor/wood, -/area/library) -"cpi" = ( -/obj/structure/table/wood, -/obj/item/storage/pill_bottle/dice, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/library) -"cpj" = ( -/obj/machinery/light, -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/light_switch{ - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/grimy, -/area/library) -"cpk" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/grimy, -/area/library) -"cpl" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/toy/figure/curator, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = -26 - }, -/turf/open/floor/plasteel/grimy, -/area/library) -"cpm" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"cpn" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) -"cpo" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Command Hallway" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cpp" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/secondary/command) -"cpq" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/secondary/command) -"cpr" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/secondary/command) -"cps" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Central Hallway - Center Port"; - dir = 1; - name = "hallway camera" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/secondary/command) -"cpt" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/secondary/command) -"cpu" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/secondary/command) -"cpv" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/secondary/command) -"cpw" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/secondary/command) -"cpx" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/sign/electricshock{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/secondary/command) -"cpy" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/blue/corner{ - dir = 1 - }, -/area/hallway/secondary/command) -"cpz" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/chair/comfy/black, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/blue/corner{ - dir = 1 - }, -/area/hallway/secondary/command) -"cpA" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/item/device/radio/beacon, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/blue/corner{ - dir = 1 - }, -/area/hallway/secondary/command) -"cpB" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/chair/comfy/black, -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/blue/corner{ - dir = 1 - }, -/area/hallway/secondary/command) -"cpC" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/table/wood, -/obj/item/storage/fancy/donut_box, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/blue/corner{ - dir = 1 - }, -/area/hallway/secondary/command) -"cpD" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/sign/electricshock{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/secondary/command) -"cpE" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/secondary/command) -"cpF" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/secondary/command) -"cpG" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/secondary/command) -"cpH" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/secondary/command) -"cpI" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/secondary/command) -"cpJ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Central Hallway - Center Starboard"; - dir = 1; - name = "hallway camera" - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/secondary/command) -"cpK" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/secondary/command) -"cpL" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"cpM" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"cpN" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: PRESSURIZED DOORS" - }, -/turf/closed/wall, -/area/security/courtroom) -"cpO" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/security/courtroom) -"cpP" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/locker) -"cpQ" = ( -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"cpR" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"cpS" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"cpT" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"cpU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/crew_quarters/locker) -"cpV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"cpW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"cpX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cpY" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cpZ" = ( -/obj/structure/table, -/obj/item/clothing/under/rank/security, -/obj/item/restraints/handcuffs, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, -/obj/machinery/power/apc{ - dir = 2; - name = "Starboard Maintenance APC"; - areastring = "/area/maintenance/starboard"; - pixel_y = -26 - }, -/obj/structure/cable/white, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cqa" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 - }, -/obj/item/clothing/shoes/jackboots, -/obj/item/device/radio, -/obj/item/storage/secure/briefcase, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cqb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/red/corner, -/area/maintenance/starboard) -"cqc" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cqd" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = -32 - }, -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/box/flashes, -/obj/effect/turf_decal/stripes/end, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cqe" = ( -/turf/closed/wall, -/area/crew_quarters/fitness/recreation) -"cqf" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/fitness/recreation) -"cqg" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"cqh" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"cqi" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/engine/engineering) -"cqj" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/engine/engineering) -"cqk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/engine/engineering) -"cql" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/camera/emp_proof{ - c_tag = "Containment - Particle Accelerator"; - dir = 1; - network = list("Singularity") - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/engine/engineering) -"cqm" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/engine/engineering) -"cqn" = ( -/obj/machinery/button/door{ - id = "engpa"; - name = "Engineering Chamber Shutters Control"; - pixel_y = -26; - req_access_txt = "11" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cqo" = ( -/obj/structure/table/reinforced, -/obj/item/tank/internals/plasma, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cqp" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/engine/engineering) -"cqq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cqr" = ( -/obj/structure/table/reinforced, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/machinery/cell_charger, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cqs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/freon, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cqt" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cqu" = ( -/obj/machinery/power/tesla_coil, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Engineering - Secure Storage"; - dir = 1; - name = "engineering camera" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cqv" = ( -/obj/machinery/power/emitter, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cqw" = ( -/obj/structure/rack, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cqx" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/item/electronics/apc, -/obj/item/electronics/airlock, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cqy" = ( -/obj/structure/table/reinforced, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/obj/item/clipboard, -/obj/item/folder/blue, -/obj/item/electronics/firelock, -/obj/item/stock_parts/console_screen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cqz" = ( -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil/white, -/obj/item/electronics/airalarm, -/obj/item/electronics/firealarm, -/obj/item/stock_parts/cell/high, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cqA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/port) -"cqB" = ( -/obj/machinery/door/airlock/glass{ - name = "Library Game Room" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/grimy, -/area/library) -"cqC" = ( -/obj/machinery/door/airlock/glass{ - name = "Library Game Room" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/grimy, -/area/library) -"cqD" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/library) -"cqE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/library) -"cqF" = ( -/obj/machinery/door/morgue{ - name = "Curator's Study"; - req_access_txt = "37" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library) -"cqG" = ( -/obj/structure/sign/directions/engineering{ - desc = "A direction sign, pointing out which way the Command department is."; - dir = 1; - icon_state = "direction_bridge"; - name = "command department" - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"cqH" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"cqI" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "E.V.A. Storage"; - req_access = null; - req_access_txt = "18" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"cqJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "E.V.A. Storage"; - req_access = null; - req_access_txt = "18" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"cqK" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/command) -"cqL" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/secondary/command) -"cqM" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/blue/corner{ - dir = 1 - }, -/area/hallway/secondary/command) -"cqN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/command) -"cqO" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/holopad, -/obj/effect/landmark/lightsout, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cqP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/command) -"cqQ" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/blue/corner, -/area/hallway/secondary/command) -"cqR" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/secondary/command) -"cqS" = ( -/turf/closed/wall/r_wall, -/area/gateway) -"cqT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/gateway) -"cqU" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Gateway Atrium"; - req_access_txt = "62" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/gateway) -"cqV" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cqW" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cqX" = ( -/obj/machinery/vending/cola/random, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cqY" = ( -/obj/structure/sign/directions/engineering{ - desc = "A direction sign, pointing out which way the Command department is."; - dir = 1; - icon_state = "direction_bridge"; - name = "command department" - }, -/turf/closed/wall/r_wall, -/area/gateway) -"cra" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"crb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/glass{ - name = "Starboard Auxiliary Hallway" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"crc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"crd" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"cre" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/hallway/primary/central) -"crf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"crg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"crh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Dormitory Hallway"; - dir = 2; - name = "hallway camera" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"cri" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"crj" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"crk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Lockerroom" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"crl" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/locker) -"crm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"crn" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"cro" = ( -/obj/structure/table, -/obj/item/storage/fancy/donut_box, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"crp" = ( -/obj/structure/table, -/obj/item/device/camera_film{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/device/camera_film, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"crq" = ( -/obj/structure/table, -/obj/item/device/camera, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"crr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"crs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"crt" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"cru" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard) -"crv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/starboard) -"crw" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard) -"crx" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/recreation) -"cry" = ( -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/recreation) -"crz" = ( -/obj/structure/table, -/obj/item/stack/sheet/cloth/ten, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/recreation) -"crA" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table, -/obj/item/clipboard, -/obj/item/folder/white, -/obj/item/pen, -/obj/machinery/camera{ - c_tag = "Recreation - Fore"; - dir = 2; - name = "recreation camera" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/crew_quarters/fitness/recreation) -"crB" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/crew_quarters/fitness/recreation) -"crC" = ( -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/crew_quarters/fitness/recreation) -"crD" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/crew_quarters/fitness/recreation) -"crE" = ( -/obj/structure/closet/masks, -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = 32 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/crew_quarters/fitness/recreation) -"crF" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/yellow, -/obj/item/storage/toolbox/electrical, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"crG" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/yellow, -/area/engine/engineering) -"crH" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"crI" = ( -/turf/closed/wall/r_wall, -/area/engine/storage) -"crJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"crK" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/black, -/area/library) -"crL" = ( -/obj/structure/easel, -/obj/item/canvas/twentythreeXnineteen, -/obj/item/canvas/twentythreeXtwentythree, -/obj/item/canvas/twentythreeXtwentythree, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library) -"crM" = ( -/obj/structure/easel, -/obj/item/canvas/nineteenXnineteen, -/obj/item/canvas/twentythreeXtwentythree, -/obj/item/canvas/twentythreeXtwentythree, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/turf/open/floor/plasteel/black, -/area/library) -"crN" = ( -/obj/structure/table/wood, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library) -"crO" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/candle_box{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/plasteel/black, -/area/library) -"crP" = ( -/obj/structure/closet/wardrobe/curator, -/turf/open/floor/plasteel/black, -/area/library) -"crQ" = ( -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library) -"crR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/black, -/area/library) -"crS" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library) -"crT" = ( -/obj/structure/bookcase{ - name = "Forbidden Knowledge" - }, -/turf/open/floor/plasteel/black, -/area/library) -"crU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"crV" = ( -/obj/item/stack/cable_coil, -/obj/item/device/multitool, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/storage/eva) -"crW" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"crX" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"crY" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"crZ" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "E.V.A. Storage APC"; - areastring = "/area/ai_monitored/storage/eva"; - pixel_y = 26 - }, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"csa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"csb" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"csc" = ( -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/obj/structure/table/reinforced, -/obj/machinery/camera{ - c_tag = "Bridge - E.V.A. Fore"; - dir = 2; - name = "command camera" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/storage/eva) -"csd" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/command) -"cse" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/secondary/command) -"csf" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/table/wood, -/obj/item/paper_bin, -/turf/open/floor/plasteel/blue/corner, -/area/hallway/secondary/command) -"csg" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/blue/corner, -/area/hallway/secondary/command) -"csh" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/blue/corner, -/area/hallway/secondary/command) -"csi" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/plasteel/blue/corner, -/area/hallway/secondary/command) -"csj" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/blue/corner, -/area/hallway/secondary/command) -"csk" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/secondary/command) -"csl" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/command) -"csm" = ( -/obj/structure/closet/secure_closet/exile, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/gateway) -"csn" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/highcap/ten_k{ - dir = 1; - name = "Gateway APC"; - areastring = "/area/gateway"; - pixel_y = 28 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/gateway) -"cso" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/gateway) -"csp" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/gateway) -"csq" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/rods{ - amount = 25 - }, -/obj/item/storage/toolbox/emergency, -/obj/item/device/flashlight, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/gateway) -"csr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"css" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"cst" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Starboard Auxiliary Hallway" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"csu" = ( -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"csv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"csw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"csx" = ( -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"csy" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"csz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"csA" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"csB" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/crew_quarters/locker) -"csC" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/crew_quarters/locker) -"csD" = ( -/obj/structure/table, -/obj/item/storage/crayons, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"csE" = ( -/obj/structure/table, -/obj/item/folder, -/obj/item/pen, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"csF" = ( -/obj/structure/table, -/obj/item/toy/cards/deck, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"csG" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"csH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"csI" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/closet/wardrobe/black, -/turf/open/floor/plasteel/neutral/corner, -/area/crew_quarters/locker) -"csJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/maintenance/starboard) -"csK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"csL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/starboard) -"csM" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"csN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"csO" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/recreation) -"csP" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"csQ" = ( -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"csR" = ( -/obj/structure/closet/athletic_mixed, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/crew_quarters/fitness/recreation) -"csV" = ( -/obj/machinery/power/rad_collector/anchored, -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"csW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "engpa"; - name = "Engineering Chamber Shutters" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/engine/engineering) -"csX" = ( -/obj/structure/rack, -/obj/item/crowbar, -/obj/item/wirecutters, -/obj/item/stack/cable_coil/white, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"csY" = ( -/obj/structure/rack, -/obj/machinery/button/door{ - id = "engpa"; - name = "Engineering Chamber Shutters Control"; - pixel_y = 26; - req_access_txt = "11" - }, -/obj/item/storage/belt/utility, -/obj/item/weldingtool, -/obj/item/clothing/head/welding, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"csZ" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cta" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = 26 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ctb" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ctc" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/electricshock{ - pixel_y = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/storage) -"ctd" = ( -/obj/machinery/suit_storage_unit/engine, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/storage) -"cte" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/obj/machinery/suit_storage_unit/engine, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/storage) -"ctf" = ( -/obj/machinery/suit_storage_unit/engine, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/storage) -"cth" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cti" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"ctj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/maintenance/port) -"ctk" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"ctl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port) -"ctm" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"ctn" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 6 - }, -/area/maintenance/port) -"cto" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/folder, -/obj/machinery/ai_status_display{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/black, -/area/library) -"ctp" = ( -/turf/open/floor/plasteel/grimy, -/area/library) -"ctq" = ( -/obj/structure/chair/office/dark, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/library) -"ctr" = ( -/obj/structure/chair/office/dark, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/library) -"cts" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/library) -"ctt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library) -"ctu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/black, -/area/library) -"ctv" = ( -/obj/structure/table/wood, -/obj/item/storage/briefcase{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/secure/briefcase, -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library) -"ctw" = ( -/obj/structure/destructible/cult/tome, -/obj/item/book/codex_gigas, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library) -"ctx" = ( -/obj/effect/landmark/revenantspawn, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/black, -/area/library) -"cty" = ( -/obj/structure/chair/comfy/black, -/obj/effect/landmark/start/librarian, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library) -"ctz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/black, -/area/library) -"ctA" = ( -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library) -"ctB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Central Hallway - Aft Port"; - dir = 4; - name = "hallway camera" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"ctC" = ( -/obj/item/stack/sheet/plasteel/twenty, -/obj/item/stack/sheet/rglass{ - amount = 30; - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/crowbar, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/storage/eva) -"ctD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"ctE" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"ctF" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"ctG" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"ctH" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"ctI" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"ctJ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"ctK" = ( -/obj/machinery/cell_charger, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/table/reinforced, -/obj/item/stock_parts/cell/high, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/storage/eva) -"ctL" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/ai_monitored/storage/eva) -"ctM" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/secondary/command) -"ctN" = ( -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/secondary/command) -"ctO" = ( -/turf/open/floor/plasteel/neutral/side, -/area/hallway/secondary/command) -"ctP" = ( -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/secondary/command) -"ctQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/secondary/command) -"ctR" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/gateway) -"ctS" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/gateway) -"ctT" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/gateway) -"ctU" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/gateway) -"ctV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/gateway) -"ctW" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/gateway) -"ctX" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/gateway) -"ctY" = ( -/obj/machinery/gateway{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 1 - }, -/area/gateway) -"ctZ" = ( -/obj/machinery/gateway{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/gateway) -"cua" = ( -/obj/machinery/gateway{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/gateway) -"cuc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) -"cud" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/glass{ - name = "Starboard Auxiliary Hallway" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cue" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) -"cuf" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) -"cug" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cuh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/hallway/primary/central) -"cui" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/hallway/primary/central) -"cuk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Lockerroom" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"cul" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/crew_quarters/locker) -"cum" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"cun" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"cuo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"cup" = ( -/obj/effect/landmark/lightsout, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"cuq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/junction, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"cur" = ( -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/closet/wardrobe/grey, -/turf/open/floor/plasteel/neutral/corner, -/area/crew_quarters/locker) -"cus" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cut" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/starboard) -"cuu" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cuv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/girder, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cuw" = ( -/obj/structure/rack, -/obj/item/wrench, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/starboard) -"cux" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/starboard) -"cuy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 6 - }, -/area/maintenance/starboard) -"cuz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/fitness/recreation) -"cuA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/recreation) -"cuB" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cuC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/weightlifter, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cuD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/crew_quarters/fitness/recreation) -"cuE" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/stacklifter, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cuF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cuG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/crew_quarters/fitness/recreation) -"cuH" = ( -/obj/structure/closet/boxinggloves, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/crew_quarters/fitness/recreation) -"cuI" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/space) -"cuJ" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/space) -"cuK" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/space) -"cuL" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating/airless, -/area/space) -"cuM" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "engpa"; - name = "Engineering Chamber Shutters" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/engine/engineering) -"cuN" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/neutral, -/area/engine/engineering) -"cuO" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/storage) -"cuP" = ( -/obj/structure/rack, -/obj/item/clothing/gloves/color/black, -/obj/item/wrench, -/obj/item/clothing/glasses/meson/engine, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch{ - pixel_x = -22; - pixel_y = 26 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/storage) -"cuQ" = ( -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/storage) -"cuR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/storage) -"cuS" = ( -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil/white{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil/white, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/effect/turf_decal/bot, -/obj/item/twohanded/rcl/pre_loaded, -/obj/item/twohanded/rcl/pre_loaded, -/turf/open/floor/plasteel, -/area/engine/storage) -"cuT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/port) -"cuU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"cuV" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/structure/sign/kiddieplaque/library{ - pixel_x = -32 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Library Backroom"; - dir = 4; - name = "library camera" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library) -"cuW" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/library) -"cuX" = ( -/obj/structure/table/wood, -/obj/item/device/paicard, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/library) -"cuY" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/library) -"cuZ" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/library) -"cva" = ( -/obj/effect/landmark/blobstart, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/black, -/area/library) -"cvb" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library) -"cvc" = ( -/obj/machinery/photocopier, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/black, -/area/library) -"cvd" = ( -/obj/structure/filingcabinet, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/black, -/area/library) -"cve" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library) -"cvf" = ( -/obj/machinery/light, -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/device/laser_pointer{ - pixel_x = 3 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = -26 - }, -/turf/open/floor/plasteel/black, -/area/library) -"cvg" = ( -/obj/structure/table/wood, -/obj/item/device/taperecorder, -/obj/item/device/camera, -/obj/machinery/ai_status_display{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library) -"cvh" = ( -/obj/machinery/photocopier, -/turf/open/floor/plasteel/black, -/area/library) -"cvi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"cvj" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Magboot Storage"; - pixel_x = -1; - req_access_txt = "19" - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/clothing/shoes/magboots{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots{ - pixel_x = 4; - pixel_y = -3 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/storage/eva) -"cvk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"cvl" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"cvm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"cvn" = ( -/obj/item/device/radio/beacon, -/turf/open/floor/plasteel/neutral, -/area/ai_monitored/storage/eva) -"cvo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"cvp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"cvq" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/storage/eva) -"cvr" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "corporatelounge"; - name = "Corporate Lounge Shutters" - }, -/turf/open/floor/plating, -/area/bridge/showroom/corporate) -"cvs" = ( -/turf/closed/wall/r_wall, -/area/bridge/showroom/corporate) -"cvt" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Corporate Lounge"; - req_access = null; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/bridge/showroom/corporate) -"cvu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Corporate Lounge"; - req_access = null; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/bridge/showroom/corporate) -"cvv" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/gateway) -"cvw" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/gateway) -"cvx" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/gateway) -"cvy" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/gateway) -"cvz" = ( -/obj/structure/table, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/item/clipboard, -/obj/item/paper/pamphlet/gateway, -/obj/item/paper/pamphlet/gateway, -/obj/item/paper/pamphlet/gateway, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/gateway) -"cvA" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/gateway) -"cvB" = ( -/obj/machinery/gateway{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/gateway) -"cvC" = ( -/obj/machinery/gateway/centerstation, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/black, -/area/gateway) -"cvD" = ( -/obj/machinery/gateway{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/gateway) -"cvE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Central Hallway - Dormitory Hallway"; - dir = 4; - name = "hallway camera" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"cvF" = ( -/turf/closed/wall, -/area/crew_quarters/toilet/restrooms) -"cvG" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock{ - name = "Primary Restroom" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/toilet/restrooms) -"cvH" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/crew_quarters/locker) -"cvI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"cvJ" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"cvK" = ( -/obj/structure/table, -/obj/item/toy/foamblade, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"cvL" = ( -/obj/structure/table, -/obj/item/storage/briefcase, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"cvM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"cvN" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"cvO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/closet/wardrobe/green, -/turf/open/floor/plasteel/neutral/corner, -/area/crew_quarters/locker) -"cvP" = ( -/turf/closed/wall, -/area/crew_quarters/dorms) -"cvQ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/recreation) -"cvR" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cvS" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/crew_quarters/fitness/recreation) -"cvT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/fitness/recreation) -"cvU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/punching_bag, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/fitness/recreation) -"cvV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/crew_quarters/fitness/recreation) -"cvW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cvX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/crew_quarters/fitness/recreation) -"cvY" = ( -/obj/structure/lattice, -/obj/machinery/camera/emp_proof{ - c_tag = "Containment - Aft Port"; - dir = 4; - network = list("Singularity") - }, -/turf/open/space, -/area/space) -"cvZ" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/space, -/area/space) -"cwa" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/space, -/area/space) -"cwb" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/space, -/area/space) -"cwc" = ( -/obj/machinery/power/rad_collector/anchored, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cwd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel/neutral, -/area/engine/engineering) -"cwe" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cwf" = ( -/obj/structure/table/reinforced, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cwg" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cwh" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/storage) -"cwi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/power/port_gen/pacman, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/storage) -"cwj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/storage) -"cwk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/yellow, -/area/engine/storage) -"cwl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral, -/area/engine/storage) -"cwm" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/shoes/magboots{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/shoes/magboots, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/storage) -"cwn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cwo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical, -/obj/item/device/flashlight, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cwp" = ( -/obj/structure/table/reinforced, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 6 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -6 - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port) -"cwq" = ( -/obj/structure/rack, -/obj/item/clothing/gloves/color/black, -/obj/item/wrench, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cwr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cws" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/turf/open/floor/plasteel/black, -/area/library) -"cwt" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/library) -"cwu" = ( -/obj/structure/table/wood, -/obj/item/storage/pill_bottle/dice, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/library) -"cwv" = ( -/obj/structure/table/wood, -/obj/item/toy/cards/deck/cas{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/toy/cards/deck/cas/black{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/library) -"cww" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/library) -"cwx" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library) -"cwy" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/black, -/area/library) -"cwz" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library) -"cwA" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"cwB" = ( -/obj/structure/closet/crate/rcd{ - pixel_y = 4 - }, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "RCD Storage"; - pixel_x = 1; - req_access_txt = "19" - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/storage/eva) -"cwC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"cwD" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"cwE" = ( -/obj/machinery/camera/motion{ - c_tag = "E.V.A. Storage"; - dir = 8; - name = "motion-sensitive command camera" - }, -/obj/machinery/requests_console{ - department = "E.V.A. Storage"; - departmentType = 0; - name = "E.V.A. RC"; - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"cwF" = ( -/turf/closed/wall, -/area/ai_monitored/storage/eva) -"cwG" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/showcase/mecha/marauder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/grimy, -/area/bridge/showroom/corporate) -"cwH" = ( -/obj/structure/bookcase, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/bridge/showroom/corporate) -"cwI" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/bridge/showroom/corporate) -"cwJ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/grimy, -/area/bridge/showroom/corporate) -"cwK" = ( -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Bridge - Corporate Lounge"; - dir = 2; - name = "command camera" - }, -/turf/open/floor/plasteel/vault{ - dir = 6 - }, -/area/bridge/showroom/corporate) -"cwL" = ( -/obj/structure/fireplace, -/turf/open/floor/plasteel/vault, -/area/bridge/showroom/corporate) -"cwM" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 10 - }, -/area/bridge/showroom/corporate) -"cwN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/bridge/showroom/corporate) -"cwO" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/showcase/machinery/implanter{ - layer = 2.7; - pixel_y = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/bridge/showroom/corporate) -"cwP" = ( -/obj/structure/rack, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/reagent_containers/syringe/charcoal, -/obj/machinery/vending/wallmed{ - name = "Emergency NanoMed"; - req_access_txt = "0"; - use_power = 0 - }, -/obj/machinery/camera{ - c_tag = "Bridge - Gateway Atrium"; - dir = 4; - name = "command camera" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/gateway) -"cwQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/gateway) -"cwR" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/gateway) -"cwS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/gateway) -"cwT" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/gateway) -"cwU" = ( -/turf/closed/wall, -/area/gateway) -"cwV" = ( -/obj/machinery/gateway{ - dir = 10 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/gateway) -"cwW" = ( -/obj/machinery/gateway, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/gateway) -"cwX" = ( -/obj/machinery/gateway{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Bridge - Gateway Chamber"; - dir = 8; - name = "command camera" - }, -/turf/open/floor/plasteel/vault{ - dir = 1 - }, -/area/gateway) -"cwY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"cwZ" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/item/soap/nanotrasen, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/toilet/restrooms) -"cxa" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/crew_quarters/toilet/restrooms) -"cxb" = ( -/obj/machinery/shower{ - dir = 8; - icon_state = "shower" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/crew_quarters/toilet/restrooms) -"cxc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/toilet/restrooms) -"cxd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = -10; - pixel_y = 26 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/toilet/restrooms) -"cxe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/crew_quarters/toilet/restrooms) -"cxf" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Primary Restroom APC"; - areastring = "/area/crew_quarters/toilet/restrooms"; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Primary Restroom"; - dir = 2; - name = "restroom camera" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/toilet/restrooms) -"cxg" = ( -/obj/structure/urinal{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/toilet/restrooms) -"cxh" = ( -/obj/structure/urinal{ - pixel_y = 28 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/toilet/restrooms) -"cxi" = ( -/obj/structure/urinal{ - pixel_y = 28 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/toilet/restrooms) -"cxj" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/crew_quarters/toilet/restrooms) -"cxk" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/closet/wardrobe/pjs, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/crew_quarters/locker) -"cxl" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"cxm" = ( -/obj/structure/chair/stool, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"cxn" = ( -/obj/structure/table, -/obj/item/folder, -/obj/item/pen, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"cxo" = ( -/obj/structure/table, -/obj/item/device/paicard, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"cxp" = ( -/obj/structure/table, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/item/toy/gun, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"cxq" = ( -/obj/structure/chair/stool, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"cxr" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"cxs" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Lockerroom APC"; - areastring = "/area/crew_quarters/locker"; - pixel_x = 26 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/closet/wardrobe/pink, -/turf/open/floor/plasteel/neutral/corner, -/area/crew_quarters/locker) -"cxt" = ( -/obj/structure/dresser, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/dorms) -"cxu" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/clothing/suit/jacket{ - desc = "All the class of a trenchcoat without the security fibers."; - icon_state = "greydet"; - name = "trenchcoat" - }, -/obj/item/clothing/suit/toggle/lawyer/black, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/item/clothing/head/fedora, -/obj/item/clothing/under/blacktango, -/obj/item/clothing/head/bowler, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/dorms) -"cxv" = ( -/obj/structure/table/wood, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26; - pixel_y = 26 - }, -/obj/item/reagent_containers/food/snacks/grown/poppy/geranium, -/obj/item/reagent_containers/food/snacks/grown/poppy/geranium, -/obj/item/reagent_containers/food/snacks/grown/poppy/geranium, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/dorms) -"cxw" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"cxx" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"cxy" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/clothing/suit/jacket/letterman_nanotrasen, -/obj/item/clothing/suit/toggle/lawyer, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26; - pixel_y = 26 - }, -/obj/item/clothing/under/kilt, -/obj/item/clothing/head/beret, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"cxz" = ( -/obj/structure/dresser, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"cxA" = ( -/obj/structure/bed, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/bedsheet/red, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"cxB" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/clothing/suit/jacket{ - desc = "All the class of a trenchcoat without the security fibers."; - icon_state = "detective"; - name = "trenchcoat" - }, -/obj/item/clothing/suit/toggle/lawyer/purple, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26; - pixel_y = 26 - }, -/obj/item/clothing/head/fedora{ - icon_state = "detective" - }, -/obj/item/clothing/under/geisha, -/obj/item/clothing/head/fedora{ - icon_state = "curator" - }, -/obj/item/clothing/suit/jacket{ - desc = "This looks awfully familiar..."; - icon_state = "curator" - }, -/obj/item/clothing/under/rank/curator/treasure_hunter, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"cxC" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/vending/coffee, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"cxD" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cxE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/crew_quarters/fitness/recreation) -"cxF" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/fitness/recreation) -"cxG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/crew_quarters/fitness/recreation) -"cxH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cxI" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/crew_quarters/fitness/recreation) -"cxJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cxK" = ( -/turf/open/floor/plasteel/yellow/side, -/area/engine/engineering) -"cxL" = ( -/turf/open/floor/plasteel/yellow/side{ - dir = 6 - }, -/area/engine/engineering) -"cxM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cxN" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cxO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Storage"; - req_access_txt = "32" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/storage) -"cxP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/storage) -"cxQ" = ( -/turf/open/floor/plasteel/yellow, -/area/engine/storage) -"cxR" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/storage) -"cxS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/obj/structure/tank_dispenser, -/obj/machinery/camera{ - c_tag = "Engineering - Gear Storage"; - dir = 8; - name = "engineering camera" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/storage) -"cxT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/maintenance/port) -"cxU" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cxV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/maintenance/port) -"cxW" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cxX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/maintenance/port) -"cxY" = ( -/obj/structure/table/wood, -/obj/item/newspaper{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/newspaper, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library) -"cxZ" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/grimy, -/area/library) -"cya" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/library) -"cyc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/black, -/area/library) -"cyd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library) -"cyg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"cyh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"cyi" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/port) -"cyj" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Jetpack Storage"; - pixel_x = -1; - req_access_txt = "19" - }, -/obj/structure/window/reinforced, -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/tank/jetpack/carbondioxide{ - pixel_x = 4; - pixel_y = -1 - }, -/obj/item/tank/jetpack/carbondioxide, -/obj/item/tank/jetpack/carbondioxide{ - pixel_x = -4; - pixel_y = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/storage/eva) -"cyk" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"cyl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"cym" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Corporate Lounge APC"; - areastring = "/area/bridge/showroom/corporate"; - pixel_x = -26 - }, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/turf/open/floor/wood, -/area/bridge/showroom/corporate) -"cyn" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bridge/showroom/corporate) -"cyo" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bridge/showroom/corporate) -"cyp" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/bridge/showroom/corporate) -"cyq" = ( -/obj/structure/table/wood, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/turf/open/floor/carpet, -/area/bridge/showroom/corporate) -"cyr" = ( -/obj/structure/table/wood, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/carpet, -/area/bridge/showroom/corporate) -"cys" = ( -/obj/structure/table/wood, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/item/paper_bin, -/turf/open/floor/carpet, -/area/bridge/showroom/corporate) -"cyt" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/bridge/showroom/corporate) -"cyu" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bridge/showroom/corporate) -"cyv" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bridge/showroom/corporate) -"cyw" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/wood, -/area/bridge/showroom/corporate) -"cyx" = ( -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/structure/closet/crate/internals, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/gateway) -"cyy" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/gateway) -"cyz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/gateway) -"cyA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/gateway) -"cyB" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/gateway) -"cyC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/gateway) -"cyD" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/gateway) -"cyE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/gateway) -"cyF" = ( -/obj/machinery/shower{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/crew_quarters/toilet/restrooms) -"cyG" = ( -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/toilet/restrooms) -"cyH" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/crew_quarters/toilet/restrooms) -"cyI" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock{ - name = "Unisex Showers"; - req_access_txt = "0" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/toilet/restrooms) -"cyJ" = ( -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/toilet/restrooms) -"cyK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/crew_quarters/toilet/restrooms) -"cyL" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/crew_quarters/toilet/restrooms) -"cyM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/toilet/restrooms) -"cyN" = ( -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/toilet/restrooms) -"cyO" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/toilet/restrooms) -"cyQ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/closet/wardrobe/white, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/crew_quarters/locker) -"cyR" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"cyS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/closet/wardrobe/mixed, -/turf/open/floor/plasteel/neutral/corner, -/area/crew_quarters/locker) -"cyT" = ( -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/dorms) -"cyU" = ( -/obj/structure/bed, -/obj/item/bedsheet/black, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/dorms) -"cyV" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/item/razor, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"cyW" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"cyX" = ( -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"cyY" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/pen, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"cyZ" = ( -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"cza" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/ai_status_display{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/recreation) -"czb" = ( -/obj/structure/stacklifter, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"czc" = ( -/turf/open/floor/plasteel/neutral/side, -/area/crew_quarters/fitness/recreation) -"czd" = ( -/obj/structure/weightlifter, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cze" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/crew_quarters/fitness/recreation) -"czf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/crew_quarters/fitness/recreation) -"czg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/fitness/recreation) -"czh" = ( -/obj/machinery/status_display, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/fitness/recreation) -"czi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/crew_quarters/fitness/recreation) -"czj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"czk" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"czl" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Containment - Aft Starboard"; - dir = 8; - network = list("Singularity") - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"czm" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"czn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"czo" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"czp" = ( -/obj/effect/landmark/lightsout, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/engine/engineering) -"czq" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"czr" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/storage) -"czs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/storage) -"czt" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/storage) -"czu" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/yellow, -/area/engine/storage) -"czv" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral, -/area/engine/storage) -"czw" = ( -/obj/structure/table/reinforced, -/obj/item/tank/jetpack/carbondioxide{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/tank/jetpack/carbondioxide, -/obj/machinery/power/apc{ - dir = 4; - name = "Engineering Storage APC"; - areastring = "/area/engine/storage"; - pixel_x = 26 - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/storage) -"czx" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port) -"czy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow, -/area/maintenance/port) -"czz" = ( -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/maintenance/port) -"czA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port) -"czB" = ( -/obj/machinery/door/airlock/maintenance_hatch/abandoned{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"czC" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"czD" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plasteel/black, -/area/library) -"czE" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/donut_box, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library) -"czG" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library) -"czH" = ( -/obj/machinery/light, -/obj/structure/dresser, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/black, -/area/library) -"czI" = ( -/obj/structure/table/wood, -/obj/item/dice/d20{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/dice/d10{ - pixel_x = -3 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library) -"czJ" = ( -/obj/structure/filingcabinet, -/obj/machinery/atmospherics/pipe/manifold/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/black, -/area/library) -"czK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library) -"czL" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"czM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"czN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/turf/open/floor/plasteel/neutral, -/area/maintenance/port) -"czO" = ( -/turf/open/floor/plasteel/neutral, -/area/maintenance/port) -"czP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port) -"czQ" = ( -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/wrench, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/structure/table/reinforced, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/storage/eva) -"czR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"czS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"czT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"czU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"czV" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"czW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"czX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"czY" = ( -/obj/item/stack/rods{ - amount = 25 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/storage/eva) -"czZ" = ( -/obj/structure/table/wood, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/item/clipboard, -/obj/item/toy/figure/dsquad, -/turf/open/floor/plasteel/grimy, -/area/bridge/showroom/corporate) -"cAa" = ( -/turf/open/floor/plasteel/grimy, -/area/bridge/showroom/corporate) -"cAb" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/bridge/showroom/corporate) -"cAc" = ( -/obj/structure/table/wood, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/item/folder/blue, -/obj/item/pen, -/turf/open/floor/carpet, -/area/bridge/showroom/corporate) -"cAd" = ( -/obj/structure/table/wood, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/item/clothing/mask/cigarette/cigar/cohiba{ - pixel_x = 3 - }, -/obj/item/clothing/mask/cigarette/cigar/havana{ - pixel_x = -3 - }, -/obj/item/clothing/mask/cigarette/cigar, -/turf/open/floor/carpet, -/area/bridge/showroom/corporate) -"cAe" = ( -/obj/structure/table/wood, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/item/lighter, -/turf/open/floor/carpet, -/area/bridge/showroom/corporate) -"cAf" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/bridge/showroom/corporate) -"cAg" = ( -/obj/structure/table/wood, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/item/storage/secure/briefcase, -/turf/open/floor/plasteel/grimy, -/area/bridge/showroom/corporate) -"cAh" = ( -/obj/structure/table, -/obj/item/storage/belt, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/gateway) -"cAi" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/gateway) -"cAj" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/gateway) -"cAk" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/gateway) -"cAl" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/gateway) -"cAm" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_command{ - name = "Gateway Chamber"; - req_access_txt = "62" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/gateway) -"cAn" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/gateway) -"cAo" = ( -/obj/machinery/holopad, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/gateway) -"cAp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/gateway) -"cAq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/toilet/restrooms) -"cAr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/neutral/side, -/area/crew_quarters/toilet/restrooms) -"cAs" = ( -/obj/machinery/shower{ - dir = 8; - icon_state = "shower" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/crew_quarters/toilet/restrooms) -"cAt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/toilet/restrooms) -"cAu" = ( -/obj/structure/mirror{ - pixel_x = -26 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/toilet/restrooms) -"cAv" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/crew_quarters/toilet/restrooms) -"cAw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/crew_quarters/toilet/restrooms) -"cAx" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/crew_quarters/toilet/restrooms) -"cAy" = ( -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/crew_quarters/toilet/restrooms) -"cAz" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner, -/area/crew_quarters/toilet/restrooms) -"cAA" = ( -/obj/machinery/light, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/crew_quarters/toilet/restrooms) -"cAB" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/crew_quarters/toilet/restrooms) -"cAC" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - name = "Primary Restroom" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/toilet/restrooms) -"cAD" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/crew_quarters/locker) -"cAE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/crew_quarters/locker) -"cAF" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Locker Room - Aft"; - dir = 1; - name = "dormitories camera" - }, -/turf/open/floor/plasteel/neutral/side, -/area/crew_quarters/locker) -"cAG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/crew_quarters/locker) -"cAH" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/crew_quarters/locker) -"cAI" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral/corner, -/area/crew_quarters/locker) -"cAJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/closet/wardrobe/yellow, -/turf/open/floor/plasteel/neutral/corner, -/area/crew_quarters/locker) -"cAK" = ( -/obj/structure/chair/office/dark, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/dorms) -"cAL" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/dorms) -"cAM" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"cAN" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"cAO" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"cAP" = ( -/obj/structure/table, -/obj/item/folder, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/recreation) -"cAQ" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/crew_quarters/fitness/recreation) -"cAR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/crew_quarters/fitness/recreation) -"cAS" = ( -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/holodeck/rec_center) -"cAT" = ( -/obj/machinery/camera{ - c_tag = "Holodeck - Fore"; - dir = 2; - name = "holodeck camera" - }, -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/holodeck/rec_center) -"cAU" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"cAV" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/grille, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"cAW" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/grille, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"cAX" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/grille, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"cAY" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"cAZ" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; - name = "External Containment Access"; - req_access_txt = "10; 13" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cBa" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/fans/tiny, -/obj/effect/turf_decal/delivery, -/obj/structure/barricade/wooden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cBb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/yellow, -/area/engine/engineering) -"cBc" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral, -/area/engine/engineering) -"cBd" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/yellow, -/area/engine/engineering) -"cBe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cBf" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/storage) -"cBg" = ( -/obj/structure/rack, -/obj/item/storage/belt/utility, -/obj/item/weldingtool, -/obj/item/clothing/head/welding, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/storage) -"cBh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/yellow/side, -/area/engine/storage) -"cBi" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/yellow/side, -/area/engine/storage) -"cBj" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/plasteel{ - amount = 50 - }, -/obj/item/stack/sheet/rglass{ - amount = 50; - pixel_x = 2; - pixel_y = -2 - }, -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/storage) -"cBk" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/maintenance/port) -"cBl" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port) -"cBm" = ( -/turf/open/floor/plasteel/yellow/side, -/area/maintenance/port) -"cBn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/caution, -/area/maintenance/port) -"cBo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/port) -"cBp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral, -/area/maintenance/port) -"cBq" = ( -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/machinery/light, -/obj/structure/table/reinforced, -/obj/item/device/gps, -/obj/item/device/gps, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/storage/eva) -"cBr" = ( -/obj/machinery/ai_status_display{ - pixel_y = -32 - }, -/obj/machinery/camera{ - c_tag = "Bridge - E.V.A. Aft"; - dir = 1; - name = "command camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"cBs" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = -26 - }, -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"cBt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"cBu" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"cBv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"cBw" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"cBx" = ( -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"cBy" = ( -/obj/item/storage/belt, -/obj/item/device/radio, -/obj/machinery/light, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/storage/eva) -"cBz" = ( -/obj/structure/table/wood, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/item/folder/blue, -/obj/item/clothing/under/rank/centcom_commander{ - desc = "A replica of a jumpsuit worn by the highest ranking commanders under Nanotrasen's central command."; - name = "Replica CentCom officer's jumpsuit" - }, -/obj/item/clothing/head/centhat{ - armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0); - desc = "A replica hat of a Central Commander's attire. It has a small tag on it saying, 'It's good to be emperor.'"; - name = "Replica CentCom hat" - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/grimy, -/area/bridge/showroom/corporate) -"cBA" = ( -/obj/structure/table/wood, -/obj/item/storage/photo_album, -/turf/open/floor/plasteel/grimy, -/area/bridge/showroom/corporate) -"cBB" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/light, -/turf/open/floor/plasteel/grimy, -/area/bridge/showroom/corporate) -"cBC" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/chair/comfy/brown{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/bridge/showroom/corporate) -"cBD" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/grimy, -/area/bridge/showroom/corporate) -"cBE" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/bridge/showroom/corporate) -"cBF" = ( -/obj/machinery/button/door{ - id = "corporatelounge"; - name = "Corporate Lounge Shutters"; - pixel_x = -7; - pixel_y = -26 - }, -/obj/machinery/light_switch{ - pixel_x = 7; - pixel_y = -26 - }, -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/light, -/turf/open/floor/plasteel/grimy, -/area/bridge/showroom/corporate) -"cBG" = ( -/obj/structure/table/wood, -/obj/item/device/paicard, -/turf/open/floor/plasteel/grimy, -/area/bridge/showroom/corporate) -"cBH" = ( -/obj/structure/table/wood, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/item/folder/red, -/obj/item/toy/gun, -/obj/item/clothing/head/beret/sec{ - armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0); - desc = "A replica beret resembling that of a special operations officer under Nanotrasen."; - name = "replica officer's beret" - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26 - }, -/turf/open/floor/plasteel/grimy, -/area/bridge/showroom/corporate) -"cBI" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/gateway) -"cBJ" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/machinery/button/door{ - id = "gatewayshutters"; - name = "Gateway Shutters"; - pixel_x = -26; - pixel_y = -26 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/gateway) -"cBK" = ( -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/gateway) -"cBL" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/gateway) -"cBM" = ( -/obj/machinery/recharge_station, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/gateway) -"cBN" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/gateway) -"cBO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/gateway) -"cBP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/gateway) -"cBQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/gateway) -"cBR" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"cBS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/mirror{ - pixel_x = -26 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/toilet/restrooms) -"cBT" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner, -/area/crew_quarters/toilet/restrooms) -"cBU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock{ - name = "Toilet Unit" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/crew_quarters/toilet/restrooms) -"cBV" = ( -/obj/machinery/door/airlock{ - name = "Toilet Unit" - }, -/turf/open/floor/plating, -/area/crew_quarters/toilet/restrooms) -"cBW" = ( -/obj/machinery/vending/clothing, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/locker) -"cBX" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/locker) -"cBY" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/locker) -"cBZ" = ( -/obj/machinery/vending/autodrobe{ - req_access_txt = "0" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/locker) -"cCa" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/locker) -"cCb" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/locker) -"cCd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/locker) -"cCe" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/lighter, -/obj/machinery/button/door{ - id = "Dorm1"; - name = "Dormitory Door Lock"; - normaldoorcontrol = 1; - pixel_x = -26; - pixel_y = 7; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/dorms) -"cCf" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/dorms) -"cCg" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"cCh" = ( -/obj/structure/dresser, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"cCi" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/machinery/button/door{ - id = "Dorm3"; - name = "Dormitory Door Lock"; - normaldoorcontrol = 1; - pixel_x = -26; - pixel_y = 7; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"cCj" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"cCk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/recreation) -"cCl" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/neutral/side, -/area/crew_quarters/fitness/recreation) -"cCm" = ( -/obj/structure/grille, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"cCn" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/grille, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"cCo" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/grille, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"cCp" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/grille, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"cCq" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/grille, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"cCr" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/grille, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"cCs" = ( -/obj/structure/closet/emcloset/anchored, -/obj/machinery/light/small, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cCt" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cCu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cCv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cCw" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Engineering - Aft"; - dir = 1; - name = "engineering camera" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cCx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cCy" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/clothing/head/cone, -/obj/item/clothing/head/cone, -/obj/item/clothing/head/cone, -/obj/item/clothing/head/cone, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cCz" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cCA" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/electricshock{ - pixel_y = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/storage) -"cCB" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/storage) -"cCC" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light, -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/storage) -"cCD" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/ai_status_display{ - pixel_y = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/storage) -"cCE" = ( -/obj/structure/table/reinforced, -/obj/item/stack/rods{ - amount = 50 - }, -/obj/item/wrench, -/obj/item/storage/box/lights/mixed, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/storage) -"cCF" = ( -/obj/structure/table/reinforced, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/turf/open/floor/plating, -/area/maintenance/port) -"cCH" = ( -/obj/structure/rack, -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/book/manual/wiki/engineering_guide, -/obj/item/book/manual/wiki/engineering_construction{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port) -"cCI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plating, -/area/maintenance/port) -"cCJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 9 - }, -/area/maintenance/port) -"cCK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cCL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cCM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"cCN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"cCO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - icon_state = "pipe-j2s"; - name = "Library Junction"; - sortType = 16 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cCP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/maintenance/port) -"cCQ" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cCR" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cCS" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: PRESSURIZED DOORS" - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"cCT" = ( -/obj/machinery/door/poddoor/shutters{ - id = "evashutters"; - name = "E.V.A. Storage Shutters" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"cCU" = ( -/obj/machinery/door/poddoor/shutters{ - id = "evashutters"; - name = "E.V.A. Storage Shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"cCV" = ( -/obj/machinery/button/door{ - id = "evashutters"; - name = "E.V.A. Shutters"; - pixel_x = 26; - req_access_txt = "19" - }, -/obj/machinery/door/poddoor/shutters{ - id = "evashutters"; - name = "E.V.A. Storage Shutters" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"cCW" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "corporatelounge"; - name = "Corporate Lounge Shutters" - }, -/turf/open/floor/plating, -/area/bridge/showroom/corporate) -"cCX" = ( -/obj/structure/sign/electricshock, -/turf/closed/wall/r_wall, -/area/bridge/showroom/corporate) -"cCY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Corporate Lounge"; - req_access = null; - req_access_txt = "19" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/bridge/showroom/corporate) -"cCZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Gateway Atrium"; - req_access_txt = "62" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/gateway) -"cDa" = ( -/obj/machinery/door/poddoor/shutters{ - id = "gatewayshutters"; - name = "Gateway Chamber Shutters" - }, -/obj/machinery/button/door{ - id = "gatewayshutters"; - name = "Gateway Shutters"; - pixel_x = -26; - req_access_txt = "19" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/gateway) -"cDb" = ( -/obj/machinery/door/poddoor/shutters{ - id = "gatewayshutters"; - name = "Gateway Chamber Shutters" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/gateway) -"cDc" = ( -/obj/machinery/door/poddoor/shutters{ - id = "gatewayshutters"; - name = "Gateway Chamber Shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/gateway) -"cDd" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: BLAST DOORS" - }, -/turf/closed/wall/r_wall, -/area/gateway) -"cDe" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cDf" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cDg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cDh" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cDi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/vending/cigarette, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/crew_quarters/toilet/restrooms) -"cDj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner, -/area/crew_quarters/toilet/restrooms) -"cDk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit/old, -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/crew_quarters/toilet/restrooms) -"cDl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/machinery/light/small, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/toilet/restrooms) -"cDm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/machinery/light/small, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/toilet/restrooms) -"cDn" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock{ - name = "Lockerroom" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"cDo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Lockerroom" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"cDp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - id_tag = "Dorm1"; - name = "Cabin 1" - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/dorms) -"cDq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - id_tag = "Dorm2"; - name = "Cabin 2" - }, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"cDr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - id_tag = "Dorm3"; - name = "Cabin 3" - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"cDs" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/recreation) -"cDt" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/black, -/area/crew_quarters/fitness/recreation) -"cDu" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel/black, -/area/crew_quarters/fitness/recreation) -"cDv" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/door/window{ - dir = 4; - name = "Fitness Ring"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel/black, -/area/crew_quarters/fitness/recreation) -"cDw" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/crew_quarters/fitness/recreation) -"cDx" = ( -/obj/structure/closet/emcloset/anchored, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cDy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Engineering" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cDA" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Engineering Maintenance"; - req_access_txt = "10" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cDB" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port) -"cDC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"cDD" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port) -"cDE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port) -"cDF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/port) -"cDG" = ( -/obj/effect/landmark/lightsout, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"cDH" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"cDI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"cDJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Central Hallway - Science Aft"; - dir = 2; - name = "hallway camera" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cDK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cDL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cDM" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cDN" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cDO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"cDP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"cDQ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "L1" - }, -/area/hallway/primary/central) -"cDR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "L3" - }, -/area/hallway/primary/central) -"cDS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel{ - icon_state = "L5" - }, -/area/hallway/primary/central) -"cDT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "L7" - }, -/area/hallway/primary/central) -"cDU" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "L9" - }, -/area/hallway/primary/central) -"cDV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "L11" - }, -/area/hallway/primary/central) -"cDW" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "L13" - }, -/area/hallway/primary/central) -"cDX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"cDY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Central Hallway - Medbay Aft"; - dir = 2; - name = "hallway camera" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"cDZ" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"cEa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cEb" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Central Hallway - Aft Starboard"; - dir = 8; - name = "hallway camera" - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) -"cEc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"cEd" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cEe" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cEf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/toilet/restrooms) -"cEg" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"cEh" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cEi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/reagent_containers/blood/random, -/obj/item/roller, -/turf/open/floor/plasteel/blue/corner{ - dir = 1 - }, -/area/maintenance/starboard/aft) -"cEj" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cEk" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cEl" = ( -/obj/machinery/washing_machine, -/obj/machinery/camera{ - c_tag = "Dormitories - Port"; - dir = 4; - name = "dormitories camera" - }, -/turf/open/floor/plasteel/arrival{ - dir = 8 - }, -/area/crew_quarters/dorms) -"cEm" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = 26 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/dorms) -"cEn" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/crew_quarters/dorms) -"cEo" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/crew_quarters/dorms) -"cEp" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - name = "Dormitories" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"cEq" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/dorms) -"cEr" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/dorms) -"cEs" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/crew_quarters/dorms) -"cEt" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/crew_quarters/dorms) -"cEu" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Dormitories - Starboard"; - dir = 2; - name = "dormitories camera" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/crew_quarters/dorms) -"cEv" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/crew_quarters/dorms) -"cEw" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - name = "Recreational Area" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"cEx" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/recreation) -"cEy" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cEz" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/black, -/area/crew_quarters/fitness/recreation) -"cEA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/fitness/recreation) -"cEB" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/black, -/area/crew_quarters/fitness/recreation) -"cEC" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cED" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/crew_quarters/fitness/recreation) -"cEF" = ( -/obj/machinery/light, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"cEG" = ( -/obj/machinery/door/airlock/glass{ - name = "Holodeck Access" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"cEH" = ( -/obj/machinery/door/airlock/glass{ - name = "Holodeck Access" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"cEI" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"cEJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/crew_quarters/fitness/recreation) -"cEK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Holodeck Control"; - dir = 2; - name = "holodeck camera" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/crew_quarters/fitness/recreation) -"cEL" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 5 - }, -/area/crew_quarters/fitness/recreation) -"cEM" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; - name = "External Airlock"; - req_access_txt = "13" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cEN" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"cEO" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cEP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 - }, -/obj/item/device/flashlight, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"cEQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"cER" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"cES" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"cET" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"cEU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cEV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cEX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"cEY" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"cEZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cFa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"cFb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cFc" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cFd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cFe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"cFf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cFg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port) -"cFh" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cFi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/maintenance/port) -"cFj" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/maintenance/port) -"cFk" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cFl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cFm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port) -"cFn" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cFo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cFp" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port) -"cFq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 10; - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"cFr" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/maintenance/port) -"cFs" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cFt" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cFu" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cFv" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cFw" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"cFx" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall6"; - location = "hall5" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"cFy" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/hallway/primary/central) -"cFz" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "L2" - }, -/area/hallway/primary/central) -"cFA" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "L4" - }, -/area/hallway/primary/central) -"cFB" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "L6" - }, -/area/hallway/primary/central) -"cFC" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall7"; - location = "hall6" - }, -/turf/open/floor/plasteel{ - icon_state = "L8" - }, -/area/hallway/primary/central) -"cFD" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall9"; - location = "hall8" - }, -/turf/open/floor/plasteel{ - icon_state = "L10" - }, -/area/hallway/primary/central) -"cFE" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "L12" - }, -/area/hallway/primary/central) -"cFF" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - desc = ""; - icon_state = "L14" - }, -/area/hallway/primary/central) -"cFG" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"cFH" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall10"; - location = "hall9" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"cFI" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - icon_state = "pipe-j1s"; - name = "Medbay Junction"; - sortType = 9 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) -"cFJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"cFK" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cFL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cFM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cFN" = ( -/obj/structure/girder, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cFO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cFP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"cFQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cFR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"cFS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch/abandoned{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"cFT" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cFU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/maintenance/starboard/aft) -"cFV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/dropper, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cFW" = ( -/obj/structure/table, -/obj/structure/bedsheetbin, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/arrival{ - dir = 8 - }, -/area/crew_quarters/dorms) -"cFX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/crew_quarters/dorms) -"cFY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/dorms) -"cFZ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/crew_quarters/dorms) -"cGa" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/crew_quarters/dorms) -"cGb" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/crew_quarters/dorms) -"cGc" = ( -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/dorms) -"cGd" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/dorms) -"cGe" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/dorms) -"cGf" = ( -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/dorms) -"cGg" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/dorms) -"cGh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Recreation - Center"; - dir = 4; - name = "recreation camera" - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cGi" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"cGj" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/black, -/area/crew_quarters/fitness/recreation) -"cGk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/crew_quarters/fitness/recreation) -"cGl" = ( -/obj/structure/sign/nosmoking_2, -/turf/closed/wall, -/area/crew_quarters/fitness/recreation) -"cGm" = ( -/obj/machinery/computer/holodeck, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/crew_quarters/fitness/recreation) -"cGn" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cGo" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/crew_quarters/fitness/recreation) -"cGp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/port) -"cGt" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cGu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cGx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cGy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port) -"cGz" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cGA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port) -"cGB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/clothing/gloves/color/fyellow, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port) -"cGC" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/maintenance/port) -"cGD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cGE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/maintenance/port) -"cGF" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port) -"cGG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"cGH" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"cGI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/maintenance/port) -"cGJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"cGK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"cGL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/maintenance/port) -"cGM" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cGN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/port) -"cGO" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"cGP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"cGQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"cGR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"cGS" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - icon_state = "pipe-j1s"; - name = "Research Junction"; - sortType = 12 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"cGT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Central Hallway - Aft"; - dir = 1; - name = "hallway camera" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"cGU" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"cGV" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side, -/area/hallway/primary/central) -"cGW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/blue/corner, -/area/hallway/primary/central) -"cGX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/blue/corner, -/area/hallway/primary/central) -"cGY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/blue/corner, -/area/hallway/primary/central) -"cGZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/blue/corner, -/area/hallway/primary/central) -"cHa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - icon_state = "pipe-j1s"; - name = "CMO's Junction"; - sortType = 10 - }, -/turf/open/floor/plasteel/blue/corner, -/area/hallway/primary/central) -"cHb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) -"cHc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cHd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cHe" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cHf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/maintenance/starboard/aft) -"cHg" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cHh" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cHi" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cHj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/storage) -"cHk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cHl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cHm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/blue/corner{ - dir = 4 - }, -/area/maintenance/starboard/aft) -"cHn" = ( -/obj/machinery/washing_machine, -/turf/open/floor/plasteel/arrival{ - dir = 8 - }, -/area/crew_quarters/dorms) -"cHo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/crew_quarters/dorms) -"cHp" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/neutral/side, -/area/crew_quarters/dorms) -"cHq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral/corner, -/area/crew_quarters/dorms) -"cHr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Dormitories" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"cHs" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/crew_quarters/dorms) -"cHt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/crew_quarters/dorms) -"cHu" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/crew_quarters/dorms) -"cHv" = ( -/obj/structure/cable/white, -/obj/machinery/power/apc{ - dir = 2; - name = "Dormitories APC"; - areastring = "/area/crew_quarters/dorms"; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Dormitories - Center"; - dir = 1; - name = "dormitories camera" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/crew_quarters/dorms) -"cHw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/crew_quarters/dorms) -"cHx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/crew_quarters/dorms) -"cHy" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner, -/area/crew_quarters/dorms) -"cHz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Recreational Area" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"cHA" = ( -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/crew_quarters/fitness/recreation) -"cHB" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/lightsout, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cHC" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/black, -/area/crew_quarters/fitness/recreation) -"cHD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/fitness/recreation) -"cHE" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/crew_quarters/fitness/recreation) -"cHF" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"cHG" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/folder, -/obj/item/paper/fluff/holodeck/disclaimer, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/crew_quarters/fitness/recreation) -"cHH" = ( -/obj/machinery/shieldgen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cHI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/port) -"cHJ" = ( -/turf/closed/wall, -/area/maintenance/department/electrical) -"cHK" = ( -/obj/structure/sign/securearea, -/turf/closed/wall, -/area/maintenance/department/electrical) -"cHL" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 8 - }, -/area/medical/virology) -"cHM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/department/electrical) -"cHN" = ( -/obj/structure/sign/electricshock, -/turf/closed/wall, -/area/maintenance/department/electrical) -"cHO" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering Auxiliary Power"; - req_access_txt = "10" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cHP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/mob/living/simple_animal/cockroach, -/turf/open/floor/plating, -/area/maintenance/port) -"cHQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cHR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port) -"cHS" = ( -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"cHT" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/extinguisher, -/obj/item/extinguisher, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cHU" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cHV" = ( -/obj/machinery/atmospherics/components/unary/tank/air, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cHW" = ( -/turf/closed/wall, -/area/science/xenobiology) -"cHX" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/science/xenobiology) -"cHY" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology - Cell 1"; - name = "xenobiology camera"; - network = list("SS13","xeno","RD") - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/science/xenobiology) -"cHZ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology - Cell 2"; - name = "xenobiology camera"; - network = list("SS13","xeno","RD") - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/science/xenobiology) -"cIa" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology - Cell 3"; - name = "xenobiology camera"; - network = list("SS13","xeno","RD") - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/science/xenobiology) -"cIb" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology - Killroom Chamber"; - dir = 2; - name = "xenobiology camera"; - network = list("SS13","xeno","RD") - }, -/turf/open/floor/plasteel/vault/killroom, -/area/science/xenobiology) -"cIc" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 - }, -/obj/item/device/flashlight, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"cId" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port) -"cIe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"cIf" = ( -/obj/machinery/light, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cIg" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cIh" = ( -/obj/structure/sign/science, -/turf/closed/wall, -/area/hallway/primary/central) -"cIi" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/research) -"cIj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/science/research) -"cIk" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"cIl" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/science/research) -"cIm" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"cIn" = ( -/obj/structure/sign/directions/evac{ - pixel_y = -8 - }, -/obj/structure/sign/directions/science{ - dir = 8 - }, -/obj/structure/sign/directions/engineering{ - dir = 8; - pixel_y = 8 - }, -/turf/closed/wall, -/area/science/research) -"cIo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/glass{ - name = "Aft Primary Hallway" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cIp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Aft Primary Hallway" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cIq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/glass{ - name = "Aft Primary Hallway" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cIr" = ( -/obj/structure/sign/directions/evac{ - pixel_y = -8 - }, -/obj/structure/sign/directions/medical{ - dir = 4 - }, -/obj/structure/sign/directions/security{ - dir = 4; - pixel_y = 8 - }, -/turf/closed/wall, -/area/medical/medbay/central) -"cIs" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/medbay/central) -"cIt" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cIu" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/medical/medbay/central) -"cIv" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cIw" = ( -/obj/structure/sign/bluecross_2, -/turf/closed/wall, -/area/medical/medbay/central) -"cIy" = ( -/obj/machinery/vending/snack/random, -/obj/machinery/light, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cIz" = ( -/obj/machinery/vending/cola/random, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cIA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"cIB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral, -/area/maintenance/starboard/aft) -"cIC" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cID" = ( -/turf/closed/wall/r_wall, -/area/medical/storage) -"cIE" = ( -/obj/machinery/vending/medical, -/turf/open/floor/plasteel/neutral/corner, -/area/medical/storage) -"cIF" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/neutral/side, -/area/medical/storage) -"cIG" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/turf/open/floor/plasteel/neutral/side, -/area/medical/storage) -"cIH" = ( -/obj/structure/closet/wardrobe/white/medical, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/item/storage/backpack/satchel/med, -/turf/open/floor/plasteel/neutral/side, -/area/medical/storage) -"cII" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/storage) -"cIJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/blue/corner{ - dir = 8 - }, -/area/maintenance/starboard/aft) -"cIK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/maintenance/starboard/aft) -"cIL" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cIM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - id_tag = "Dorm4"; - name = "Cabin 4" - }, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"cIN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - id_tag = "Dorm5"; - name = "Cabin 5" - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"cIO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - id_tag = "Dorm6"; - name = "Cabin 6" - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/dorms) -"cIP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/crew_quarters/fitness/recreation) -"cIQ" = ( -/obj/structure/window/reinforced, -/obj/machinery/door/window{ - dir = 8; - name = "Fitness Ring"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel/black, -/area/crew_quarters/fitness/recreation) -"cIR" = ( -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/black, -/area/crew_quarters/fitness/recreation) -"cIS" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/black, -/area/crew_quarters/fitness/recreation) -"cIT" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/crew_quarters/fitness/recreation) -"cIV" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"cIW" = ( -/obj/machinery/door/airlock/glass{ - name = "Holodeck Access" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"cIX" = ( -/obj/machinery/door/airlock/glass{ - name = "Holodeck Access" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"cIY" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"cIZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/crew_quarters/fitness/recreation) -"cJa" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/side, -/area/crew_quarters/fitness/recreation) -"cJb" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 6 - }, -/area/crew_quarters/fitness/recreation) -"cJc" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/port) -"cJd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cJe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cJf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cJg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port) -"cJi" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cJj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cJk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cJl" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cJm" = ( -/obj/structure/table/reinforced, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cJn" = ( -/obj/structure/table/reinforced, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/item/electronics/apc{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/electronics/apc, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cJo" = ( -/obj/machinery/power/port_gen/pacman, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cJp" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cJq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cJr" = ( -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cJt" = ( -/obj/structure/table/reinforced, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/item/stack/cable_coil/white{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil/white, -/obj/item/device/multitool, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cJu" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/lights/mixed{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/lights/mixed, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cJv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cJw" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cJx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port) -"cJy" = ( -/obj/structure/rack, -/obj/item/book/manual/wiki/engineering_guide, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port) -"cJz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port) -"cJA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cJB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cJC" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Xenobiology Maintenance"; - req_access_txt = "47" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cJD" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cJE" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cJF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cJG" = ( -/mob/living/simple_animal/slime, -/turf/open/floor/circuit/green, -/area/science/xenobiology) -"cJH" = ( -/turf/open/floor/circuit/green, -/area/science/xenobiology) -"cJI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 2; - external_pressure_bound = 140; - name = "killroom vent"; - pressure_checks = 0 - }, -/turf/open/floor/circuit/killroom, -/area/science/xenobiology) -"cJJ" = ( -/turf/open/floor/circuit/telecomms/mainframe, -/area/science/xenobiology) -"cJK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 2; - external_pressure_bound = 120; - name = "server vent" - }, -/turf/open/floor/circuit/killroom, -/area/science/xenobiology) -"cJL" = ( -/turf/closed/wall/r_wall, -/area/science/research) -"cJM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/science/research) -"cJN" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Science Maintenance"; - req_access_txt = "47" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cJO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/science/research) -"cJP" = ( -/turf/closed/wall/r_wall, -/area/security/checkpoint/science/research) -"cJR" = ( -/obj/structure/chair, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"cJS" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"cJT" = ( -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"cJU" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/item/device/paicard, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"cJV" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/science/research) -"cJW" = ( -/obj/structure/table, -/obj/item/stack/cable_coil/white, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/timer{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/science/research) -"cJX" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/science/research) -"cJY" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/science/research) -"cJZ" = ( -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/science/research) -"cKa" = ( -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/science/research) -"cKb" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/glasses/science, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/science/research) -"cKc" = ( -/obj/structure/sign/science, -/turf/closed/wall, -/area/science/research) -"cKd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"cKe" = ( -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/aft) -"cKf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/blue/corner, -/area/hallway/primary/aft) -"cKg" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cKh" = ( -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cKi" = ( -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cKj" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cKk" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = 6 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/syringe, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cKl" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/medbay/central) -"cKm" = ( -/obj/structure/table, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"cKn" = ( -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"cKo" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"cKp" = ( -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"cKq" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"cKr" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = 28 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"cKs" = ( -/turf/closed/wall, -/area/medical/medbay/central) -"cKt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel/neutral/side{ - dir = 10; - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"cKu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cKv" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cKw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/starboard/aft) -"cKx" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Medbay Storage APC"; - areastring = "/area/medical/storage"; - pixel_x = -26 - }, -/obj/machinery/camera{ - c_tag = "Medbay - Storage"; - dir = 4; - name = "medbay camera" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/medical/storage) -"cKy" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/storage) -"cKz" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/storage) -"cKA" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/medical/storage) -"cKB" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - name = "Medbay Auxiliary Storage"; - req_access_txt = "5" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"cKC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"cKD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cKE" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cKF" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/blue/corner, -/area/maintenance/starboard/aft) -"cKG" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"cKH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch/abandoned{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"cKI" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"cKJ" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cKK" = ( -/obj/structure/dresser, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26; - pixel_y = 26 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"cKL" = ( -/obj/machinery/button/door{ - id = "Dorm5"; - name = "Dormitory Door Lock"; - normaldoorcontrol = 1; - pixel_x = -26; - pixel_y = 7; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"cKM" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26; - pixel_y = 26 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"cKN" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/pen/blue, -/obj/machinery/button/door{ - id = "Dorm6"; - name = "Dormitory Door Lock"; - normaldoorcontrol = 1; - pixel_x = -26; - pixel_y = 7; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/dorms) -"cKO" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26; - pixel_y = 26 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/dorms) -"cKP" = ( -/obj/machinery/vending/cola/random, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"cKQ" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/crew_quarters/fitness/recreation) -"cKR" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/crew_quarters/fitness/recreation) -"cKS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner, -/area/crew_quarters/fitness/recreation) -"cKT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/crew_quarters/fitness/recreation) -"cKU" = ( -/obj/structure/rack, -/obj/item/clothing/gloves/color/black, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cKV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cKW" = ( -/obj/machinery/atmospherics/components/binary/valve, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cKX" = ( -/obj/machinery/atmospherics/components/binary/valve, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cKY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible, -/turf/open/floor/plasteel/caution{ - dir = 8 - }, -/area/maintenance/department/electrical) -"cKZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/caution{ - dir = 4 - }, -/area/maintenance/department/electrical) -"cLa" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cLb" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cLc" = ( -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/book/manual/wiki/engineering_guide, -/obj/item/book/manual/wiki/engineering_construction{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/structure/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cLd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cLe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cLf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cLg" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cLh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cLi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cLj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cLk" = ( -/obj/machinery/cell_charger, -/obj/structure/table/reinforced, -/obj/item/stock_parts/cell/high, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Auxiliary Power APC"; - areastring = "/area/maintenance/department/electrical"; - pixel_x = 26 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cLl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/port) -"cLm" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cLn" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/vault{ - dir = 1 - }, -/area/science/xenobiology) -"cLo" = ( -/obj/machinery/atmospherics/pipe/manifold/general/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/vault/killroom, -/area/science/xenobiology) -"cLp" = ( -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault/killroom, -/area/science/xenobiology) -"cLq" = ( -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/vault/killroom, -/area/science/xenobiology) -"cLr" = ( -/obj/structure/closet/wardrobe/science_white, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/storage/backpack/satchel/tox, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"cLs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"cLt" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/science/research) -"cLu" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/science/research) -"cLv" = ( -/turf/closed/wall, -/area/security/checkpoint/science/research) -"cLw" = ( -/obj/structure/closet/secure_closet/security/science, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26; - pixel_y = 32 - }, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/checkpoint/science/research) -"cLx" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/science/research) -"cLy" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/device/radio, -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/checkpoint/science/research) -"cLz" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/item/device/assembly/infra, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"cLA" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/science/research) -"cLB" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/purple, -/area/science/research) -"cLC" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral, -/area/science/research) -"cLD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/purple, -/area/science/research) -"cLE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/science/research) -"cLF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/purple, -/area/science/research) -"cLG" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral, -/area/science/research) -"cLH" = ( -/turf/open/floor/plasteel/purple, -/area/science/research) -"cLI" = ( -/turf/open/floor/plasteel/neutral, -/area/science/research) -"cLJ" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/science/research) -"cLK" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cLL" = ( -/turf/open/floor/plasteel/blue, -/area/medical/medbay/central) -"cLM" = ( -/turf/open/floor/plasteel/neutral, -/area/medical/medbay/central) -"cLN" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/neutral, -/area/medical/medbay/central) -"cLO" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/blue, -/area/medical/medbay/central) -"cLP" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"cLQ" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "MedbayFoyer"; - name = "Medbay Doors Control"; - normaldoorcontrol = 1; - pixel_x = -24; - pixel_y = 24 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cLR" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/medbay/central) -"cLS" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"cLT" = ( -/turf/closed/wall, -/area/security/checkpoint/medical) -"cLU" = ( -/turf/closed/wall/r_wall, -/area/security/checkpoint/medical) -"cLV" = ( -/turf/closed/wall, -/area/medical/storage) -"cLW" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/medical/storage) -"cLX" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/cmo, -/area/medical/storage) -"cLY" = ( -/turf/open/floor/plasteel/cmo, -/area/medical/storage) -"cLZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/cmo, -/area/medical/storage) -"cMa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/storage) -"cMb" = ( -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "Medbay" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/storage) -"cMc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"cMd" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cMe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cMf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/blue/corner, -/area/maintenance/starboard/aft) -"cMg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/space_heater, -/turf/open/floor/plasteel/blue, -/area/maintenance/starboard/aft) -"cMh" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/starboard/aft) -"cMi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cMj" = ( -/obj/structure/bed, -/obj/item/bedsheet/clown, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"cMk" = ( -/obj/structure/table/wood, -/obj/item/storage/briefcase{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/briefcase, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/item/cane, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"cMl" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/dorms) -"cMm" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/dorms) -"cMn" = ( -/obj/machinery/vending/snack/random, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"cMo" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner, -/area/crew_quarters/fitness/recreation) -"cMp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"cMq" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port) -"cMr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 5 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cMs" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cMt" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel/caution{ - dir = 8 - }, -/area/maintenance/department/electrical) -"cMu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cMv" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cMw" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/maintenance/department/electrical) -"cMx" = ( -/obj/machinery/computer/atmos_alert, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cMy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cMz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cMA" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/maintenance/department/electrical) -"cMB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/maintenance/department/electrical) -"cMC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/neutral, -/area/maintenance/department/electrical) -"cMD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/maintenance/department/electrical) -"cME" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cMF" = ( -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cMG" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/port) -"cMH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port) -"cMJ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/science/xenobiology) -"cMK" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/shieldwallgen/xenobiologyaccess, -/turf/open/floor/plating, -/area/science/xenobiology) -"cML" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cMM" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/camera{ - c_tag = "Xenobiology - Port"; - dir = 2; - name = "xenobiology camera"; - network = list("SS13","xeno","RD") - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cMN" = ( -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = 26 - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cMO" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26 - }, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cMP" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xeno4"; - name = "Creature Cell #4" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cMQ" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Creature Pen"; - req_access_txt = "47" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xeno4"; - name = "Creature Cell #4" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/science/xenobiology) -"cMR" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/preopen{ - id = "xeno4"; - name = "Creature Cell #4" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cMS" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xeno5"; - name = "Creature Cell #5" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cMT" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Creature Pen"; - req_access_txt = "47" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xeno5"; - name = "Creature Cell #5" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/science/xenobiology) -"cMU" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/preopen{ - id = "xeno5"; - name = "Creature Cell #5" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cMV" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xeno6"; - name = "Creature Cell #6" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cMW" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Creature Pen"; - req_access_txt = "47" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xeno6"; - name = "Creature Cell #6" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/science/xenobiology) -"cMX" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/preopen{ - id = "xeno6"; - name = "Creature Cell #6" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cMY" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/general/hidden, -/turf/open/floor/plating, -/area/science/xenobiology) -"cMZ" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/door/airlock/glass_research{ - name = "Xenobiology Kill Room"; - req_access_txt = "47" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cNa" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"cNb" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/purple, -/area/science/research) -"cNc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/science/research) -"cNd" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/science/research) -"cNe" = ( -/obj/machinery/light_switch{ - pixel_x = -38; - pixel_y = 26 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/checkpoint/science/research) -"cNf" = ( -/turf/open/floor/plasteel/neutral, -/area/security/checkpoint/science/research) -"cNg" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/checkpoint/science/research) -"cNh" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"cNi" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/research) -"cNj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/research) -"cNk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/research) -"cNl" = ( -/obj/effect/landmark/lightsout, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/research) -"cNm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/research) -"cNn" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/research) -"cNo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/purple, -/area/science/research) -"cNp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/science/research) -"cNq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"cNr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"cNs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/aft) -"cNt" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/blue/corner, -/area/hallway/primary/aft) -"cNu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cNv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cNw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/medbay/central) -"cNx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cmo, -/area/medical/medbay/central) -"cNy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/cmo, -/area/medical/medbay/central) -"cNz" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/cmo, -/area/medical/medbay/central) -"cNA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"cNB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - id_tag = "MedbayFoyer"; - name = "Medbay"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cNC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/blue, -/area/medical/medbay/central) -"cND" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"cNE" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -32 - }, -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/device/radio, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "MedbayFoyer"; - name = "Medbay Doors Control"; - normaldoorcontrol = 1; - pixel_x = -24; - pixel_y = 24 - }, -/obj/machinery/button/door{ - desc = "A remote control switch."; - id = "meddoor"; - name = "Medical Cell Control"; - normaldoorcontrol = 1; - pixel_x = -36; - pixel_y = 24 - }, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/checkpoint/medical) -"cNF" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/medical) -"cNG" = ( -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/light_switch{ - pixel_x = 38 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26; - pixel_y = 32 - }, -/obj/structure/closet/secure_closet/security/med, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/checkpoint/medical) -"cNH" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/masks, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cNI" = ( -/obj/structure/table, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/beakers, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/medbay/central) -"cNJ" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/item/storage/pod{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"cNK" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/storage) -"cNL" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/fire{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/fire{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/medical/storage) -"cNM" = ( -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel/cmo, -/area/medical/storage) -"cNN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/cmo, -/area/medical/storage) -"cNO" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/toxin{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/toxin{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/medical/storage) -"cNP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/medical/medbay/central) -"cNQ" = ( -/obj/machinery/door/airlock{ - name = "Medbay Auxiliary Storage"; - req_access_txt = "5" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"cNR" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cNS" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"cNT" = ( -/obj/structure/chair/office/dark, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"cNU" = ( -/obj/structure/bed, -/obj/item/bedsheet/mime, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/dorms) -"cNV" = ( -/obj/structure/table, -/obj/item/storage/fancy/donut_box, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/crew_quarters/fitness/recreation) -"cNW" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cNX" = ( -/obj/structure/table, -/obj/item/folder, -/obj/item/razor, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cNY" = ( -/obj/structure/table, -/obj/item/clothing/under/sl_suit{ - name = "referee suit" - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cNZ" = ( -/obj/structure/table, -/obj/item/storage/briefcase, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cOa" = ( -/obj/machinery/camera{ - c_tag = "Holodeck - Aft"; - dir = 1; - name = "holodeck camera" - }, -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/holodeck/rec_center) -"cOb" = ( -/obj/structure/table, -/obj/item/extinguisher/mini, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/clothing/mask/breath, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cOc" = ( -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cOd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/port) -"cOe" = ( -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cOf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cOg" = ( -/obj/machinery/atmospherics/components/binary/volume_pump{ - name = "Ports to Distro" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/caution{ - dir = 8 - }, -/area/maintenance/department/electrical) -"cOh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plasteel/caution{ - dir = 4 - }, -/area/maintenance/department/electrical) -"cOi" = ( -/obj/structure/table/reinforced, -/obj/item/device/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cOj" = ( -/obj/machinery/computer/monitor, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cOk" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cOl" = ( -/turf/open/floor/plasteel/neutral, -/area/maintenance/department/electrical) -"cOm" = ( -/obj/machinery/holopad, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cOn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral, -/area/maintenance/department/electrical) -"cOo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cOp" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering Auxiliary Power"; - req_access_txt = "10" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cOq" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cOr" = ( -/obj/effect/decal/remains/xeno, -/obj/effect/decal/cleanable/xenoblood, -/turf/open/floor/circuit/green, -/area/science/xenobiology) -"cOs" = ( -/obj/structure/sign/electricshock, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"cOt" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xenosecure"; - name = "Secure Pen Shutters" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cOu" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/security/telescreen{ - dir = 4; - network = list("xeno") - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cOv" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cOw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/science/xenobiology) -"cOx" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cOy" = ( -/obj/structure/sign/xenobio, -/turf/closed/wall, -/area/science/xenobiology) -"cOz" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "xeno4"; - name = "Containment Control"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cOA" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/window/brigdoor{ - dir = 2; - name = "Creature Pen"; - req_access_txt = "47" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cOB" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - icon_state = "pipe-t"; - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cOC" = ( -/obj/structure/sign/electricshock, -/turf/closed/wall, -/area/science/xenobiology) -"cOD" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "xeno5"; - name = "Containment Control"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cOE" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26; - pixel_y = 32 - }, -/obj/structure/disposalpipe/trunk{ - icon_state = "pipe-t"; - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cOF" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: BIOHAZARD CELL" - }, -/turf/closed/wall, -/area/science/xenobiology) -"cOG" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26; - pixel_y = 32 - }, -/obj/machinery/button/door{ - id = "xeno6"; - name = "Containment Control"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cOH" = ( -/obj/structure/sign/biohazard, -/turf/closed/wall, -/area/science/xenobiology) -"cOI" = ( -/obj/machinery/monkey_recycler, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cOJ" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1; - min_temperature = 80; - on = 1; - target_temperature = 80 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cOK" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cOL" = ( -/obj/machinery/chem_master, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cOM" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/chem_master, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cON" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/beakers{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/syringes, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 32 - }, -/obj/item/extinguisher/mini, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cOO" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"cOP" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/science/research) -"cOQ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/science/research) -"cOR" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/door/airlock/security{ - name = "Security Post - Science"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"cOS" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/checkpoint/science/research) -"cOT" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/security/checkpoint/science/research) -"cOU" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/computer/security, -/turf/open/floor/plasteel/red, -/area/security/checkpoint/science/research) -"cOV" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/science/research) -"cOW" = ( -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/research) -"cOX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/science/research) -"cOY" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"cOZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"cPa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"cPb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"cPc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"cPd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/science/research) -"cPe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/research) -"cPf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"cPg" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"cPh" = ( -/obj/effect/landmark/lightsout, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/aft) -"cPi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - icon_state = "pipe-j1s"; - name = "Chemistry Junction"; - sortType = 11 - }, -/turf/open/floor/plasteel/blue/corner, -/area/hallway/primary/aft) -"cPj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cPk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"cPl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/blue, -/area/medical/medbay/central) -"cPm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/cmo, -/area/medical/medbay/central) -"cPn" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/cmo, -/area/medical/medbay/central) -"cPo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/cmo, -/area/medical/medbay/central) -"cPp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cmo, -/area/medical/medbay/central) -"cPq" = ( -/obj/effect/landmark/lightsout, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cmo, -/area/medical/medbay/central) -"cPr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/cmo, -/area/medical/medbay/central) -"cPs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/medbay/central) -"cPt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - id_tag = "MedbayFoyer"; - name = "Medbay"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cPu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cPv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral, -/area/medical/medbay/central) -"cPw" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"cPx" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/medical) -"cPy" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/checkpoint/medical) -"cPz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/security/checkpoint/medical) -"cPA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/checkpoint/medical) -"cPB" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/checkpoint/medical) -"cPC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cPD" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/brute{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/brute{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/brute{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/medical/storage) -"cPE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/cmo, -/area/medical/storage) -"cPF" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/o2{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/o2{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/machinery/requests_console{ - department = "Medbay Storage"; - departmentType = 0; - name = "Medbay Storage RC"; - pixel_x = 32 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/medical/storage) -"cPG" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/medical/medbay/central) -"cPH" = ( -/obj/machinery/door/airlock{ - name = "Bathroom" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cPI" = ( -/obj/structure/urinal{ - pixel_y = 28 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/medbay/central) -"cPJ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/medical/medbay/central) -"cPL" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPM" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/light, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/item/device/paicard, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"cPN" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/clothing/suit/jacket/letterman_nanotrasen, -/obj/item/clothing/suit/toggle/lawyer, -/obj/item/clothing/under/maid, -/obj/item/clothing/head/kitty, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"cPO" = ( -/obj/structure/bed, -/obj/machinery/light, -/obj/item/bedsheet/brown, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"cPP" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/clothing/suit/jacket{ - desc = "All the class of a trenchcoat without the security fibers."; - icon_state = "detective"; - name = "trenchcoat" - }, -/obj/item/clothing/suit/toggle/lawyer/purple, -/obj/item/clothing/head/fedora{ - icon_state = "detective" - }, -/obj/item/clothing/under/lawyer/female, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"cPQ" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/machinery/light, -/obj/item/clothing/suit/jacket{ - desc = "All the class of a trenchcoat without the security fibers."; - icon_state = "greydet"; - name = "trenchcoat" - }, -/obj/item/clothing/suit/toggle/lawyer/black, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/item/clothing/head/fedora, -/obj/item/clothing/under/redeveninggown, -/obj/item/clothing/head/rabbitears, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/dorms) -"cPR" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/grown/poppy/lily, -/obj/item/reagent_containers/food/snacks/grown/poppy/lily, -/obj/item/reagent_containers/food/snacks/grown/poppy/lily, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/dorms) -"cPS" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/toy/katana, -/obj/machinery/ai_status_display{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/crew_quarters/fitness/recreation) -"cPT" = ( -/obj/structure/table, -/obj/item/toy/cards/deck, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cPU" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cPV" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cPW" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/crew_quarters/fitness/recreation) -"cPX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/crew_quarters/fitness/recreation) -"cPY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/fitness/recreation) -"cPZ" = ( -/obj/machinery/status_display, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/fitness/recreation) -"cQa" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/crew_quarters/fitness/recreation) -"cQb" = ( -/obj/structure/rack, -/obj/item/clothing/suit/fire/firefighter, -/obj/item/clothing/mask/gas, -/obj/item/clothing/head/hardhat/red, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cQc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cQd" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cQe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 6 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cQf" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cQg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel/caution{ - dir = 8 - }, -/area/maintenance/department/electrical) -"cQh" = ( -/obj/machinery/atmospherics/components/trinary/filter, -/turf/open/floor/plasteel/caution{ - dir = 4 - }, -/area/maintenance/department/electrical) -"cQi" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cQj" = ( -/obj/machinery/computer/station_alert, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cQk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cQl" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cQm" = ( -/obj/structure/cable/white, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cQn" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cQo" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cQp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cQq" = ( -/obj/machinery/light_switch{ - pixel_x = 26 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cQr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port) -"cQs" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xenosecure"; - name = "Secure Pen Shutters" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cQt" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/machinery/button/door{ - id = "xenosecure"; - name = "Containment Control"; - pixel_y = -3; - req_access_txt = "55" - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 5 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cQu" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cQv" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/science/xenobiology) -"cQw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cQx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cQy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cQz" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cQA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/science/xenobiology) -"cQB" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/science/xenobiology) -"cQC" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/science/xenobiology) -"cQD" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/science/xenobiology) -"cQE" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cQF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 9 - }, -/area/science/xenobiology) -"cQG" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/science/xenobiology) -"cQH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/science/xenobiology) -"cQI" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cQJ" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/obj/item/stack/sheet/mineral/plasma{ - amount = 5 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/dropper, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cQK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/purple, -/area/science/research) -"cQL" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/science/research) -"cQM" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/checkpoint/science/research) -"cQN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/checkpoint/science/research) -"cQO" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/neutral, -/area/security/checkpoint/science/research) -"cQP" = ( -/obj/machinery/computer/mecha, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/checkpoint/science/research) -"cQQ" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/science/research) -"cQR" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/research) -"cQS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/purple, -/area/science/research) -"cQT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/purple, -/area/science/research) -"cQU" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/research) -"cQV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j1" - }, -/turf/open/floor/plasteel/blue/corner, -/area/hallway/primary/aft) -"cQW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/medbay/central) -"cQX" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 - }, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"cQY" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/medbay/central) -"cQZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/blue, -/area/medical/medbay/central) -"cRa" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/medbay/central) -"cRb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cRc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"cRd" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/medical) -"cRe" = ( -/obj/machinery/computer/security, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red, -/area/security/checkpoint/medical) -"cRf" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/neutral, -/area/security/checkpoint/medical) -"cRg" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/checkpoint/medical) -"cRh" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/door/airlock/security{ - name = "Security Post - Medical"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"cRi" = ( -/obj/machinery/newscaster, -/turf/closed/wall, -/area/medical/storage) -"cRj" = ( -/obj/structure/table/glass, -/obj/item/storage/box/beakers{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/syringes, -/obj/item/gun/syringe, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/medical/storage) -"cRk" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whiteblue/side, -/area/medical/storage) -"cRl" = ( -/turf/open/floor/plasteel/whiteblue/side, -/area/medical/storage) -"cRm" = ( -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = -38 - }, -/turf/open/floor/plasteel/whiteblue/side, -/area/medical/storage) -"cRn" = ( -/obj/structure/table/glass, -/obj/item/storage/belt/medical, -/obj/item/storage/belt/medical, -/obj/item/clothing/neck/stethoscope, -/obj/item/clothing/neck/stethoscope, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/medical/storage) -"cRo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Bathroom" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cRp" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/starboard/aft) -"cRq" = ( -/obj/structure/girder, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRr" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/power/apc{ - dir = 8; - name = "Recreation Area APC"; - areastring = "/area/crew_quarters/fitness/recreation"; - pixel_x = -26 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/crew_quarters/fitness/recreation) -"cRs" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cRt" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cRu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cRv" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cRw" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 1 - }, -/obj/structure/sign/nosmoking_2{ - pixel_x = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cRx" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cRy" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cRz" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cRA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cRB" = ( -/obj/machinery/power/terminal, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cRC" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cRD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cRE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cRF" = ( -/obj/machinery/power/terminal, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cRG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cRH" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cRI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/port) -"cRJ" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology - Secure Cell"; - dir = 4; - name = "xenobiology camera"; - network = list("SS13","xeno","RD") - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/science/xenobiology) -"cRK" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/door/window/brigdoor{ - dir = 8; - name = "Secure Creature Pen"; - req_access_txt = "47" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenosecure"; - name = "Secure Pen Shutters" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/science/xenobiology) -"cRL" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/window/brigdoor{ - dir = 4; - name = "Secure Creature Pen"; - req_access_txt = "47" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cRM" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cRN" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/science/xenobiology) -"cRO" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cRP" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cRQ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cRR" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cRS" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/landmark/lightsout, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cRT" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/shower{ - dir = 8; - name = "emergency shower" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cRU" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cRV" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/xenobiology) -"cRW" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel/neutral, -/area/science/xenobiology) -"cRX" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/science/xenobiology) -"cRY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cRZ" = ( -/obj/machinery/computer/camera_advanced/xenobio, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/circuit/green, -/area/science/xenobiology) -"cSa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Science - Fore"; - dir = 8; - name = "science camera"; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/science/research) -"cSb" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/machinery/door_timer{ - id = "scicell"; - name = "Science Cell"; - pixel_x = -32; - pixel_y = -32 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Security Post - Science APC"; - areastring = "/area/security/checkpoint/science/research"; - pixel_x = -26; - pixel_y = 3 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/button/door{ - desc = "A remote control switch."; - id = "scidoor"; - name = "Science Cell Control"; - normaldoorcontrol = 1; - pixel_x = -36; - pixel_y = -7 - }, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/checkpoint/science/research) -"cSc" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/science/research) -"cSd" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/camera{ - c_tag = "Security Post - Science"; - dir = 8; - name = "security camera"; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/checkpoint/science/research) -"cSe" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/electronics/airlock, -/obj/item/stock_parts/console_screen, -/obj/item/device/assembly/signaler, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/research) -"cSf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/research) -"cSg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/research) -"cSh" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/research) -"cSi" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Science - Waiting Room"; - dir = 1; - name = "science camera"; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/research) -"cSj" = ( -/obj/structure/table, -/obj/item/device/gps, -/obj/item/device/assembly/flash/handheld, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/whitepurple/side, -/area/science/research) -"cSk" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/research) -"cSl" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/research) -"cSm" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research) -"cSn" = ( -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/research) -"cSo" = ( -/obj/machinery/autolathe, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/research) -"cSp" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/stack/packageWrap, -/obj/machinery/light, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/research) -"cSq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/aft) -"cSr" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/light, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"cSs" = ( -/obj/structure/table, -/obj/item/folder/white, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"cSt" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cSu" = ( -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"cSv" = ( -/obj/structure/disposalpipe/segment, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"cSw" = ( -/obj/structure/bed/roller, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"cSx" = ( -/obj/structure/bed/roller, -/turf/open/floor/plasteel/whiteblue/side, -/area/medical/medbay/central) -"cSy" = ( -/obj/structure/bed/roller, -/obj/structure/sign/chemistry{ - pixel_y = -32 - }, -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Medbay - Waiting Room"; - dir = 1; - name = "medbay camera" - }, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/medbay/central) -"cSz" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/medbay/central) -"cSA" = ( -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/medbay/central) -"cSB" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/medbay/central) -"cSC" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/medical/medbay/central) -"cSD" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/medical) -"cSE" = ( -/obj/machinery/computer/crew, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/checkpoint/medical) -"cSF" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/neutral, -/area/security/checkpoint/medical) -"cSG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/checkpoint/medical) -"cSH" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/checkpoint/medical) -"cSI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cSJ" = ( -/obj/structure/sign/bluecross_2{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"cSL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - name = "Medbay Storage"; - req_access_txt = "5" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/storage) -"cSM" = ( -/obj/structure/table/wood, -/obj/machinery/microwave{ - desc = "Cooks and boils stuff, somehow."; - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cSN" = ( -/obj/structure/table/wood, -/obj/item/storage/box/donkpockets, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cSO" = ( -/obj/machinery/camera{ - c_tag = "Medbay - Break Room"; - dir = 2; - name = "medbay camera" - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/medical/medbay/central) -"cSP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"cSQ" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cSR" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cSS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cST" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"cSU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"cSV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cSW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"cSX" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cSY" = ( -/obj/structure/closet/crate, -/obj/item/storage/box/donkpockets, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"cSZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"cTa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 5 - }, -/area/maintenance/starboard/aft) -"cTb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/fitness/recreation) -"cTc" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/crew_quarters/fitness/recreation) -"cTd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cTe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cTf" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cTg" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cTh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cTi" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cTj" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = -26 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cTk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cTl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cTm" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/structure/closet/toolcloset, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cTn" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cTp" = ( -/obj/machinery/power/smes, -/obj/machinery/light/small, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cTq" = ( -/obj/machinery/light_switch{ - pixel_y = -26 - }, -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cTr" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cTs" = ( -/obj/machinery/power/smes, -/obj/machinery/light/small, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cTt" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cTu" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cTv" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - icon_state = "pipe-t"; - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 1 - }, -/area/science/xenobiology) -"cTw" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xenosecure"; - name = "Secure Pen Shutters" - }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-s"; - dir = 4 - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cTx" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - icon_state = "pipe-t"; - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTy" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTz" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTC" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTD" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side, -/area/science/xenobiology) -"cTE" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/science/xenobiology) -"cTF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/science/xenobiology) -"cTG" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/science/xenobiology) -"cTH" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/xenobiology) -"cTJ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/purple, -/area/science/xenobiology) -"cTK" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTL" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTM" = ( -/obj/structure/table/reinforced, -/obj/machinery/reagentgrinder{ - pixel_y = 5 - }, -/obj/machinery/requests_console{ - department = "Xenobiology Lab"; - departmentType = 0; - name = "Xenobiology RC"; - pixel_x = 32; - receive_ore_updates = 1 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology - Starboard"; - dir = 8; - name = "xenobiology camera"; - network = list("SS13","xeno","RD") - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"cTO" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/science/research) -"cTP" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/window/brigdoor{ - id = "scicell"; - name = "Medical Cell"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/red, -/area/security/checkpoint/science/research) -"cTQ" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/security/checkpoint/science/research) -"cTR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - cyclelinkeddir = 2; - name = "Research Division Access"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"cTS" = ( -/obj/structure/sign/science, -/turf/closed/wall/r_wall, -/area/science/research) -"cTT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - cyclelinkeddir = 2; - name = "Research Division Access"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"cTU" = ( -/obj/structure/sign/securearea, -/turf/closed/wall/r_wall, -/area/science/research) -"cTV" = ( -/obj/structure/sign/science, -/turf/closed/wall, -/area/science/lab) -"cTW" = ( -/turf/closed/wall/r_wall, -/area/science/lab) -"cTX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rndlab1"; - name = "Research and Development Shutter" - }, -/turf/open/floor/plating, -/area/science/lab) -"cTY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rndlab1"; - name = "Research and Development Shutter" - }, -/turf/open/floor/plating, -/area/science/lab) -"cTZ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/door/window/southleft{ - name = "Research Lab Desk"; - req_access_txt = "7" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rndlab1"; - name = "Research and Development Shutter" - }, -/obj/machinery/door/window/northleft, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/lab) -"cUb" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/science/lab) -"cUc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"cUd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/aft) -"cUe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemisttop"; - name = "Chemistry Lobby Shutters" - }, -/turf/open/floor/plating, -/area/medical/medbay/central) -"cUf" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemisttop"; - name = "Chemistry Lobby Shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/medbay/central) -"cUg" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemisttop"; - name = "Chemistry Lobby Shutters" - }, -/obj/machinery/door/window/southleft{ - name = "Chemistry Desk"; - req_access_txt = "5; 33" - }, -/obj/item/folder/yellow, -/obj/machinery/door/window/northleft, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cUh" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/smartfridge/chemistry/preloaded, -/turf/closed/wall, -/area/medical/medbay/central) -"cUi" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder/white, -/obj/item/reagent_containers/hypospray/medipen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cUj" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = 6 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/syringe, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cUk" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/reagent_containers/food/drinks/britcup, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cUl" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cUm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Medbay - Fore Port"; - dir = 8; - name = "medbay camera" - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"cUn" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/machinery/door_timer{ - id = "medcell"; - name = "Medical Cell"; - pixel_x = -32; - pixel_y = -32 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Security Post - Medical APC"; - areastring = "/area/security/checkpoint/medical"; - pixel_x = -26 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Security Post - Medbay"; - dir = 4; - name = "security camera" - }, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/checkpoint/medical) -"cUo" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/medical) -"cUp" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/checkpoint/medical) -"cUq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cUr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/blue, -/area/medical/medbay/central) -"cUs" = ( -/obj/structure/table/glass, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/obj/machinery/camera{ - c_tag = "Medbay - Sleepers"; - dir = 2; - name = "medbay camera" - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cUt" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cUu" = ( -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/medbay/central) -"cUv" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"cUw" = ( -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cUx" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/redblue, -/area/medical/medbay/central) -"cUy" = ( -/turf/open/floor/plasteel/redblue, -/area/medical/medbay/central) -"cUz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/redblue, -/area/medical/medbay/central) -"cUA" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"cUB" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cUC" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cUD" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/starboard/aft) -"cUE" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/starboard/aft) -"cUF" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cUG" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/starboard/aft) -"cUH" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/starboard/aft) -"cUI" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cUJ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cUK" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"cUL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"cUM" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/crew_quarters/fitness/recreation) -"cUN" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cUO" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cUP" = ( -/obj/structure/table, -/obj/item/clothing/under/suit_jacket/really_black, -/obj/item/cane, -/obj/item/clothing/head/bowler{ - pixel_y = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cUQ" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/folder, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cUR" = ( -/obj/structure/table, -/obj/item/toy/sword, -/obj/item/gun/ballistic/shotgun/toy/crossbow, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cUS" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cUT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/crew_quarters/fitness/recreation) -"cUU" = ( -/turf/open/floor/plasteel/escape{ - dir = 8 - }, -/area/crew_quarters/fitness/recreation) -"cUV" = ( -/obj/structure/table/wood, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/turf/open/floor/plasteel/escape{ - dir = 4 - }, -/area/crew_quarters/fitness/recreation) -"cUW" = ( -/obj/structure/mopbucket, -/obj/effect/decal/cleanable/dirt, -/obj/item/mop, -/turf/open/floor/plating, -/area/maintenance/port) -"cUX" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plating, -/area/maintenance/port) -"cUY" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Auxiliary Port"; - req_access_txt = "24" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cUZ" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/department/electrical) -"cVa" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering Auxiliary Power"; - req_access_txt = "10" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cVb" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xenosecure"; - name = "Secure Pen Shutters" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cVc" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cVd" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cVe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/neutral, -/area/science/xenobiology) -"cVf" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cVg" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cVh" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Creature Pen"; - req_access_txt = "47" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cVi" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26; - pixel_y = -32 - }, -/obj/machinery/button/door{ - id = "xeno1"; - name = "Containment Control"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cVj" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26; - pixel_y = -32 - }, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cVk" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/button/door{ - id = "xeno2"; - name = "Containment Control"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cVl" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/button/door{ - id = "xeno3"; - name = "Containment Control"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cVm" = ( -/obj/machinery/processor/slime, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cVn" = ( -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/xenobiology) -"cVo" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/start/scientist, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/science/xenobiology) -"cVp" = ( -/obj/structure/chair/office/light{ - icon_state = "officechair_white"; - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cVq" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/science/research) -"cVr" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/checkpoint/science/research) -"cVs" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/science/research) -"cVt" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/closet/secure_closet/brig{ - id = "scicell"; - name = "Science Cell Locker" - }, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/checkpoint/science/research) -"cVu" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/science/research) -"cVv" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research) -"cVw" = ( -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/research) -"cVx" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"cVy" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/research) -"cVz" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research) -"cVA" = ( -/obj/structure/sign/nosmoking_2, -/turf/closed/wall/r_wall, -/area/science/lab) -"cVB" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - icon_state = "pipe-t"; - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cVC" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/lab) -"cVD" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/lab) -"cVE" = ( -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/science/lab) -"cVF" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/science/lab) -"cVG" = ( -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/science/lab) -"cVH" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/wrench, -/obj/item/clothing/glasses/welding, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/science/lab) -"cVI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/purple/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"cVJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/aft) -"cVK" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/orange/corner, -/area/hallway/primary/aft) -"cVL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistbot"; - name = "Chemistry Side Shutters" - }, -/turf/open/floor/plating, -/area/medical/chemistry) -"cVM" = ( -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -3 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 3 - }, -/obj/item/reagent_containers/dropper, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/whiteyellow/corner{ - dir = 1 - }, -/area/medical/chemistry) -"cVN" = ( -/obj/structure/table/glass, -/obj/item/clipboard, -/obj/item/toy/figure/chemist, -/turf/open/floor/plasteel/whiteyellow/corner{ - dir = 1 - }, -/area/medical/chemistry) -"cVO" = ( -/obj/machinery/chem_master, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"cVP" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start/chemist, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"cVQ" = ( -/obj/machinery/chem_dispenser, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"cVR" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Chemistry Lab APC"; - areastring = "/area/medical/chemistry"; - pixel_y = 24 - }, -/turf/open/floor/plasteel/whiteyellow/corner{ - dir = 4 - }, -/area/medical/chemistry) -"cVS" = ( -/obj/structure/closet/wardrobe/chemistry_white, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"cVT" = ( -/obj/machinery/ai_status_display, -/turf/closed/wall, -/area/medical/chemistry) -"cVU" = ( -/obj/machinery/computer/med_data, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cVV" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cVX" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"cVY" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "MedbayFoyer"; - name = "Medbay Doors Control"; - normaldoorcontrol = 1; - pixel_x = 24; - pixel_y = 24 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"cVZ" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/medical) -"cWa" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/door/window/brigdoor{ - id = "medcell"; - name = "Medical Cell"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/red, -/area/security/checkpoint/medical) -"cWb" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/medical) -"cWd" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cWe" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/medical/medbay/central) -"cWf" = ( -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel/blue, -/area/medical/medbay/central) -"cWg" = ( -/obj/structure/mirror{ - pixel_x = 26 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"cWh" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/medical/medbay/central) -"cWi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/redblue, -/area/medical/medbay/central) -"cWj" = ( -/obj/machinery/holopad, -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/redblue, -/area/medical/medbay/central) -"cWk" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/redblue, -/area/medical/medbay/central) -"cWl" = ( -/obj/machinery/vending/cola/random, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/medical/medbay/central) -"cWm" = ( -/obj/structure/girder, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cWn" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cWo" = ( -/turf/closed/wall, -/area/medical/abandoned) -"cWp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/starboard/aft) -"cWq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cWr" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"cWs" = ( -/obj/structure/table, -/obj/item/storage/photo_album, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cWt" = ( -/obj/item/lipstick/random{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/lipstick/random{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/lipstick/random, -/obj/structure/table, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cWu" = ( -/obj/structure/table, -/obj/item/device/camera_film{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/device/camera_film, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"cWv" = ( -/turf/open/floor/plasteel/neutral/corner, -/area/crew_quarters/fitness/recreation) -"cWw" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/escape{ - dir = 8 - }, -/area/crew_quarters/fitness/recreation) -"cWx" = ( -/obj/structure/easel, -/obj/item/canvas/twentythreeXtwentythree, -/obj/item/canvas/twentythreeXtwentythree, -/obj/item/canvas/twentythreeXtwentythree, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/escape{ - dir = 4 - }, -/area/crew_quarters/fitness/recreation) -"cWy" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/gloves/color/orange, -/obj/item/storage/box/mousetraps{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/lights/mixed, -/obj/item/grenade/chem_grenade/cleaner, -/turf/open/floor/plasteel/green/side{ - dir = 8 - }, -/area/maintenance/port) -"cWz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/purple/side{ - dir = 4 - }, -/area/maintenance/port) -"cWA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cWB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"cWC" = ( -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"cWD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"cWE" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cWF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"cWG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"cWH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Port Maintenance APC"; - areastring = "/area/maintenance/port"; - pixel_y = 28 - }, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cWJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"cWK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"cWL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cWM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"cWN" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cWO" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/science/xenobiology) -"cWP" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/shieldwallgen/xenobiologyaccess, -/turf/open/floor/plating, -/area/science/xenobiology) -"cWQ" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cWR" = ( -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cWS" = ( -/obj/structure/table, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/clothing/mask/gas, -/obj/machinery/light, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cWT" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/preopen{ - id = "xeno1"; - name = "Creature Cell #1" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cWU" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/door/window/brigdoor{ - dir = 2; - name = "Creature Pen"; - req_access_txt = "47" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xeno1"; - name = "Creature Cell #1" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/science/xenobiology) -"cWV" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xeno1"; - name = "Creature Cell #1" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cWW" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/preopen{ - id = "xeno2"; - name = "Creature Cell #2" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cWX" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/door/window/brigdoor{ - dir = 2; - name = "Creature Pen"; - req_access_txt = "47" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xeno2"; - name = "Creature Cell #2" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/science/xenobiology) -"cWY" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xeno2"; - name = "Creature Cell #2" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cWZ" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/preopen{ - id = "xeno3"; - name = "Creature Cell #3" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cXa" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xeno3"; - name = "Creature Cell #3" - }, -/obj/machinery/door/window/brigdoor{ - dir = 2; - name = "Creature Pen"; - req_access_txt = "47" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/science/xenobiology) -"cXb" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xeno3"; - name = "Creature Cell #3" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cXc" = ( -/obj/machinery/smartfridge/extract/preloaded, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cXd" = ( -/turf/open/floor/plasteel/whitepurple/side{ - dir = 10 - }, -/area/science/xenobiology) -"cXe" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/whitepurple/side, -/area/science/xenobiology) -"cXf" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/whitepurple/side, -/area/science/xenobiology) -"cXg" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cXh" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/obj/item/pen, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Xenobiology Lab APC"; - areastring = "/area/science/xenobiology"; - pixel_x = 26 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cXi" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/checkpoint/science/research) -"cXj" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/science/research) -"cXk" = ( -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/checkpoint/science/research) -"cXl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - id_tag = "scidoor"; - name = "Security Post - Science"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"cXm" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research) -"cXn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"cXo" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research) -"cXp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"cXq" = ( -/obj/structure/closet/firecloset, -/obj/machinery/camera{ - c_tag = "Science - Research Division Access"; - dir = 8; - name = "science camera"; - network = list("SS13","RD") - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research) -"cXr" = ( -/obj/structure/table/reinforced, -/obj/item/stock_parts/matter_bin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/micro_laser, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cXs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/neutral, -/area/science/lab) -"cXt" = ( -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel/neutral, -/area/science/lab) -"cXu" = ( -/turf/open/floor/plasteel/neutral, -/area/science/lab) -"cXv" = ( -/obj/machinery/r_n_d/destructive_analyzer, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cXw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cXx" = ( -/obj/machinery/r_n_d/protolathe, -/obj/machinery/ai_status_display{ - pixel_x = 32 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cXy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Departures Hallway - Fore"; - dir = 8; - name = "hallway camera" - }, -/turf/open/floor/plasteel/orange/corner, -/area/hallway/primary/aft) -"cXz" = ( -/turf/closed/wall, -/area/medical/chemistry) -"cXA" = ( -/obj/structure/table/glass, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/timer{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/device/assembly/timer{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/device/assembly/timer{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 8 - }, -/area/medical/chemistry) -"cXB" = ( -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cXC" = ( -/obj/machinery/chem_heater, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"cXD" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"cXE" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"cXF" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/medical/chemistry) -"cXG" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"cXH" = ( -/obj/machinery/computer/crew, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/medbay/central) -"cXI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/neutral, -/area/medical/medbay/central) -"cXJ" = ( -/obj/machinery/holopad, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel/neutral, -/area/medical/medbay/central) -"cXK" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/medbay/central) -"cXL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_medical{ - name = "Medbay Desk"; - req_access_txt = "5" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cXM" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cXN" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/medical) -"cXO" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/checkpoint/medical) -"cXP" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/medical) -"cXQ" = ( -/obj/structure/closet/secure_closet/brig{ - id = "medcell"; - name = "Medical Cell Locker" - }, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/checkpoint/medical) -"cXR" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/blue, -/area/medical/medbay/central) -"cXS" = ( -/obj/machinery/holopad{ - pixel_y = 16 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/medbay/central) -"cXT" = ( -/obj/machinery/shower{ - dir = 8; - name = "emergency shower" - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/medbay/central) -"cXU" = ( -/obj/structure/table/wood, -/obj/item/folder/white, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -3; - pixel_y = 2 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"cXV" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/redblue, -/area/medical/medbay/central) -"cXW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/redblue, -/area/medical/medbay/central) -"cXX" = ( -/obj/machinery/vending/cigarette, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/medical/medbay/central) -"cXY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/item/retractor, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cXZ" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/sleeper{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/medical/abandoned) -"cYa" = ( -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_y = 28 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/abandoned) -"cYb" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/medical/abandoned) -"cYc" = ( -/obj/structure/table/glass, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/abandoned) -"cYd" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/abandoned) -"cYe" = ( -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_y = 28 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/abandoned) -"cYf" = ( -/obj/structure/frame/machine, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/medical/abandoned) -"cYg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cYh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cYi" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"cYj" = ( -/turf/open/floor/plasteel/neutral/corner{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/crew_quarters/fitness/recreation) -"cYk" = ( -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Recreation - Aft"; - dir = 1; - name = "recreation camera" - }, -/turf/open/floor/plasteel/neutral/side, -/area/crew_quarters/fitness/recreation) -"cYl" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/neutral/corner, -/area/crew_quarters/fitness/recreation) -"cYm" = ( -/obj/structure/table/wood, -/obj/item/stack/packageWrap{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stack/wrapping_paper, -/turf/open/floor/plasteel/escape{ - dir = 8 - }, -/area/crew_quarters/fitness/recreation) -"cYn" = ( -/obj/structure/table/wood, -/obj/item/device/camera, -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/plasteel/escape{ - dir = 4 - }, -/area/crew_quarters/fitness/recreation) -"cYo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/green/side{ - dir = 6 - }, -/area/maintenance/port) -"cYp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral/side{ - dir = 10 - }, -/area/maintenance/port) -"cYq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port) -"cYr" = ( -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port) -"cYs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cYt" = ( -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cYu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port) -"cYv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port) -"cYw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cYx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cYy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cYz" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cYA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port) -"cYB" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cYC" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port) -"cYD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"cYE" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - icon_state = "pipe-t"; - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 1 - }, -/area/science/xenobiology) -"cYF" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/item/storage/bag/bio, -/obj/item/storage/bag/bio, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cYG" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cYH" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cYI" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/ai_status_display{ - pixel_y = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cYJ" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/latex, -/obj/item/device/slime_scanner, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cYK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/science/research) -"cYL" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/science/research) -"cYM" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = -32 - }, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel, -/area/science/research) -"cYN" = ( -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/research) -"cYO" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/research) -"cYP" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/research) -"cYQ" = ( -/obj/structure/closet/l3closet/scientist, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research) -"cYR" = ( -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil/white{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil/white, -/obj/item/stock_parts/scanning_module{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cYS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/science/lab) -"cYT" = ( -/turf/open/floor/plasteel/whitepurple/side{ - dir = 9 - }, -/area/science/lab) -"cYU" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 5 - }, -/area/science/lab) -"cYV" = ( -/obj/machinery/computer/rdconsole/core, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cYW" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/lab) -"cYX" = ( -/obj/machinery/r_n_d/circuit_imprinter, -/obj/item/reagent_containers/glass/beaker/sulphuric, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cYY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/orange/corner, -/area/hallway/primary/aft) -"cYZ" = ( -/obj/structure/table/glass, -/obj/item/clothing/glasses/science{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/glasses/science, -/obj/item/stack/cable_coil/white{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil/white, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/screwdriver, -/turf/open/floor/plasteel/whiteyellow/corner{ - dir = 8 - }, -/area/medical/chemistry) -"cZa" = ( -/turf/open/floor/plasteel/whiteyellow/corner{ - dir = 8 - }, -/area/medical/chemistry) -"cZb" = ( -/turf/open/floor/plasteel/neutral, -/area/medical/chemistry) -"cZc" = ( -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 9 - }, -/area/medical/chemistry) -"cZd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 5 - }, -/area/medical/chemistry) -"cZe" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder{ - pixel_y = 5 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker/large, -/turf/open/floor/plasteel/whiteyellow/corner{ - dir = 4 - }, -/area/medical/chemistry) -"cZf" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/medical/chemistry) -"cZh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"cZi" = ( -/obj/structure/chair/office/light, -/turf/open/floor/plasteel/whiteblue/side, -/area/medical/medbay/central) -"cZj" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/light/small, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/medbay/central) -"cZk" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cZl" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/medical/medbay/central) -"cZm" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/checkpoint/medical) -"cZn" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/medical) -"cZo" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/checkpoint/medical) -"cZp" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/medical) -"cZq" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cZr" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"cZs" = ( -/turf/open/floor/plasteel/whiteblue/side, -/area/medical/medbay/central) -"cZt" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cZv" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"cZw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side, -/area/medical/medbay/central) -"cZx" = ( -/turf/open/floor/plasteel/neutral/corner, -/area/medical/medbay/central) -"cZy" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/neutral/corner, -/area/medical/medbay/central) -"cZz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/clothing/neck/stethoscope, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/starboard/aft) -"cZA" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cZB" = ( -/obj/structure/sign/examroom{ - pixel_x = -32 - }, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/abandoned) -"cZC" = ( -/turf/open/floor/plasteel/blue, -/area/medical/abandoned) -"cZD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral, -/area/medical/abandoned) -"cZE" = ( -/turf/open/floor/plasteel/neutral, -/area/medical/abandoned) -"cZF" = ( -/obj/item/crowbar/red, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/blue, -/area/medical/abandoned) -"cZG" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/medical/abandoned) -"cZH" = ( -/obj/structure/sign/bluecross_2, -/turf/closed/wall, -/area/medical/abandoned) -"cZI" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cZJ" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cZK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cZL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/maintenance/port) -"cZM" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/maintenance/port) -"cZO" = ( -/obj/structure/rack, -/obj/item/crowbar/red, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cZP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/maintenance/port) -"cZQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cZR" = ( -/obj/structure/sign/xenobio, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"cZS" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "rdxeno"; - name = "Xenobiology Containment Door" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cZT" = ( -/obj/machinery/door/poddoor/preopen{ - id = "rdxeno"; - name = "Xenobiology Containment Door" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab"; - req_access_txt = "47" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cZU" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "rdxeno"; - name = "Xenobiology Containment Door" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cZV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"cZX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"cZY" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/science/research) -"cZZ" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/gloves, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"daa" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research) -"dab" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/item/storage/pod{ - pixel_x = 32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"dac" = ( -/turf/closed/wall, -/area/science/research) -"dad" = ( -/obj/structure/sign/securearea, -/turf/closed/wall, -/area/science/research) -"dae" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/console_screen, -/obj/item/stock_parts/console_screen, -/obj/item/stock_parts/console_screen, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Research and Development Lab APC"; - areastring = "/area/science/lab"; - pixel_x = -26; - pixel_y = 3 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"daf" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/science/lab) -"dag" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/lab) -"dah" = ( -/obj/machinery/holopad{ - pixel_x = -16 - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 4 - }, -/area/science/lab) -"dai" = ( -/obj/machinery/requests_console{ - department = "Research Lab"; - departmentType = 0; - name = "Research RC"; - pixel_x = 32; - receive_ore_updates = 1 - }, -/obj/machinery/camera{ - c_tag = "Science - Research and Development"; - dir = 8; - name = "science camera"; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/lab) -"daj" = ( -/obj/structure/sign/chemistry, -/turf/closed/wall, -/area/medical/chemistry) -"dak" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/button/door{ - id = "chemistbot"; - name = "Chemistry Shutter Control"; - pixel_x = -26; - pixel_y = -7; - req_access_txt = "33" - }, -/obj/machinery/button/door{ - id = "chemisttop"; - name = "Chemistry Shutter Control"; - pixel_x = -26; - pixel_y = 7; - req_access_txt = "33" - }, -/obj/machinery/smoke_machine, -/turf/open/floor/plasteel/whiteyellow/corner{ - dir = 8 - }, -/area/medical/chemistry) -"dal" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 8 - }, -/area/medical/chemistry) -"dam" = ( -/obj/machinery/holopad{ - pixel_x = -16 - }, -/obj/effect/landmark/start/chemist, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 4 - }, -/area/medical/chemistry) -"dan" = ( -/obj/structure/table/glass, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = 6 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/dropper, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Medbay - Chemistry"; - dir = 8; - name = "medbay camera"; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/whiteyellow/corner, -/area/medical/chemistry) -"dao" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/medical/medbay/central) -"dap" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder/white, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"daq" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whiteblue, -/area/medical/medbay/central) -"dar" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/security/checkpoint/medical) -"das" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/door/airlock/glass_security{ - id_tag = "meddoor"; - name = "Medical Cell"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"dat" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dav" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"daw" = ( -/obj/structure/sign/examroom, -/turf/closed/wall, -/area/medical/medbay/central) -"dax" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"day" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/medical/medbay/central) -"daz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Break Room"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"daA" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/medical/medbay/central) -"daB" = ( -/obj/item/firstaid_arm_assembly, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/starboard/aft) -"daC" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/starboard/aft) -"daD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch/abandoned{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/abandoned) -"daE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/abandoned) -"daF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/abandoned) -"daG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/blue, -/area/medical/abandoned) -"daH" = ( -/obj/item/wrench, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/medical/abandoned) -"daI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/abandoned) -"daJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch/abandoned{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/abandoned) -"daK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"daL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/starboard/aft) -"daM" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"daN" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"daO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"daP" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/black, -/area/crew_quarters/abandoned_gambling_den) -"daQ" = ( -/obj/structure/table/wood, -/obj/machinery/cell_charger, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"daR" = ( -/obj/structure/table/wood, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/storage/toolbox/electrical, -/obj/machinery/power/apc{ - dir = 1; - name = "Abandoned Gambling Den APC"; - areastring = "/area/crew_quarters/abandoned_gambling_den"; - pixel_y = 24 - }, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"daS" = ( -/obj/structure/table/wood, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/stack/rods{ - amount = 23 - }, -/obj/item/stack/cable_coil/white{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil/white, -/obj/structure/sign/barsign{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"daT" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"daV" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"daW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/crew_quarters/abandoned_gambling_den) -"daX" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"daY" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"dba" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port) -"dbc" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port) -"dbe" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"dbf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port) -"dbg" = ( -/obj/machinery/light/small, -/obj/machinery/camera{ - c_tag = "Xenobiology - Cell 4"; - dir = 1; - name = "xenobiology camera"; - network = list("SS13","xeno","RD") - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/science/xenobiology) -"dbh" = ( -/obj/machinery/light/small, -/obj/machinery/camera{ - c_tag = "Xenobiology - Cell 5"; - dir = 1; - name = "xenobiology camera"; - network = list("SS13","xeno","RD") - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/science/xenobiology) -"dbi" = ( -/obj/machinery/light/small, -/obj/machinery/camera{ - c_tag = "Xenobiology - Cell 6"; - dir = 1; - name = "xenobiology camera"; - network = list("SS13","xeno","RD") - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/science/xenobiology) -"dbj" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"dbk" = ( -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"dbl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"dbm" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"dbn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/obj/machinery/camera{ - c_tag = "Science - Port"; - dir = 2; - name = "science camera"; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"dbo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"dbp" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"dbq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/science/research) -"dbr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/science/research) -"dbs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dbt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/science/research) -"dbu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Science - Center"; - dir = 2; - name = "science camera"; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"dbv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"dbw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/science/research) -"dbx" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/science/research) -"dby" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdrnd"; - name = "Research and Development Shutters" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/window/southleft{ - dir = 4; - name = "Research Lab Desk"; - req_access_txt = "7" - }, -/obj/machinery/door/window/westleft, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/lab) -"dbz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/lab) -"dbA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/neutral, -/area/science/lab) -"dbB" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/toy/figure/scientist, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 10 - }, -/area/science/lab) -"dbC" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/table, -/obj/item/disk/tech_disk{ - pixel_x = -6 - }, -/obj/item/disk/tech_disk{ - pixel_x = 6 - }, -/obj/item/disk/tech_disk{ - pixel_y = 6 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 6 - }, -/area/science/lab) -"dbD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral, -/area/science/lab) -"dbE" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/lab) -"dbF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rndlab2"; - name = "Secondary Research and Development Shutter" - }, -/turf/open/floor/plating, -/area/science/lab) -"dbG" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/purple, -/area/hallway/primary/aft) -"dbH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j1" - }, -/turf/open/floor/plasteel/orange/corner, -/area/hallway/primary/aft) -"dbI" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/orange, -/area/hallway/primary/aft) -"dbJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistbot"; - name = "Chemistry Side Shutters" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/chemistry) -"dbK" = ( -/obj/machinery/chem_dispenser, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"dbL" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - icon_state = "pipe-t"; - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"dbM" = ( -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 10 - }, -/area/medical/chemistry) -"dbN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 6 - }, -/area/medical/chemistry) -"dbO" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/chemistry) -"dbP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteyellow/corner, -/area/medical/chemistry) -"dbQ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/southleft{ - dir = 8; - name = "Chemistry Desk"; - req_access_txt = "5; 33" - }, -/obj/machinery/door/window/eastright{ - name = "Chemistry Desk" - }, -/obj/item/folder/white, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"dbR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteyellow/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"dbS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"dbT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"dbU" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -26; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"dbV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whiteblue, -/area/medical/medbay/central) -"dbW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"dbX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dbY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"dbZ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"dca" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/medbay/central) -"dcb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Medbay - Center"; - dir = 2; - name = "medbay camera" - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"dcc" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"dcd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/medbay/central) -"dce" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"dcg" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"dch" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/medbay/central) -"dci" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dcj" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/starboard/aft) -"dck" = ( -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/abandoned) -"dcl" = ( -/turf/open/floor/plating, -/area/medical/abandoned) -"dcm" = ( -/obj/machinery/iv_drip, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/medical/abandoned) -"dcn" = ( -/obj/structure/table/optable, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/item/surgical_drapes, -/turf/open/floor/plasteel/blue, -/area/medical/abandoned) -"dco" = ( -/obj/structure/frame/computer, -/obj/item/circuitboard/computer/operating, -/turf/open/floor/plasteel/neutral, -/area/medical/abandoned) -"dcp" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/vending/wallmed{ - name = "Emergency NanoMed"; - pixel_x = 26; - req_access_txt = "0"; - use_power = 0 - }, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/abandoned) -"dcq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/starboard/aft) -"dcr" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dcs" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"dct" = ( -/obj/machinery/vending/cigarette, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"dcu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/abandoned_gambling_den) -"dcv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"dcw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/abandoned_gambling_den) -"dcx" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"dcy" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/abandoned_gambling_den) -"dcz" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/abandoned_gambling_den) -"dcA" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/mob/living/simple_animal/cockroach, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/abandoned_gambling_den) -"dcB" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/abandoned_gambling_den) -"dcC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/abandoned_gambling_den) -"dcE" = ( -/turf/closed/wall, -/area/science/research/abandoned) -"dcF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/white, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/science/research/abandoned) -"dcG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/science/research/abandoned) -"dcH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"dcI" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"dcJ" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/research) -"dcK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/science/research) -"dcL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/purple, -/area/science/research) -"dcM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral, -/area/science/research) -"dcN" = ( -/obj/item/device/radio/beacon, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/purple, -/area/science/research) -"dcO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/science/research) -"dcP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dcQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/purple, -/area/science/research) -"dcR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/purple, -/area/science/research) -"dcS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/purple, -/area/science/research) -"dcT" = ( -/turf/open/floor/plasteel/whitepurple/side{ - dir = 4 - }, -/area/science/research) -"dcU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Research and Development Lab"; - req_access_txt = "0"; - req_one_access_txt = "7;29" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdrnd"; - name = "Research and Development Shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"dcV" = ( -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/lab) -"dcW" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/start/scientist, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/neutral, -/area/science/lab) -"dcX" = ( -/obj/structure/chair/office/light{ - icon_state = "officechair_white"; - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/lab) -"dcY" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/door/window/southleft{ - dir = 8; - name = "Research Lab Desk"; - req_access_txt = "7" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rndlab2"; - name = "Secondary Research and Development Shutter" - }, -/obj/machinery/door/window/eastright, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/lab) -"dcZ" = ( -/turf/open/floor/plasteel/purple, -/area/hallway/primary/aft) -"dda" = ( -/turf/open/floor/plasteel/orange, -/area/hallway/primary/aft) -"ddb" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistbot"; - name = "Chemistry Side Shutters" - }, -/obj/machinery/door/window/southleft{ - dir = 4; - name = "Chemistry Desk"; - req_access_txt = "5; 33" - }, -/obj/item/folder/white, -/obj/item/pen, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/southleft{ - dir = 8; - name = "Chemistry Desk"; - req_access_txt = "5; 33" - }, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"ddc" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/chemist, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"ddd" = ( -/obj/machinery/requests_console{ - department = "Chemistry Lab"; - departmentType = 0; - name = "Chemistry RC"; - pixel_y = -64; - receive_ore_updates = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"dde" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/neutral, -/area/medical/chemistry) -"ddf" = ( -/turf/open/floor/plasteel/whiteyellow/corner, -/area/medical/chemistry) -"ddg" = ( -/obj/machinery/smartfridge/chemistry/preloaded, -/turf/closed/wall, -/area/medical/chemistry) -"ddh" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 8 - }, -/area/medical/medbay/central) -"ddi" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/blue, -/area/medical/medbay/central) -"ddj" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral, -/area/medical/medbay/central) -"ddk" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/blue, -/area/medical/medbay/central) -"ddl" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whiteblue, -/area/medical/medbay/central) -"ddm" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whiteblue, -/area/medical/medbay/central) -"ddn" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/item/device/radio/beacon, -/obj/effect/landmark/lightsout, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whiteblue, -/area/medical/medbay/central) -"ddo" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whiteblue, -/area/medical/medbay/central) -"ddp" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"ddq" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/blue, -/area/medical/medbay/central) -"ddr" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/medbay/central) -"dds" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/medical/medbay/central) -"ddt" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/blue, -/area/medical/medbay/central) -"ddu" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/medical/medbay/central) -"ddv" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/blue, -/area/medical/medbay/central) -"ddw" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/blue, -/area/medical/medbay/central) -"ddx" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/blue, -/area/medical/medbay/central) -"ddy" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/medbay/central) -"ddz" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"ddA" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"ddB" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/starboard/aft) -"ddC" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/medical/abandoned) -"ddD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/abandoned) -"ddE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/whiteblue/side, -/area/medical/abandoned) -"ddF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/abandoned) -"ddG" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = 26 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/abandoned) -"ddH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/starboard/aft) -"ddI" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/dresser, -/turf/open/floor/wood, -/area/maintenance/starboard/aft) -"ddJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood, -/obj/item/clothing/suit/toggle/owlwings, -/obj/item/clothing/under/owl, -/obj/item/clothing/mask/gas/owl_mask, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ddK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood, -/obj/item/storage/secure/briefcase, -/obj/item/restraints/handcuffs, -/obj/item/grenade/smokebomb, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ddL" = ( -/obj/machinery/vending/assist, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"ddM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/abandoned_gambling_den) -"ddN" = ( -/obj/structure/chair/stool, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"ddO" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/abandoned_gambling_den) -"ddP" = ( -/obj/structure/chair/wood/normal, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/crew_quarters/abandoned_gambling_den) -"ddQ" = ( -/obj/structure/chair/wood/normal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"ddR" = ( -/obj/structure/chair/wood/normal, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/abandoned_gambling_den) -"ddS" = ( -/obj/structure/table/wood/poker, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/item/storage/wallet/random, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/abandoned_gambling_den) -"ddT" = ( -/obj/structure/table/wood/poker, -/obj/item/storage/briefcase, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"ddU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"ddV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/black, -/area/crew_quarters/abandoned_gambling_den) -"ddW" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plating, -/area/science/research/abandoned) -"ddX" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/science/research/abandoned) -"ddY" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/clipboard, -/obj/item/reagent_containers/glass/beaker/sulphuric, -/obj/item/reagent_containers/dropper, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"ddZ" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/emergency{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/emergency, -/obj/item/wrench, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dea" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"deb" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dec" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/science/research/abandoned) -"ded" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/item/pen, -/turf/open/floor/plating, -/area/science/research/abandoned) -"dee" = ( -/obj/structure/table, -/obj/item/device/flashlight/lamp, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"def" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/port) -"deg" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"deh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"dei" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 5 - }, -/area/maintenance/port) -"dej" = ( -/turf/closed/wall/r_wall, -/area/science/explab) -"del" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"dem" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/explab) -"den" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"deo" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Experimentation Lab APC"; - areastring = "/area/science/explab"; - pixel_y = 24 - }, -/obj/machinery/camera{ - c_tag = "Science - Experimentation Lab"; - dir = 2; - name = "science camera"; - network = list("SS13","RD") - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/explab) -"dep" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/explab) -"deq" = ( -/obj/structure/closet/l3closet/scientist, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/explab) -"der" = ( -/obj/structure/closet/bombcloset, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/explab) -"des" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/suit/radiation, -/obj/item/clothing/head/radiation, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/explab) -"det" = ( -/turf/closed/wall, -/area/science/explab) -"deu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/research) -"dev" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/side, -/area/science/research) -"dew" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/research) -"dey" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whitepurple/side, -/area/science/research) -"dez" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/research) -"deA" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/research) -"deB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"deC" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/research) -"deD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/purple, -/area/science/research) -"deE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/research) -"deF" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/research) -"deG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdrnd"; - name = "Research and Development Shutters" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/lab) -"deH" = ( -/obj/structure/table/reinforced, -/obj/machinery/light, -/obj/machinery/cell_charger, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"deI" = ( -/obj/structure/table/reinforced, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"deJ" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/stack/cable_coil/white, -/obj/item/stack/cable_coil/white, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"deK" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/lab) -"deL" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/dropper, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"deM" = ( -/obj/structure/table/reinforced, -/obj/machinery/light, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/button/door{ - id = "rndlab1"; - name = "Primary Research Shutters Control"; - pixel_x = -7; - pixel_y = -23; - req_access_txt = "7" - }, -/obj/machinery/button/door{ - id = "rndlab2"; - name = "Secondary Research Shutters Control"; - pixel_x = 7; - pixel_y = -23; - req_access_txt = "7" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"deN" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/purple, -/area/hallway/primary/aft) -"deO" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/orange, -/area/hallway/primary/aft) -"deP" = ( -/obj/machinery/chem_master, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/obj/structure/sign/nosmoking_2{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"deQ" = ( -/obj/machinery/chem_heater, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"deR" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteyellow/corner{ - dir = 8 - }, -/area/medical/chemistry) -"deS" = ( -/obj/structure/table/glass, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteyellow/corner, -/area/medical/chemistry) -"deT" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor/plasteel/whiteyellow/corner, -/area/medical/chemistry) -"deU" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/light_switch{ - pixel_x = 7; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteyellow/corner, -/area/medical/chemistry) -"deV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - name = "Chemistry Lab"; - req_access_txt = "5; 33" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"deW" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteyellow/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"deX" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"deY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"deZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Medbay - Port"; - dir = 1; - name = "medbay camera" - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"dfa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"dfb" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whiteblue, -/area/medical/medbay/central) -"dfc" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/medbay/central) -"dfd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dfe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/medbay/central) -"dff" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side, -/area/medical/medbay/central) -"dfg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"dfh" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"dfi" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/medbay/central) -"dfj" = ( -/obj/structure/sign/bluecross_2{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/medbay/central) -"dfl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/medbay/central) -"dfm" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/medbay/central) -"dfn" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/medbay/central) -"dfo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/medbay/central) -"dfp" = ( -/obj/structure/rack, -/obj/item/roller, -/obj/item/reagent_containers/blood, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/starboard/aft) -"dfq" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dfr" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white, -/obj/machinery/power/apc{ - dir = 2; - name = "Abandoned Medical Lab APC"; - areastring = "/area/medical/abandoned"; - pixel_x = 1; - pixel_y = -24 - }, -/turf/open/floor/plating, -/area/medical/abandoned) -"dfs" = ( -/obj/machinery/light/small, -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/medical/abandoned) -"dft" = ( -/obj/structure/table/reinforced, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/item/storage/firstaid/regular, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/suit/apron/surgical, -/obj/item/clothing/mask/surgical, -/turf/open/floor/plasteel/vault, -/area/medical/abandoned) -"dfu" = ( -/obj/structure/table/reinforced, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/item/hemostat, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/medical/abandoned) -"dfv" = ( -/obj/structure/table/reinforced, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_y = 5 - }, -/obj/item/reagent_containers/syringe, -/obj/item/clothing/neck/stethoscope, -/turf/open/floor/plasteel/vault, -/area/medical/abandoned) -"dfw" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/small, -/obj/structure/bedsheetbin, -/obj/item/gun/syringe, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault, -/area/medical/abandoned) -"dfy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/space_heater, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dfz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"dfA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch/abandoned{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"dfB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken2" - }, -/area/maintenance/starboard/aft) -"dfC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/revenantspawn, -/turf/open/floor/wood, -/area/maintenance/starboard/aft) -"dfD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood, -/obj/item/device/modular_computer/tablet/preset/cheap, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dfE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"dfF" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/hollow/reinforced/end{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"dfG" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/door/window/northright, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/crew_quarters/abandoned_gambling_den) -"dfH" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 9 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"dfI" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 1 - }, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"dfJ" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 5 - }, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"dfK" = ( -/obj/structure/table/wood/poker, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"dfL" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/abandoned_gambling_den) -"dfM" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/black, -/area/crew_quarters/abandoned_gambling_den) -"dfN" = ( -/obj/structure/table/reinforced, -/obj/item/disk/tech_disk{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/disk/tech_disk, -/obj/item/device/assembly/timer, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dfO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dfP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/science/research/abandoned) -"dfQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dfR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dfS" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/science/research/abandoned) -"dfT" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dfU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"dfV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port) -"dfW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port) -"dfX" = ( -/obj/structure/table/reinforced, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/explab) -"dfY" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/explab) -"dfZ" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 8 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/explab) -"dga" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/explab) -"dgb" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/science/explab) -"dgc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/science/explab) -"dgd" = ( -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/science/explab) -"dgf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/science/research) -"dgg" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access_txt = "47" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dgh" = ( -/obj/structure/sign/nosmoking_2, -/turf/closed/wall, -/area/science/research) -"dgi" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"dgj" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/door/airlock/research{ - name = "Firing Range"; - req_access_txt = "47" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"dgk" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"dgl" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hor) -"dgm" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hor) -"dgn" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "rdoffice"; - name = "Research Director's Shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"dgo" = ( -/obj/structure/sign/securearea, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hor) -"dgp" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "rdoffice"; - name = "Research Director's Shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"dgq" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "rdoffice"; - name = "Research Director's Shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"dgr" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "rdoffice"; - name = "Research Director's Shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"dgs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/research) -"dgt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/research) -"dgu" = ( -/turf/closed/wall, -/area/science/robotics/mechbay) -"dgv" = ( -/turf/closed/wall/r_wall, -/area/science/robotics/mechbay) -"dgw" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/robotics/mechbay) -"dgx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Research and Development Lab"; - req_access_txt = "0"; - req_one_access_txt = "7;29" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dgy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dgz" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dgA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dgB" = ( -/turf/closed/wall, -/area/hallway/primary/aft) -"dgC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Chemistry Maintenance"; - req_access_txt = "5; 33" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/medical) -"dgD" = ( -/turf/closed/wall, -/area/medical/genetics/cloning) -"dgE" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/genetics/cloning) -"dgF" = ( -/obj/structure/sign/bluecross_2, -/turf/closed/wall, -/area/medical/genetics/cloning) -"dgG" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dgH" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dgI" = ( -/turf/closed/wall, -/area/medical/surgery) -"dgJ" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/medical/surgery) -"dgK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Surgery Observation"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/surgery) -"dgL" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/medical/surgery) -"dgM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Surgery Observation"; - req_access_txt = "0" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/surgery) -"dgN" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dgO" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/starboard/aft) -"dgP" = ( -/turf/closed/wall, -/area/hallway/secondary/construction) -"dgR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/abandoned_gambling_den) -"dgS" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 8 - }, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"dgT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/abandoned_gambling_den) -"dgU" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/abandoned_gambling_den) -"dgV" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"dgW" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/crew_quarters/abandoned_gambling_den) -"dgX" = ( -/obj/structure/table/reinforced, -/obj/item/stock_parts/matter_bin, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dgY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dgZ" = ( -/obj/structure/frame/machine, -/obj/item/stack/cable_coil/white, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dha" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dhb" = ( -/obj/structure/frame/machine, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dhc" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/science/research/abandoned) -"dhd" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plasteel/neutral, -/area/science/research/abandoned) -"dhe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dhf" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical, -/obj/item/device/multitool, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/science/research/abandoned) -"dhg" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"dhh" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/turf_decal/bot, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"dhi" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/explab) -"dhj" = ( -/turf/open/floor/plasteel/neutral, -/area/science/explab) -"dhk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral, -/area/science/explab) -"dhl" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/science/explab) -"dhm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/science/explab) -"dhn" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/explab) -"dho" = ( -/turf/open/floor/plasteel/whitepurple/side{ - dir = 4 - }, -/area/science/explab) -"dhp" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/explab) -"dhq" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research) -"dhr" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dhs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dht" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dhu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Science - Lab Access"; - dir = 8; - name = "science camera"; - network = list("SS13","RD") - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research) -"dhv" = ( -/obj/structure/table/reinforced, -/obj/item/gun/energy/laser/practice{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/gun/energy/laser/practice, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/ears/earmuffs, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 32 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Firing Range APC"; - areastring = "/area/science/misc_lab/range"; - pixel_x = -26; - pixel_y = 3 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"dhw" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"dhx" = ( -/obj/item/stack/rods{ - amount = 50 - }, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/target, -/obj/item/target/syndicate, -/obj/item/target/alien, -/obj/item/target/clown, -/obj/structure/closet/crate/secure{ - desc = "A secure crate containing various materials for building a customised test-site."; - name = "Test Site Materials Crate"; - req_access_txt = "47" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"dhy" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/obj/item/device/paicard, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hor) -"dhz" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hor) -"dhA" = ( -/obj/structure/displaycase/labcage, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hor) -"dhB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hor) -"dhC" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hor) -"dhD" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "rdoffice"; - name = "Research Director's Shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"dhE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/research) -"dhF" = ( -/obj/structure/table, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/machinery/cell_charger, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dhG" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dhH" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dhI" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dhJ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dhK" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/highcap/ten_k{ - dir = 1; - name = "Mech Bay APC"; - areastring = "/area/science/robotics/mechbay"; - pixel_y = 28 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dhL" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dhM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/wrench, -/obj/item/roller, -/turf/open/floor/plasteel/blue/corner{ - dir = 1 - }, -/area/maintenance/department/medical) -"dhN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/blue/corner{ - dir = 1 - }, -/area/maintenance/department/medical) -"dhO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc{ - dir = 1; - name = "Medical Maintenance APC"; - areastring = "/area/maintenance/department/medical"; - pixel_y = 24 - }, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/stripes/end, -/turf/open/floor/plating, -/area/maintenance/department/medical) -"dhP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/blue/corner{ - dir = 4 - }, -/area/maintenance/department/medical) -"dhQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/department/medical) -"dhR" = ( -/obj/machinery/clonepod, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/medical/genetics/cloning) -"dhS" = ( -/obj/machinery/computer/cloning, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/medical/genetics/cloning) -"dhT" = ( -/obj/machinery/dna_scannernew, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/genetics/cloning) -"dhU" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/medical/genetics/cloning) -"dhV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/genetics/cloning) -"dhW" = ( -/obj/structure/table/glass, -/obj/item/storage/box/bodybags{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/medical/genetics/cloning) -"dhX" = ( -/obj/structure/table/glass, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/highcap/five_k{ - dir = 1; - name = "Cloning Lab APC"; - areastring = "/area/medical/genetics/cloning"; - pixel_y = 24 - }, -/obj/item/folder/white, -/obj/item/book/manual/medical_cloning, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/genetics/cloning) -"dhY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"dhZ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/medical/medbay/central) -"dia" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/medbay/central) -"dib" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/whiteblue, -/area/medical/medbay/central) -"dic" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"did" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/pill_bottle/mannitol, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"die" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dif" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"dig" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/medbay/central) -"dih" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/medbay/central) -"dii" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/vault, -/area/medical/surgery) -"dij" = ( -/turf/open/floor/plasteel/vault, -/area/medical/surgery) -"dik" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/vault, -/area/medical/surgery) -"dil" = ( -/obj/structure/sign/bluecross_2, -/turf/closed/wall, -/area/medical/surgery) -"dim" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/medical/surgery) -"din" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/medical/surgery) -"dio" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/medical/surgery) -"dip" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/medical/surgery) -"diq" = ( -/obj/structure/chair, -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/medical/surgery) -"dir" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dis" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/mob/living/simple_animal/cockroach, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/starboard/aft) -"dit" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/obj/item/device/flashlight, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"diu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"div" = ( -/obj/machinery/pipedispenser, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"diw" = ( -/obj/machinery/pipedispenser/disposal, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"dix" = ( -/obj/machinery/pipedispenser/disposal/transit_tube, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"diy" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"diz" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"diA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/starboard/aft) -"diB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"diC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"diD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"diE" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"diG" = ( -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/abandoned_gambling_den) -"diH" = ( -/obj/structure/table/wood/poker, -/obj/item/stack/spacecash/c1000{ - pixel_y = 8 - }, -/obj/item/stack/spacecash/c500, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/abandoned_gambling_den) -"diI" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/abandoned_gambling_den) -"diJ" = ( -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"diK" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"diL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"diM" = ( -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil/white, -/obj/item/stock_parts/scanning_module{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"diN" = ( -/obj/structure/frame/computer, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"diO" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"diP" = ( -/obj/structure/frame/machine, -/obj/item/stack/cable_coil/white, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"diQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/science/research/abandoned) -"diR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/neutral, -/area/science/research/abandoned) -"diS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"diT" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"diU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/button/door{ - id = "maintrobotics"; - name = "Decrepit Control"; - pixel_x = 26 - }, -/turf/open/floor/plating, -/area/science/research/abandoned) -"diV" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maintrobotics"; - name = "Decrepit Blast Door" - }, -/obj/structure/girder, -/obj/structure/grille, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"diW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"diX" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port) -"diY" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Science Maintenance"; - req_access_txt = "47" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"diZ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/explab) -"dja" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/explab) -"djb" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/explab) -"djc" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/explab) -"djd" = ( -/obj/structure/table/reinforced, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/item/stack/sheet/mineral/plasma{ - amount = 5 - }, -/obj/item/device/taperecorder, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"dje" = ( -/obj/structure/chair/office/light, -/obj/effect/landmark/start/scientist, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"djf" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/folder/white, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"djg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/explab) -"djh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/explab) -"dji" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Experimentation Lab"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"djj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research) -"djk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"djl" = ( -/obj/machinery/holopad, -/obj/effect/landmark/lightsout, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research) -"djm" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"djn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Firing Range"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"djo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"djp" = ( -/obj/machinery/holopad, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"djq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"djr" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "rdoffice"; - name = "Research Director's Shutters" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"djs" = ( -/obj/structure/table/reinforced, -/obj/item/device/aicard, -/obj/item/circuitboard/aicore, -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - icon_state = "pipe-j1s"; - name = "RD's Junction"; - sortType = 13 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hor) -"djt" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hor) -"dju" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hor) -"djv" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hor) -"djw" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hor) -"djx" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "rdoffice"; - name = "Research Director's Shutters" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"djy" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/research) -"djz" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - icon_state = "pipe-j1s"; - name = "Robotics Junction"; - sortType = 14 - }, -/turf/open/floor/plasteel/neutral, -/area/science/research) -"djA" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/research) -"djB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/robotics/mechbay) -"djC" = ( -/obj/machinery/recharge_station, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"djD" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/cyborg, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"djE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"djF" = ( -/obj/machinery/computer/mech_bay_power_console, -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"djG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/mech_bay_recharge_floor, -/area/science/robotics/mechbay) -"djH" = ( -/obj/machinery/mech_bay_recharge_port{ - icon_state = "recharge_port"; - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/science/robotics/mechbay) -"djI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"djJ" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"djK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Departures Hallway - Mech Bay"; - dir = 4; - name = "hallway camera" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"djL" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/aft) -"djM" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/medical) -"djN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/medical) -"djO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/medical) -"djP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/maintenance/department/medical) -"djQ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/maintenance/department/medical) -"djR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/dropper, -/turf/open/floor/plasteel/blue/corner{ - dir = 4 - }, -/area/maintenance/department/medical) -"djS" = ( -/obj/machinery/door/window/eastleft, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/medical/genetics/cloning) -"djT" = ( -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/genetics/cloning) -"djU" = ( -/turf/open/floor/plasteel/neutral, -/area/medical/genetics/cloning) -"djV" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/genetics/cloning) -"djW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/genetics/cloning) -"djX" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/medical/genetics/cloning) -"djY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - id_tag = "cloningfoyer"; - name = "Cloning Lab"; - req_access_txt = "5" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/genetics/cloning) -"djZ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"dka" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/blue, -/area/medical/medbay/central) -"dkb" = ( -/turf/open/floor/plasteel/whiteblue, -/area/medical/medbay/central) -"dkc" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dkd" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dke" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dkf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/medbay/central) -"dkg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/medical/surgery) -"dkh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Surgery Observation"; - req_access_txt = "0" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/surgery) -"dki" = ( -/obj/structure/chair, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/medical/surgery) -"dkj" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/starboard/aft) -"dkk" = ( -/obj/structure/rack, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"dkl" = ( -/turf/open/floor/plating, -/area/hallway/secondary/construction) -"dkm" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/hallway/secondary/construction) -"dkn" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 4 - }, -/area/hallway/secondary/construction) -"dko" = ( -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dkp" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/breath, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dkq" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"dkr" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dks" = ( -/obj/structure/table/wood/poker, -/obj/item/clothing/glasses/sunglasses/big, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/abandoned_gambling_den) -"dkt" = ( -/obj/structure/table/wood/poker, -/obj/item/stack/spacecash/c10{ - pixel_x = -16; - pixel_y = 8 - }, -/obj/item/stack/spacecash/c100, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/abandoned_gambling_den) -"dku" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck/syndicate{ - icon_state = "deck_syndicate_full"; - pixel_y = 6 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/abandoned_gambling_den) -"dkv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/mob/living/simple_animal/cockroach, -/turf/open/floor/wood, -/area/crew_quarters/abandoned_gambling_den) -"dkw" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/crew_quarters/abandoned_gambling_den) -"dkx" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/abandoned_gambling_den) -"dky" = ( -/obj/effect/decal/cleanable/vomit/old, -/obj/effect/landmark/blobstart, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/abandoned_gambling_den) -"dkz" = ( -/obj/item/storage/toolbox/emergency, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/abandoned_gambling_den) -"dkA" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/abandoned_gambling_den) -"dkB" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/console_screen, -/obj/item/stock_parts/console_screen, -/obj/item/stock_parts/console_screen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/science/research/abandoned) -"dkC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dkD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dkE" = ( -/turf/open/floor/plating, -/area/science/research/abandoned) -"dkF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dkG" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dkH" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dkI" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dkJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/barricade/wooden, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dkK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/poddoor/preopen{ - id = "maintrobotics"; - name = "Decrepit Blast Door" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/girder, -/obj/structure/grille, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"dkL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/port) -"dkM" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port) -"dkN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/explab) -"dkO" = ( -/obj/structure/table, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/explab) -"dkP" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/explab) -"dkQ" = ( -/obj/machinery/light, -/obj/machinery/disposal/bin, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/explab) -"dkR" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/white, -/obj/item/clothing/gloves/color/white, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"dkS" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/experimentor, -/obj/item/device/healthanalyzer, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"dkT" = ( -/obj/machinery/computer/rdconsole/experiment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/explab) -"dkU" = ( -/obj/structure/table/reinforced, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"dkV" = ( -/obj/structure/table/reinforced, -/obj/machinery/light, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"dkW" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/explab) -"dkX" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/science/explab) -"dkY" = ( -/obj/machinery/light/small, -/obj/structure/closet/firecloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research) -"dkZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dla" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/research) -"dlb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dlc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/research) -"dld" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"dle" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"dlf" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"dlg" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/door/airlock/command{ - name = "Research Director's Office"; - req_access = null; - req_access_txt = "30" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hor) -"dlh" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hor) -"dli" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/crew_quarters/heads/hor) -"dlj" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/crew_quarters/heads/hor) -"dlk" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/crew_quarters/heads/hor) -"dll" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hor) -"dlm" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/door/airlock/command{ - name = "Research Director's Office"; - req_access = null; - req_access_txt = "30" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hor) -"dln" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/research) -"dlo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/purple, -/area/science/research) -"dlp" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/research) -"dlq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dlr" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dls" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dlt" = ( -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"dlu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dlv" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dlw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/poddoor/shutters{ - id = "mechbay"; - name = "Mech Bay Shutters" - }, -/obj/machinery/button/door{ - id = "mechbay"; - name = "Mech Bay Shutters Control"; - pixel_y = 26; - req_access_txt = "29" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dlx" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dly" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/aft) -"dlz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/medical) -"dlA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit/old, -/turf/open/floor/plating, -/area/maintenance/department/medical) -"dlB" = ( -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/maintenance/department/medical) -"dlC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/maintenance/department/medical) -"dlD" = ( -/obj/structure/rack, -/obj/item/device/healthanalyzer, -/obj/item/clothing/glasses/eyepatch, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/medical) -"dlE" = ( -/obj/machinery/door/window/eastright, -/obj/machinery/ai_status_display{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/medical/genetics/cloning) -"dlF" = ( -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/medical/genetics/cloning) -"dlG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/genetics/cloning) -"dlH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/genetics/cloning) -"dlI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/medical/genetics/cloning) -"dlJ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/genetics/cloning) -"dlK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/genetics/cloning) -"dlL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - id_tag = "cloningfoyer"; - name = "Cloning Lab"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/genetics/cloning) -"dlM" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"dlN" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/medical/medbay/central) -"dlO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/medbay/central) -"dlP" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dlQ" = ( -/obj/machinery/atmospherics/pipe/manifold4w/general/visible, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dlR" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dlS" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/surgery) -"dlT" = ( -/obj/structure/rack, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/obj/item/stack/packageWrap, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"dlU" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/hallway/secondary/construction) -"dlW" = ( -/obj/structure/chair/stool/bar, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/abandoned_gambling_den) -"dlX" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"dlY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/revenantspawn, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/abandoned_gambling_den) -"dlZ" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 6 - }, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"dma" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/crew_quarters/abandoned_gambling_den) -"dmb" = ( -/obj/structure/table/wood, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/black, -/area/crew_quarters/abandoned_gambling_den) -"dmc" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/science/research/abandoned) -"dmd" = ( -/obj/machinery/light/small, -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dme" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dmf" = ( -/obj/structure/cable/white, -/obj/machinery/power/apc{ - dir = 2; - name = "Abandoned Research Lab APC"; - areastring = "/area/science/research/abandoned"; - pixel_x = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dmg" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/science/research/abandoned) -"dmh" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/science/research/abandoned) -"dmi" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch{ - pixel_x = 26 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dmj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/poddoor/preopen{ - id = "maintrobotics"; - name = "Decrepit Blast Door" - }, -/obj/structure/girder, -/obj/structure/grille, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"dmk" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"dml" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/science/explab) -"dmm" = ( -/obj/machinery/door/firedoor/heavy, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/button/door{ - id = "experimentor"; - name = "Experimentor Door Control"; - pixel_x = -26; - req_access_txt = "47" - }, -/obj/machinery/door/poddoor/preopen{ - id = "experimentor"; - name = "Test Chamber Blast door" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/science/explab) -"dmn" = ( -/obj/structure/sign/securearea, -/turf/closed/wall/r_wall, -/area/science/explab) -"dmo" = ( -/obj/machinery/status_display, -/turf/closed/wall/r_wall, -/area/science/explab) -"dmp" = ( -/obj/machinery/door/firedoor/heavy, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/explab) -"dmq" = ( -/obj/machinery/door/firedoor/heavy, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/science/explab) -"dmr" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/science/explab) -"dms" = ( -/turf/closed/wall/r_wall, -/area/science/mixing) -"dmt" = ( -/obj/structure/sign/fire, -/turf/closed/wall/r_wall, -/area/science/mixing) -"dmu" = ( -/obj/machinery/door/firedoor/heavy, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdtoxins"; - name = "Toxins Lab Shutters" - }, -/turf/open/floor/plating, -/area/science/mixing) -"dmv" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research{ - name = "Toxins Mixing Lab"; - req_access_txt = "8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdtoxins"; - name = "Toxins Lab Shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dmw" = ( -/obj/structure/sign/biohazard, -/turf/closed/wall/r_wall, -/area/science/mixing) -"dmx" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"dmy" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/window/northright{ - name = "Shooting Range" - }, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"dmz" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"dmA" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Research Director's Office APC"; - areastring = "/area/crew_quarters/heads/hor"; - pixel_x = -26 - }, -/obj/structure/cable/white, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/bot, -/obj/item/twohanded/required/kirbyplants/dead, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hor) -"dmB" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/crew_quarters/heads/hor) -"dmC" = ( -/obj/structure/chair/office/light, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/hor) -"dmD" = ( -/obj/structure/chair/office/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/crew_quarters/heads/hor) -"dmE" = ( -/obj/structure/table, -/obj/item/cartridge/signal/toxins{ - pixel_x = 6 - }, -/obj/item/cartridge/signal/toxins{ - pixel_x = -6 - }, -/obj/item/cartridge/signal/toxins{ - pixel_y = 6 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/camera{ - c_tag = "Science - Research Director's Office"; - dir = 8; - name = "science camera"; - network = list("SS13","RD") - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hor) -"dmF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/research) -"dmG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/science/research) -"dmH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/research) -"dmI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Mech Bay"; - req_access_txt = "29" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dmJ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dmK" = ( -/turf/open/floor/plasteel/neutral, -/area/science/robotics/mechbay) -"dmL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/science/robotics/mechbay) -"dmM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/roboticist, -/turf/open/floor/plasteel/neutral, -/area/science/robotics/mechbay) -"dmN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dmO" = ( -/obj/machinery/door/poddoor/shutters{ - id = "mechbay"; - name = "Mech Bay Shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dmP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dmQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/aft) -"dmR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/blue/corner{ - dir = 8 - }, -/area/maintenance/department/medical) -"dmS" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/medical) -"dmT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/blue/corner, -/area/maintenance/department/medical) -"dmU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/blue/corner, -/area/maintenance/department/medical) -"dmV" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/medical/genetics/cloning) -"dmW" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/genetics/cloning) -"dmX" = ( -/obj/structure/closet/crate/freezer/surplus_limbs, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/medical/genetics/cloning) -"dmY" = ( -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/genetics/cloning) -"dmZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitepurple/corner, -/area/medical/genetics/cloning) -"dna" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/genetics/cloning) -"dnb" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 7; - pixel_y = -26 - }, -/obj/machinery/light, -/obj/machinery/light_switch{ - pixel_x = 7; - pixel_y = -38 - }, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "cloningfoyer"; - name = "Cloning Doors Control"; - normaldoorcontrol = 1; - pixel_x = -6; - pixel_y = -24 - }, -/obj/machinery/camera{ - c_tag = "Medbay - Cloning Lab"; - dir = 1; - name = "medbay camera" - }, -/turf/open/floor/plasteel/whitepurple/corner, -/area/medical/genetics/cloning) -"dnc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"dnd" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/blue, -/area/medical/medbay/central) -"dne" = ( -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/reagent_containers/glass/beaker/cryoxadone, -/obj/item/reagent_containers/glass/beaker/cryoxadone, -/obj/item/reagent_containers/dropper, -/turf/open/floor/plasteel/whiteblue, -/area/medical/medbay/central) -"dnf" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dng" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dnh" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dni" = ( -/obj/structure/table/glass, -/obj/item/wrench/medical, -/obj/item/clothing/neck/stethoscope, -/obj/machinery/camera{ - c_tag = "Medbay - Cryogenics"; - dir = 1; - name = "medbay camera" - }, -/turf/open/floor/plasteel/whiteblue, -/area/medical/medbay/central) -"dnj" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/medbay/central) -"dnk" = ( -/obj/structure/sign/nosmoking_2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/surgery) -"dnl" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/surgery) -"dnm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/surgery) -"dnn" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/machinery/iv_drip, -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/surgery) -"dno" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/surgery) -"dnp" = ( -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/suit/apron/surgical, -/obj/item/clothing/mask/surgical, -/obj/item/surgical_drapes, -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/surgery) -"dnq" = ( -/obj/item/retractor, -/obj/item/hemostat, -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 5 - }, -/area/medical/surgery) -"dnr" = ( -/obj/item/circular_saw, -/obj/item/surgicaldrill{ - pixel_y = 5 - }, -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/whiteblue, -/area/medical/surgery) -"dns" = ( -/obj/item/scalpel, -/obj/item/cautery, -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 9 - }, -/area/medical/surgery) -"dnt" = ( -/obj/machinery/computer/med_data/laptop, -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/surgery) -"dnu" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dnv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/secondary/construction) -"dnw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/hallway/secondary/construction) -"dnx" = ( -/turf/open/floor/plasteel/yellow/corner{ - dir = 4 - }, -/area/hallway/secondary/construction) -"dny" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"dnz" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/window/eastleft, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/crew_quarters/abandoned_gambling_den) -"dnA" = ( -/obj/structure/table/wood, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/item/book/manual/wiki/engineering_hacking, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"dnB" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/research/abandoned) -"dnC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dnD" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"dnE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault, -/area/science/explab) -"dnF" = ( -/turf/open/floor/plasteel/vault, -/area/science/explab) -"dnG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault, -/area/science/explab) -"dnH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault, -/area/science/explab) -"dnI" = ( -/obj/structure/closet/bombcloset, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dnJ" = ( -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/mixing) -"dnK" = ( -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/science/mixing) -"dnL" = ( -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/science/mixing) -"dnM" = ( -/obj/structure/closet/bombcloset, -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = 26 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dnN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"dnO" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"dnP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"dnQ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hor) -"dnR" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/crew_quarters/heads/hor) -"dnS" = ( -/obj/structure/table/reinforced, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/button/door{ - id = "rdxeno"; - name = "Xenobiology Containment Control"; - pixel_x = -7; - pixel_y = 7; - req_access_txt = "30" - }, -/obj/machinery/button/door{ - id = "rdtoxins"; - name = "Toxins Containment Control"; - pixel_x = -7; - pixel_y = -4; - req_access_txt = "30" - }, -/obj/machinery/button/door{ - id = "rdrnd"; - name = "Research and Development Containment Control"; - pixel_x = 7; - pixel_y = 7; - req_access_txt = "30" - }, -/obj/machinery/button/door{ - id = "rdoffice"; - name = "Privacy Control"; - pixel_x = 7; - pixel_y = -4; - req_access_txt = "30" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/hor) -"dnT" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/obj/item/stamp/rd, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 4 - }, -/area/crew_quarters/heads/hor) -"dnU" = ( -/obj/machinery/computer/card/minor/rd, -/obj/machinery/ai_status_display{ - pixel_x = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hor) -"dnV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/purple, -/area/science/research) -"dnW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dnX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"dnY" = ( -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"dnZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/aft) -"doa" = ( -/turf/closed/wall, -/area/medical/genetics) -"dob" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Genetics Desk Maintenance"; - req_access_txt = "9" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/maintenance/department/medical) -"doc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/department/medical) -"dod" = ( -/turf/closed/wall/r_wall, -/area/medical/genetics) -"doe" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/genetics) -"dof" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Genetics Lab"; - req_access_txt = "9" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/genetics) -"dog" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/medical/genetics) -"doh" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Medbay APC"; - areastring = "/area/medical/medbay/central"; - pixel_x = -26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"doi" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/medical/medbay/central) -"doj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/medbay/central) -"dok" = ( -/obj/structure/sign/bluecross_2, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/cmo) -"dol" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/cmo) -"dom" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cmoshutter"; - name = "CMO Office Shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/cmo) -"don" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"doo" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/surgery) -"dop" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/surgery) -"doq" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/machinery/iv_drip, -/obj/machinery/camera{ - c_tag = "Medbay - Recovery Room"; - dir = 8; - name = "medbay camera" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/surgery) -"dor" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/surgery) -"dos" = ( -/turf/open/floor/plasteel/blue, -/area/medical/surgery) -"dot" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/surgery) -"dou" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/blue, -/area/medical/surgery) -"dov" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/mirror{ - pixel_x = 26; - pixel_y = 32 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/surgery) -"dow" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/starboard/aft) -"dox" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"doy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch/abandoned{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"doz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"doA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/secondary/construction) -"doB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/secondary/construction) -"doC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plating, -/area/hallway/secondary/construction) -"doD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"doE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch/abandoned{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"doF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"doG" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 10 - }, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"doH" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/hollow/reinforced/directional, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"doI" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/hollow/reinforced/end{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"doJ" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/abandoned_gambling_den) -"doK" = ( -/obj/structure/table/wood, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/timer{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"doL" = ( -/obj/structure/table, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"doM" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/science/research/abandoned) -"doN" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"doO" = ( -/obj/structure/table/reinforced, -/obj/item/device/mmi, -/obj/item/device/assembly/prox_sensor, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/science/research/abandoned) -"doP" = ( -/obj/structure/frame/machine, -/obj/item/stack/cable_coil/white, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/science/research/abandoned) -"doQ" = ( -/obj/structure/rack, -/obj/item/book/manual/robotics_cyborgs, -/obj/item/storage/belt/utility, -/obj/item/reagent_containers/glass/beaker/large, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"doR" = ( -/obj/machinery/mecha_part_fabricator, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"doS" = ( -/obj/structure/table/reinforced, -/obj/item/stock_parts/console_screen, -/obj/item/stock_parts/micro_laser, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"doT" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/device/assembly/flash/handheld, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"doU" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/port) -"doV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port) -"doW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/science/explab) -"doX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/science/explab) -"doY" = ( -/mob/living/simple_animal/pet/dog/pug{ - name = "Swanson" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/science/explab) -"doZ" = ( -/obj/effect/landmark/revenantspawn, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/science/explab) -"dpa" = ( -/obj/machinery/r_n_d/experimentor, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/science/explab) -"dpb" = ( -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/science/explab) -"dpc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/science/explab) -"dpd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/science/explab) -"dpe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/science/explab) -"dpf" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/mixing) -"dpg" = ( -/turf/open/floor/plasteel/neutral, -/area/science/mixing) -"dph" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26; - pixel_y = 26 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/mixing) -"dpi" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/sign/securearea{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"dpj" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"dpk" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/toy/figure/rd, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Research Director's Desk"; - departmentType = 5; - name = "Research Director's RC"; - pixel_x = -32; - receive_ore_updates = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hor) -"dpl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/crew_quarters/heads/hor) -"dpm" = ( -/obj/machinery/computer/aifixer, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/hor) -"dpn" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/landmark/start/research_director, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitepurple/corner, -/area/crew_quarters/heads/hor) -"dpo" = ( -/obj/machinery/computer/mecha, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hor) -"dpp" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "rdoffice"; - name = "Research Director's Shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"dpq" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/research) -"dpr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/science/research) -"dps" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/research) -"dpt" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/robotics/mechbay) -"dpu" = ( -/obj/machinery/recharge_station, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dpv" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/cyborg, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dpw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dpx" = ( -/obj/machinery/computer/mech_bay_power_console, -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"dpy" = ( -/obj/machinery/mech_bay_recharge_port{ - icon_state = "recharge_port"; - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/science/robotics/mechbay) -"dpz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24; - pixel_y = -26 - }, -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = -38 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dpA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dpB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/purple/corner, -/area/hallway/primary/aft) -"dpC" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/genetics) -"dpD" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/medical/genetics) -"dpE" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/medical/genetics) -"dpF" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/medical/genetics) -"dpG" = ( -/obj/structure/table/glass, -/obj/item/storage/box/beakers{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/masks, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/medical/genetics) -"dpH" = ( -/obj/machinery/status_display, -/turf/closed/wall/r_wall, -/area/medical/genetics) -"dpI" = ( -/obj/structure/table/reinforced, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/obj/item/clothing/gloves/color/latex, -/obj/item/storage/box/disks, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/medical/genetics) -"dpJ" = ( -/obj/machinery/computer/scan_consolenew, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/genetics) -"dpK" = ( -/obj/machinery/dna_scannernew, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/genetics) -"dpL" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/firealarm{ - pixel_x = -26; - pixel_y = 26 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/medical/genetics) -"dpM" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"dpN" = ( -/obj/machinery/button/door{ - id = "geneticslab"; - name = "Genetics Lab Shutters"; - pixel_x = 26; - pixel_y = 26; - req_access_txt = "9" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 4 - }, -/area/medical/genetics) -"dpO" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel, -/area/medical/genetics) -"dpP" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "geneticslab"; - name = "Genetics Lab Shutters" - }, -/turf/open/floor/plating, -/area/medical/genetics) -"dpR" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cmoshutter"; - name = "CMO Office Shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/cmo) -"dpS" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/crew_quarters/heads/cmo) -"dpT" = ( -/obj/structure/table/glass, -/obj/item/folder/blue, -/obj/item/cartridge/medical{ - pixel_x = -3 - }, -/obj/item/cartridge/medical{ - pixel_x = 3 - }, -/obj/item/cartridge/chemistry{ - pixel_y = 6 - }, -/turf/open/floor/plasteel/cmo, -/area/crew_quarters/heads/cmo) -"dpU" = ( -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/device/flashlight/pen, -/obj/item/clothing/neck/stethoscope, -/turf/open/floor/plasteel/cmo, -/area/crew_quarters/heads/cmo) -"dpV" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel/cmo, -/area/crew_quarters/heads/cmo) -"dpW" = ( -/obj/structure/table/glass, -/obj/item/folder/blue, -/obj/item/clothing/glasses/hud/health, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/crew_quarters/heads/cmo) -"dpX" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/blue, -/area/medical/medbay/central) -"dpY" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/medbay/central) -"dpZ" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/medical{ - name = "Recovery Room" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/surgery) -"dqa" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/surgery) -"dqb" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/blue, -/area/medical/surgery) -"dqc" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/surgery) -"dqd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Surgery Theatre"; - req_access_txt = "45" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/surgery) -"dqe" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/surgery) -"dqf" = ( -/obj/machinery/computer/operating, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/surgery) -"dqg" = ( -/obj/structure/table/optable, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/blue, -/area/medical/surgery) -"dqh" = ( -/obj/machinery/holopad, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/surgery) -"dqi" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/surgery) -"dqj" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Surgery Maintenance"; - req_access_txt = "45" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"dqk" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"dql" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/starboard/aft) -"dqm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/yellow/corner{ - dir = 8 - }, -/area/hallway/secondary/construction) -"dqn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/hallway/secondary/construction) -"dqo" = ( -/obj/structure/table, -/obj/item/device/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"dqp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/starboard/aft) -"dqq" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/item/weldingtool, -/obj/item/device/assembly/voice, -/obj/item/clothing/head/welding, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"dqr" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"dqs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dqt" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plasteel/black, -/area/crew_quarters/abandoned_gambling_den) -"dqu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/abandoned_gambling_den) -"dqv" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/crew_quarters/abandoned_gambling_den) -"dqw" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/black, -/area/crew_quarters/abandoned_gambling_den) -"dqx" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dqy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dqz" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dqA" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port) -"dqB" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/science/explab) -"dqC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/science/explab) -"dqD" = ( -/obj/machinery/camera{ - c_tag = "Science - Experimentor"; - dir = 1; - name = "science camera"; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/science/explab) -"dqE" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Science - Toxins Mixing Lab Fore"; - dir = 4; - name = "science camera"; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/escape{ - dir = 8 - }, -/area/science/mixing) -"dqF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/mixing) -"dqG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump, -/turf/open/floor/plasteel/neutral, -/area/science/mixing) -"dqH" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/science/mixing) -"dqI" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 8; - on = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dqJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Science - Firing Range"; - dir = 4; - name = "science camera"; - network = list("SS13","RD") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"dqK" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/science/misc_lab/range) -"dqL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"dqM" = ( -/obj/structure/table/reinforced, -/obj/machinery/light, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/item/storage/secure/briefcase, -/obj/item/device/taperecorder, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26; - pixel_y = -26 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hor) -"dqN" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/crew_quarters/heads/hor) -"dqO" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitepurple/side, -/area/crew_quarters/heads/hor) -"dqP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitepurple/corner, -/area/crew_quarters/heads/hor) -"dqQ" = ( -/obj/machinery/computer/robotics, -/obj/machinery/light, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/keycard_auth{ - pixel_x = -5; - pixel_y = -26 - }, -/obj/machinery/light_switch{ - pixel_x = 5; - pixel_y = -26 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hor) -"dqR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/purple, -/area/science/research) -"dqS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Science - Aft Center"; - dir = 8; - name = "science camera"; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/research) -"dqT" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dqU" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dqV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dqW" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/camera{ - c_tag = "Science - Mech Bay"; - dir = 1; - name = "science camera"; - network = list("SS13","RD") - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dqX" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dqY" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dqZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dra" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"drb" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"drc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/aft) -"drd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - icon_state = "pipe-j1s"; - name = "Genetics Junction"; - sortType = 23 - }, -/turf/open/floor/plasteel/purple/corner, -/area/hallway/primary/aft) -"dre" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Genetics Desk"; - req_access_txt = "9" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/genetics) -"drf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/genetics) -"drg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/medical/genetics) -"drh" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/neutral, -/area/medical/genetics) -"dri" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/medical/genetics) -"drj" = ( -/obj/structure/table/glass, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/item/clipboard, -/obj/item/toy/figure/geneticist, -/obj/machinery/power/apc{ - dir = 4; - name = "Genetics Lab APC"; - areastring = "/area/medical/genetics"; - pixel_x = 26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/medical/genetics) -"drk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/genetics) -"drl" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/obj/item/storage/pill_bottle/mutadone, -/obj/item/storage/pill_bottle/mannitol, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Medbay - Genetics Lab"; - dir = 4; - name = "medbay camera" - }, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/medical/genetics) -"drm" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/geneticist, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 9 - }, -/area/medical/genetics) -"drn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/medical/genetics) -"dro" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/medical/genetics) -"drp" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/medical/genetics) -"drq" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 4 - }, -/area/medical/genetics) -"drr" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/westright{ - name = "'Monkey Pen"; - req_access_txt = "9" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel, -/area/medical/genetics) -"drs" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "geneticslab"; - name = "Genetics Lab Shutters" - }, -/turf/open/floor/plating, -/area/medical/genetics) -"drt" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"dru" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/medical/medbay/central) -"drv" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/medbay/central) -"drw" = ( -/obj/machinery/door/airlock/command{ - name = "Chief Medical Officer's Office"; - req_access_txt = "40" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/cmo) -"drx" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/crew_quarters/heads/cmo) -"dry" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/cmo, -/area/crew_quarters/heads/cmo) -"drz" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/cmo, -/area/crew_quarters/heads/cmo) -"drA" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/cmo, -/area/crew_quarters/heads/cmo) -"drB" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/crew_quarters/heads/cmo) -"drC" = ( -/obj/machinery/door/airlock/command{ - name = "Chief Medical Officer's Office"; - req_access_txt = "40" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/cmo) -"drD" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"drE" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/landmark/lightsout, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/medbay/central) -"drF" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/medbay/central) -"drG" = ( -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/surgery) -"drH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/surgery) -"drI" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/surgery) -"drJ" = ( -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/surgery) -"drK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/surgery) -"drL" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whiteblue/side, -/area/medical/surgery) -"drM" = ( -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/surgery) -"drN" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26 - }, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/surgery) -"drO" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/starboard/aft) -"drP" = ( -/obj/structure/rack, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/storage/toolbox/emergency{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/electrical, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"drQ" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating, -/area/hallway/secondary/construction) -"drR" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/hallway/secondary/construction) -"drS" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/secondary/construction) -"drT" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/secondary/construction) -"drU" = ( -/obj/structure/table, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/item/electronics/firealarm, -/obj/item/stock_parts/console_screen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"drV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"drW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"drX" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"drY" = ( -/obj/structure/closet/firecloset, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"drZ" = ( -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"dsa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/abandoned_gambling_den) -"dsb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/abandoned_gambling_den) -"dsc" = ( -/obj/structure/chair/stool/bar, -/turf/open/floor/wood, -/area/crew_quarters/abandoned_gambling_den) -"dsd" = ( -/obj/structure/chair/stool/bar, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/crew_quarters/abandoned_gambling_den) -"dse" = ( -/mob/living/simple_animal/cockroach, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/abandoned_gambling_den) -"dsf" = ( -/obj/machinery/recharge_station, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dsg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dsh" = ( -/turf/open/floor/circuit/green, -/area/science/research/abandoned) -"dsi" = ( -/obj/machinery/computer/mech_bay_power_console, -/turf/open/floor/circuit/green, -/area/science/research/abandoned) -"dsj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dsk" = ( -/turf/open/floor/plasteel/neutral, -/area/science/research/abandoned) -"dsl" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dsm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch{ - pixel_x = 26 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dsn" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/sign/nosmoking_2{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/escape{ - dir = 8 - }, -/area/science/mixing) -"dso" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/mixing) -"dsp" = ( -/obj/effect/landmark/start/scientist, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/science/mixing) -"dsq" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/science/mixing) -"dsr" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dss" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"dst" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"dsu" = ( -/turf/closed/wall, -/area/crew_quarters/heads/hor) -"dsv" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"dsw" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/door/airlock/command{ - name = "Research Director's Quarters"; - req_access = null; - req_access_txt = "30" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hor) -"dsx" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"dsy" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dsz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dsA" = ( -/turf/closed/wall, -/area/science/robotics/lab) -"dsB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "roboticsprivacy"; - name = "Robotics Shutters" - }, -/turf/open/floor/plating, -/area/science/robotics/lab) -"dsC" = ( -/obj/structure/sign/science, -/turf/closed/wall, -/area/science/robotics/lab) -"dsD" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass_research{ - name = "Robotics Lab"; - req_access_txt = "29" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dsE" = ( -/turf/closed/wall/r_wall, -/area/science/robotics/lab) -"dsF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dsG" = ( -/obj/structure/table/glass, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/folder/white, -/obj/item/storage/box/disks, -/obj/machinery/camera{ - c_tag = "Medbay - Genetics Desk"; - dir = 4; - name = "medbay camera" - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/medical/genetics) -"dsH" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral, -/area/medical/genetics) -"dsI" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/genetics) -"dsJ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 4 - }, -/area/medical/genetics) -"dsK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Genetics Lab"; - req_access_txt = "9" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/genetics) -"dsL" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/medical/genetics) -"dsM" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/medical/genetics) -"dsN" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/genetics) -"dsO" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/genetics) -"dsP" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/holopad, -/obj/effect/landmark/start/geneticist, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/genetics) -"dsQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 4 - }, -/area/medical/genetics) -"dsR" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/westleft{ - name = "'Monkey Pen"; - req_access_txt = "9" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/genetics) -"dsS" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "geneticslab"; - name = "Genetics Lab Shutters" - }, -/turf/open/floor/plating, -/area/medical/genetics) -"dsT" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"dsU" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/blue, -/area/medical/medbay/central) -"dsV" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cmoshutter"; - name = "CMO Office Shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/cmo) -"dsW" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/crew_quarters/heads/cmo) -"dsX" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/cmo, -/area/crew_quarters/heads/cmo) -"dsY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/cmo, -/area/crew_quarters/heads/cmo) -"dsZ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cmo, -/area/crew_quarters/heads/cmo) -"dta" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/crew_quarters/heads/cmo) -"dtb" = ( -/obj/structure/table, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/ai_status_display{ - pixel_y = -32 - }, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/clothing/ears/earmuffs, -/obj/item/gun/syringe, -/obj/item/clothing/glasses/eyepatch, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/surgery) -"dtc" = ( -/obj/machinery/computer/med_data, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = -26 - }, -/turf/open/floor/plasteel/whiteblue/side, -/area/medical/surgery) -"dtd" = ( -/obj/machinery/computer/crew, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/surgery) -"dtf" = ( -/obj/machinery/ai_status_display{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/vault, -/area/medical/surgery) -"dtg" = ( -/obj/structure/cable/white, -/obj/machinery/power/apc{ - dir = 2; - name = "Surgery APC"; - areastring = "/area/medical/surgery"; - pixel_y = -26 - }, -/obj/machinery/camera{ - c_tag = "Medbay - Surgery"; - dir = 1; - name = "medbay camera" - }, -/turf/open/floor/plasteel/vault, -/area/medical/surgery) -"dth" = ( -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault, -/area/medical/surgery) -"dti" = ( -/obj/structure/closet/crate/freezer/blood, -/obj/machinery/vending/wallmed{ - name = "Emergency NanoMed"; - pixel_x = 26; - req_access_txt = "0"; - use_power = 0 - }, -/turf/open/floor/plasteel/vault, -/area/medical/surgery) -"dtj" = ( -/obj/structure/table, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/machinery/cell_charger, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"dtk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"dtl" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Auxiliary Construction Zone APC"; - areastring = "/area/hallway/secondary/construction"; - pixel_y = -26 - }, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"dtm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"dtn" = ( -/obj/structure/table, -/obj/item/device/flashlight/lamp, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"dto" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"dtp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dtq" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/black, -/area/crew_quarters/abandoned_gambling_den) -"dtr" = ( -/obj/structure/table/wood/poker, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"dts" = ( -/obj/structure/table/wood/poker, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/crew_quarters/abandoned_gambling_den) -"dtt" = ( -/obj/structure/table/wood/poker, -/obj/item/storage/box/matches{ - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/crew_quarters/abandoned_gambling_den) -"dtu" = ( -/obj/structure/table/wood/poker, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/wood, -/area/crew_quarters/abandoned_gambling_den) -"dtv" = ( -/obj/structure/table/wood/poker, -/obj/item/storage/fancy/cigarettes/dromedaryco{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/fancy/cigarettes/dromedaryco, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/black, -/area/crew_quarters/abandoned_gambling_den) -"dtw" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"dtx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dty" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dtz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/mech_bay_recharge_floor, -/area/science/research/abandoned) -"dtA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral, -/area/science/research/abandoned) -"dtB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/neutral, -/area/science/research/abandoned) -"dtC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/science/research/abandoned) -"dtD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dtE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dtF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/barricade/wooden, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dtG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"dtH" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/maintenance/port) -"dtI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/maintenance/port) -"dtJ" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/maintenance/port) -"dtK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"dtL" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/arrival{ - dir = 8 - }, -/area/science/mixing) -"dtM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/mixing) -"dtN" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/science/mixing) -"dtO" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/science/mixing) -"dtP" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/structure/sign/fire{ - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dtQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"dtR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"dtS" = ( -/obj/structure/closet/secure_closet/RD, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hor) -"dtT" = ( -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/crew_quarters/heads/hor) -"dtU" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/crew_quarters/heads/hor) -"dtV" = ( -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/crew_quarters/heads/hor) -"dtW" = ( -/obj/structure/dresser, -/obj/item/storage/secure/safe{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/crew_quarters/heads/hor) -"dtX" = ( -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/structure/table/reinforced, -/obj/machinery/requests_console{ - department = "Robotics Lab"; - departmentType = 0; - name = "Robotics RC"; - pixel_y = 32; - receive_ore_updates = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dtY" = ( -/obj/item/paper_bin, -/obj/item/device/assembly/prox_sensor{ - pixel_x = 5; - pixel_y = 7 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = 5; - pixel_y = 7 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = 5; - pixel_y = 7 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dtZ" = ( -/obj/machinery/mecha_part_fabricator, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dua" = ( -/obj/structure/rack, -/obj/item/book/manual/robotics_cyborgs, -/obj/item/storage/belt/utility/full, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/circuitboard/mecha/ripley/main, -/obj/item/circuitboard/mecha/ripley/peripherals, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dub" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"duc" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/toy/figure/roboticist, -/obj/machinery/button/door{ - id = "roboticsprivacy"; - name = "Robotics Privacy Control"; - pixel_x = 26; - pixel_y = 26; - req_access_txt = "29" - }, -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = 38 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dud" = ( -/obj/structure/sign/science{ - pixel_x = -32; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/purple/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"due" = ( -/obj/structure/sign/science{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/purple/corner, -/area/hallway/primary/aft) -"duf" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "geneticsdesk"; - name = "Genetics Desk Shutters" - }, -/obj/machinery/door/window/westright{ - dir = 4; - name = "Genetics Desk"; - req_access_txt = "9" - }, -/obj/machinery/door/window/westright{ - name = "Genetics Desk" - }, -/obj/item/folder/white, -/obj/item/pen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/genetics) -"dug" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/medical/genetics) -"duh" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/genetics) -"dui" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/genetics) -"duj" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/whitepurple/corner, -/area/medical/genetics) -"duk" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "geneticslab"; - name = "Genetics Lab Shutters" - }, -/turf/open/floor/plating, -/area/medical/genetics) -"dul" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/obj/item/device/radio/headset/headset_medsci, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/medical/genetics) -"dum" = ( -/obj/structure/chair/office/light, -/obj/effect/landmark/start/geneticist, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 10 - }, -/area/medical/genetics) -"dun" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/whitepurple/side, -/area/medical/genetics) -"duo" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/medical/genetics) -"dup" = ( -/turf/open/floor/plasteel/neutral, -/area/medical/genetics) -"duq" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 4 - }, -/area/medical/genetics) -"dur" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel, -/area/medical/genetics) -"dus" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Medbay - Aft Port"; - dir = 8; - name = "medbay camera" - }, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/medbay/central) -"dut" = ( -/obj/structure/bed/dogbed/runtime, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/light{ - dir = 8 - }, -/mob/living/simple_animal/pet/cat/Runtime, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/crew_quarters/heads/cmo) -"duu" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/cmo, -/area/crew_quarters/heads/cmo) -"duv" = ( -/obj/structure/chair/office/light, -/turf/open/floor/plasteel/cmo, -/area/crew_quarters/heads/cmo) -"duw" = ( -/obj/structure/chair/office/light, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/cmo, -/area/crew_quarters/heads/cmo) -"dux" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Chief Medical Officer's Office APC"; - areastring = "/area/crew_quarters/heads/cmo"; - pixel_x = 26 - }, -/obj/machinery/camera{ - c_tag = "Medbay - Chief Medical Officer's Office"; - dir = 8; - name = "medbay camera" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/crew_quarters/heads/cmo) -"duy" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/medbay/central) -"duz" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"duA" = ( -/obj/machinery/door/airlock/maintenance_hatch/abandoned{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"duB" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"duC" = ( -/obj/machinery/power/smes, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"duD" = ( -/obj/machinery/camera{ - c_tag = "Solar - Aft Starboard"; - name = "solar camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"duE" = ( -/obj/structure/frame/machine, -/obj/item/circuitboard/machine/cyborgrecharger, -/turf/open/floor/plating, -/area/science/research/abandoned) -"duF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"duG" = ( -/obj/machinery/mech_bay_recharge_port{ - icon_state = "recharge_port"; - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/science/research/abandoned) -"duH" = ( -/obj/item/robot_suit, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"duI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/science/research/abandoned) -"duJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"duK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port) -"duL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port) -"duM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port) -"duN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"duO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"duP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/neutral, -/area/maintenance/port) -"duQ" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Toxins Lab APC"; - areastring = "/area/science/mixing"; - pixel_x = -26; - pixel_y = 3 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/mixing) -"duR" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/mixing) -"duS" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/science/mixing) -"duT" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/science/mixing) -"duU" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"duV" = ( -/turf/open/floor/plating, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/science/misc_lab/range) -"duW" = ( -/obj/item/target/syndicate, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"duX" = ( -/turf/open/floor/plating, -/area/science/misc_lab/range) -"duY" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/ai_status_display{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hor) -"duZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/heads/hor) -"dva" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/start/research_director, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/purple, -/area/crew_quarters/heads/hor) -"dvb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/heads/hor) -"dvc" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/bed, -/obj/item/bedsheet/rd, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 4 - }, -/area/crew_quarters/heads/hor) -"dvd" = ( -/obj/item/stack/sheet/plasteel{ - amount = 15 - }, -/obj/item/wrench, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/clothing/glasses/welding, -/obj/structure/table/reinforced, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dve" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dvf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dvg" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dvh" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dvi" = ( -/obj/structure/chair/office/light{ - icon_state = "officechair_white"; - dir = 4 - }, -/obj/effect/landmark/start/roboticist, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dvj" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "roboticsprivacy"; - name = "Robotics Shutters" - }, -/obj/machinery/door/window/westleft{ - name = "Robotics Desk"; - req_access_txt = "29" - }, -/obj/machinery/door/window/eastleft, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dvk" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "geneticsdesk"; - name = "Genetics Desk Shutters" - }, -/turf/open/floor/plating, -/area/medical/genetics) -"dvl" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/button/door{ - id = "geneticsdesk"; - name = "Genetics Desk Shutters"; - pixel_x = -26; - pixel_y = -26; - req_access_txt = "9" - }, -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -32 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/medical/genetics) -"dvm" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/medical/genetics) -"dvn" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = -26 - }, -/turf/open/floor/plasteel/whitepurple/corner, -/area/medical/genetics) -"dvo" = ( -/obj/structure/closet/wardrobe/genetics_white, -/turf/open/floor/plasteel/whitepurple/corner, -/area/medical/genetics) -"dvp" = ( -/obj/machinery/ai_status_display, -/turf/closed/wall/r_wall, -/area/medical/genetics) -"dvq" = ( -/obj/structure/table/reinforced, -/obj/machinery/requests_console{ - department = "Medbay Storage"; - departmentType = 0; - name = "Genetics Lab RC"; - pixel_y = -32 - }, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/bodybags, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/medical/genetics) -"dvr" = ( -/obj/machinery/computer/scan_consolenew, -/obj/machinery/light, -/obj/structure/sign/nosmoking_2{ - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/genetics) -"dvs" = ( -/obj/machinery/dna_scannernew, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/genetics) -"dvt" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/medical/genetics) -"dvu" = ( -/obj/machinery/computer/med_data/laptop, -/obj/structure/table/glass, -/obj/structure/mirror{ - pixel_y = -28 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"dvv" = ( -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 4 - }, -/area/medical/genetics) -"dvw" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/genetics) -"dvx" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "geneticslab"; - name = "Genetics Lab Shutters" - }, -/obj/structure/sign/electricshock{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/medical/genetics) -"dvz" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/whiteblue/side, -/area/medical/medbay/central) -"dvA" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/medbay/central) -"dvB" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cmoshutter"; - name = "CMO Office Shutters" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/cmo) -"dvC" = ( -/obj/machinery/disposal/bin, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/cmo) -"dvD" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/cmo, -/area/crew_quarters/heads/cmo) -"dvE" = ( -/obj/structure/table/glass, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/item/paper_bin, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cmo, -/area/crew_quarters/heads/cmo) -"dvF" = ( -/obj/structure/table/glass, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/item/folder/blue{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/folder/white, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cmo, -/area/crew_quarters/heads/cmo) -"dvG" = ( -/obj/machinery/computer/med_data/laptop, -/obj/structure/table/glass, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/crew_quarters/heads/cmo) -"dvH" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cmoshutter"; - name = "CMO Office Shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/cmo) -"dvI" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel/vault, -/area/medical/medbay/central) -"dvJ" = ( -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/vault, -/area/medical/medbay/central) -"dvK" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/plasteel/vault, -/area/medical/medbay/central) -"dvL" = ( -/obj/item/folder/white, -/obj/item/device/flashlight/pen, -/obj/item/clothing/neck/stethoscope, -/obj/structure/table, -/turf/open/floor/plasteel/vault, -/area/medical/medbay/central) -"dvM" = ( -/obj/machinery/computer/med_data/laptop, -/obj/structure/table, -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/vault, -/area/medical/medbay/central) -"dvN" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dvO" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"dvP" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"dvQ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dvR" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dvS" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dvT" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dvU" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"dvV" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"dvW" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dvX" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"dvY" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dvZ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"dwa" = ( -/obj/machinery/door/airlock/engineering{ - name = "Starboard Quarter Solar Access"; - req_access_txt = "10" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars/starboard/aft) -"dwb" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard/aft) -"dwc" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard/aft) -"dwe" = ( -/obj/structure/table/wood/poker, -/obj/item/reagent_containers/food/drinks/bottle/rum{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_y = 7 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/crew_quarters/abandoned_gambling_den) -"dwg" = ( -/obj/structure/table/wood/poker, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/item/reagent_containers/glass/beaker/cryoxadone, -/obj/item/reagent_containers/dropper, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"dwh" = ( -/obj/structure/table, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/science/research/abandoned) -"dwi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dwj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dwk" = ( -/obj/structure/chair/office/light, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dwl" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/clothing/head/welding, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/science/research/abandoned) -"dwm" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/port) -"dwn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port) -"dwo" = ( -/obj/structure/table/reinforced, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = -32 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter{ - pixel_x = -6; - pixel_y = -6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dwp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/mixing) -"dwq" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/mixing) -"dwr" = ( -/turf/open/floor/plasteel/whitepurple/side{ - dir = 4 - }, -/area/science/mixing) -"dws" = ( -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/mixing) -"dwt" = ( -/obj/machinery/light/small, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"dwu" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"dwv" = ( -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"dww" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/suit_storage_unit/rd, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hor) -"dwx" = ( -/obj/machinery/button/door{ - id = "idquarters"; - name = "Privacy Control"; - pixel_x = -26; - pixel_y = -26; - req_access_txt = "30" - }, -/turf/open/floor/plasteel/whitepurple/corner, -/area/crew_quarters/heads/hor) -"dwy" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/camera{ - c_tag = "Science - Research Director's Quarters"; - dir = 1; - name = "science camera"; - network = list("SS13","RD") - }, -/obj/machinery/modular_computer/console/preset/research, -/turf/open/floor/plasteel/whitepurple/corner, -/area/crew_quarters/heads/hor) -"dwz" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/whitepurple/corner, -/area/crew_quarters/heads/hor) -"dwA" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26 - }, -/turf/open/floor/plasteel/whitepurple/corner, -/area/crew_quarters/heads/hor) -"dwB" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/research) -"dwC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/robotics/lab) -"dwD" = ( -/obj/item/stack/cable_coil/white, -/obj/item/bodypart/r_arm/robot{ - pixel_x = 3 - }, -/obj/item/bodypart/l_arm/robot{ - pixel_x = -3 - }, -/obj/item/device/assembly/flash/handheld, -/obj/item/device/assembly/flash/handheld, -/obj/structure/table/reinforced, -/obj/machinery/light_switch{ - pixel_x = -38; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/device/assembly/flash/handheld, -/obj/item/device/assembly/flash/handheld, -/obj/item/device/assembly/flash/handheld, -/obj/item/device/assembly/flash/handheld, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dwE" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dwF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/science/robotics/lab) -"dwG" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dwH" = ( -/turf/open/floor/plasteel/neutral, -/area/science/robotics/lab) -"dwI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dwJ" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dwK" = ( -/turf/closed/wall, -/area/medical/morgue) -"dwL" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/centcom{ - name = "Morgue"; - req_access_txt = "9" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/morgue) -"dwM" = ( -/obj/structure/sign/nosmoking_2, -/turf/closed/wall, -/area/medical/morgue) -"dwN" = ( -/turf/closed/wall/r_wall, -/area/medical/morgue) -"dwO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/department/medical/morgue) -"dwP" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Morgue Maintenance"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/medical/morgue) -"dwQ" = ( -/obj/structure/table/glass, -/obj/item/clipboard, -/obj/item/toy/figure/cmo, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/crew_quarters/heads/cmo) -"dwR" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/cmo, -/area/crew_quarters/heads/cmo) -"dwS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/cmo, -/area/crew_quarters/heads/cmo) -"dwT" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start/chief_medical_officer, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/cmo, -/area/crew_quarters/heads/cmo) -"dwU" = ( -/obj/machinery/computer/card/minor/cmo, -/obj/machinery/ai_status_display{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/crew_quarters/heads/cmo) -"dwV" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Medbay - Aft Starboard"; - dir = 4; - name = "medbay camera" - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"dwW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Patient Room" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dwX" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/blue, -/area/medical/medbay/central) -"dwY" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/medbay/central) -"dwZ" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/vending/wallmed{ - name = "Emergency NanoMed"; - pixel_x = 26; - req_access_txt = "0"; - use_power = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/cmo, -/area/medical/medbay/central) -"dxa" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dxb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 - }, -/obj/item/device/flashlight, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/starboard/aft) -"dxc" = ( -/obj/structure/girder, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dxd" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/starboard/aft) -"dxe" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dxf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/starboard/aft) -"dxg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/starboard/aft) -"dxh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/starboard/aft) -"dxi" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"dxj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dxk" = ( -/obj/structure/cable/white, -/obj/machinery/power/apc/highcap/ten_k{ - dir = 2; - name = "Starboard Quarter Solar APC"; - areastring = "/area/maintenance/solars/starboard/aft"; - pixel_y = -26 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"dxl" = ( -/obj/machinery/power/solar_control{ - id = "aftstarboard"; - name = "Starboard Quarter Solar Control"; - track = 0 - }, -/obj/structure/cable, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"dxm" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard/aft) -"dxn" = ( -/obj/structure/table, -/obj/item/stack/rods{ - amount = 23 - }, -/obj/item/stack/cable_coil/white, -/obj/item/device/flashlight/seclite, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/science/research/abandoned) -"dxp" = ( -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dxr" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/folder/white, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dxs" = ( -/obj/structure/frame/computer, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plating, -/area/science/research/abandoned) -"dxt" = ( -/obj/structure/frame/machine, -/obj/machinery/light/small, -/obj/item/stock_parts/console_screen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/science/research/abandoned) -"dxv" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/black, -/obj/item/storage/toolbox/electrical, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/science/research/abandoned) -"dxw" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/maintenance/port) -"dxx" = ( -/obj/item/device/assembly/prox_sensor{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = 8; - pixel_y = 9 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = 9; - pixel_y = -2 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_y = 2 - }, -/obj/structure/table/reinforced, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dxy" = ( -/obj/item/device/assembly/timer{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/device/assembly/timer{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/device/assembly/timer{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/device/assembly/timer, -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dxz" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/science/mixing) -"dxA" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/mixing) -"dxB" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - icon_state = "freezer"; - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dxC" = ( -/obj/structure/sign/fire, -/turf/closed/wall/r_wall, -/area/science/misc_lab/range) -"dxD" = ( -/obj/machinery/door/firedoor/heavy, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/research{ - name = "Toxins Secure Storage"; - req_access_txt = "8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdtoxins"; - name = "Toxins Lab Shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"dxE" = ( -/turf/closed/wall/r_wall, -/area/science/misc_lab/range) -"dxF" = ( -/obj/machinery/door/firedoor/heavy, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "idquarters"; - name = "Director's Quarters Shutters" - }, -/obj/structure/cable/white, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"dxG" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/research) -"dxH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/research) -"dxI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_research{ - name = "Robotics Lab"; - req_access_txt = "29" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dxJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dxK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dxL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/science/robotics/lab) -"dxM" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/science/robotics/lab) -"dxN" = ( -/obj/effect/landmark/start/roboticist, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/science/robotics/lab) -"dxO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/science/robotics/lab) -"dxP" = ( -/obj/structure/noticeboard{ - dir = 8; - pixel_x = 32 - }, -/obj/machinery/camera{ - c_tag = "Science - Robotics Lab"; - dir = 8; - name = "science camera"; - network = list("SS13","RD") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/aug_manipulator, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dxQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/aft) -"dxR" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb, -/obj/item/storage/box/bodybags{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/bodybags, -/turf/open/floor/plating, -/area/medical/morgue) -"dxS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/medical/morgue) -"dxT" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/medical/morgue) -"dxU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/medical/morgue) -"dxV" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/landmark/revenantspawn, -/turf/open/floor/plating, -/area/medical/morgue) -"dxW" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/landmark/revenantspawn, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/medical/morgue) -"dxX" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/revenantspawn, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/medical/morgue) -"dxY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/medical/morgue) -"dxZ" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/medical/morgue) -"dya" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/maintenance/department/medical/morgue) -"dyb" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/maintenance/department/medical/morgue) -"dyc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) -"dyd" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) -"dye" = ( -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/storage/secure/briefcase, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/structure/sign/nanotrasen{ - pixel_x = -32; - pixel_y = -32 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/crew_quarters/heads/cmo) -"dyf" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/vending/wallmed{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/cmo, -/area/crew_quarters/heads/cmo) -"dyg" = ( -/turf/open/floor/plasteel/cmo, -/area/crew_quarters/heads/cmo) -"dyh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/cmo, -/area/crew_quarters/heads/cmo) -"dyi" = ( -/obj/machinery/computer/crew, -/obj/machinery/button/door{ - id = "cmoshutter"; - name = "CMO Office Shutters"; - pixel_x = 7; - pixel_y = -26; - req_access_txt = "40" - }, -/obj/machinery/keycard_auth{ - pixel_x = 7; - pixel_y = -38 - }, -/obj/machinery/light_switch{ - pixel_x = -7; - pixel_y = -26 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Chief Medical Officer's Desk"; - departmentType = 5; - name = "Chief Medical Officer's RC"; - pixel_x = 32 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/crew_quarters/heads/cmo) -"dyj" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/medbay/central) -"dyk" = ( -/obj/structure/dresser, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cmo, -/area/medical/medbay/central) -"dyl" = ( -/obj/structure/mirror{ - pixel_y = -28 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/cmo, -/area/medical/medbay/central) -"dym" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = -26 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/cmo, -/area/medical/medbay/central) -"dyn" = ( -/obj/structure/closet/wardrobe/pjs, -/turf/open/floor/plasteel/cmo, -/area/medical/medbay/central) -"dyo" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/cmo, -/area/medical/medbay/central) -"dyp" = ( -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/starboard/aft) -"dyq" = ( -/turf/closed/wall, -/area/crew_quarters/theatre/abandoned) -"dyr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/crew_quarters/theatre/abandoned) -"dys" = ( -/turf/closed/wall, -/area/security/detectives_office/private_investigators_office) -"dyt" = ( -/obj/machinery/door/airlock/maintenance_hatch/abandoned{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/detectives_office/private_investigators_office) -"dyu" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard/aft) -"dyv" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/mixing) -"dyw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral/side{ - dir = 10; - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"dyx" = ( -/obj/structure/closet, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 6 - }, -/area/maintenance/port) -"dyy" = ( -/obj/item/device/transfer_valve{ - pixel_x = -5 - }, -/obj/item/device/transfer_valve{ - pixel_x = -5 - }, -/obj/item/device/transfer_valve, -/obj/item/device/transfer_valve, -/obj/item/device/transfer_valve{ - pixel_x = 5 - }, -/obj/item/device/transfer_valve{ - pixel_x = 5 - }, -/obj/structure/table/reinforced, -/obj/machinery/requests_console{ - department = "Toxins Lab"; - departmentType = 0; - name = "Toxins RC"; - pixel_x = -32; - receive_ore_updates = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/mixing) -"dyz" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dyA" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/start/scientist, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/science/mixing) -"dyB" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/mixing) -"dyD" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"dyE" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"dyF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"dyG" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"dyH" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/clothing/mask/gas, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"dyI" = ( -/turf/closed/wall/r_wall, -/area/science/server) -"dyJ" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/structure/table, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/item/clipboard, -/obj/item/wrench, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/science/server) -"dyK" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/science/server) -"dyL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - min_temperature = 80; - on = 1; - target_temperature = 80 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/science/server) -"dyM" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/server) -"dyN" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/robotics/lab) -"dyO" = ( -/obj/structure/rack, -/obj/item/storage/firstaid, -/obj/item/storage/firstaid, -/obj/item/device/paicard, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dyP" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dyQ" = ( -/obj/item/robot_suit, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dyR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral, -/area/science/robotics/lab) -"dyS" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dyT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dyU" = ( -/obj/machinery/computer/rdconsole/robotics, -/obj/structure/sign/bluecross_2{ - pixel_x = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dyV" = ( -/obj/effect/landmark/lightsout, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/aft) -"dyW" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Departures Hallway - Center"; - dir = 8; - name = "hallway camera" - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/aft) -"dyX" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/gloves/color/latex, -/turf/open/floor/plating, -/area/medical/morgue) -"dyY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/medical/morgue) -"dyZ" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/medical/morgue) -"dza" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/medical/morgue) -"dzb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/medical/morgue) -"dzc" = ( -/turf/open/floor/plasteel/neutral, -/area/medical/morgue) -"dzd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/neutral, -/area/medical/morgue) -"dze" = ( -/turf/open/floor/plating, -/area/medical/morgue) -"dzf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral, -/area/maintenance/department/medical/morgue) -"dzg" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) -"dzh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) -"dzi" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/backpack/duffelbag/med, -/obj/item/device/flashlight/pen, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) -"dzj" = ( -/turf/closed/wall, -/area/crew_quarters/heads/cmo) -"dzk" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/crew_quarters/heads/cmo) -"dzl" = ( -/obj/machinery/door/airlock/command{ - name = "Chief Medical Officer's Quarters"; - req_access_txt = "40" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/cmo, -/area/crew_quarters/heads/cmo) -"dzm" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/crew_quarters/heads/cmo) -"dzn" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"dzo" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/medbay/central) -"dzp" = ( -/obj/structure/table/wood, -/obj/item/clothing/under/maid, -/obj/item/clothing/head/kitty, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/crew_quarters/theatre/abandoned) -"dzq" = ( -/obj/machinery/vending/autodrobe{ - req_access_txt = "0" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/crew_quarters/theatre/abandoned) -"dzr" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Abandoned Theatre APC"; - areastring = "/area/crew_quarters/theatre/abandoned"; - pixel_y = 24 - }, -/turf/open/floor/plating, -/area/crew_quarters/theatre/abandoned) -"dzs" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre/abandoned) -"dzt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/theatre/abandoned) -"dzu" = ( -/obj/machinery/door/window{ - dir = 8; - name = "Theatre Stage"; - req_access_txt = "0" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/crew_quarters/theatre/abandoned) -"dzv" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/crew_quarters/theatre/abandoned) -"dzw" = ( -/obj/structure/dresser, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/theatre/abandoned) -"dzx" = ( -/obj/structure/table/wood, -/obj/item/device/instrument/guitar, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/theatre/abandoned) -"dzy" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/photocopier, -/obj/item/newspaper{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/newspaper, -/turf/open/floor/plating, -/area/security/detectives_office/private_investigators_office) -"dzz" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/security/detectives_office/private_investigators_office) -"dzA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/turf/open/floor/plating, -/area/security/detectives_office/private_investigators_office) -"dzC" = ( -/obj/structure/table/wood, -/obj/item/crowbar/red, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/book/manual/detective, -/obj/item/device/camera/detective, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/detectives_office/private_investigators_office) -"dzD" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/solar{ - id = "aftstarboard"; - name = "Aft-Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"dzE" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26; - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dzF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dzG" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/clothing/mask/gas, -/obj/machinery/camera{ - c_tag = "Science - Toxins Launch Site"; - dir = 2; - name = "science camera"; - network = list("SS13","RD") - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/mixing) -"dzH" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dzI" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/mixing) -"dzJ" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dzK" = ( -/turf/closed/wall, -/area/science/mixing) -"dzL" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"dzM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/science/mixing) -"dzN" = ( -/obj/item/device/assembly/signaler{ - pixel_y = 8 - }, -/obj/item/device/assembly/signaler{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/device/assembly/signaler{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/device/assembly/signaler{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/structure/table/reinforced, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/science/mixing) -"dzO" = ( -/obj/structure/table/reinforced, -/obj/item/wrench, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dzP" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/mixing) -"dzQ" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Science - Toxins Mixing Lab Aft"; - dir = 8; - name = "science camera"; - network = list("SS13","RD") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dzR" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"dzS" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"dzT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"dzU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"dzV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"dzW" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/machinery/computer/rdservercontrol, -/obj/machinery/power/apc{ - dir = 8; - name = "Research Division Server Room APC"; - areastring = "/area/science/server"; - pixel_x = -26 - }, -/obj/machinery/light_switch{ - pixel_x = -28; - pixel_y = -26 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/science/server) -"dzX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/science/server) -"dzY" = ( -/obj/machinery/atmospherics/pipe/simple/general/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/science/server) -"dzZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/command{ - name = "Research Division Server Room"; - req_access = null; - req_access_txt = "30" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/science/server) -"dAa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/research) -"dAb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/science/research) -"dAc" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/research) -"dAd" = ( -/obj/machinery/disposal/bin, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Robotics Lab APC"; - areastring = "/area/science/robotics/lab"; - pixel_x = -26 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dAe" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dAf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dAg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dAh" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dAi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dAj" = ( -/obj/machinery/r_n_d/circuit_imprinter, -/obj/item/reagent_containers/glass/beaker/sulphuric, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dAk" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j1" - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/aft) -"dAl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/centcom{ - name = "Morgue"; - req_access_txt = "6" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/morgue) -"dAm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/medical/morgue) -"dAn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/medical/morgue) -"dAo" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/medical/morgue) -"dAp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/medical/morgue) -"dAq" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/morgue) -"dAr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/morgue) -"dAs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/morgue) -"dAt" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/medical/morgue) -"dAu" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = 26 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/medical/morgue) -"dAv" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/centcom{ - name = "Morgue"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/medical/morgue) -"dAw" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/maintenance/department/medical/morgue) -"dAx" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) -"dAy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) -"dAz" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/maintenance/department/medical/morgue) -"dAA" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex/nitrile, -/obj/item/clothing/suit/apron/surgical, -/obj/item/clothing/mask/breath/medical, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) -"dAB" = ( -/obj/structure/closet/secure_closet/CMO, -/obj/item/clothing/under/rank/nursesuit, -/obj/item/clothing/head/nursehat, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/cmo) -"dAC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/cmo, -/area/crew_quarters/heads/cmo) -"dAD" = ( -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/cmo, -/area/crew_quarters/heads/cmo) -"dAE" = ( -/obj/structure/dresser, -/obj/structure/mirror{ - pixel_x = 26 - }, -/turf/open/floor/plasteel/cmo, -/area/crew_quarters/heads/cmo) -"dAF" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/blue, -/area/medical/medbay/central) -"dAG" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/costume, -/obj/effect/spawner/lootdrop/costume, -/obj/item/clothing/neck/tie/black, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/starboard/aft) -"dAH" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dAI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/crew_quarters/theatre/abandoned) -"dAJ" = ( -/turf/open/floor/wood, -/area/crew_quarters/theatre/abandoned) -"dAK" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/crew_quarters/theatre/abandoned) -"dAL" = ( -/turf/open/floor/plating, -/area/crew_quarters/theatre/abandoned) -"dAM" = ( -/obj/structure/table/wood, -/obj/item/newspaper, -/obj/item/clothing/head/bowler, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/theatre/abandoned) -"dAN" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/theatre/abandoned) -"dAO" = ( -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/theatre/abandoned) -"dAP" = ( -/obj/structure/table/wood, -/obj/item/clothing/suit/justice, -/obj/item/clothing/head/helmet/justice/escape{ - name = "justice helmet" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/theatre/abandoned) -"dAQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plating, -/area/security/detectives_office/private_investigators_office) -"dAR" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/security/detectives_office/private_investigators_office) -"dAS" = ( -/turf/open/floor/wood, -/area/security/detectives_office/private_investigators_office) -"dAT" = ( -/turf/open/floor/plating, -/area/security/detectives_office/private_investigators_office) -"dAU" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/clothing/suit/jacket{ - desc = "All the class of a trenchcoat without the security fibers."; - icon_state = "greydet"; - name = "trenchcoat" - }, -/obj/item/clothing/suit/jacket{ - desc = "All the class of a trenchcoat without the security fibers."; - icon_state = "detective"; - name = "trenchcoat" - }, -/obj/item/clothing/head/fedora, -/obj/item/clothing/head/fedora{ - icon_state = "detective" - }, -/turf/open/floor/plating, -/area/security/detectives_office/private_investigators_office) -"dAV" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/detectives_office/private_investigators_office) -"dAW" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard/aft) -"dAX" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard/aft) -"dAY" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard/aft) -"dAZ" = ( -/turf/closed/wall/r_wall, -/area/science/test_area) -"dBa" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/science/test_area) -"dBb" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the testing site."; - dir = 4; - layer = 4; - name = "Testing Site Telescreen"; - network = list("Toxins") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dBc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dBd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/science/mixing) -"dBe" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/science/mixing) -"dBf" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/science/mixing) -"dBg" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/science/mixing) -"dBh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dBi" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side, -/area/science/mixing) -"dBj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dBk" = ( -/obj/structure/table/reinforced, -/obj/item/storage/firstaid/toxin, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dBl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/mixing) -"dBm" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/mixing) -"dBn" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"dBo" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/storage) -"dBp" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/storage) -"dBq" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/storage) -"dBr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/light_switch{ - pixel_x = 26 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"dBs" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/server) -"dBt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 6 - }, -/obj/machinery/door/airlock/glass_command{ - name = "Server Access"; - req_access_txt = "30" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/science/server) -"dBu" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/science/server) -"dBv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/purple, -/area/science/research) -"dBw" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/electrical, -/obj/item/screwdriver{ - pixel_y = 5 - }, -/obj/item/device/multitool, -/obj/item/clothing/head/welding, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dBx" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dBy" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/bodybags, -/obj/item/borg/upgrade/rename, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dBz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dBA" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/clothing/gloves/color/latex, -/obj/item/surgical_drapes, -/obj/item/cautery, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dBB" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/robotics/lab) -"dBC" = ( -/obj/effect/landmark/start/roboticist, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/science/robotics/lab) -"dBD" = ( -/obj/structure/table/reinforced, -/obj/item/retractor, -/obj/item/hemostat, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/ai_status_display{ - pixel_x = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dBE" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/medical/morgue) -"dBF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/morgue) -"dBG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/morgue) -"dBH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/medical/morgue) -"dBI" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/landmark/revenantspawn, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/medical/morgue) -"dBJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/morgue) -"dBK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/morgue) -"dBL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/morgue) -"dBM" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper_bin, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/medical/morgue) -"dBN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/morgue) -"dBO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/maintenance/department/medical/morgue) -"dBP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/maintenance/department/medical/morgue) -"dBQ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) -"dBR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/maintenance/department/medical/morgue) -"dBS" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/item/crowbar, -/obj/item/storage/pill_bottle, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/maintenance/department/medical/morgue) -"dBT" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/ai_status_display{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/cmo) -"dBU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/heads/cmo) -"dBV" = ( -/obj/effect/landmark/start/chief_medical_officer, -/turf/open/floor/plasteel/blue, -/area/crew_quarters/heads/cmo) -"dBW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/heads/cmo) -"dBX" = ( -/obj/structure/bed, -/obj/item/bedsheet/cmo, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/cmo, -/area/crew_quarters/heads/cmo) -"dBY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/costume, -/obj/effect/spawner/lootdrop/costume, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/starboard/aft) -"dBZ" = ( -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre/abandoned) -"dCa" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/crew_quarters/theatre/abandoned) -"dCb" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre/abandoned) -"dCc" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/theatre/abandoned) -"dCd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/crew_quarters/theatre/abandoned) -"dCe" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/candle_box{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/fancy/candle_box, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/crew_quarters/theatre/abandoned) -"dCf" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Private Investigator's Office APC"; - areastring = "/area/security/detectives_office/private_investigators_office"; - pixel_x = -26; - pixel_y = 3 - }, -/turf/open/floor/plating, -/area/security/detectives_office/private_investigators_office) -"dCg" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/wood, -/area/security/detectives_office/private_investigators_office) -"dCh" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken2" - }, -/area/security/detectives_office/private_investigators_office) -"dCi" = ( -/obj/structure/filingcabinet/security, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/security/detectives_office/private_investigators_office) -"dCj" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "aftstarboard"; - name = "Aft-Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"dCk" = ( -/obj/structure/window/reinforced, -/obj/item/target, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dCl" = ( -/obj/machinery/button/massdriver{ - dir = 2; - id = "toxinsdriver"; - pixel_x = -24 - }, -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dCm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dCn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dCo" = ( -/obj/effect/landmark/start/scientist, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dCp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dCq" = ( -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dCr" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/research{ - name = "Toxins Launch Site"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dCs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/science/mixing) -"dCt" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/blobstart, -/obj/item/device/radio/beacon, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/mixing) -"dCu" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/science/mixing) -"dCv" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/research{ - name = "Toxins Mixing Lab"; - req_access_txt = "8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdtoxins"; - name = "Toxins Lab Shutters" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dCw" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/mixing) -"dCx" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/mixing) -"dCy" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/whitepurple/side, -/area/science/mixing) -"dCz" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/mixing) -"dCA" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/mixing) -"dCB" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research{ - name = "Toxins Secure Storage"; - req_access_txt = "8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdtoxins"; - name = "Toxins Lab Shutters" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dCC" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"dCD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"dCE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"dCF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"dCG" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"dCH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 2; - external_pressure_bound = 140; - name = "server vent"; - pressure_checks = 0 - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/science/server) -"dCI" = ( -/obj/machinery/atmospherics/pipe/simple/general/hidden, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 8 - }, -/area/science/server) -"dCJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 2; - external_pressure_bound = 120; - name = "server vent" - }, -/obj/machinery/camera{ - c_tag = "Science - Server Room"; - dir = 8; - name = "science camera"; - network = list("SS13","RD") - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/science/server) -"dCK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/machinery/camera{ - c_tag = "Science - Aft"; - dir = 4; - name = "science camera"; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/research) -"dCL" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/science/research) -"dCM" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Research Division APC"; - areastring = "/area/science/research"; - pixel_x = 26 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/research) -"dCN" = ( -/obj/structure/table, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/machinery/cell_charger, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = -26 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dCO" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dCP" = ( -/obj/structure/closet/wardrobe/robotics_black, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dCQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dCR" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/device/mmi, -/obj/item/device/mmi, -/obj/item/device/mmi, -/obj/structure/sign/bluecross_2{ - pixel_y = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dCS" = ( -/obj/machinery/computer/operating, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/robotics/lab) -"dCT" = ( -/obj/structure/table/optable, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/robotics/lab) -"dCU" = ( -/obj/structure/table/reinforced, -/obj/item/scalpel{ - pixel_y = 16 - }, -/obj/item/circular_saw, -/obj/structure/sign/nosmoking_2{ - pixel_y = -32 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dCV" = ( -/obj/machinery/disposal/bin, -/turf/open/floor/plating, -/area/medical/morgue) -"dCW" = ( -/obj/structure/cable/white, -/obj/machinery/power/apc{ - dir = 2; - name = "Morgue APC"; - areastring = "/area/medical/morgue"; - pixel_y = -26 - }, -/turf/open/floor/plating, -/area/medical/morgue) -"dCX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/medical/morgue) -"dCZ" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/medical/morgue) -"dDa" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/revenantspawn, -/turf/open/floor/plating, -/area/medical/morgue) -"dDb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/light_construct/small, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/medical/morgue) -"dDc" = ( -/obj/structure/table, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/turf/open/floor/plating, -/area/medical/morgue) -"dDd" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) -"dDe" = ( -/obj/structure/closet/wardrobe/white/medical, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) -"dDf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) -"dDg" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/maintenance/department/medical/morgue) -"dDh" = ( -/obj/machinery/suit_storage_unit/cmo, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/cmo) -"dDi" = ( -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/cmo, -/area/crew_quarters/heads/cmo) -"dDj" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = -26 - }, -/obj/machinery/camera{ - c_tag = "Medbay - Chief Medical Officer's Quarters"; - dir = 1; - name = "medbay camera" - }, -/turf/open/floor/plasteel/cmo, -/area/crew_quarters/heads/cmo) -"dDk" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/cmo, -/area/crew_quarters/heads/cmo) -"dDl" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/cmo, -/area/crew_quarters/heads/cmo) -"dDm" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"dDn" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/side, -/area/medical/medbay/central) -"dDo" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whitegreen/corner, -/area/medical/medbay/central) -"dDp" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/costume, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dDq" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/starboard/aft) -"dDr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch/abandoned{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/theatre/abandoned) -"dDs" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre/abandoned) -"dDt" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/mob/living/simple_animal/cockroach, -/turf/open/floor/wood, -/area/crew_quarters/theatre/abandoned) -"dDu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre/abandoned) -"dDv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre/abandoned) -"dDw" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/theatre/abandoned) -"dDx" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/theatre/abandoned) -"dDy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/theatre/abandoned) -"dDz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plating, -/area/crew_quarters/theatre/abandoned) -"dDA" = ( -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/crew_quarters/theatre/abandoned) -"dDB" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/security/detectives_office/private_investigators_office) -"dDC" = ( -/obj/structure/chair/office/dark, -/turf/open/floor/wood, -/area/security/detectives_office/private_investigators_office) -"dDD" = ( -/obj/structure/chair/office/dark, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/security/detectives_office/private_investigators_office) -"dDE" = ( -/mob/living/simple_animal/cockroach, -/turf/open/floor/wood, -/area/security/detectives_office/private_investigators_office) -"dDG" = ( -/obj/structure/chair, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dDH" = ( -/turf/open/floor/plating/airless, -/area/science/test_area) -"dDI" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dDJ" = ( -/obj/machinery/doppler_array{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26; - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dDK" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dDL" = ( -/obj/item/stack/rods{ - amount = 50 - }, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/target, -/obj/item/target/syndicate, -/obj/item/target/alien, -/obj/item/target/clown, -/obj/structure/closet/crate/secure{ - desc = "A secure crate containing various materials for building a customised test-site."; - name = "Test Site Materials Crate"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/mixing) -"dDM" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/mixing) -"dDN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/mixing) -"dDO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/mixing) -"dDP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/mixing) -"dDQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dDR" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/science/mixing) -"dDS" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dDT" = ( -/obj/structure/tank_dispenser, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/mixing) -"dDU" = ( -/obj/structure/rack, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/obj/item/clothing/suit/fire/firefighter, -/obj/item/clothing/head/hardhat/red, -/obj/item/clothing/mask/gas, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/mixing) -"dDV" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/mixing) -"dDW" = ( -/obj/machinery/disposal/bin, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/mixing) -"dDY" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/mixing) -"dDZ" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Science - Toxins Secure Storage"; - dir = 4; - name = "science camera"; - network = list("SS13","RD") - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"dEa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"dEb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"dEc" = ( -/obj/machinery/portable_atmospherics/scrubber/huge, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"dEd" = ( -/obj/machinery/portable_atmospherics/scrubber/huge, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc{ - dir = 4; - name = "Toxins Storage APC"; - areastring = "/area/science/storage"; - pixel_x = 26 - }, -/obj/structure/cable/white, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"dEe" = ( -/obj/machinery/r_n_d/server/core, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 5 - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/science/server) -"dEf" = ( -/obj/machinery/atmospherics/pipe/manifold/general/hidden, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 8 - }, -/area/science/server) -"dEg" = ( -/obj/machinery/r_n_d/server/robotics, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 9 - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/science/server) -"dEh" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/research) -"dEi" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/purple, -/area/science/research) -"dEj" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Robotics Lab Maintenance"; - req_access_txt = "29" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dEk" = ( -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Robotics" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dEl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/aft) -"dEm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/medical/morgue) -"dEn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/medical/medbay/central) -"dEo" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/virology{ - name = "Virology Access"; - req_access_txt = "39" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dEp" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/crew_quarters/theatre/abandoned) -"dEq" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/theatre/abandoned) -"dEr" = ( -/obj/structure/table/wood, -/obj/item/clothing/under/geisha, -/obj/item/clothing/shoes/sandal, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/theatre/abandoned) -"dEs" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office/private_investigators_office) -"dEt" = ( -/obj/structure/table/wood, -/obj/item/folder/white{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/folder/red, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office/private_investigators_office) -"dEu" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office/private_investigators_office) -"dEv" = ( -/obj/structure/table/wood, -/obj/item/clothing/gloves/color/black, -/obj/item/storage/box/evidence, -/obj/item/device/taperecorder, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/detectives_office/private_investigators_office) -"dEw" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dEx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dEy" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dEz" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dEA" = ( -/obj/structure/sign/vacuum, -/turf/closed/wall, -/area/science/mixing) -"dEB" = ( -/obj/structure/sign/securearea, -/turf/closed/wall, -/area/science/mixing) -"dEC" = ( -/obj/machinery/door/window/southleft{ - name = "Mass Driver Door"; - req_access_txt = "7" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/loadingarea, -/area/science/mixing) -"dED" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dEE" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Toxins Maintenance"; - req_access_txt = "8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dEF" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"dEG" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"dEH" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"dEI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Break Room"; - req_access_txt = "47" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dEJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 9 - }, -/area/maintenance/port/aft) -"dEK" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dEL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/port/aft) -"dEM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dEN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/maintenance/port/aft) -"dEO" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/port/aft) -"dEP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 5 - }, -/area/maintenance/port/aft) -"dEQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/hallway/primary/aft) -"dER" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dES" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/aft) -"dET" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/aft) -"dEU" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dEV" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"dEW" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"dEX" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"dEY" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"dEZ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/aft) -"dFa" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/aft) -"dFb" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"dFc" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"dFd" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"dFe" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/rack, -/obj/item/crowbar/red, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/aft) -"dFf" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/aft) -"dFg" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"dFh" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"dFi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 5 - }, -/area/maintenance/aft) -"dFj" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"dFk" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 1 - }, -/area/medical/medbay/central) -"dFl" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"dFm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 9 - }, -/area/maintenance/starboard/aft) -"dFn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"dFo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"dFp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"dFq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dFr" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/crew_quarters/theatre/abandoned) -"dFs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/crew_quarters/theatre/abandoned) -"dFt" = ( -/obj/structure/table/wood, -/obj/item/clothing/head/papersack/smiley, -/obj/item/pen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/theatre/abandoned) -"dFu" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/theatre/abandoned) -"dFw" = ( -/obj/structure/table/wood, -/obj/item/clothing/suit/cardborg, -/obj/item/clothing/head/cardborg, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/crew_quarters/theatre/abandoned) -"dFx" = ( -/obj/structure/frame/computer, -/obj/item/circuitboard/computer/secure_data, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office/private_investigators_office) -"dFy" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office/private_investigators_office) -"dFz" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/cigarettes/cigpack_uplift{ - pixel_x = 6 - }, -/obj/item/storage/fancy/cigarettes/cigpack_carp{ - pixel_x = -3 - }, -/obj/item/lighter, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office/private_investigators_office) -"dFA" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/security/detectives_office/private_investigators_office) -"dFB" = ( -/obj/structure/rack, -/obj/item/storage/briefcase{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/secure/briefcase, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/security/detectives_office/private_investigators_office) -"dFC" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space, -/area/solar/starboard/aft) -"dFD" = ( -/turf/closed/indestructible/opshuttle, -/area/science/test_area) -"dFE" = ( -/obj/item/target, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - active_power_usage = 0; - c_tag = "Bomb Test Site"; - desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site."; - dir = 4; - invuln = 1; - light = null; - name = "hardened testing camera"; - network = list("Toxins"); - start_active = 1; - use_power = 0 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dFF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dFG" = ( -/obj/item/device/radio/beacon, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dFH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dFI" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dFJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/science/mixing) -"dFK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/science/mixing) -"dFL" = ( -/obj/machinery/door/poddoor{ - id = "toxinsdriver"; - name = "Toxins Launcher Bay Door" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/science/mixing) -"dFM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dFN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dFO" = ( -/obj/machinery/mass_driver{ - dir = 8; - id = "toxinsdriver" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dFP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dFQ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dFR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/port/aft) -"dFS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/port/aft) -"dFT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 - }, -/obj/item/crowbar/red, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dFU" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dFV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dFW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dFX" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 5 - }, -/area/maintenance/port/aft) -"dFY" = ( -/turf/closed/wall/r_wall, -/area/maintenance/port/aft) -"dFZ" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"dGa" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"dGb" = ( -/obj/structure/urinal{ - pixel_y = 28 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/neutral, -/area/science/research) -"dGc" = ( -/obj/structure/table/wood, -/obj/machinery/microwave{ - desc = "Cooks and boils stuff, somehow."; - pixel_x = -3; - pixel_y = 5 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 9 - }, -/area/science/research) -"dGe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/science/research) -"dGf" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/science/research) -"dGg" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 5 - }, -/area/science/research) -"dGh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/side{ - dir = 10; - heat_capacity = 1e+006 - }, -/area/maintenance/port/aft) -"dGi" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dGj" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dGk" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port/aft) -"dGl" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dGm" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port/aft) -"dGn" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dGo" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dGp" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dGq" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"dGr" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/aft) -"dGs" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/aft) -"dGt" = ( -/obj/structure/closet/firecloset, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dGu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/hallway/primary/aft) -"dGv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/space_heater, -/turf/open/floor/plasteel/neutral/side{ - dir = 10 - }, -/area/maintenance/aft) -"dGw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/item/storage/box/bodybags, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"dGx" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"dGy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"dGz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/aft) -"dGA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/aft) -"dGB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white, -/obj/machinery/power/apc{ - dir = 2; - name = "Aft Maintenance APC"; - areastring = "/area/maintenance/aft"; - pixel_x = 1; - pixel_y = -24 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"dGC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"dGD" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/aft) -"dGE" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"dGF" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"dGG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/aft) -"dGH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/aft) -"dGI" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"dGJ" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/aft) -"dGK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/aft) -"dGL" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"dGM" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"dGN" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"dGO" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 8 - }, -/area/medical/medbay/central) -"dGP" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/lightsout, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dGQ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/medical/medbay/central) -"dGR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"dGS" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"dGT" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dGU" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/starboard/aft) -"dGV" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dGW" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/starboard/aft) -"dGX" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 6 - }, -/area/maintenance/starboard/aft) -"dGY" = ( -/obj/structure/dresser, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/crew_quarters/theatre/abandoned) -"dGZ" = ( -/obj/structure/table/wood, -/obj/item/wrench, -/obj/item/storage/secure/briefcase{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/briefcase, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/crew_quarters/theatre/abandoned) -"dHa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/wood, -/area/crew_quarters/theatre/abandoned) -"dHb" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/crew_quarters/theatre/abandoned) -"dHc" = ( -/obj/machinery/vending/cigarette, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/crew_quarters/theatre/abandoned) -"dHd" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/piano, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/crew_quarters/theatre/abandoned) -"dHe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/stool/bar, -/turf/open/floor/plating, -/area/crew_quarters/theatre/abandoned) -"dHf" = ( -/obj/structure/table/wood, -/obj/item/lipstick/random{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/lipstick/random{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/lipstick/random, -/turf/open/floor/plating, -/area/crew_quarters/theatre/abandoned) -"dHg" = ( -/obj/item/device/instrument/violin, -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/crew_quarters/theatre/abandoned) -"dHh" = ( -/obj/structure/frame/computer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office/private_investigators_office) -"dHi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office/private_investigators_office) -"dHj" = ( -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office/private_investigators_office) -"dHk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/security/detectives_office/private_investigators_office) -"dHl" = ( -/obj/structure/dresser, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/security/detectives_office/private_investigators_office) -"dHm" = ( -/obj/structure/lattice/catwalk, -/obj/effect/landmark/xeno_spawn, -/turf/open/space, -/area/solar/starboard/aft) -"dHn" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dHo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dHp" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/remains/human, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dHq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dHr" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dHs" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dHt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/maintenance/port/aft) -"dHu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dHv" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/maintenance/port/aft) -"dHw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/maintenance/port/aft) -"dHx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dHy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port/aft) -"dHz" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port/aft) -"dHA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"dHB" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"dHC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Bathroom" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dHD" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/science/research) -"dHE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/redyellow, -/area/science/research) -"dHF" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/redyellow, -/area/science/research) -"dHG" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/redyellow, -/area/science/research) -"dHH" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/science/research) -"dHI" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dHJ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dHK" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass_command{ - cyclelinkeddir = 0; - name = "Customs Desk"; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"dHL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/security/checkpoint/customs) -"dHM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Departures Lounge" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dHN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Departures Lounge" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dHO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Departures Lounge" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dHP" = ( -/turf/closed/wall, -/area/maintenance/aft) -"dHQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/aft) -"dHR" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 8 - }, -/area/medical/medbay/central) -"dHS" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dHT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/medical/medbay/central) -"dHU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/theatre/abandoned) -"dHV" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dHW" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dHX" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; - name = "External Airlock"; - req_access_txt = "13" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dHY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dHZ" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; - name = "External Airlock"; - req_access_txt = "13" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dIa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dIb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/maintenance/port/aft) -"dIc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dId" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dIe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 10 - }, -/area/maintenance/port/aft) -"dIf" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port/aft) -"dIg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port/aft) -"dIh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dIi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dIj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port/aft) -"dIk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port/aft) -"dIl" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"dIm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"dIn" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/science/research) -"dIo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/science/research) -"dIp" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/science/research) -"dIq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/redyellow, -/area/science/research) -"dIr" = ( -/obj/effect/landmark/start/scientist, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/redyellow, -/area/science/research) -"dIs" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/redyellow, -/area/science/research) -"dIt" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb, -/obj/machinery/camera{ - c_tag = "Science - Break Room"; - dir = 8; - name = "science camera"; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/science/research) -"dIu" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dIv" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 5 - }, -/area/maintenance/port/aft) -"dIw" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 9 - }, -/area/security/checkpoint/customs) -"dIx" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/blue/side{ - dir = 1 - }, -/area/security/checkpoint/customs) -"dIy" = ( -/obj/machinery/photocopier, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/blue/side{ - dir = 1 - }, -/area/security/checkpoint/customs) -"dIz" = ( -/obj/structure/filingcabinet/medical, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 5 - }, -/area/security/checkpoint/customs) -"dIA" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Departures Hallway - Aft"; - dir = 4; - name = "hallway camera" - }, -/obj/effect/turf_decal/bot, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dIB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/escape{ - dir = 1 - }, -/area/hallway/primary/aft) -"dIC" = ( -/turf/open/floor/plasteel/escape{ - dir = 1 - }, -/area/hallway/primary/aft) -"dID" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/escape{ - dir = 1 - }, -/area/hallway/primary/aft) -"dIE" = ( -/obj/structure/table, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dIF" = ( -/obj/machinery/light/small, -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"dIG" = ( -/obj/machinery/light/small, -/obj/machinery/iv_drip, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitegreen/corner, -/area/medical/medbay/central) -"dIH" = ( -/obj/item/stack/cable_coil, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard/aft) -"dII" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/item/target, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dIJ" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dIK" = ( -/turf/closed/wall, -/area/library/abandoned) -"dIL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/library/abandoned) -"dIM" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/library/abandoned) -"dIN" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/library/abandoned) -"dIO" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/maintenance/port/aft) -"dIP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dIQ" = ( -/turf/closed/wall/r_wall, -/area/science/storage) -"dIR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock{ - name = "Bathroom" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dIS" = ( -/obj/machinery/vending/coffee, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/science/research) -"dIT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/redyellow, -/area/science/research) -"dIU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/redyellow, -/area/science/research) -"dIV" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/redyellow, -/area/science/research) -"dIW" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/obj/item/clipboard, -/obj/item/folder, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/science/research) -"dIX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/port/aft) -"dIY" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port/aft) -"dIZ" = ( -/obj/machinery/computer/med_data, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 10 - }, -/area/security/checkpoint/customs) -"dJa" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/security/checkpoint/customs) -"dJb" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"dJc" = ( -/obj/structure/table/reinforced, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/turf/open/floor/plasteel/blue/side{ - dir = 6 - }, -/area/security/checkpoint/customs) -"dJe" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dJf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/aft) -"dJg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/aft) -"dJh" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dJi" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/primary/aft) -"dJj" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/shuttle/escape) -"dJk" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/escape) -"dJl" = ( -/turf/closed/wall/r_wall, -/area/medical/medbay/central) -"dJm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/medical/medbay/central) -"dJn" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/machinery/door/airlock/virology{ - autoclose = 0; - frequency = 1449; - icon_state = "door_locked"; - id_tag = "virology_airlock_exterior"; - locked = 1; - name = "Virology Exterior Airlock"; - req_access_txt = "39" - }, -/obj/machinery/doorButtons/access_button{ - dir = 1; - idDoor = "virology_airlock_exterior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = -24; - pixel_y = -2; - req_access_txt = "39" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dJo" = ( -/obj/structure/sign/biohazard, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/medical/medbay/central) -"dJp" = ( -/turf/closed/wall/r_wall, -/area/medical/virology) -"dJq" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/virology) -"dJr" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/virology) -"dJs" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/virology) -"dJt" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plating, -/area/library/abandoned) -"dJu" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/folder, -/obj/item/pen, -/turf/open/floor/plating, -/area/library/abandoned) -"dJv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library/abandoned) -"dJw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/grimy, -/area/library/abandoned) -"dJx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/grimy, -/area/library/abandoned) -"dJy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/black, -/area/library/abandoned) -"dJz" = ( -/obj/structure/table/wood, -/obj/item/dice/d20, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library/abandoned) -"dJA" = ( -/turf/open/floor/plasteel/grimy, -/area/library/abandoned) -"dJB" = ( -/obj/structure/chair/office/dark, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/grimy, -/area/library/abandoned) -"dJC" = ( -/obj/structure/chair/office/dark, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/library/abandoned) -"dJD" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/grimy, -/area/library/abandoned) -"dJE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/maintenance/port/aft) -"dJF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dJG" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dJH" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dJI" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dJJ" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dJK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc{ - dir = 1; - name = "Port Quarter Maintenance APC"; - areastring = "/area/maintenance/port/aft"; - pixel_y = 24 - }, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/maintenance/port/aft) -"dJL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/obj/effect/landmark/blobstart, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/maintenance/port/aft) -"dJM" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/neutral, -/area/science/research) -"dJN" = ( -/obj/machinery/disposal/bin, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research) -"dJO" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral/side, -/area/science/research) -"dJP" = ( -/obj/machinery/vending/cola/random, -/obj/machinery/light, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side, -/area/science/research) -"dJQ" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/neutral/side, -/area/science/research) -"dJR" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/neutral/side{ - dir = 6 - }, -/area/science/research) -"dJS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/port/aft) -"dJT" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port/aft) -"dJU" = ( -/obj/machinery/computer/card, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Departures Customs APC"; - areastring = "/area/security/checkpoint/customs"; - pixel_x = -26; - pixel_y = 3 - }, -/obj/machinery/camera{ - c_tag = "Departures Customs"; - dir = 4; - name = "customs camera" - }, -/turf/open/floor/plasteel/blue, -/area/security/checkpoint/customs) -"dJV" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/neutral, -/area/security/checkpoint/customs) -"dJW" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/security/checkpoint/customs) -"dJX" = ( -/obj/structure/table/reinforced, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/item/folder/blue, -/obj/item/pen, -/turf/open/floor/plasteel/blue, -/area/security/checkpoint/customs) -"dJY" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/door/window/brigdoor/southright{ - dir = 8; - name = "Customs Desk"; - req_access_txt = "19" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"dJZ" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dKa" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dKb" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/aft) -"dKc" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dKd" = ( -/obj/structure/window/reinforced, -/obj/structure/shuttle/engine/heater{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/shuttle/escape) -"dKe" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/machinery/shower{ - dir = 8; - name = "emergency shower" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/virology) -"dKf" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dKg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Virology - Containment Lock"; - dir = 8; - name = "virology camera" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/virology) -"dKh" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/vacuum, -/turf/open/floor/plating, -/area/medical/virology) -"dKi" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 1 - }, -/area/medical/virology) -"dKj" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 1 - }, -/area/medical/virology) -"dKk" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 4 - }, -/area/medical/virology) -"dKl" = ( -/turf/closed/wall, -/area/medical/virology) -"dKm" = ( -/obj/structure/table/glass, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/item/paper_bin, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -32; - pixel_y = 32 - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 1 - }, -/area/medical/virology) -"dKn" = ( -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 1 - }, -/area/medical/virology) -"dKo" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 4 - }, -/area/medical/virology) -"dKp" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 4 - }, -/area/medical/virology) -"dKr" = ( -/obj/structure/table_frame/wood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/library/abandoned) -"dKs" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library/abandoned) -"dKt" = ( -/turf/open/floor/plasteel/black, -/area/library/abandoned) -"dKu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/grimy, -/area/library/abandoned) -"dKv" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library/abandoned) -"dKw" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/grimy, -/area/library/abandoned) -"dKx" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/paicard, -/turf/open/floor/carpet, -/area/library/abandoned) -"dKy" = ( -/obj/structure/table/wood, -/obj/item/storage/pill_bottle/dice, -/turf/open/floor/carpet, -/area/library/abandoned) -"dKz" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/library/abandoned) -"dKA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dKB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/maintenance/port/aft) -"dKC" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dKD" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral, -/area/maintenance/port/aft) -"dKE" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral, -/area/maintenance/port/aft) -"dKF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dKG" = ( -/obj/machinery/droneDispenser, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dKH" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port/aft) -"dKI" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Science Maintenance"; - req_access_txt = "47" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dKJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dKK" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port/aft) -"dKL" = ( -/obj/machinery/computer/crew, -/obj/machinery/ai_status_display{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 9 - }, -/area/security/checkpoint/customs) -"dKM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/security/checkpoint/customs) -"dKN" = ( -/obj/structure/table/reinforced, -/obj/machinery/newscaster{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/blue/side{ - dir = 5 - }, -/area/security/checkpoint/customs) -"dKO" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/customs) -"dKP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dKQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/aft) -"dKR" = ( -/obj/item/device/radio/beacon, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/aft) -"dKS" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/escape) -"dKT" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/escape) -"dKU" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/open/floor/plating, -/area/shuttle/escape) -"dKV" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/machinery/shower{ - dir = 8; - name = "emergency shower" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/virology) -"dKW" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dKX" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dKY" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/airlock/virology{ - autoclose = 0; - frequency = 1449; - icon_state = "door_locked"; - id_tag = "virology_airlock_interior"; - locked = 1; - name = "Virology Interior Airlock"; - req_access_txt = "39" - }, -/obj/machinery/doorButtons/access_button{ - idDoor = "virology_airlock_interior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_y = 22; - req_access_txt = "39" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dKZ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dLa" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dLb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology{ - name = "Virology Access"; - req_access_txt = "39" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dLc" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 1 - }, -/area/medical/virology) -"dLd" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/virology) -"dLe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 4 - }, -/area/medical/virology) -"dLf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/virology) -"dLg" = ( -/obj/structure/table/glass, -/obj/item/clipboard, -/obj/item/toy/figure/virologist, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 1 - }, -/area/medical/virology) -"dLh" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/virologist, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/virology) -"dLi" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/green, -/area/medical/virology) -"dLk" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/structure/table/glass, -/obj/item/device/flashlight/lamp, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault, -/area/medical/virology) -"dLl" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/vault, -/area/medical/virology) -"dLm" = ( -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/vault, -/area/medical/virology) -"dLo" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/library/abandoned) -"dLp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/library/abandoned) -"dLq" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken2" - }, -/area/library/abandoned) -"dLr" = ( -/obj/structure/bookcase, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/wood, -/area/library/abandoned) -"dLs" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/library/abandoned) -"dLt" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/library/abandoned) -"dLu" = ( -/obj/structure/table/wood, -/obj/item/toy/cards/deck/cas{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/toy/cards/deck/cas/black{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/carpet, -/area/library/abandoned) -"dLv" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/folder/red, -/turf/open/floor/carpet, -/area/library/abandoned) -"dLw" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plating, -/area/library/abandoned) -"dLx" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 10 - }, -/area/maintenance/port/aft) -"dLy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/maintenance/port/aft) -"dLz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dLA" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dLB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dLC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dLD" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dLE" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port/aft) -"dLF" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 9 - }, -/area/maintenance/port/aft) -"dLG" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/mob/living/simple_animal/cockroach, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dLH" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dLI" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/port/aft) -"dLJ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/port/aft) -"dLK" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dLL" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 5 - }, -/area/maintenance/port/aft) -"dLM" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dLN" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 10 - }, -/area/maintenance/port/aft) -"dLO" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dLQ" = ( -/obj/structure/table/reinforced, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/item/storage/box/ids, -/turf/open/floor/plasteel/blue/side, -/area/security/checkpoint/customs) -"dLR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/blue/side, -/area/security/checkpoint/customs) -"dLS" = ( -/obj/structure/closet/secure_closet/contraband/heads, -/obj/item/storage/secure/briefcase, -/turf/open/floor/plasteel/blue/side{ - dir = 6 - }, -/area/security/checkpoint/customs) -"dLT" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dLU" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 2 - }, -/turf/open/floor/plasteel/escape, -/area/hallway/primary/aft) -"dLV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/escape, -/area/hallway/primary/aft) -"dLW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/escape, -/area/hallway/primary/aft) -"dLY" = ( -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/structure/closet/crate/internals, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dLZ" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/shuttle/escape) -"dMa" = ( -/obj/item/defibrillator/loaded, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/cmo, -/area/shuttle/escape) -"dMb" = ( -/obj/machinery/computer/operating, -/turf/open/floor/plasteel/cmo, -/area/shuttle/escape) -"dMc" = ( -/obj/structure/table/optable, -/obj/item/surgical_drapes, -/turf/open/floor/plasteel/cmo, -/area/shuttle/escape) -"dMd" = ( -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/item/circular_saw, -/obj/item/retractor{ - pixel_x = 4 - }, -/obj/item/hemostat{ - pixel_x = -4 - }, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/cmo, -/area/shuttle/escape) -"dMe" = ( -/obj/structure/closet/l3closet/virology, -/obj/structure/sign/biohazard{ - pixel_y = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/virology) -"dMf" = ( -/obj/structure/closet/l3closet/virology, -/obj/machinery/light/small, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/virology) -"dMg" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/securearea{ - pixel_y = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/virology) -"dMh" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/virology) -"dMi" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 1 - }, -/area/medical/virology) -"dMj" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/green, -/area/medical/virology) -"dMk" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 4 - }, -/area/medical/virology) -"dMl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology{ - name = "Virology Break Room"; - req_access_txt = "39" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dMm" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 8 - }, -/area/medical/virology) -"dMn" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/green, -/area/medical/virology) -"dMo" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/virology) -"dMp" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitegreen/corner, -/area/medical/virology) -"dMq" = ( -/obj/machinery/door/airlock/virology{ - name = "Virology Cabin"; - req_access_txt = "39" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dMr" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = -26 - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 1 - }, -/area/medical/virology) -"dMs" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/landmark/start/virologist, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/green, -/area/medical/virology) -"dMt" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 4 - }, -/area/medical/virology) -"dMu" = ( -/obj/structure/bookcase, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/wood, -/area/library/abandoned) -"dMv" = ( -/obj/structure/bookcase, -/turf/open/floor/wood, -/area/library/abandoned) -"dMw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/library/abandoned) -"dMx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/library/abandoned) -"dMy" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/plasteel/grimy, -/area/library/abandoned) -"dMz" = ( -/turf/open/floor/wood, -/area/library/abandoned) -"dMA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/library/abandoned) -"dMB" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/library/abandoned) -"dMC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/maintenance/port/aft) -"dMD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dME" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/chapel/office) -"dMF" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Chapel Maintenance"; - req_access_txt = "27" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dMG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/chapel/office) -"dMH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/port/aft) -"dMI" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dMJ" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/costume, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dMK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port/aft) -"dML" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dMM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port/aft) -"dMN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dMO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/hallway/secondary/exit/departure_lounge) -"dMP" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dMQ" = ( -/turf/closed/wall, -/area/hallway/secondary/exit/departure_lounge) -"dMR" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"dMS" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"dMT" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/hallway/secondary/exit/departure_lounge) -"dMU" = ( -/obj/structure/sign/directions/evac{ - pixel_y = -8 - }, -/obj/structure/sign/directions/science{ - dir = 1 - }, -/obj/structure/sign/directions/engineering{ - dir = 1; - pixel_y = 8 - }, -/turf/closed/wall, -/area/hallway/secondary/exit/departure_lounge) -"dMV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Departures Lounge" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dMW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Departures Lounge" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dMX" = ( -/obj/structure/sign/directions/evac{ - pixel_y = -8 - }, -/obj/structure/sign/directions/medical{ - dir = 1 - }, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = 8 - }, -/turf/closed/wall, -/area/hallway/secondary/exit/departure_lounge) -"dMY" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"dMZ" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/shuttle/escape) -"dNa" = ( -/turf/open/floor/plasteel/neutral, -/area/shuttle/escape) -"dNb" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/shuttle/escape) -"dNc" = ( -/obj/machinery/status_display, -/turf/closed/wall/mineral/titanium, -/area/shuttle/escape) -"dNd" = ( -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 6 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = -3 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 4; - pixel_y = 1 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 2; - pixel_y = 8 - }, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/cmo, -/area/shuttle/escape) -"dNe" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/plasteel/cmo, -/area/shuttle/escape) -"dNf" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26; - pixel_y = 58 - }, -/turf/open/floor/plasteel/cmo, -/area/shuttle/escape) -"dNg" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/plasteel/cmo, -/area/shuttle/escape) -"dNh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 1 - }, -/area/medical/virology) -"dNi" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/virology) -"dNj" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 4 - }, -/area/medical/virology) -"dNk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/virology) -"dNl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 8 - }, -/area/medical/virology) -"dNm" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 8 - }, -/area/medical/virology) -"dNn" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitegreen/corner, -/area/medical/virology) -"dNo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitegreen/corner, -/area/medical/virology) -"dNp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/virology) -"dNq" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/virology) -"dNr" = ( -/obj/machinery/ai_status_display{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/whitegreen/corner, -/area/medical/virology) -"dNs" = ( -/obj/structure/cable, -/obj/machinery/power/tracker, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"dNt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Abandoned Library APC"; - areastring = "/area/library/abandoned"; - pixel_x = -26; - pixel_y = 3 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/library/abandoned) -"dNu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/library/abandoned) -"dNv" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/wood, -/area/library/abandoned) -"dNw" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/grimy, -/area/library/abandoned) -"dNx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/grimy, -/area/library/abandoned) -"dNy" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/library/abandoned) -"dNz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/library/abandoned) -"dNA" = ( -/obj/machinery/photocopier, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/library/abandoned) -"dNB" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/wood{ - icon_state = "wood-broken2" - }, -/area/library/abandoned) -"dNC" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plating, -/area/library/abandoned) -"dND" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dNE" = ( -/turf/closed/wall, -/area/chapel/office) -"dNF" = ( -/obj/structure/bodycontainer/morgue, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/chapel/office) -"dNG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/chapel/office) -"dNH" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/office) -"dNI" = ( -/turf/closed/wall, -/area/chapel/main) -"dNK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/chapel/main) -"dNN" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dNO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dNR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dNT" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dNU" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dNV" = ( -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/window/shuttle, -/turf/open/floor/grass, -/area/shuttle/escape) -"dNW" = ( -/obj/machinery/computer/med_data, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/shuttle/escape) -"dNX" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/shuttle/escape) -"dNY" = ( -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/shuttle/escape) -"dNZ" = ( -/obj/item/storage/firstaid/toxin, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 5 - }, -/area/shuttle/escape) -"dOa" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 1 - }, -/area/medical/virology) -"dOb" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/green, -/area/medical/virology) -"dOc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 4 - }, -/area/medical/virology) -"dOe" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plasteel/vault, -/area/medical/virology) -"dOf" = ( -/obj/item/clothing/neck/stethoscope, -/obj/structure/table, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/turf/open/floor/plasteel/vault, -/area/medical/virology) -"dOg" = ( -/obj/structure/table, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/microwave{ - desc = "Cooks and boils stuff, somehow."; - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/plasteel/vault, -/area/medical/virology) -"dOh" = ( -/obj/structure/sign/nosmoking_2, -/turf/closed/wall, -/area/medical/virology) -"dOi" = ( -/obj/structure/dresser, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/medical/virology) -"dOj" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/medical/virology) -"dOk" = ( -/obj/structure/closet/wardrobe/virology_white, -/obj/item/storage/backpack/satchel/vir, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/medical/virology) -"dOl" = ( -/mob/living/simple_animal/cockroach, -/turf/open/floor/wood, -/area/library/abandoned) -"dOm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/grimy, -/area/library/abandoned) -"dOn" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/library/abandoned) -"dOo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/library/abandoned) -"dOp" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dOq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port/aft) -"dOr" = ( -/obj/structure/table, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/bodybags, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/office) -"dOs" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/office) -"dOt" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/office) -"dOu" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/candle_box{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/plasteel/black, -/area/chapel/main) -"dOv" = ( -/obj/structure/bookcase, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/kiddieplaque/badger{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/main) -"dOw" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/grown/poppy{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/snacks/grown/poppy{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/snacks/grown/poppy, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/black, -/area/chapel/main) -"dOx" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/main) -"dOy" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/black, -/area/chapel/main) -"dOz" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/main) -"dOA" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/grown/harebell{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/snacks/grown/harebell{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/black, -/area/chapel/main) -"dOB" = ( -/obj/structure/bookcase, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/main) -"dOC" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/black, -/area/chapel/main) -"dOD" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/chapel/main) -"dOF" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dOG" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/exit/departure_lounge) -"dOH" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/exit/departure_lounge) -"dOI" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/exit/departure_lounge) -"dOJ" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/exit/departure_lounge) -"dOK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/exit/departure_lounge) -"dOL" = ( -/obj/structure/disposalpipe/sortjunction{ - name = "Chapel Junction"; - sortType = 17 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/exit/departure_lounge) -"dOM" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall8"; - location = "hall7" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/exit/departure_lounge) -"dON" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/exit/departure_lounge) -"dOO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dOQ" = ( -/obj/machinery/ai_status_display, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/escape) -"dOR" = ( -/obj/machinery/status_display, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/escape) -"dOS" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dOT" = ( -/obj/machinery/door/airlock/glass_medical{ - id_tag = null; - name = "Escape Shuttle Infirmary"; - req_access_txt = "0" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dOU" = ( -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/regular{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/shuttle/escape) -"dOV" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/virology) -"dOW" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/virology) -"dOX" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/virology) -"dOY" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/virology) -"dOZ" = ( -/obj/machinery/vending/wallmed{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 1 - }, -/area/medical/virology) -"dPa" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/neutral, -/area/medical/virology) -"dPb" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Virology Satellite APC"; - areastring = "/area/medical/virology"; - pixel_x = 26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 4 - }, -/area/medical/virology) -"dPc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/library/abandoned) -"dPd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/library/abandoned) -"dPe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/library/abandoned) -"dPf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/library/abandoned) -"dPg" = ( -/obj/structure/destructible/cult/tome, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/library/abandoned) -"dPh" = ( -/obj/structure/bookcase{ - name = "Forbidden Knowledge" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/black, -/area/library/abandoned) -"dPi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 - }, -/obj/item/device/flashlight, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dPj" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port/aft) -"dPk" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/chapel/office) -"dPl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/office) -"dPm" = ( -/obj/machinery/door/airlock/centcom{ - name = "Chapel Morgue"; - req_access_txt = "27" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/chapel/main) -"dPn" = ( -/turf/open/floor/plasteel/grimy, -/area/chapel/main) -"dPo" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/grimy, -/area/chapel/main) -"dPp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/grimy, -/area/chapel/main) -"dPq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/main) -"dPr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/main) -"dPs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/centcom{ - name = "Chapel Hall" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/chapel/main) -"dPt" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dPu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dPv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/exit/departure_lounge) -"dPw" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/exit/departure_lounge) -"dPx" = ( -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/exit/departure_lounge) -"dPy" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/exit/departure_lounge) -"dPz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/exit/departure_lounge) -"dPA" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dPB" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dPC" = ( -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/genericbush, -/obj/structure/window/shuttle, -/turf/open/floor/grass, -/area/shuttle/escape) -"dPD" = ( -/obj/machinery/shower{ - dir = 8; - name = "emergency shower" - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/shuttle/escape) -"dPE" = ( -/obj/structure/table/glass, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/item/clothing/gloves/color/latex, -/obj/item/device/healthanalyzer, -/obj/item/clothing/glasses/hud/health, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/medical/virology) -"dPF" = ( -/obj/structure/table/glass, -/obj/machinery/requests_console{ - department = "Virology Lab"; - departmentType = 0; - name = "Virology RC"; - pixel_y = 32; - receive_ore_updates = 1 - }, -/obj/item/folder/white, -/obj/item/pen/red, -/obj/item/stack/sheet/mineral/plasma{ - amount = 5 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/medical/virology) -"dPG" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/computer/pandemic, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dPH" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/virology) -"dPI" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/virology) -"dPJ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/virology) -"dPK" = ( -/obj/structure/closet/crate/freezer/blood, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/obj/machinery/camera{ - c_tag = "Virology - Lab"; - name = "virology camera" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/virology) -"dPL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 8 - }, -/area/medical/virology) -"dPM" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel/green, -/area/medical/virology) -"dPN" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Virology - Hallway"; - dir = 8; - name = "virology camera" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/medical/virology) -"dPO" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 9 - }, -/area/medical/virology) -"dPP" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 1 - }, -/area/medical/virology) -"dPQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 1 - }, -/area/medical/virology) -"dPR" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 1 - }, -/area/medical/virology) -"dPS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 5 - }, -/area/medical/virology) -"dPT" = ( -/obj/structure/bookcase, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating, -/area/library/abandoned) -"dPU" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/library/abandoned) -"dPV" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/landmark/revenantspawn, -/turf/open/floor/plasteel/black, -/area/library/abandoned) -"dPW" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/maintenance/port/aft) -"dPX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dPY" = ( -/obj/structure/table, -/obj/item/wrench, -/obj/item/crowbar, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26 - }, -/obj/item/clothing/under/burial, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/office) -"dPZ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/start/chaplain, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/office) -"dQa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/office) -"dQb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/main) -"dQc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/main) -"dQd" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/lightsout, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/main) -"dQe" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/main) -"dQf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/main) -"dQg" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/grimy, -/area/chapel/main) -"dQh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/centcom{ - name = "Chapel Hall" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/chapel/main) -"dQi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dQj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dQk" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dQl" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dQm" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dQn" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dQo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/exit/departure_lounge) -"dQp" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/escape) -"dQq" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/whiteblue/side, -/area/shuttle/escape) -"dQr" = ( -/turf/open/floor/plasteel/whiteblue/side, -/area/shuttle/escape) -"dQs" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 6 - }, -/area/shuttle/escape) -"dQt" = ( -/obj/structure/reagent_dispensers/virusfood{ - pixel_x = -32 - }, -/obj/structure/table/glass, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/reagentgrinder{ - desc = "Used to grind things up into raw materials and liquids."; - pixel_y = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dQu" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 1 - }, -/area/medical/virology) -"dQv" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 1 - }, -/area/medical/virology) -"dQw" = ( -/turf/open/floor/plasteel/whitegreen/side{ - dir = 1 - }, -/area/medical/virology) -"dQx" = ( -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 4 - }, -/area/medical/virology) -"dQy" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 4 - }, -/area/medical/virology) -"dQz" = ( -/obj/machinery/iv_drip, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/virology) -"dQA" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/virology) -"dQB" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 8 - }, -/area/medical/virology) -"dQC" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/neutral, -/area/medical/virology) -"dQD" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitegreen/corner, -/area/medical/virology) -"dQE" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel, -/area/medical/virology) -"dQF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 8 - }, -/area/medical/virology) -"dQG" = ( -/obj/effect/landmark/revenantspawn, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/virology) -"dQH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitegreen/corner, -/area/medical/virology) -"dQI" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/virology) -"dQJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/wood, -/area/library/abandoned) -"dQK" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/library/abandoned) -"dQL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plating, -/area/library/abandoned) -"dQM" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plating, -/area/library/abandoned) -"dQN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library/abandoned) -"dQO" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/item/organ/tongue/bone{ - origin_tech = "biotech=0" - }, -/turf/open/floor/plating, -/area/library/abandoned) -"dQP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/maintenance/port/aft) -"dQQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port/aft) -"dQR" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/chapel/office) -"dQS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Chapel Morgue"; - dir = 8; - name = "chapel camera" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/office) -"dQT" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/camera{ - c_tag = "Chapel - Port"; - dir = 4; - name = "chapel camera" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"dQU" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"dQV" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"dQW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"dQX" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"dQY" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"dQZ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dRa" = ( -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"dRb" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/hallway/secondary/exit/departure_lounge) -"dRc" = ( -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"dRd" = ( -/obj/machinery/ai_status_display, -/turf/closed/wall, -/area/hallway/secondary/exit/departure_lounge) -"dRe" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dRg" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Emergency Shuttle Airlock"; - req_access_txt = "0" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/escape) -"dRh" = ( -/obj/structure/sign/bluecross_2, -/turf/closed/wall/mineral/titanium, -/area/shuttle/escape) -"dRi" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/turf/open/floor/plasteel/cmo, -/area/shuttle/escape) -"dRj" = ( -/turf/open/floor/plasteel/cmo, -/area/shuttle/escape) -"dRk" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/turf/open/floor/plasteel/cmo, -/area/shuttle/escape) -"dRl" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/smartfridge/chemistry/virology/preloaded, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dRm" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 8 - }, -/area/medical/virology) -"dRn" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/green, -/area/medical/virology) -"dRo" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/virology) -"dRp" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/green, -/area/medical/virology) -"dRq" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/medical/virology) -"dRr" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/virology) -"dRs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_virology{ - name = "Virology Lab"; - req_access_txt = "39" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dRt" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 8 - }, -/area/medical/virology) -"dRu" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel/green, -/area/medical/virology) -"dRv" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitegreen/corner, -/area/medical/virology) -"dRw" = ( -/obj/structure/sign/biohazard, -/turf/closed/wall, -/area/medical/virology) -"dRx" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/medical/virology) -"dRy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_virology{ - name = "Virology Containment Cell"; - req_access_txt = "39" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dRz" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/medical/virology) -"dRA" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/wood, -/area/library/abandoned) -"dRB" = ( -/obj/structure/chair/office/dark, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/library/abandoned) -"dRC" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/library/abandoned) -"dRD" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/wood, -/area/library/abandoned) -"dRE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library/abandoned) -"dRF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/library/abandoned) -"dRG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library/abandoned) -"dRH" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/library/abandoned) -"dRI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/morgue{ - name = "Occult Study" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/library/abandoned) -"dRJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/black, -/area/library/abandoned) -"dRK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/remains/human, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/library/abandoned) -"dRL" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dRM" = ( -/obj/structure/table, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/structure/sign/nosmoking_2{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/office) -"dRN" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/office) -"dRO" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/office) -"dRP" = ( -/obj/structure/chair/wood, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"dRQ" = ( -/obj/structure/chair/wood, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"dRR" = ( -/obj/structure/chair/wood, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"dRS" = ( -/obj/structure/chair/wood, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"dRT" = ( -/obj/structure/chair/wood, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/camera{ - c_tag = "Chapel - Starboard"; - dir = 8; - name = "chapel camera" - }, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"dRU" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dRV" = ( -/obj/structure/chair, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dRW" = ( -/obj/structure/table, -/obj/item/folder, -/obj/item/pen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dRX" = ( -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/obj/machinery/camera{ - c_tag = "Departures - Center"; - dir = 2; - name = "departures camera" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dRY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/vacuum, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"dRZ" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium, -/area/shuttle/escape) -"dSa" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dSb" = ( -/obj/machinery/door/airlock/glass_medical{ - id_tag = null; - name = "Escape Shuttle Infirmary"; - req_access_txt = "0" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dSc" = ( -/obj/structure/table/glass, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/item/book/manual/wiki/infections, -/obj/item/reagent_containers/syringe/antiviral, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dSd" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/virologist, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 8 - }, -/area/medical/virology) -"dSe" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 8 - }, -/area/medical/virology) -"dSf" = ( -/turf/open/floor/plasteel/whitegreen/side, -/area/medical/virology) -"dSg" = ( -/turf/open/floor/plasteel/whitegreen/corner, -/area/medical/virology) -"dSh" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitegreen/corner, -/area/medical/virology) -"dSi" = ( -/obj/structure/closet/l3closet/virology, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/virology) -"dSj" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 8 - }, -/area/medical/virology) -"dSk" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/medical/virology) -"dSl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitegreen/corner, -/area/medical/virology) -"dSm" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 1 - }, -/area/medical/virology) -"dSn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 1 - }, -/area/medical/virology) -"dSo" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 1 - }, -/area/medical/virology) -"dSp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 4 - }, -/area/medical/virology) -"dSq" = ( -/obj/structure/table/glass, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 4 - }, -/area/medical/virology) -"dSr" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plating, -/area/library/abandoned) -"dSs" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/folder, -/obj/item/pen, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/library/abandoned) -"dSt" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/light/small, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/library/abandoned) -"dSu" = ( -/obj/structure/table/wood, -/obj/item/clothing/under/rank/curator, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/wood, -/area/library/abandoned) -"dSv" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/wood, -/area/library/abandoned) -"dSw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/wood, -/area/library/abandoned) -"dSx" = ( -/obj/structure/easel, -/obj/effect/decal/cleanable/dirt, -/obj/item/canvas/twentythreeXtwentythree, -/obj/item/canvas/twentythreeXtwentythree, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/library/abandoned) -"dSy" = ( -/obj/structure/table/wood, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/turf/open/floor/wood, -/area/library/abandoned) -"dSz" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper_bin, -/turf/open/floor/plating, -/area/library/abandoned) -"dSA" = ( -/obj/structure/dresser, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/library/abandoned) -"dSB" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/taperecorder, -/turf/open/floor/plasteel/black, -/area/library/abandoned) -"dSC" = ( -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dSE" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/chapel/office) -"dSF" = ( -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = -26 - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/office) -"dSG" = ( -/obj/structure/chair/wood/normal, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"dSH" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"dSI" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"dSJ" = ( -/obj/structure/chair/wood/normal, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"dSK" = ( -/obj/structure/chair/wood/normal, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"dSL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dSM" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dSN" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/exit/departure_lounge) -"dSO" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/exit/departure_lounge) -"dSP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/exit/departure_lounge) -"dSQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/exit/departure_lounge) -"dSR" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Emergency Shuttle Airlock" - }, -/obj/docking_port/mobile/emergency{ - dheight = 0; - dwidth = 11; - height = 18; - name = "Delta emergency shuttle"; - width = 30; - preferred_direction = 2; - port_direction = 4 - }, -/obj/docking_port/stationary{ - dheight = 0; - dir = 4; - dwidth = 11; - height = 18; - id = "emergency_home"; - name = "DeltaStation emergency evac bay"; - turf_type = /turf/open/space; - width = 30 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/escape) -"dSS" = ( -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/window/shuttle, -/turf/open/floor/grass, -/area/shuttle/escape) -"dST" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/machinery/shieldgen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dSU" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_y = -1 - }, -/obj/item/storage/toolbox/emergency{ - pixel_x = 3; - pixel_y = -5 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dSV" = ( -/obj/structure/table/glass, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/item/storage/box/beakers{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/syringes, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dSW" = ( -/obj/structure/table/glass, -/obj/structure/sign/deathsposal{ - pixel_y = -32 - }, -/obj/item/paper_bin, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dSX" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dSY" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/virology) -"dSZ" = ( -/obj/machinery/light, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/virology) -"dTa" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/virology) -"dTb" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/closet/secure_closet/medical1, -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = -26 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/virology) -"dTc" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 8 - }, -/area/medical/virology) -"dTd" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/green, -/area/medical/virology) -"dTe" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/whitegreen/corner, -/area/medical/virology) -"dTf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_virology{ - name = "Virology Access"; - req_access_txt = "39" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dTg" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 8 - }, -/area/medical/virology) -"dTh" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/green, -/area/medical/virology) -"dTi" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/holopad, -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/virology) -"dTj" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/green, -/area/medical/virology) -"dTk" = ( -/obj/structure/table/glass, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/item/folder/white, -/obj/item/pen/red, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/medical/virology) -"dTl" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/maintenance/port/aft) -"dTm" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dTn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/chapel/office) -"dTo" = ( -/obj/machinery/door/airlock/centcom{ - name = "Crematorium"; - req_access_txt = "27" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/chapel/office) -"dTp" = ( -/obj/structure/chair/wood, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"dTq" = ( -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"dTr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"dTs" = ( -/obj/structure/chair/wood, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"dTt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/vending/cola/random, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dTu" = ( -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/exit/departure_lounge) -"dTv" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dTw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dTx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dTy" = ( -/obj/structure/closet/crate/medical{ - name = "medical crate" - }, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/device/healthanalyzer{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/lazarus_injector, -/obj/effect/turf_decal/bot, -/mob/living/simple_animal/bot/medbot{ - name = "\improper emergency medibot"; - pixel_x = -3; - pixel_y = 2 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dTz" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/virology) -"dTA" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/virology) -"dTB" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/virology) -"dTC" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/medical/virology) -"dTD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitegreen/corner, -/area/medical/virology) -"dTE" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/virology) -"dTF" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 8 - }, -/area/medical/virology) -"dTG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 8 - }, -/area/medical/virology) -"dTH" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/machinery/iv_drip, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitegreen/side, -/area/medical/virology) -"dTI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/corner, -/area/medical/virology) -"dTJ" = ( -/obj/structure/table/glass, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/obj/item/paper_bin, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Virology - Cells"; - dir = 8; - name = "virology camera" - }, -/turf/open/floor/plasteel/whitegreen/corner, -/area/medical/virology) -"dTK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dTL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/port/aft) -"dTM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/port/aft) -"dTN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/port/aft) -"dTO" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dTP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dTQ" = ( -/turf/closed/wall/r_wall, -/area/chapel/office) -"dTR" = ( -/obj/structure/bodycontainer/crematorium{ - id = "cremawheat" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/chapel/office) -"dTS" = ( -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = 26 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/office) -"dTT" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Chapel APC"; - areastring = "/area/chapel/main"; - pixel_x = -26; - pixel_y = 3 - }, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"dTU" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"dTV" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"dTW" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/grimy, -/area/chapel/main) -"dTX" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"dTY" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/vending/snack/random, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dTZ" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dUa" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dUb" = ( -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/window/shuttle, -/turf/open/floor/grass, -/area/shuttle/escape) -"dUc" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dUd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dUe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dUf" = ( -/obj/structure/closet/crate{ - name = "emergency supplies crate" - }, -/obj/item/storage/toolbox/emergency, -/obj/item/storage/toolbox/emergency, -/obj/item/device/flashlight/flare{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/device/flashlight/flare{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/device/radio, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dUg" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 8 - }, -/area/medical/virology) -"dUh" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/table, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/restraints/handcuffs, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whitegreen/side, -/area/medical/virology) -"dUi" = ( -/obj/structure/table, -/obj/item/storage/box/masks{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/gloves, -/turf/open/floor/plasteel/whitegreen/corner, -/area/medical/virology) -"dUj" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/medical/virology) -"dUk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_virology{ - name = "Virology Containment Cell"; - req_access_txt = "39" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dUl" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"dUm" = ( -/turf/closed/wall/r_wall, -/area/maintenance/solars/port/aft) -"dUn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/port/aft) -"dUo" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dUp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port/aft) -"dUq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/blue/side, -/area/maintenance/port/aft) -"dUr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/blue/side, -/area/maintenance/port/aft) -"dUs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dUt" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/blue/side, -/area/maintenance/port/aft) -"dUu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port/aft) -"dUv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/button/crematorium{ - id = "cremawheat"; - pixel_x = -26; - req_access_txt = "27" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/chapel/office) -"dUw" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/office) -"dUx" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"dUy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"dUz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"dUA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"dUB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/main) -"dUC" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"dUD" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"dUE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dUF" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dUG" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dUH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK" - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"dUI" = ( -/obj/machinery/vending/wallmed{ - name = "Emergency NanoMed"; - req_access_txt = "0"; - use_power = 0 - }, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/escape) -"dUJ" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Emergency Shuttle Cargo" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dUK" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/medical/virology) -"dUL" = ( -/obj/structure/sign/vacuum, -/turf/closed/wall/r_wall, -/area/medical/virology) -"dUM" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 9 - }, -/area/medical/virology) -"dUN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 5 - }, -/area/medical/virology) -"dUO" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/medical/virology) -"dUP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 9 - }, -/area/medical/virology) -"dUQ" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 5 - }, -/area/medical/virology) -"dUR" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 26 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"dUS" = ( -/obj/machinery/power/smes, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"dUT" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/camera{ - c_tag = "Solar - Aft Port"; - name = "solar camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"dUU" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK" - }, -/turf/closed/wall/r_wall, -/area/maintenance/solars/port/aft) -"dUV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/port/aft) -"dUW" = ( -/obj/structure/sign/electricshock, -/turf/closed/wall/r_wall, -/area/maintenance/port/aft) -"dUX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/white, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dUY" = ( -/obj/machinery/door/poddoor/shutters{ - id = "evashutters2"; - name = "E.V.A. Storage Shutters" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dUZ" = ( -/obj/machinery/button/door{ - id = "evashutters2"; - name = "E.V.A. Shutters"; - pixel_x = 26; - req_access_txt = "19" - }, -/obj/machinery/door/poddoor/shutters{ - id = "evashutters2"; - name = "E.V.A. Storage Shutters" - }, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dVa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/command{ - name = "Auxiliary E.V.A. Storage"; - req_access = null; - req_access_txt = "18" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dVb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/command{ - name = "Auxiliary E.V.A. Storage"; - req_access = null; - req_access_txt = "18" - }, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dVc" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/maintenance/port/aft) -"dVd" = ( -/obj/structure/bodycontainer/morgue, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/chapel/office) -"dVe" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Chapel Crematorium"; - dir = 8; - name = "chapel camera" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/chapel/office) -"dVf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"dVg" = ( -/obj/structure/table/wood/fancy, -/turf/open/floor/plasteel/grimy, -/area/chapel/main) -"dVh" = ( -/obj/structure/table/wood/fancy, -/obj/item/storage/book/bible, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/grimy, -/area/chapel/main) -"dVi" = ( -/obj/structure/table/wood/fancy, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/grimy, -/area/chapel/main) -"dVj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Departures - Port"; - dir = 4; - name = "departures camera" - }, -/obj/effect/turf_decal/delivery, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dVk" = ( -/obj/structure/chair, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dVl" = ( -/obj/structure/table, -/obj/item/storage/pill_bottle/dice, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dVm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/medical/virology) -"dVn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/airless, -/area/medical/virology) -"dVo" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/medical/virology) -"dVp" = ( -/obj/machinery/iv_drip, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 10 - }, -/area/medical/virology) -"dVq" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/chair/office/light, -/obj/effect/decal/cleanable/greenglow, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 6 - }, -/area/medical/virology) -"dVr" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/medical/virology) -"dVs" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/chair/office/light, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 10 - }, -/area/medical/virology) -"dVt" = ( -/obj/machinery/iv_drip, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 6 - }, -/area/medical/virology) -"dVu" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"dVv" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/space, -/area/solar/port/aft) -"dVw" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/space, -/area/solar/port/aft) -"dVx" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; - name = "External Solar Access"; - req_access_txt = "10; 13" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars/port/aft) -"dVy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/solars/port/aft) -"dVz" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"dVA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"dVB" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"dVC" = ( -/obj/machinery/door/airlock/engineering{ - name = "Port Quarter Solar Access"; - req_access_txt = "10" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars/port/aft) -"dVD" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dVE" = ( -/obj/structure/table/reinforced, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dVF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dVG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dVH" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dVI" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dVJ" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/machinery/light_switch{ - pixel_x = 26 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dVK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/port/aft) -"dVL" = ( -/obj/structure/table, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/bodybags, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/office) -"dVM" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/office) -"dVN" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"dVO" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"dVP" = ( -/obj/structure/table/wood/fancy, -/obj/item/device/flashlight/lantern, -/turf/open/floor/plasteel/grimy, -/area/chapel/main) -"dVQ" = ( -/obj/effect/landmark/start/chaplain, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/grimy, -/area/chapel/main) -"dVR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"dVS" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"dVT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dVU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dVV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/exit/departure_lounge) -"dVW" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/exit/departure_lounge) -"dVX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/exit/departure_lounge) -"dVY" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/exit/departure_lounge) -"dVZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/exit/departure_lounge) -"dWa" = ( -/obj/structure/rack, -/obj/item/clothing/suit/fire/firefighter, -/obj/item/tank/internals/oxygen/red, -/obj/item/clothing/mask/gas, -/obj/item/clothing/head/hardhat/red, -/obj/effect/turf_decal/bot, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dWb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dWc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dWd" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - icon_state = "inje_map"; - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/medical/virology) -"dWe" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposaloutlet, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/medical/virology) -"dWf" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/syringe/antiviral, -/obj/item/reagent_containers/dropper, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/virology) -"dWg" = ( -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/pen/red, -/obj/effect/turf_decal/delivery, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dWh" = ( -/obj/machinery/power/solar_control{ - id = "aftport"; - name = "Port Quarter Solar Control"; - track = 0 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"dWi" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"dWj" = ( -/obj/structure/cable/white, -/obj/machinery/power/apc/highcap/ten_k{ - dir = 2; - name = "Port Quarter Solar APC"; - areastring = "/area/maintenance/solars/port/aft"; - pixel_y = -26 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"dWk" = ( -/obj/structure/sign/electricshock, -/turf/closed/wall/r_wall, -/area/maintenance/solars/port/aft) -"dWl" = ( -/obj/structure/table/reinforced, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/item/stack/cable_coil/white, -/obj/item/stack/cable_coil/white, -/obj/item/device/multitool, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/maintenance/port/aft) -"dWm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dWn" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dWo" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dWp" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dWq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dWr" = ( -/obj/structure/table/reinforced, -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/maintenance/port/aft) -"dWs" = ( -/obj/structure/bodycontainer/morgue, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/chapel/office) -"dWt" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/chapel/office) -"dWu" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/main) -"dWv" = ( -/turf/open/floor/plasteel/black, -/area/chapel/main) -"dWw" = ( -/obj/machinery/ai_status_display{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/main) -"dWx" = ( -/obj/structure/noticeboard{ - desc = "A board for remembering the fallen of the station."; - dir = 1; - name = "memorial board"; - pixel_y = -32 - }, -/obj/machinery/holopad, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/camera{ - c_tag = "Chapel - Aft"; - dir = 1; - name = "chapel camera" - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/main) -"dWy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/grimy, -/area/chapel/main) -"dWz" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/black, -/area/chapel/main) -"dWA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dWB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dWC" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dWD" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dWE" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Departures - Aft"; - dir = 1; - name = "departures camera" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dWF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dWG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dWH" = ( -/turf/open/floor/plasteel/neutral/side, -/area/shuttle/escape) -"dWI" = ( -/obj/machinery/flasher{ - id = "shuttleflash"; - pixel_y = -26 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/neutral/side, -/area/shuttle/escape) -"dWJ" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/item/hand_labeler_refill, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dWK" = ( -/obj/machinery/recharge_station, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dWL" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dWM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/white, -/turf/open/floor/plating, -/area/medical/virology) -"dWN" = ( -/obj/machinery/shieldwallgen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dWO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dWP" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dWQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dWR" = ( -/obj/structure/rack, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/tank/internals/oxygen, -/obj/item/device/radio, -/obj/item/clothing/mask/breath, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dWS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dWT" = ( -/obj/machinery/shieldwallgen, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/maintenance/port/aft) -"dWU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dWV" = ( -/obj/machinery/door/morgue{ - name = "Relic Closet"; - req_access_txt = "27" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/chapel/office) -"dWW" = ( -/obj/machinery/door/morgue{ - name = "Confession Booth"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/chapel/main) -"dWX" = ( -/obj/machinery/status_display, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/chapel/main) -"dWY" = ( -/obj/machinery/door/airlock/centcom{ - name = "Chapel Office"; - req_access_txt = "27" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/chapel/main) -"dWZ" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dXa" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass_security{ - name = "Security Checkpoint"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/checkpoint2) -"dXb" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/checkpoint2) -"dXc" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/checkpoint2) -"dXd" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/security/checkpoint/checkpoint2) -"dXe" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/security/checkpoint/checkpoint2) -"dXf" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/security/checkpoint/checkpoint2) -"dXg" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/door/airlock/glass_security{ - name = "Holding Area"; - req_access_txt = "2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/checkpoint2) -"dXh" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/security/checkpoint/checkpoint2) -"dXi" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/checkpoint2) -"dXj" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/vacuum, -/turf/open/floor/plating, -/area/security/checkpoint/checkpoint2) -"dXk" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/checkpoint2) -"dXl" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Holding Area"; - req_access_txt = "2" - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"dXm" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Cockpit"; - req_access_txt = "19" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dXn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dXo" = ( -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/structure/closet/crate/internals, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/maintenance/port/aft) -"dXp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dXq" = ( -/obj/structure/rack, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/tank/internals/oxygen, -/obj/item/device/radio, -/obj/item/clothing/mask/breath, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dXr" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dXs" = ( -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/structure/closet/crate/internals, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dXt" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dXu" = ( -/obj/structure/table/wood/fancy, -/obj/item/spellbook/oneuse/smoke/lesser, -/obj/item/nullrod, -/obj/item/organ/heart, -/obj/item/reagent_containers/food/drinks/bottle/holywater, -/turf/open/floor/plasteel/grimy, -/area/chapel/office) -"dXv" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/office) -"dXw" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/main) -"dXx" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/obj/machinery/light/small, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/office) -"dXy" = ( -/obj/machinery/door/morgue{ - name = "Confession Booth"; - req_access_txt = "27" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/chapel/office) -"dXz" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/office) -"dXA" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/black, -/area/chapel/office) -"dXB" = ( -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/office) -"dXC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/black, -/area/chapel/office) -"dXD" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = 26 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/office) -"dXE" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Chapel Maintenance"; - req_access_txt = "27" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/chapel/office) -"dXF" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dXG" = ( -/obj/structure/filingcabinet/security, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = 26 - }, -/obj/machinery/camera{ - c_tag = "Security - Departures Port"; - dir = 2; - name = "security camera" - }, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/checkpoint/checkpoint2) -"dXH" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/checkpoint2) -"dXI" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/checkpoint/checkpoint2) -"dXJ" = ( -/obj/structure/table/reinforced, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/item/folder/red, -/obj/item/pen, -/obj/machinery/door/window/brigdoor/southright{ - dir = 1; - name = "Security Desk"; - pixel_y = 8; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/red, -/area/security/checkpoint/checkpoint2) -"dXK" = ( -/obj/structure/table/reinforced, -/obj/item/storage/fancy/donut_box, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/checkpoint/checkpoint2) -"dXL" = ( -/obj/structure/closet/wardrobe/red, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/checkpoint/checkpoint2) -"dXN" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/checkpoint2) -"dXO" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/checkpoint2) -"dXP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/checkpoint2) -"dXQ" = ( -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/checkpoint/checkpoint2) -"dXR" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; - name = "External Docking Port"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/checkpoint2) -"dXS" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/checkpoint/checkpoint2) -"dXT" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Emergency Shuttle Airlock"; - req_access_txt = "2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/escape) -"dXU" = ( -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"dXV" = ( -/obj/structure/chair, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"dXW" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"dXX" = ( -/obj/machinery/button/flasher{ - id = "shuttleflash"; - pixel_x = -26; - pixel_y = 24 - }, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/shuttle/escape) -"dXY" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/shuttle/escape) -"dXZ" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/toy/figure/ninja, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dYa" = ( -/obj/structure/chair, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dYb" = ( -/obj/structure/chair, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dYd" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/crowbar/red, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/maintenance/port/aft) -"dYe" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dYf" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dYg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dYh" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dYi" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dYj" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dYk" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dYl" = ( -/obj/structure/table/reinforced, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/device/flashlight, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dYm" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26 - }, -/turf/open/floor/plasteel/black, -/area/chapel/office) -"dYn" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/grimy, -/area/chapel/office) -"dYo" = ( -/obj/structure/chair/office/dark, -/turf/open/floor/plasteel/grimy, -/area/chapel/office) -"dYp" = ( -/obj/structure/chair/office/dark, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/grimy, -/area/chapel/office) -"dYq" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/office) -"dYr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; - name = "External Airlock"; - req_access_txt = "13" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dYs" = ( -/obj/structure/table/reinforced, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Departures Checkpoint APC"; - areastring = "/area/security/checkpoint/checkpoint2"; - pixel_x = -26; - pixel_y = 3 - }, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/device/radio, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/checkpoint/checkpoint2) -"dYt" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/security/checkpoint/checkpoint2) -"dYu" = ( -/obj/machinery/holopad, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/checkpoint/checkpoint2) -"dYv" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/neutral, -/area/security/checkpoint/checkpoint2) -"dYw" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/security/checkpoint/checkpoint2) -"dYx" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/checkpoint/checkpoint2) -"dYy" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_security{ - name = "Holding Area"; - req_access_txt = "2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/checkpoint2) -"dYz" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/checkpoint/checkpoint2) -"dYA" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/neutral, -/area/security/checkpoint/checkpoint2) -"dYB" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/neutral, -/area/security/checkpoint/checkpoint2) -"dYC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/security/checkpoint/checkpoint2) -"dYD" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/checkpoint/checkpoint2) -"dYF" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"dYG" = ( -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/shuttle/escape) -"dYH" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/shuttle/escape) -"dYI" = ( -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dYJ" = ( -/turf/open/floor/plasteel/neutral/corner, -/area/shuttle/escape) -"dYK" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 58 - }, -/turf/open/floor/plasteel/neutral/side, -/area/shuttle/escape) -"dYL" = ( -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/shuttle/escape) -"dYM" = ( -/obj/machinery/door/airlock/external{ - name = "Emergency Recovery Airlock" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dYN" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/emergency, -/obj/item/wrench, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/maintenance/port/aft) -"dYO" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dYP" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dYQ" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dYR" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dYS" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dYT" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dYU" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/rglass{ - amount = 20; - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dYV" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/chapel/office) -"dYW" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/office) -"dYX" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Chapel Quarters APC"; - areastring = "/area/chapel/office"; - pixel_y = 24 - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/office) -"dYY" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/camera{ - c_tag = "Chapel Quarters"; - dir = 2; - name = "chapel camera" - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/office) -"dYZ" = ( -/obj/structure/table/wood, -/obj/item/device/camera_film{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/device/camera_film, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/chapel/office) -"dZa" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/chapel/office) -"dZb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/office) -"dZc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/office) -"dZd" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/office) -"dZe" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen/fourcolor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/carpet, -/area/chapel/office) -"dZf" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/donut_box, -/obj/machinery/ai_status_display{ - pixel_x = 32 - }, -/turf/open/floor/carpet, -/area/chapel/office) -"dZg" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK"; - pixel_x = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dZh" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/checkpoint/checkpoint2) -"dZi" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/checkpoint2) -"dZj" = ( -/obj/machinery/computer/prisoner, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/checkpoint/checkpoint2) -"dZk" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel/red, -/area/security/checkpoint/checkpoint2) -"dZl" = ( -/obj/machinery/computer/security, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/checkpoint/checkpoint2) -"dZm" = ( -/obj/structure/closet/secure_closet/security, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/checkpoint/checkpoint2) -"dZn" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light, -/obj/structure/sign/poster{ - icon_state = "poster22_legit"; - pixel_y = -32 - }, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/checkpoint/checkpoint2) -"dZo" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/checkpoint2) -"dZp" = ( -/obj/structure/table, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/device/assembly/flash/handheld, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/checkpoint2) -"dZq" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/checkpoint2) -"dZr" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Security - Departures Starboard"; - dir = 1; - name = "security camera" - }, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/checkpoint/checkpoint2) -"dZs" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/checkpoint2) -"dZt" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"dZu" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"dZv" = ( -/obj/structure/table/reinforced, -/obj/item/storage/lockbox/loyalty, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"dZw" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/open/floor/plasteel/red/corner{ - dir = 8 - }, -/area/shuttle/escape) -"dZx" = ( -/obj/structure/fireaxecabinet{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/shuttle/escape) -"dZy" = ( -/obj/machinery/door/airlock/external{ - name = "Emergency Recovery Airlock" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dZz" = ( -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/shuttle/escape) -"dZA" = ( -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/shuttle/escape) -"dZB" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/solar{ - id = "aftport"; - name = "Aft-Port Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/port/aft) -"dZC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/white, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dZD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chapelprivacy"; - name = "Chapel Privacy Shutters" - }, -/turf/open/floor/plating, -/area/chapel/office) -"dZE" = ( -/obj/structure/bed, -/obj/item/bedsheet/black, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/office) -"dZF" = ( -/turf/open/floor/plasteel/grimy, -/area/chapel/office) -"dZG" = ( -/obj/effect/landmark/start/chaplain, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/office) -"dZH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/office) -"dZI" = ( -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/office) -"dZJ" = ( -/obj/machinery/door/airlock/centcom{ - name = "Chapel Quarters"; - req_access_txt = "27" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/chapel/office) -"dZK" = ( -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/office) -"dZL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/black, -/area/chapel/office) -"dZM" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/office) -"dZN" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/office) -"dZO" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/chaplain, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/carpet, -/area/chapel/office) -"dZP" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/candle_box{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/fancy/candle_box, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/turf/open/floor/carpet, -/area/chapel/office) -"dZQ" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; - name = "External Airlock"; - req_access_txt = "13" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dZR" = ( -/turf/closed/wall/r_wall, -/area/security/checkpoint/checkpoint2) -"dZS" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/checkpoint2) -"dZT" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/checkpoint2) -"dZU" = ( -/obj/structure/cable/white, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/checkpoint2) -"dZV" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"dZW" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/zipties, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = -26 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"dZX" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/red/corner{ - dir = 8 - }, -/area/shuttle/escape) -"dZY" = ( -/turf/open/floor/plasteel/blue/side, -/area/shuttle/escape) -"dZZ" = ( -/obj/machinery/door/airlock/command{ - name = "Emergency Recovery Airlock"; - req_access = null; - req_access_txt = "19" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"eaa" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"eab" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"eac" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"ead" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"eae" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"eaf" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"eag" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"eah" = ( -/obj/structure/dresser, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/chapel/office) -"eai" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/grown/poppy/geranium{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/snacks/grown/poppy/lily, -/turf/open/floor/plasteel/grimy, -/area/chapel/office) -"eaj" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/candle_box{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/plasteel/grimy, -/area/chapel/office) -"eak" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/pen, -/turf/open/floor/plasteel/grimy, -/area/chapel/office) -"eal" = ( -/obj/structure/closet/wardrobe/chaplain_black, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/chapel/office) -"ean" = ( -/obj/machinery/photocopier, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/office) -"eao" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/office) -"eap" = ( -/turf/open/floor/carpet, -/area/chapel/office) -"eaq" = ( -/obj/structure/table/wood, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/obj/machinery/requests_console{ - department = "Chapel Office"; - departmentType = 0; - name = "Chapel RC"; - pixel_y = -32 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/camera{ - c_tag = "Chapel Office"; - dir = 1; - name = "chapel camera" - }, -/turf/open/floor/carpet, -/area/chapel/office) -"ear" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "aftport"; - name = "Aft-Port Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/port/aft) -"eas" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/chapel/office) -"eat" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/shuttle/escape) -"eau" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/escape) -"eav" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/escape) -"eaw" = ( -/obj/structure/table/reinforced, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/shuttle/escape) -"eax" = ( -/obj/machinery/computer/security, -/turf/open/floor/plasteel/darkred/side{ - dir = 9 - }, -/area/shuttle/escape) -"eay" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/escape) -"eaz" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26; - pixel_y = 58 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/escape) -"eaA" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/escape) -"eaB" = ( -/obj/machinery/computer/station_alert, -/turf/open/floor/plasteel/darkyellow/side{ - dir = 5 - }, -/area/shuttle/escape) -"eaC" = ( -/obj/item/stack/cable_coil, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"eaD" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel/darkred/side{ - dir = 10 - }, -/area/shuttle/escape) -"eaE" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/vault, -/area/shuttle/escape) -"eaF" = ( -/obj/structure/chair/office/dark, -/turf/open/floor/plasteel/vault, -/area/shuttle/escape) -"eaG" = ( -/obj/structure/table/reinforced, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel/vault, -/area/shuttle/escape) -"eaH" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue, -/obj/item/pen, -/turf/open/floor/plasteel/vault, -/area/shuttle/escape) -"eaI" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel/vault, -/area/shuttle/escape) -"eaJ" = ( -/obj/machinery/computer/atmos_alert, -/turf/open/floor/plasteel/darkyellow/side{ - dir = 6 - }, -/area/shuttle/escape) -"eaK" = ( -/obj/structure/lattice/catwalk, -/obj/effect/landmark/xeno_spawn, -/turf/open/space, -/area/solar/port/aft) -"eaL" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/shuttle/escape) -"eaM" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red, -/obj/item/restraints/handcuffs, -/obj/item/device/assembly/flash/handheld, -/turf/open/floor/plasteel/vault, -/area/shuttle/escape) -"eaN" = ( -/obj/machinery/computer/crew, -/turf/open/floor/plasteel/darkblue/side, -/area/shuttle/escape) -"eaO" = ( -/obj/machinery/computer/med_data, -/turf/open/floor/plasteel/darkblue/side{ - dir = 6 - }, -/area/shuttle/escape) -"eaP" = ( -/obj/machinery/computer/emergency_shuttle, -/turf/open/floor/plasteel/darkblue/side{ - dir = 10 - }, -/area/shuttle/escape) -"eaQ" = ( -/obj/machinery/computer/communications, -/turf/open/floor/plasteel/darkblue/side, -/area/shuttle/escape) -"eaR" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plasteel/vault, -/area/shuttle/escape) -"eaS" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/shuttle/escape) -"eaT" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 24; - id = "syndicate_sw"; - name = "southwest of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space, -/area/space) -"eaU" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 24; - id = "syndicate_se"; - name = "southeast of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space, -/area/space) -"eaV" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"eaW" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"eaX" = ( -/obj/structure/cable, -/obj/machinery/power/tracker, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/port/aft) -"eaY" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 24; - id = "syndicate_s"; - name = "south of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space, -/area/space) -"eaZ" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/light_switch{ - pixel_x = 24; - pixel_y = -24 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/chapel/main) -"eba" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard/fore) -"ebb" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard/fore) -"ebg" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"ebB" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/fore) -"ebC" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/fore) -"ebD" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard/aft) -"ebE" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard/aft) -"ebF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"ebG" = ( -/turf/open/floor/engine, -/area/engine/supermatter) -"ebJ" = ( -/obj/machinery/door/window/brigdoor/northleft{ - name = "Captain's Desk"; - req_access_txt = "20" - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"ebK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/window{ - dir = 8; - name = "Library Desk"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel/grimy, -/area/library) -"ebP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow, -/area/engine/atmospherics_engine) -"ebQ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/trinary/filter/critical{ - dir = 4; - filter_type = "freon"; - name = "gas filter (freon)" - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmospherics_engine) -"ebR" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmospherics_engine) -"ebS" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"ebT" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"ebU" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) -"ebV" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/item/device/radio/beacon, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/aisat) -"ebW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ebX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red, -/area/maintenance/starboard/fore) -"ebY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"ebZ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"ecb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/crew_quarters/electronic_marketing_den) -"ecc" = ( -/obj/structure/closet/wardrobe/grey, -/turf/open/floor/plasteel/neutral, -/area/shuttle/arrival) -"ecd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/port/fore) -"ece" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ecf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/hydroponics/garden/abandoned) -"ecg" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hydroponics/garden/abandoned) -"ech" = ( -/obj/machinery/button/door{ - id = "Dorm2"; - name = "Dormitory Door Lock"; - normaldoorcontrol = 1; - pixel_x = -26; - pixel_y = 7; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"eci" = ( -/obj/machinery/button/door{ - id = "Dorm4"; - name = "Dormitory Door Lock"; - normaldoorcontrol = 1; - pixel_x = -26; - pixel_y = 7; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"ecj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/hydrofloor, -/area/hydroponics/garden/abandoned) -"eck" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/hydrofloor, -/area/hydroponics/garden/abandoned) -"ecl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/barricade/wooden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/hydroponics/garden/abandoned) -"ecm" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ecn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port/fore) -"eco" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"ecp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/abandoned_gambling_den) -"ecq" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"ecr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"ecs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/crew_quarters/abandoned_gambling_den) -"ecu" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ecv" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"ecw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/port) -"ecx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"ecy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/heads/hop) -"ecz" = ( -/obj/machinery/atmospherics/pipe/simple/general/hidden, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 10 - }, -/area/tcommsat/server) -"ecA" = ( -/turf/open/floor/plasteel/vault/telecomms{ - dir = 6 - }, -/area/tcommsat/server) -"ecE" = ( -/obj/machinery/atmospherics/pipe/simple/general/hidden, -/turf/open/floor/plasteel/vault/telecomms{ - dir = 8 - }, -/area/tcommsat/server) -"ecG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/general/hidden, -/turf/open/floor/plating, -/area/tcommsat/server) -"ecI" = ( -/turf/open/floor/plasteel/vault/killroom, -/area/science/xenobiology) -"ecQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"ecR" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/abandoned_gambling_den) -"ecS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/abandoned_gambling_den) -"ecT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/abandoned_gambling_den) -"ecU" = ( -/obj/structure/chair/wood/normal, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"ecV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/science/research) -"ecW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Surgery Observation"; - req_access_txt = "0" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/surgery) -"ecX" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"ecY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/crew_quarters/abandoned_gambling_den) -"ecZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/abandoned_gambling_den) -"eda" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/abandoned_gambling_den) -"edb" = ( -/obj/machinery/deepfryer, -/turf/open/floor/plasteel/red, -/area/crew_quarters/kitchen) -"edc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/electronic_marketing_den) -"edd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/hydrofloor, -/area/hydroponics/garden/abandoned) -"ede" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/hydrofloor, -/area/hydroponics/garden/abandoned) -"edf" = ( -/obj/structure/table/wood, -/obj/item/clothing/head/hardhat/cakehat, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"edg" = ( -/obj/machinery/doorButtons/airlock_controller{ - idExterior = "virology_airlock_exterior"; - idInterior = "virology_airlock_interior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Console"; - pixel_x = -10; - pixel_y = 24; - req_access_txt = "39" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/medical/virology) -"edh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/maintenance/starboard/fore) -"edi" = ( -/obj/structure/mining_shuttle_beacon, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"edj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/docking_port/stationary/public_mining_dock{ - dir = 4 - }, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"edl" = ( -/obj/structure/shuttle/engine/heater{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/shuttle/transport) -"edo" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/transport) -"edp" = ( -/turf/open/floor/pod/light, -/area/shuttle/transport) -"edz" = ( -/obj/machinery/door/airlock/titanium, -/turf/open/floor/pod/light, -/area/shuttle/transport) -"edC" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/transport) -"edD" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/pod/dark, -/area/shuttle/transport) -"edF" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/pod/dark, -/area/shuttle/transport) -"edT" = ( -/obj/machinery/computer/shuttle/ferry/request, -/turf/open/floor/pod/dark, -/area/shuttle/transport) -"een" = ( -/obj/docking_port/mobile{ - dir = 1; - dwidth = 2; - height = 13; - id = "ferry"; - name = "ferry shuttle"; - port_direction = 1; - preferred_direction = 4; - roundstart_move = "ferry_away"; - width = 5 - }, -/obj/docking_port/stationary{ - dir = 1; - dwidth = 2; - height = 13; - id = "ferry_home"; - name = "port bay 2"; - turf_type = /turf/open/space; - width = 5 - }, -/obj/machinery/door/airlock/titanium, -/turf/open/floor/pod/dark, -/area/shuttle/transport) -"eeq" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/shuttle/transport) -"ees" = ( -/obj/structure/shuttle/engine/heater{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/shuttle/transport) -"eet" = ( -/obj/structure/shuttle/engine/heater{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/shuttle/transport) -"eev" = ( -/obj/machinery/door/airlock/external, -/turf/open/floor/pod/light, -/area/shuttle/transport) -"eex" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/open/floor/plating, -/area/shuttle/transport) -"eez" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 6 - }, -/area/maintenance/starboard/fore) -"eeA" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = 32 - }, -/turf/open/floor/carpet, -/area/security/vacantoffice) -"eeB" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/structure/sign/poster/official/do_not_question{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/grimy, -/area/security/vacantoffice) -"eeC" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall, -/area/maintenance/starboard/fore) -"eeE" = ( -/obj/structure/table/wood, -/obj/structure/sign/barsign{ - pixel_y = 32 - }, -/obj/item/wirerod, -/obj/item/wrench, -/obj/item/clothing/under/waiter, -/obj/item/clothing/accessory/waistcoat, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/black, -/area/crew_quarters/electronic_marketing_den) -"eeF" = ( -/obj/structure/table/wood, -/obj/item/poster/random_contraband{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/poster/random_contraband{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/poster/random_contraband, -/turf/open/floor/wood, -/area/crew_quarters/electronic_marketing_den) -"eeG" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/light/small, -/obj/structure/sign/poster/official/work_for_a_future{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/grimy, -/area/security/vacantoffice) -"eeH" = ( -/obj/structure/table/wood, -/obj/item/poster/random_contraband{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/poster/random_contraband{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/poster/random_contraband, -/turf/open/floor/plasteel/black, -/area/crew_quarters/electronic_marketing_den) -"eeI" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall, -/area/crew_quarters/electronic_marketing_den) -"eeL" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall, -/area/maintenance/port/fore) -"eeO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/port/fore) -"eeP" = ( -/obj/structure/janitorialcart, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/official/work_for_a_future{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/janitor) -"eeQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/redblue, -/area/maintenance/port/fore) -"eeR" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/shoes/jackboots, -/obj/effect/spawner/lootdrop/costume, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/cafeteria, -/area/maintenance/port/fore) -"eeS" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/item/reagent_containers/glass/bucket, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/decal/cleanable/dirt, -/obj/item/mop, -/obj/item/mop, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light/small, -/obj/effect/turf_decal/bot, -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/neutral, -/area/janitor) -"eeT" = ( -/obj/structure/sign/poster/random, -/turf/closed/wall, -/area/crew_quarters/bar) -"eeU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/random, -/turf/closed/wall, -/area/crew_quarters/bar) -"eeV" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall, -/area/crew_quarters/bar) -"eeW" = ( -/obj/structure/closet/radiation, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Atmospherics - Engine Access"; - name = "atmospherics camera" - }, -/obj/effect/turf_decal/bot, -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"eeX" = ( -/obj/structure/table/wood, -/obj/item/soap/nanotrasen, -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/bar/atrium) -"eeY" = ( -/obj/structure/easel, -/obj/item/canvas/twentythreeXtwentythree, -/obj/item/canvas/twentythreeXtwentythree, -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar/atrium) -"eeZ" = ( -/obj/machinery/door/airlock{ - name = "Bathroom" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/official/cleanliness{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/prison) -"efa" = ( -/obj/machinery/computer/slot_machine, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken2" - }, -/area/crew_quarters/abandoned_gambling_den) -"efb" = ( -/obj/structure/table/wood, -/obj/item/device/instrument/eguitar, -/obj/item/toy/crayon/spraycan/lubecan{ - charges = 5 - }, -/obj/structure/sign/poster/contraband/clown{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/redblue, -/area/crew_quarters/theatre) -"efc" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/structure/closet/crate/wooden/toy, -/turf/open/floor/plasteel/redblue, -/area/crew_quarters/theatre) -"efd" = ( -/obj/structure/sign/poster/random, -/turf/closed/wall, -/area/crew_quarters/bar/atrium) -"efe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/poster/official/help_others{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/vault, -/area/security/execution/education) -"eff" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/abandoned_gambling_den) -"efg" = ( -/obj/machinery/computer/slot_machine, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/crew_quarters/abandoned_gambling_den) -"efh" = ( -/obj/machinery/computer/slot_machine, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/crew_quarters/abandoned_gambling_den) -"efi" = ( -/obj/machinery/computer/slot_machine, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"efj" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/baguette, -/obj/item/toy/crayon/spraycan/mimecan{ - charges = 5 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/theatre) -"efk" = ( -/obj/structure/dresser, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/theatre) -"efm" = ( -/obj/structure/table/wood, -/obj/item/clothing/mask/fakemoustache, -/obj/item/cane, -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/bar/atrium) -"efn" = ( -/obj/structure/chair/stool/bar, -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar/atrium) -"efo" = ( -/obj/structure/sign/poster/random, -/turf/closed/wall, -/area/maintenance/port/fore) -"efp" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/window/reinforced, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/turf_decal/bot, -/obj/structure/sign/poster/official/nanotrasen_logo{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"efr" = ( -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop, -/obj/structure/sign/poster/official/cleanliness{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/whitered/side{ - dir = 9 - }, -/area/security/brig) -"eft" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/structure/sign/poster/official/do_not_question{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"efu" = ( -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/microwave{ - desc = "Cooks and boils stuff, somehow."; - pixel_x = -3; - pixel_y = 5 - }, -/obj/effect/turf_decal/bot, -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"efv" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/effect/turf_decal/bot, -/obj/structure/sign/poster/official/do_not_question{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"efx" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Air to External Air Ports"; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/sign/poster/official/work_for_a_future{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"efy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/official/do_not_question{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/central) -"efz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"efA" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/effect/turf_decal/bot, -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"efB" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/spray/plantbgone, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_x = 16 - }, -/obj/item/watertank, -/obj/item/grenade/chem_grenade/antiweed, -/obj/effect/turf_decal/bot, -/obj/structure/sign/poster/official/ian{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"efC" = ( -/obj/structure/table/reinforced, -/obj/machinery/microwave{ - desc = "It looks really dirty."; - name = "maintenance microwave"; - pixel_y = 5 - }, -/obj/structure/sign/poster/official/help_others{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/redyellow, -/area/engine/break_room) -"efD" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/sign/poster/official/do_not_question{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/main) -"efE" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/delivery, -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"efF" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Security - Transfer Centre Aft"; - dir = 1; - name = "security camera" - }, -/obj/structure/sign/poster/official/work_for_a_future{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/red/side, -/area/security/execution/transfer) -"efG" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/security{ - name = "Brig"; - req_access_txt = "63" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/poster/official/nanotrasen_logo{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"efH" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/toy/figure/detective, -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault, -/area/security/detectives_office) -"efI" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/sign/poster/official/help_others{ - pixel_x = -32; - pixel_y = -32 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"efJ" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/structure/sign/poster/official/ian{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"efK" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Courtroom - Fore"; - dir = 2; - name = "security camera" - }, -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault, -/area/security/courtroom) -"efL" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/door/window/brigdoor/northright{ - name = "Warden's Desk"; - req_access_txt = "3" - }, -/obj/machinery/door/window/southright{ - name = "Warden's Desk" - }, -/obj/item/folder/red, -/obj/item/pen, -/obj/item/poster/random_official{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/poster/random_official, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/warden) -"efM" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/pen, -/obj/structure/sign/poster/official/enlist{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/brig) -"efN" = ( -/obj/structure/closet/wardrobe/red, -/obj/item/clothing/under/rank/security/grey, -/obj/item/clothing/under/rank/security/grey, -/obj/item/clothing/under/rank/security/grey, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/item/storage/backpack/satchel/sec, -/obj/structure/sign/poster/official/do_not_question{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/red, -/area/security/brig) -"efO" = ( -/obj/machinery/vending/cola/random, -/obj/structure/sign/poster/official/ian{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/hallway/primary/central) -"efP" = ( -/obj/machinery/photocopier, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/poster/official/work_for_a_future{ - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"efQ" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/lawoffice) -"efR" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/requests_console{ - department = "Engineering"; - departmentType = 0; - name = "Engineering RC"; - pixel_y = -32 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/sign/poster/official/do_not_question{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"efS" = ( -/obj/structure/table/wood, -/obj/item/storage/briefcase, -/obj/structure/sign/poster/official/help_others{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/vault, -/area/security/courtroom) -"efT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/official/work_for_a_future{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) -"efU" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/crowbar, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/effect/turf_decal/bot, -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/engine/storage) -"efV" = ( -/obj/structure/table/reinforced, -/obj/item/stack/rods{ - amount = 50 - }, -/obj/item/wrench, -/obj/item/storage/box/lights/mixed, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"efW" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/sign/poster/official/help_others{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"efX" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/electrical, -/obj/effect/turf_decal/delivery, -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"efY" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/sign/poster/official/science{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"efZ" = ( -/obj/structure/mirror{ - pixel_x = 26 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit/old, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/landmark/blobstart, -/obj/structure/sign/poster/official/cleanliness{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/neutral, -/area/medical/medbay/central) -"ega" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - name = "Medbay Storage"; - req_access_txt = "5" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/storage) -"egb" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/yellow, -/obj/item/storage/toolbox/electrical, -/obj/structure/sign/poster/official/do_not_question{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"egc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/poster/official/help_others{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"egd" = ( -/obj/structure/table/glass, -/obj/item/clipboard, -/obj/item/toy/figure/md, -/obj/machinery/light/small, -/obj/structure/sign/poster/official/ian{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"ege" = ( -/obj/structure/table/wood, -/obj/item/storage/pill_bottle/dice, -/obj/structure/sign/poster/official/help_others{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"egf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/black, -/area/crew_quarters/abandoned_gambling_den) -"egg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"egh" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"egi" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical, -/obj/item/device/flashlight, -/obj/effect/turf_decal/bot, -/obj/structure/sign/poster/official/science{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"egj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Medbay - Starboard"; - dir = 1; - name = "medbay camera" - }, -/obj/structure/sign/poster/official/work_for_a_future{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/whiteblue/corner, -/area/medical/medbay/central) -"egk" = ( -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil/white{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil/white, -/obj/item/device/geiger_counter, -/obj/effect/turf_decal/bot, -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"egl" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/abandoned_gambling_den) -"egm" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/abandoned_gambling_den) -"egn" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/vault, -/area/medical/surgery) -"ego" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/poster/official/do_not_question{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"egp" = ( -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/chem_dispenser/drinks/beer, -/obj/structure/table/wood/poker, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"egq" = ( -/obj/machinery/vending/boozeomat{ - req_access_txt = "0" - }, -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"egr" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/sign/poster/official/science{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"egs" = ( -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = 32 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/security/detectives_office/private_investigators_office) -"egt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Medbay - Morgue"; - dir = 1; - name = "medbay camera" - }, -/obj/structure/sign/poster/official/bless_this_spess{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/medical/morgue) -"egu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/twohanded/required/kirbyplants/random, -/obj/structure/sign/poster/official/do_not_question{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/detectives_office/private_investigators_office) -"egv" = ( -/obj/item/storage/toolbox/mechanical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/electrical, -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"egw" = ( -/obj/structure/table/wood, -/obj/item/storage/box/donkpockets, -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/science/research) -"egx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/official/cleanliness, -/turf/closed/wall, -/area/medical/virology) -"egy" = ( -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/crowbar, -/obj/item/device/radio, -/obj/structure/sign/poster/official/do_not_question{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 10 - }, -/area/security/checkpoint/customs) -"egz" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/sign/poster/official/help_others{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"egA" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"egB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"egC" = ( -/obj/machinery/power/apc/highcap/five_k{ - dir = 1; - name = "Departure Lounge APC"; - areastring = "/area/hallway/secondary/exit/departure_lounge"; - pixel_y = 28 - }, -/obj/machinery/camera{ - c_tag = "Departures - Fore"; - dir = 2; - name = "departures camera" - }, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"egD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"egF" = ( -/obj/effect/turf_decal/delivery, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"egG" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/sign/poster/official/work_for_a_future{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault, -/area/medical/virology) -"egH" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"egI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"egJ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/exit/departure_lounge) -"egL" = ( -/obj/effect/turf_decal/delivery, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"egM" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"egP" = ( -/obj/structure/bodycontainer/morgue, -/obj/structure/sign/poster/official/ian{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/chapel/office) -"egQ" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/checkpoint/checkpoint2) -"egR" = ( -/obj/structure/table/wood, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/item/clipboard, -/obj/item/toy/figure/chaplain, -/obj/structure/sign/poster/official/bless_this_spess{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/chapel/office) -"egS" = ( -/obj/docking_port/mobile/arrivals{ - dir = 2; - dwidth = 4; - height = 17; - name = "delta arrivals shuttle"; - width = 9 - }, -/obj/docking_port/stationary{ - dir = 2; - dwidth = 4; - height = 17; - id = "arrivals_stationary"; - name = "delta arrivals"; - width = 9 - }, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/arrival) -"egT" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"egU" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"egV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"egW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ehi" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/pod/light, -/area/shuttle/transport) -"ehj" = ( -/obj/machinery/requests_console{ - department = "Arrival shuttle"; - name = "Arrivals Shuttle console" - }, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/arrival) -"ehk" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/pod/light, -/area/shuttle/transport) -"ehl" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/shuttle/arrival) -"ehm" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/pod/light, -/area/shuttle/transport) -"ehn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"eho" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"ehp" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/shuttle/escape) -"ehr" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/shuttle/escape) -"ehs" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"eht" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"ehv" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"ehw" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"ehx" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"ehy" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"ehB" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/supermatter) -"ehF" = ( -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/circuit/green, -/area/engine/supermatter) -"ehJ" = ( -/obj/structure/sign/radiation, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"ehN" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"ehO" = ( -/obj/structure/displaycase/trophy, -/turf/open/floor/wood, -/area/library) -"ehS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - icon_state = "freezer"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"ehT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"ehV" = ( -/turf/closed/wall, -/area/quartermaster/office) -"ehW" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/office) -"eib" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/quartermaster/office) -"eig" = ( -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/aft) -"eik" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"eil" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK" - }, -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/aft) -"eip" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"eiq" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"eir" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"eis" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; - name = "External Solar Access"; - req_access_txt = "10; 13" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars/starboard/aft) -"eit" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/solars/starboard/aft) -"eiv" = ( -/obj/structure/sign/electricshock, -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/aft) -"eiE" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Port Primary Hallway APC"; - areastring = "/area/hallway/primary/port"; - pixel_x = 26 - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 4 - }, -/area/hallway/primary/port) -"eiF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "Starboard Primary Hallway APC"; - areastring = "/area/hallway/primary/starboard"; - pixel_y = -26 - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/starboard) -"eiG" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/starboard/aft) -"eiH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Starboard Quarter Maintenance APC"; - areastring = "/area/hallway/primary/aft"; - pixel_x = 26 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"eiI" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/aft) -"eiJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/power/apc{ - dir = 4; - name = "Aft Primary Hallway APC"; - areastring = "/area/hallway/primary/aft"; - pixel_x = 26 - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/primary/aft) -"eiK" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/aft) -"eiP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/secondary/command) -"eiQ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/secondary/command) -"eiR" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/secondary/command) -"eiS" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/secondary/command) -"eiT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/crew_quarters/dorms) -"eiU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/dorms) -"eiZ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/dorms) -"eja" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/dorms) -"ejc" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/crew_quarters/dorms) -"eje" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/dorms) -"ejf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/dorms) -"ejg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/dorms) -"ejh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/dorms) -"eji" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/dorms) -"ejj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/crew_quarters/dorms) -"ejl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner, -/area/crew_quarters/dorms) -"ejs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"ejt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/science/research) -"eju" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/research) -"ejv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"ejw" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light_switch{ - pixel_x = 22; - pixel_y = -10 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/transit_tube) -"ejx" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"ejy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/brown, -/area/maintenance/disposal) -"ejz" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"ejA" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"ejB" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/arrival{ - dir = 1 - }, -/area/crew_quarters/locker) -"epc" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"eph" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"epi" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"epj" = ( -/obj/machinery/door/airlock/glass{ - name = "Holodeck Access" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"epk" = ( -/obj/machinery/door/airlock/glass{ - name = "Holodeck Access" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"epl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"epm" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"epn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"epo" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmospherics_engine) -"eps" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/engine/atmospherics_engine) -"ept" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"epu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"epv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"epw" = ( -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"epx" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel/neutral, -/area/engine/atmospherics_engine) -"epy" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plasteel/yellow, -/area/engine/atmospherics_engine) -"epA" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"epB" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; - name = "External Solar Access"; - req_access_txt = "10; 13" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars/starboard/fore) -"epC" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"epD" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; - name = "External Solar Access"; - req_access_txt = "10"; - req_one_access = null; - req_one_access_txt = "13; 24" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars/port/fore) -"epE" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass_command{ - cyclelinkeddir = 8; - name = "Bridge Access"; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/bridge) -"epF" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/hatch{ - cyclelinkeddir = 8; - name = "MiniSat Exterior Access"; - req_one_access_txt = "32;19" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/engine/transit_tube) -"epG" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_security{ - cyclelinkeddir = 8; - name = "Brig"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"epH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - cyclelinkeddir = 8; - name = "Brig"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"epI" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; - name = "External Containment Access"; - req_access_txt = "10; 13" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"epJ" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; - name = "External Containment Access"; - req_access_txt = "10; 13" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"epK" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; - name = "External Airlock"; - req_access_txt = "13" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"epL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - cyclelinkeddir = 1; - name = "Research Division Access"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"epM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - cyclelinkeddir = 1; - name = "Research Division Access"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"epN" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; - name = "External Solar Access"; - req_access_txt = "10; 13" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars/starboard/aft) -"epO" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"epQ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; - name = "External Solar Access"; - req_access_txt = "10; 13" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars/port/aft) -"epS" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; - name = "External Docking Port"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/checkpoint2) -"epT" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plasteel/yellow/side{ - dir = 4 - }, -/area/construction/mining/aux_base) -"epU" = ( -/obj/machinery/atmospherics/pipe/manifold4w/general/visible, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"epV" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"epW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"epX" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"epY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"epZ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"eqa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"eqb" = ( -/obj/structure/sign/electricshock, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/engine/atmospherics_engine) -"eqc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"eqd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"eqe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"eqf" = ( -/obj/machinery/door/airlock/maintenance_hatch/abandoned{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"eqg" = ( -/turf/closed/wall, -/area/maintenance/department/medical) -"eqo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/department/medical) -"eqt" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/construction/mining/aux_base) -"equ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/arrival, -/area/hallway/secondary/entry) -"eqw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"eqx" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"eqy" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"eqz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/atmospherics_engine) -"eqA" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/maintenance/port/fore) -"eqB" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/fore) -"eqC" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port/fore) -"eqD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"eqE" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/secondary/service) -"eqF" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/bar/atrium) -"eqG" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/storage) -"eqH" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar/atrium) -"eqI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/office) -"eqJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/qm) -"eqL" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"eqM" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/greenblue/side, -/area/hydroponics) -"eqO" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/quartermaster/miningoffice) -"eqP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"eqQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/fore) -"eqR" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/red, -/area/crew_quarters/kitchen) -"eqT" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/hydroponics) -"eqU" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"eqV" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"eqW" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/security/brig) -"eqX" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/engine/atmos) -"eqY" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"eqZ" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/bridge) -"era" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/security/execution/transfer) -"erb" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/storage/tech) -"erc" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/engine/break_room) -"erd" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/storage/primary) -"ere" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/darkblue/side, -/area/bridge) -"erf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port/fore) -"erg" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/brig) -"eri" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"erj" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/detectives_office) -"erk" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/port) -"erl" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"erm" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/port) -"ern" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/starboard) -"erp" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/engineering) -"erq" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hop) -"err" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port) -"ers" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/grimy, -/area/library) -"eru" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard) -"erv" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/engine/engineering) -"erw" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/library) -"erx" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/secondary/command) -"ery" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/corner, -/area/hallway/secondary/command) -"erz" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) -"erA" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) -"erB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/starboard) -"erD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"erE" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/yellow, -/area/engine/storage) -"erF" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/toilet/restrooms) -"erH" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/side, -/area/crew_quarters/fitness/recreation) -"erI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/engineering) -"erJ" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port) -"erO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port) -"erP" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"erQ" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/medical/medbay/central) -"erR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/cmo, -/area/medical/medbay/central) -"erS" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/science/research) -"erT" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/fitness/recreation) -"erU" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"erV" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/aft) -"erW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/side{ - dir = 1; - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"erX" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/purple, -/area/science/research) -"erY" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port) -"erZ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/blue, -/area/medical/medbay/central) -"esa" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port) -"esb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/science/research) -"esc" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/medical/medbay/central) -"esf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"esh" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/maintenance/port) -"esj" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/science/robotics/lab) -"esk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/starboard/aft) -"esl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/purple, -/area/science/research) -"esm" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/science/mixing) -"esn" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/aft) -"eso" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/aft) -"esp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"esq" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/exit/departure_lounge) -"esr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/maintenance/port/aft) -"ess" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"est" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"esv" = ( -/obj/structure/closet/secure_closet/miner/unlocked, -/turf/open/floor/plasteel/yellow/side{ - dir = 4 - }, -/area/construction/mining/aux_base) -"esw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"esx" = ( -/obj/machinery/computer/shuttle/mining, -/turf/open/floor/plasteel/yellow/side{ - dir = 4 - }, -/area/construction/mining/aux_base) -"esy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/ore_box, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"esz" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/medical/morgue) -"esB" = ( -/turf/closed/wall, -/area/maintenance/department/medical/morgue) -"esC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/maintenance/department/medical/morgue) -"esD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) -"esE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc{ - dir = 2; - name = "Morgue Maintenance APC"; - areastring = "/area/maintenance/department/medical/morgue"; - pixel_y = -26 - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/maintenance/department/medical/morgue) -"YGI" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 24; - id = "syndicate_nw"; - name = "northwest of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space/basic, -/area/space) -"YGJ" = ( -/obj/structure/reflector/double/anchored{ - dir = 5 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/engine/atmospherics_engine) -"YGK" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/window/plasma/reinforced{ - dir = 4 - }, -/turf/open/floor/circuit/green, -/area/engine/supermatter) -"YGL" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4 - }, -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/window/plasma/reinforced{ - dir = 8 - }, -/turf/open/floor/circuit/green, -/area/engine/supermatter) - -(1,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(2,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(3,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(4,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(5,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(6,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(7,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(8,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(9,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(10,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(11,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(12,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(13,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(14,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(15,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(16,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(17,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(18,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(19,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -agg -agg -agg -aaf -agg -agg -agg -aaf -agg -agg -agg -aaf -agg -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(20,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaa -biN -blN -biN -blN -biN -blN -biN -blN -biN -blN -biN -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(21,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -bgO -bHj -bww -bLo -bww -bOZ -bRe -bTx -bww -bww -bww -bHt -bnP -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(22,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -agg -agg -agg -agg -agg -aaf -agg -agg -aaf -agg -agg -agg -agg -bgP -bHk -bJk -biR -bNj -bPa -bRf -bTy -bnN -biR -bkt -bHk -bnO -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(23,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -blN -biN -biN -blN -biN -biN -blN -biN -biN -blN -biN -blN -bko -bHk -bnQ -bLp -bLp -bLp -bRg -bTz -bLp -bLp -bNB -bHk -bnP -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(24,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -bgP -blO -bnM -bnM -bnM -bnM -btv -buR -bww -bww -bww -bww -bww -bww -bHl -bnP -bLp -bNk -bPb -bRh -bTA -bVC -bLp -bgO -bHk -bnO -agg -agg -agg -agg -agg -agg -aaf -agg -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(25,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -bgO -blP -bnN -bpI -biR -biR -biR -bpI -biR -biR -bpI -biR -biR -bpI -bHm -aaa -bLp -bNl -bPc -bRi -bTB -bVD -bLp -bgO -bHk -ccG -biN -blN -biN -biN -blN -biN -blN -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(26,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -bgO -blP -bnO -aaf -aaf -aaf -bpK -bpK -bpK -bpK -bpK -bpK -bpK -bpK -bpK -bpK -bLp -bNm -bPd -bRj -bTC -bVE -bLp -bNB -bHu -bww -bww -cfL -bnM -ciQ -bnM -bnM -cmZ -bnP -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(27,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -bgP -blP -bnP -aaf -aaf -bpK -bpK -bpK -bwx -bpK -bpK -bpK -bso -bpK -bwx -bpK -bLp -bNn -bPe -bRk -bTC -bVF -bLp -aaa -bpI -biR -biR -bpI -biR -biR -blV -clD -blP -bnO -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(28,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -bgO -blP -bnP -aaa -bpK -bpK -bpK -buS -bwy -bpK -bAc -bpK -bwy -bwG -bHn -bpK -bLp -bNo -bPf -bRl -bTD -bVG -bLp -bYV -bYV -ccH -cep -bYV -bYV -aaf -aaf -bgP -blP -bnP -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(29,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -agg -agg -bgP -blP -bnQ -aaf -bpK -bpK -btw -buT -bwz -byo -bAd -byt -byq -bFv -byq -btw -bLp -bNp -bLp -bRm -bTE -bLp -bLp -bYW -caV -ccI -bYX -cfM -bYV -bYV -aaf -bgO -blP -bnO -agg -agg -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(30,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaa -biN -bko -blP -bnP -aaa -bpK -bso -btx -buU -bwA -byp -bAe -byp -byp -bFw -bHo -bJl -bLq -bNq -bPg -bRn -bTF -bNq -bNp -bYX -caW -ccJ -ceq -cfN -chj -bYV -bYV -bgO -blP -bJr -blN -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(31,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -bgO -biO -bkp -blQ -bnR -bpJ -bpJ -bpJ -bty -buV -bwB -byq -byq -bBM -byq -byq -bHp -bJm -bLp -bNr -bPh -bRo -bTG -bVH -bLp -bYY -caX -ccK -cer -cfO -chk -ciR -ckt -clE -cna -coF -cqg -bnO -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(32,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -bgP -biP -bkq -blR -bnP -bpK -bpK -bsp -btz -buW -bwB -bpK -bAf -bpK -bpK -bFx -bHp -bJn -bLr -bNs -bPi -bRp -bTH -bVI -bLr -bYZ -caY -ccL -ces -caX -caW -ciS -bYV -bgO -biP -coG -blR -bnP -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(33,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -bgO -biP -bkr -blS -bnS -bpK -bpK -bsq -btA -buX -bwC -byr -bAg -bBN -bpK -bFy -bHq -bAd -bLs -bNt -bPj -bRq -bTI -bVJ -bXn -bZa -caZ -ccM -cet -cfP -chl -ciT -cep -clF -biP -bkr -blR -bnO -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(34,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -bgP -biP -bkq -blR -bnP -bpK -bpK -bsr -btz -buY -bwB -bpK -bAh -bpK -bpK -bFz -bHr -bJo -bLt -bNu -bPk -bRr -bTJ -bVK -bLt -bZb -cba -ccN -ceu -caX -caW -ciU -bYV -bgO -biP -coG -blR -bnP -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(35,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -bgO -biQ -bks -blT -bnT -bpL -bpL -bpL -btB -buZ -bwD -btB -btB -bBO -btB -bFA -bHp -bJp -bLu -bNr -bPl -bRs -bTK -bVL -bLp -bYY -cbb -ccO -cev -cfQ -chm -ciV -cku -clG -cnb -coH -cqh -bnO -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(36,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaa -biR -bkt -blP -bnP -aaa -bpK -bso -btx -bva -bwE -bys -bAi -bys -bys -bFB -bHs -bJq -bLv -bNq -bPm -bRt -bTL -bVM -bLp -bZd -caW -ccJ -cew -cfR -chn -bYV -bYV -bgO -blP -bJk -blV -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(37,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -agg -agg -bgP -blP -bnQ -aaf -bpK -bpK -btw -bvb -bwF -byt -bAd -byo -byq -bFC -byq -btw -bLp -bNp -bPn -bRu -bTE -bLp -bLp -bYW -cbc -ccP -bYX -cfS -bYV -bYV -aaf -bgO -blP -bnO -agg -agg -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(38,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -bgO -blP -bnP -aaa -bpK -bpK -bpK -bvc -bwG -bpK -bAj -bpK -bDD -bFD -bwy -bpK -bLp -bNw -bPo -ebZ -bTM -ejx -bLp -bYV -bYV -ccQ -cep -bYV -bYV -aaf -aaf -bgP -blP -bnP -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(39,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -bgO -blP -bnP -aaf -aaf -bpK -bpK -bpK -bwx -bpK -bpK -bpK -bso -bpK -bwx -bpK -bLp -bNx -bPp -bRv -bTB -bVN -bLp -aaa -bpM -biN -biN -bpM -biN -biN -blN -clH -blP -bnO -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(40,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -bgO -blP -bnO -aaf -aaf -aaf -bpK -bpK -bpK -bpK -bpK -bpK -bpK -bpK -bpK -bpK -bLp -bNy -bPp -bRj -bTC -bVO -bLp -bNB -bHj -bww -bww -cfL -bnM -ciW -bnM -bnM -cnc -bnP -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(41,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -bgO -blP -bnU -bpM -biN -biN -biN -bpM -biN -biN -bpM -biN -biN -bpM -biN -aaa -bLp -bNz -bPq -bRw -bTC -bVP -bLp -bgO -bHk -ccR -biR -blV -biR -biR -blV -biR -biR -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(42,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -bgP -blU -bnM -bnM -bnM -bnM -btC -buR -bww -bww -bww -bBP -bww -bww -bHt -bnP -bLp -bNw -bPr -bRt -bTL -efJ -bLp -bgO -bHk -bnO -agg -agg -aaf -agg -agg -agg -aaf -agg -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(43,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaa -blV -biR -biR -blV -biR -biR -blV -biR -biR -blV -biR -blV -bkt -bHk -bnQ -bLp -bLp -bPn -bRx -bTE -bLp -bLp -bNB -bHk -bnP -agg -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(44,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -agg -agg -agg -aaf -agg -agg -agg -aaf -agg -agg -agg -agg -agg -bgP -bHk -bJr -biN -bNA -bPs -bRy -bTN -bnU -biN -bko -bHk -bnO -agg -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(45,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -agg -bgO -bHu -bJs -bLw -bww -bPt -bRz -bTO -bww -bww -bww -bHl -ccS -aaf -aaf -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(46,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaf -aaa -bkt -bJt -bJk -bNj -bPu -bRA -blR -bnN -biR -blV -biR -aaa -agg -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aaa -aaH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(47,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -agg -agg -bgP -bJu -bnO -bNB -bPu -ebV -blR -bnQ -agg -agg -agg -aaf -agg -aaf -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(48,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaa -aaf -aaa -aaf -aaa -bJv -aaa -bNB -bPu -bRC -blR -bnQ -aaa -aaf -aaa -aaa -aaa -aaf -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaa -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(49,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -agg -aaa -aaf -aaa -bJv -aaa -bNB -bPu -bRB -blR -bnQ -aaa -aaf -aaa -aaa -aaa -agg -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -dBa -dAZ -dBa -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(50,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaa -agg -aaf -aaf -aaf -bJv -aaf -bNC -bPu -bRD -bTP -aGe -aaf -aaf -aaf -aaf -aaf -agg -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -dAZ -dBa -dFD -dBa -dAZ -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(51,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -agg -aaa -aaf -aaa -bJv -aaa -bgP -bPv -bRE -bTQ -bnO -aaa -aaf -aaa -aaa -aaa -agg -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -dBa -dBa -dEw -dFE -dHn -dBa -dBa -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(52,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -agg -aaa -aaf -aaa -bJv -aaa -bND -biR -bRF -biR -bVR -aaa -aaf -aaa -aaa -aaa -aaf -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aaf -aaf -dAZ -dAZ -dDG -dEx -dFF -dHo -dHV -dAZ -dAZ -aaf -aaf -aaH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(53,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaa -agg -aaf -aaf -aaf -bJv -aaf -bNE -aaf -bRG -aaf -bNE -aaf -aaf -aaf -aaf -aaf -agg -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dBa -dCk -dDH -dDH -dFG -dHp -dFF -dII -dBa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(54,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaa -aaf -aaa -aaf -aaa -bJv -aaa -bNF -aaa -bRG -aaa -bVS -aaa -aaf -aaa -aaa -aaa -agg -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aaf -aaf -dAZ -dAZ -dDI -dEy -dDH -dHq -dHW -dAZ -dAZ -aaf -aaf -aaH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(55,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -agg -aaa -aaf -aaa -bJv -aaa -aaf -bPw -bRG -bTR -aaf -aaa -aaf -aaa -aaa -aaa -agg -aaa -agg -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -dBa -dBa -dEz -dFF -dHr -dBa -dBa -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(56,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -agg -aaa -aaf -aaa -bJv -aaa -aaf -aaa -bRH -aaa -aaf -aaa -aaf -aaa -aaa -aaa -agg -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -dAZ -dBa -dFH -dBa -dAZ -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(57,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaa -agg -aaf -aaf -aaf -bJw -bLx -bNG -aaf -bRI -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -dBa -dFI -dBa -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(58,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaa -aaf -aaa -aaf -aaa -aaf -aaa -bJv -aaa -bRJ -aaa -aaf -aaa -aaf -aaa -aaa -aaa -agg -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaa -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(59,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -agg -aaa -aaf -aaa -aaf -aaa -bJv -aaa -bRJ -aaa -aaf -aaa -aaf -aaa -aaa -aaa -agg -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(60,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -agg -aaf -aaf -aaf -aaf -aaf -bJv -aaf -bRJ -aaf -aaf -aaf -aaf -aaf -aaf -aaf -agg -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aaa -aaH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(61,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaa -aaf -aaa -aaa -aaa -aaf -aaa -bJv -aaa -bRJ -aaa -aaf -aaa -aaf -aaa -aaa -aaa -agg -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eaT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(62,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -agg -aaa -aaa -aaa -aaf -aaa -bJv -aaa -bRJ -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaf -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(63,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaa -agg -aaf -aaf -aaf -aaf -aaf -bJv -aaf -bRI -aaf -aaf -aaf -aaf -aaf -aaf -aaf -agg -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(64,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -agg -aaa -aaa -aaa -aaf -aaa -bJv -aaa -bRJ -aaa -aaf -aaa -aaf -aaa -aaa -aaa -agg -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(65,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -YGI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaa -aaf -aaa -aaa -aaa -aaf -aaa -bJv -aaa -bRJ -aaa -aaf -aaa -aaf -aaa -aaa -aaa -agg -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(66,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aaf -aae -aaf -aae -aae -aae -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -agg -aaf -aaf -aaf -aaf -aaf -bJv -aaf -bRJ -aaf -aaf -aaf -aaf -aaf -aaf -aaf -agg -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(67,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aae -aaf -aae -aae -aaa -aaf -aaa -aaf -aaa -aae -aae -aaf -aae -aae -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaf -aaa -bJv -aaa -bRJ -aaa -aaf -aaa -aaf -aaa -aaa -aaa -agg -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(68,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aaa -aaf -aaa -aaf -aaa -alO -ebB -anZ -aaa -aaf -aaa -aaf -aaa -aae -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -agg -aaf -agg -agg -agg -aaf -agg -agg -agg -aaf -agg -aaf -aaf -bJv -aaa -bRJ -aaa -aaf -aaa -aaf -aaa -aaa -aaa -agg -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(69,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aaa -alO -ebB -anZ -aaa -alO -amW -anZ -aaa -alO -ebB -anZ -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaa -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaa -bJv -aaf -bRI -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(70,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -alO -amW -anZ -aaa -alO -amW -anZ -aaa -alO -amW -anZ -aaa -aae -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -agg -agg -aaf -agg -agg -agg -agg -aaf -agg -agg -agg -aaf -bJv -aaa -bRJ -aaa -aaf -aaa -aaf -aaa -aaf -agg -agg -agg -agg -aaf -agg -agg -aaf -agg -agg -agg -agg -agg -agg -aaf -aaf -aaf -aaf -aaH -aaf -aaf -agg -agg -agg -aaf -agg -agg -agg -aaf -agg -agg -aaf -agg -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(71,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aaf -alO -amW -anZ -aaf -alO -amW -anZ -aaf -alO -amW -anZ -aaf -aae -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaa -agg -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -agg -aaa -bJv -aaa -bRJ -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaH -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaf -aaf -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(72,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aaa -alO -amW -anZ -aaa -apD -amW -anZ -aaa -alO -amW -anZ -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -agg -aaf -btD -btD -btD -btD -btD -btD -btD -aaf -aaf -aaf -bJv -aaf -bRJ -aaf -aaf -aaf -agg -agg -agg -aaf -agg -agg -agg -aaf -agg -agg -agg -aaf -agg -agg -agg -aaf -agg -agg -agg -aaf -aaf -aaH -aaf -agg -agg -agg -aaf -agg -agg -agg -aaf -agg -aaf -agg -agg -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(73,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aaf -aae -aae -aaa -alO -amW -anZ -aaa -aaf -amX -aaf -aaa -alO -amW -anZ -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -agg -aaf -btD -bwH -bwH -bAk -bwH -bwH -btD -aaf -agg -aaa -bJv -aaa -bRJ -aaa -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaH -aaa -aaf -aaa -aaf -aaf -aaf -aaa -aaf -aaf -aaf -aaa -aaf -aaf -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(74,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aaa -aaf -aaf -aaf -aaf -amX -aaf -aaf -aaf -apE -aaf -aaf -aaf -amX -aaf -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaa -aaf -aaf -btD -bwH -byu -byv -byw -bwH -btD -aaf -agg -aaa -bJv -aaa -bRJ -aaa -aaf -bVT -bZe -bZe -bZe -bVT -bZe -bZe -bZe -bVT -bZe -bZe -bZe -bVT -bZe -bZe -bZe -bVT -bZe -bZe -bZe -bVT -aaf -aaH -bWg -bWg -cJc -bWg -bWg -bWg -cJc -bWg -bWg -bWg -cJc -bWg -bWg -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(75,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aaf -aiV -ajJ -ajJ -ajJ -ajJ -ajJ -aoG -apE -aqX -ajJ -ate -auu -apE -awP -axK -axK -axK -axK -ate -apE -apE -aaf -aaH -aaH -aaH -aaH -aaH -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -agg -aaf -btD -bwH -byv -bAl -bBQ -bwH -btD -aaf -aaf -aaf -bJv -aaf -bRI -aaf -aaf -bVT -bVT -bVT -bVT -bVT -bVT -bVT -bVT -bVT -bVT -bVT -bVT -bVT -bVT -bVT -bVT -bVT -bVT -bVT -bVT -bVT -bWg -cEM -bWg -chC -cJd -cKU -bWg -cOb -cQb -cRv -bWg -cUW -cWy -cBl -bWg -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(76,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aaa -aaf -aaf -aaf -aaf -amY -aaf -aaf -aaf -apE -aaf -aaf -aaf -amY -aaf -aaf -aaf -aaf -aaf -aaf -aaf -apE -aaf -aHA -aaf -aaa -aaf -aaH -aaa -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -agg -aaf -btD -bwH -byw -byv -byu -bwH -btD -aaf -agg -aaa -bJv -aaa -bRJ -aaa -aaf -bVT -bZe -bZe -bZe -bVT -bZe -bZe -bZe -bVT -bZe -bZe -bZe -bVT -bZe -bZe -bZe -bVT -bZe -bZe -bZe -bVT -cDx -cme -bWg -cHH -cJe -cKV -bWg -cOc -cQc -cbu -bWg -cUX -cWz -cYo -bWg -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(77,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aae -aaf -aaf -aaa -alO -amZ -anZ -aaa -aaf -amY -aaf -aaa -alO -amZ -anZ -aaa -aaf -aaa -aaa -aaf -aBX -aEN -aBX -aaH -aIN -aKf -aIN -aNC -aaf -agg -aaf -aaf -agg -agg -agg -agg -agg -aaf -agg -agg -agg -agg -agg -aaf -agg -aaf -agg -aaf -btD -bwI -byx -bwH -bBR -bDE -btD -aaf -aaf -aaa -bJv -aaa -bRJ -aaa -bVT -bVT -bVT -aaf -aaa -cex -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaa -aaa -cvY -aaa -aaf -bVT -bVT -bVT -epK -bWg -bWg -chF -bWg -bWg -bWg -chF -bWg -bWg -bWg -chF -bWg -bWg -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(78,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aaa -alO -amZ -anZ -aaa -alO -amZ -anZ -aaa -alO -amZ -anZ -aaa -agg -aaa -aaf -aaf -aBX -aEO -aBX -aaH -aBZ -aKg -aBZ -aND -aPf -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaa -aaf -btD -bwJ -byy -bAm -byy -bDF -btD -aaf -bJx -bLx -bNH -aaf -bRJ -aaf -bVT -bXo -bZf -bZf -aaa -cey -cfT -cfT -ciX -cfT -cfT -ciX -cfT -cfT -ciX -cfT -cfT -cvZ -aaa -bZf -bZf -cCm -bVT -bZD -cGp -cHI -cJf -cHI -cMp -cOd -cQd -cHI -cHI -cMp -cWA -cYp -bWg -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(79,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aaf -alO -amZ -anZ -aaf -alO -amZ -anZ -aaf -alO -amZ -anZ -aaf -agg -aaf -aaf -aBX -aBX -epD -aBX -aBZ -aBZ -aKh -aBZ -aBZ -aPg -agg -agg -agg -agg -agg -aaf -agg -agg -agg -agg -agg -aaf -agg -agg -agg -agg -agg -aaf -aaf -btD -bwK -byz -eqe -bBS -bDG -btD -aaf -bJv -aaf -aaf -aaf -bRJ -aaf -bVT -bXo -bZf -cbd -aaf -cez -cfU -cho -ciY -cho -cho -ciY -cho -cho -ciY -cho -cuI -cez -aaf -czj -bZf -cCm -bVT -cyh -duO -ceO -cJg -cdj -cMq -cMq -bZC -bZD -cdj -erY -duO -bZC -cJc -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(80,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aaa -alO -amZ -anZ -aaa -alO -amZ -anZ -aaa -alO -amZ -anZ -aaa -agg -aaa -aaf -aBY -aDs -aEP -aGf -aBZ -aIO -aKi -aLN -aNE -aPh -aaf -aaf -aaa -aaf -aaf -aaf -aaa -aaf -aaf -aaf -aaa -aaf -aaf -aaf -aaa -aaf -aaf -aaf -aaf -btD -bwL -byA -bAn -bBT -bDH -btD -bHv -bJy -bHv -bHv -aaf -bRJ -aaf -bVT -bXp -bZg -cbd -aaa -cez -cfV -clJ -aaf -aaf -cho -aaa -aaH -aaf -aaf -coI -cuJ -cez -aaa -czj -cAU -cCn -bVT -bZD -duO -cHJ -cHJ -cHJ -cHJ -cHJ -cHJ -cHJ -cHJ -cHJ -cWB -cbu -bWg -aaf -aaf -aaa -dcs -dcs -aHW -dcs -aHW -dcs -dcs -aaa -aaa -agg -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(81,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -alO -ebC -anZ -aaa -alO -amZ -anZ -aaa -alO -ebC -anZ -aaa -aaf -aaa -aaf -aBY -aDt -aEQ -aGg -aBZ -aIP -aKj -aLO -aBZ -aPg -aNV -aNV -aNV -aNV -aNV -aNV -aNV -aNV -aNV -aNV -aNV -aNV -aNV -aNV -aNV -aNV -aNV -aaf -aaf -btD -bwM -byB -bAo -bBU -bDI -btD -bHw -bJz -bLy -bHv -bPx -bRK -bPx -bVT -bXq -bZf -cbd -aaf -ceA -cfW -aaf -aaa -aaa -aaH -aaf -aaH -aaa -aaa -aaf -cuK -cwa -aaf -czj -bZf -cAW -bVT -erJ -duK -cHJ -efW -cKW -cMr -cOe -cQe -cRw -cTi -cHJ -cWC -cYq -bWg -aaf -aaf -aaf -dcs -aJm -egl -dks -egm -diJ -dcs -aaf -aaf -aaf -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(82,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaa -aaf -aaa -aaf -aaa -alO -ebC -anZ -aaa -aaf -aaa -aaf -aaa -agg -aaf -aaf -aBY -aDu -aER -aGh -aBZ -aIQ -aKk -aLP -aBZ -aPh -aNV -aSH -aUh -aSH -aNV -aZi -baG -aZi -aNV -bfa -bgQ -bfa -aNV -blW -bnV -blW -aNV -aaf -aaf -btD -bwN -byC -bAp -bBV -bDJ -btD -bHx -epF -bLz -bHv -bPy -bRL -bTS -bVT -bXr -bZh -cbd -aaa -cez -cfV -aaf -aaa -aaH -aaH -aaH -aaH -aaH -aaa -aaf -cuJ -cez -aaa -czj -cAV -cCo -bVT -cEN -duM -cHK -cJi -cKX -cMs -cOf -cQf -cRx -cTj -cHJ -cWD -cYr -bWg -aHW -dcs -aHW -dcs -aPD -diG -dkt -dlW -aNZ -dcs -aHW -dcs -aHW -aHW -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(83,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -agg -agg -aaf -agg -aaf -aaa -aaf -aaa -aaf -aaa -aaf -agg -aaf -agg -agg -aaf -aaf -aBY -aBY -aES -aGi -eco -ecq -aKl -aLO -aBZ -aPg -aNV -aSI -aUi -aSH -aNV -aZj -baH -aZi -aNV -bfb -bgR -bfa -aNV -blW -blW -bpN -aNV -aaf -btD -btD -btD -byD -bAq -bBW -btD -btD -bHy -bJA -bLA -bNI -bPz -bRM -bTT -bVT -bVT -bXq -cbd -aaH -cez -cfV -cfV -aaH -aaH -clJ -cho -coI -aaH -aaH -aaH -cuJ -cez -aaH -czj -cAW -bVT -bVT -bZD -cGt -cUY -cJj -cKY -cMt -cOg -cQg -cKY -cTk -cUY -cWE -cYq -bWg -daN -dct -ddL -daP -aMr -diH -dku -dlW -aNZ -ddQ -dqt -drZ -daT -aHW -aaf -agg -agg -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(84,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -agg -agg -agg -agg -agg -agg -agg -agg -agg -aaf -aaf -aaf -aaf -aaf -aBZ -aDv -aET -aGj -aHB -aIR -aKm -aLQ -aBZ -aPh -aNV -aSJ -aUj -aWb -aNV -aZk -baI -bcd -aNV -bfc -bgS -biS -aNV -blX -bnW -bpO -aNV -aaH -btD -bvd -bwO -byE -bAr -bBX -bDK -bFE -bHz -bJB -bLB -bNJ -bPA -bRN -bTU -bVT -bVT -bXq -bZf -aaf -ceA -cfW -aaa -aaf -aaH -cfV -cnd -cuJ -aaH -aaf -aaa -cuK -cwa -aaf -bZf -cAW -bVT -bVT -cEO -cGu -cHM -cJk -cKZ -cMu -cOh -cQh -cOh -cTl -cUZ -cWF -cYs -bWg -daO -dcu -ddM -dfE -dgR -dgR -dkv -dgR -dny -ddM -dqu -dsa -dlX -dcs -aaf -aaf -aaf -aaf -agg -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(85,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaa -aaf -aaa -aaa -agg -aaa -aaH -aCa -aDw -aEU -aGk -aHC -aIS -aKn -aLR -aNF -aPi -aNV -aSK -aIU -aWc -aNV -aSK -aIU -aWc -aNV -aSK -aIU -aWc -aNV -aWc -aIU -aSK -aNV -aaH -btE -bve -bwP -byF -bAs -bBY -bDL -bFF -bHA -bJC -ejw -bNK -bLC -bRO -bTV -bVT -bVT -bXq -cbd -aaH -cez -cfV -aaH -aaH -aaH -clL -cne -coK -aaH -aaH -cuJ -cuJ -cez -aaH -czj -cAW -bVT -bVT -cEP -duO -cHJ -cJl -cLa -cMv -cOi -cQi -cRy -cTm -cHJ -cWG -cYt -bWg -daP -dcv -ecS -aKI -aPD -diI -dkw -dlX -diJ -aNZ -aMr -dfL -dtq -aHW -aaf -aaa -aaa -aaf -agg -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(86,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -agg -agg -agg -agg -agg -agg -agg -aaf -aaf -aBZ -aDx -aEV -aGl -aHD -aIT -aKo -aLS -aBZ -aaf -aNU -aSL -aNU -aWd -aNU -aSL -aNU -aWd -aNU -aSL -aNU -aWd -aNU -aWd -aNU -aSL -aNU -aaH -btD -bvf -bwO -byG -bAt -bBZ -bDM -bDM -bDM -bDM -bDM -bDM -bDM -bDM -bDM -bVT -bXs -bZi -cbd -aaa -cez -cfV -aaf -aaa -aaH -aaH -aaH -aaH -aaH -aaa -aaf -cuJ -cez -aaa -czj -cAX -cCp -bVT -cEQ -duM -cHJ -cHJ -cLb -cMw -cLb -cMw -cLb -cHJ -cHJ -cWH -cJw -bWg -daQ -dcw -ddN -dfF -dgS -dgS -dgS -dgS -dgS -doG -aMr -dsb -diK -dcs -dcs -dcs -aaa -aaf -agg -aaf -aaf -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(87,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaa -agg -aaa -aaf -aaa -aaf -aaa -aaf -aaf -aaf -aaf -aaf -aBZ -aDy -aEW -aGm -aHE -aIU -ecr -aIU -aIZ -aIZ -aIZ -aSM -aIU -aWe -aIZ -aSM -aIU -aWe -aIZ -aSM -aIU -aWe -aIZ -aWe -aIU -aSM -aIZ -aIZ -btF -bvg -bvg -byH -bAu -bvg -bDM -bFG -bHB -bJD -bLD -bNL -bPC -bRP -bTW -bVT -bXq -bZf -cbd -aaf -ceA -cfW -aaf -aaa -aaa -aaH -aaf -aaH -aaa -aaa -aaf -cuK -cwa -aaf -czk -bZf -cAW -bVT -cJA -duL -cHJ -cJm -cLc -cMx -cOj -cQj -cRz -cTn -cHJ -chI -cYu -bWg -daR -dcx -ddO -dfG -dfL -dfL -dkx -dkx -diJ -doH -dqv -aNZ -aNZ -aPD -diJ -dcs -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(88,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -agg -aaf -asa -atf -asa -atf -asa -atf -asa -atf -aaH -aBZ -aDz -aEW -aGn -aHF -aIV -aKp -aLT -aNG -aPj -aQZ -aSN -aUk -aWf -aXM -aZl -aPj -bce -bdo -aZl -aPj -aWf -bku -blY -bnX -bpQ -brb -bss -btF -bvh -bwQ -byI -bAv -bCa -bDM -bFH -bHC -bJE -bLE -bLE -bLE -bRQ -bTX -bVT -bXt -bZg -cbd -aaa -cez -cfV -clL -aaf -aaf -aaH -aaa -cne -aaf -aaf -coK -cuJ -cez -aaa -czj -cAU -cCq -bVT -cER -duM -cHJ -cJn -cLd -cMy -cOk -cMy -cRA -egb -cHJ -cWJ -cYu -bWg -daS -dcy -ecT -dfH -dgT -dgT -diJ -dlY -dfL -doH -diJ -dsc -dtr -dma -egp -aHW -aaf -aaH -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(89,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -agg -aaa -asb -atg -auv -atg -asb -atg -auv -ath -atf -aCa -aDA -aEX -aGo -aHG -aIW -aKq -aLU -aNH -aPk -aRa -aSO -aUl -aWg -aXN -aZm -baJ -bcf -aXN -bfd -bgT -biT -bkv -blZ -bnY -bpR -brc -bst -btF -bvi -bwR -byJ -bAw -bCb -bDM -bFI -bHD -bJF -bLF -bNM -bPD -bRR -bTY -bVT -bXq -bZf -cbd -aaf -ceB -cfX -chs -chs -chs -chs -cnf -chs -chs -chs -chs -cuL -cwb -aaf -czj -bZf -cAW -bVT -cES -duO -cHJ -cJo -cLe -cMz -cOl -cQk -cRB -cTp -cHJ -cWJ -cYv -bWg -daT -dcz -ddP -dfI -dgU -dgT -dky -dgU -aPD -doH -aPD -dsc -dts -diJ -dwe -dcs -aaa -aaH -aaf -aaf -aaf -aaH -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(90,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -agg -agg -agg -agg -agg -aaf -agg -agg -aaf -agg -aaf -asb -asb -asb -asb -asb -asb -asb -asa -awQ -aCa -aDB -aEY -aGp -aHH -aIU -aKq -aLV -aNI -aPl -aRb -aSP -aUm -aUm -aUm -aZn -aUm -aUm -aUm -bfe -bgU -biU -aPw -bma -bnZ -bpS -baK -bsu -btG -bvj -bwS -byK -bAx -bCc -bDM -bFJ -bHD -bJG -bLG -bNN -bPE -bRS -bTZ -bVT -bXu -bZj -cbe -aaa -aaf -aaa -aaf -ceC -ceC -ceC -cng -ceC -ceC -ceC -aaf -aaa -aaf -aaa -czl -cAY -cCr -bVT -cER -duN -cHN -cJp -cLf -cMA -cOl -cQl -cRC -cTq -cHJ -cWK -cJA -bWg -egf -dcz -ecU -dfI -dgU -aPD -dkz -dfL -dgT -doH -aNZ -dsc -dtt -aNZ -egq -aHW -aaf -aaH -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(91,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -aaa -aaa -aaf -aaa -aaf -aaa -aaf -aaf -aaf -aaf -aaf -asb -ath -auw -ath -awQ -ath -auw -ath -atf -aBZ -aDC -aEZ -aGq -aHI -aIU -aKq -aLW -aNJ -aPm -aRc -aSQ -aUn -aWh -aWh -aZo -baK -aWq -aWq -bff -bgV -biV -bkw -bmb -boa -bpT -brd -bsv -btH -bvk -bwR -byL -bAy -bCd -bDM -bFK -bHE -bJH -bLH -bNO -bPF -bRT -bUa -bVT -bVT -bZk -bVT -bVT -ceC -ceC -ceC -ceC -ckv -clM -cnh -clM -cqi -ceC -ceC -ceC -ceC -bVT -bVT -cAZ -bVT -bVT -cET -cGx -cHO -cJq -cLg -cMB -cOm -cQm -cRD -cTr -cVa -cWL -cYw -cuT -ecQ -ecR -ddR -dfI -aPD -diJ -diJ -dfL -dkx -doH -aMr -dsd -dtu -aPD -dwg -dcs -aaa -aaH -aaf -aaf -aaf -aaH -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(92,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -aaf -agg -agg -agg -agg -aaf -agg -aaf -aiW -aoK -aoK -asc -aoK -aoK -aoK -aiW -aoK -aoK -aoK -asc -aiW -aBZ -aFa -aGr -aHJ -aIX -aKr -aLX -aNK -aPn -aRd -aSR -aUo -aWi -aXO -aUo -baL -bcg -aSR -bfg -bgW -biW -aPw -bmc -bob -bpU -bre -bsw -btI -bvl -bwT -byM -bAz -bCe -bDM -bFL -bHF -bJI -bLI -bJI -bPG -bRU -bUb -bVT -bXv -bZl -cbf -ccT -ceD -ceD -ceD -ceC -ckw -clN -clN -clN -cqj -ceC -csV -ceD -cwc -cxJ -cbf -cBa -cCs -bVT -cEU -cGy -cHM -cJr -cLh -cMC -cOl -cQn -cRE -cRy -cHN -cWM -cYx -cZI -daV -dcA -ddS -dfJ -dgV -dgV -dgV -dlZ -dnz -doI -aNY -dse -dtv -dcs -dcs -dcs -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aae -aae -aaf -aBW -aae -aae -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(93,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaa -aaf -aaa -aaf -aaf -aaf -aaf -aaf -aaf -aiW -apF -aqY -asd -axL -aux -aux -awR -ehS -axL -axL -asd -aCb -aBZ -aFb -aGs -aHK -aIY -aKs -aLY -aNL -aPm -aRc -aSS -aUp -aWj -aXP -aZq -aZq -eqP -bdp -bfh -bgW -biX -bkx -bmd -boc -bpV -brf -bsx -btJ -bvg -bvg -byH -bAA -bvg -bDM -bFM -bHG -bJJ -bLJ -bNP -bPH -bRV -bDM -bVT -bXw -epI -bVT -ccU -ceE -cfY -cht -ciZ -ckw -clN -clN -coN -cqk -ciZ -csW -cuM -cht -ccU -bVT -epJ -bXw -bVT -cEV -cGz -cHJ -efX -cLi -cMD -cOn -cQo -cRF -cTs -cHJ -cWN -cYy -cZJ -daW -dcB -ddT -dfK -dgW -ecX -dkA -ecY -ecZ -doJ -eda -dfL -dtw -aHW -aaf -aaa -aaa -aaf -agg -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aaf -aBW -aae -aae -aaa -aaa -aaf -aaa -aaa -aae -aae -aaf -aae -aae -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(94,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -agg -aaf -aiW -aiW -aiW -aiW -aiW -aiW -aiW -ept -epv -ase -aqZ -auy -avN -awS -axM -ehT -azZ -aAV -aCc -aBZ -aBZ -aGt -aBZ -aIZ -aKt -aLZ -aNM -aPo -aRd -aST -aUq -aWk -aXQ -aZr -baL -bch -epU -bfi -bgX -biY -bky -bme -bod -bpW -brg -bsy -btK -bvm -bwU -byN -bAB -bCf -bDN -bFN -bHH -bJK -bDM -bNQ -bPI -bRW -bLJ -bVU -bXx -bZm -cbg -ccV -ceF -cfZ -chu -cja -ckx -clP -clN -coO -cql -cja -csX -cfZ -ccV -ccV -czm -bZm -cCt -bVT -cYz -cGA -cHJ -cJt -cLj -cME -cME -cQp -cRG -cTt -cHJ -cWD -cYz -bWg -daX -dcC -ddU -dfL -dfL -dfL -dfL -dgT -diL -dfL -dfL -dgT -ddV -dcs -aaf -aaf -aaf -aaf -agg -aaf -aaf -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aaa -aaa -aaf -aaa -aaa -dZB -eab -ear -aaa -aaa -aaf -aaa -aaa -aae -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(95,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -agg -aaf -aiW -ajK -akP -akP -akP -akP -aoH -apH -ara -asf -atj -auz -epx -awT -axN -aza -epx -aAW -aCd -aDD -azd -aGu -aHL -aIZ -aKu -aMa -aNL -aPm -aRe -aSU -aUr -aWl -aWl -aWl -baM -aSY -bdq -bfj -epV -biZ -aPw -bmf -aIU -aIZ -aIZ -aIZ -btF -bvg -bvg -byO -bAC -bwR -bDO -bFO -bHI -bwR -bDM -bNR -bPJ -bRX -bUc -bVV -bXy -bZn -cbh -ccW -ceG -cga -chv -cjb -cky -clQ -clN -coP -cqm -cjb -chv -cuN -cwd -cxK -czn -bZp -cbh -bVT -cEX -cGB -cHJ -cJu -cLk -cMF -cOo -cQq -cRH -cTu -cHJ -cWD -cYA -bWg -daT -egh -ddV -dfM -ddV -diL -aJm -dmb -dnA -doK -dqw -diJ -aJm -aHW -aaf -aaa -aaa -aaf -agg -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aaa -dZB -eab -ear -aaa -dZB -eac -ear -aaa -dZB -eab -ear -aaa -aBW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(96,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -agg -aaa -aiW -ajL -akQ -ajL -ajL -ajL -aoH -apI -arb -asg -arm -ebT -avO -auA -axO -atk -atk -aAX -aCe -aDE -aFc -aGv -aHM -aJa -aKv -aMb -aNL -aPm -aRf -aSV -aUs -aIU -aSV -aIU -aSV -aSV -bdr -bfk -bgY -bja -bkz -bmg -boe -bpX -brh -aIZ -efC -bvn -bwV -byP -bAD -bCg -bDP -bFP -bHJ -bJL -bDM -bNS -bPK -bRY -bUd -bVW -bXz -bZo -cbh -ccW -ceH -cgb -chw -bVT -ckz -clR -cnm -clR -cqn -bVT -csY -ceM -cwe -cxK -czn -cBb -cCu -bVT -cEY -duO -cHJ -cHJ -cHJ -cHN -cOp -cHJ -cHJ -cHJ -cHJ -duO -cYz -bWg -bWg -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -dcE -aaf -agg -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -dZB -eac -ear -aaa -dZB -eac -ear -aaa -dZB -eac -ear -aaa -aae -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(97,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaa -agg -aaf -aiW -ajM -ajL -ajL -ajL -ajL -aoH -apJ -arc -ash -atl -auB -auB -awU -atm -azc -aAb -aAY -aCf -aDF -aFd -aGw -aHN -aIZ -aKw -aMa -aNL -aPm -aRg -aIU -aUt -aWm -aXR -aZs -baN -bci -bds -bfl -bgZ -bjb -epX -epZ -bof -aUz -bri -aIZ -btM -bvo -bwR -byQ -bAE -bCh -bDQ -bDQ -bHK -bJM -bDM -bNT -bPJ -bRX -bPM -bVW -bXA -bZp -erp -ccW -ceI -ceM -chx -cjc -bVT -clS -bVT -clS -bVT -bVT -csZ -ceM -cwf -cxK -erI -bZp -cCv -cDy -cEZ -cGC -crJ -cmh -cLl -cMG -cOq -cLl -cRI -cMG -cmh -czC -cYB -cLl -daY -dcE -ddW -dfN -dgX -diM -dkB -dmc -dcE -doL -dqx -dsf -dtx -duE -dwh -dxn -dcE -aaf -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -dZB -eac -ear -aaf -dZB -eac -ear -aaf -dZB -eac -ear -aaf -aae -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(98,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -aaf -aaa -aiW -ajL -ajL -akQ -ajL -YGJ -eqb -eqc -ard -asi -ehy -auC -auC -auC -ehy -azc -aAc -aAZ -aCg -aDG -aiW -aiW -aiW -aIZ -aKx -aMd -aNN -aPp -aRh -aSW -aUu -aWn -aXS -aZt -baO -bcj -bdt -bfm -bgY -bjc -bkA -bmh -bkA -bpY -brj -bsz -btN -bvp -bwW -byR -erc -bCi -bDR -bFQ -bHL -bJN -bLK -bNU -bPL -bRZ -bLJ -bVX -bXA -bZq -cbh -ccX -ceJ -cgc -chy -cjd -ckA -clT -cnn -coQ -cqo -crF -cta -cgc -ceJ -cxL -czn -bZq -cCw -cDz -cFa -cGD -bXM -cJv -bXM -cMH -bXM -cQr -cQr -cQr -cMH -cMH -cYC -cZK -cFn -dcE -ddX -dfO -dgY -dgY -dkC -dfP -dnB -deb -dfO -dsg -dgY -dkE -dwi -ddX -dcE -aaf -aaf -aaH -aaa -aaH -aaf -aaH -aaf -aaH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aaa -dZB -eac -ear -aaa -dZB -eac -ear -aaa -dZB -eac -ear -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(99,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -agg -aaf -aiW -ajN -ajL -alQ -ana -ana -aoJ -apL -are -asj -ehy -auD -YGK -avP -axP -ehJ -ehy -aAY -ark -aDH -aiW -eeW -aHO -aIZ -aKy -aMe -aNL -aPm -aRg -aIU -aUv -aWo -aXT -aZu -baP -aIU -bdu -bfn -bgY -bjd -bkB -bmi -bog -bpZ -brk -aIZ -btF -btF -btF -byS -bAF -bCi -bDS -bFR -bHM -bJO -bDM -bDM -bPM -bDM -bDM -bNY -bXB -bZp -cbi -ccY -ccY -ccY -ccY -ccY -ccY -clU -cno -coR -ccY -ccY -ccY -ccY -ccY -cxM -czo -cBc -cCx -cDA -cFb -cGE -cHP -cJw -cHS -cHS -cHS -cHS -cHS -cHS -cHS -cHS -cHS -cJA -dba -dcF -ddY -dfP -dgZ -diN -dkD -dmd -dcE -doM -dfR -dkE -dty -duF -dkD -dxp -dcE -aaf -aaa -aaH -aaf -aaf -aaa -aaf -aaa -aaH -aaf -aaf -aaf -aaH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -agg -aaa -agg -agg -aaa -aae -aaa -dZB -eac -ear -aaa -aaf -ead -aaf -aaa -dZB -eac -ear -aaa -aaf -aae -aae -aae -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(100,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -agg -aaa -aiW -ajL -ajL -ajL -ajL -ajL -epo -apM -arf -ask -ehy -auE -auE -auE -axQ -aze -aAd -aBa -aCh -aDI -aFe -aGy -aHP -aJb -aKz -aMf -aNO -aPm -aRg -aSX -aSV -aIU -aIU -aIU -baQ -aSV -bdv -bfn -bhb -bje -bkC -eqa -boh -bqa -brl -bsA -btO -bvq -bwX -byT -bAG -bCj -bDT -bFS -bHN -bJP -bLL -bNV -bPN -bSa -bUe -bVY -bXC -bZr -cbj -ccZ -ceK -ccZ -ceK -ccZ -erv -clV -cnp -coS -cqp -crG -cqp -crG -cqp -crG -czp -cBd -cCy -bVT -cFc -bZC -duO -cJx -cHS -cHX -cHX -cHX -cRJ -cHX -cHX -cHX -cHS -cJA -cFm -dcE -ddZ -dfQ -dha -diO -diO -dme -dnC -dkE -dfR -dsh -dsh -dsh -dwj -dfP -dcE -aaf -aaf -aaH -aaa -aaH -aaf -aaH -aaf -aaH -aaa -aaa -aaa -aaH -aaf -aaf -aaf -aaH -aaa -aaa -aaf -aaf -aaf -agg -aaf -aaf -aaf -aaf -aaf -aaf -aaa -aaa -ead -aaf -aaf -aaf -dVu -aaf -aaf -aaf -ead -aaf -aaa -aaa -aaf -aaa -aae -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(101,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaa -agg -aaf -aiW -ajO -ajL -akR -anb -ajL -epo -apN -arg -asl -ehB -ebG -avQ -ebG -axR -ebG -axR -aBb -aCi -aDJ -aFf -aGz -aHQ -aJc -aKA -aMg -aNP -aPq -aRg -aSY -aUw -aWp -aXU -aZv -baR -aSU -bdw -bfo -bhc -bjf -bkD -bmj -boi -bqb -brm -bsB -btP -bvr -bwY -byU -bAH -bCk -bDU -bFT -bHO -bJQ -bLM -bNW -bPO -bSb -bUf -bVZ -bXD -bZs -cbk -cda -cda -cgd -cda -cda -cda -clW -cnq -coT -cqq -crH -ctb -cda -cwg -cxN -czq -cBe -cCz -bVT -cFd -bZC -cHQ -cJy -cHS -cMJ -cOr -cJH -cJH -cJH -cJH -cWO -cHS -cZL -esa -dcG -dea -dfR -dhb -diP -dkE -diT -dcE -doN -dfR -dsi -dtz -duG -diO -diT -dcE -aaf -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaH -aaf -aaf -aaf -aaH -aaa -aaa -aaa -aaH -aaf -aaf -aaH -aaa -aaa -agg -aaf -dVu -dVu -dVu -dVu -dVu -dVu -dVu -dVu -dVu -dVu -eaC -eaK -dVu -dVu -dVu -eaV -eaW -eaW -eaW -eaX -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(102,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaa -aaf -aaa -aiW -ajL -ajL -ajL -ajL -ajL -epo -apO -arh -asm -ehy -auF -auF -auF -axS -azf -epA -aBc -arj -aDK -aFg -aGA -aHR -aJd -aKB -aMh -aNQ -aPr -aRi -aSZ -aUx -aWq -aWq -aWq -aWq -aSZ -bdx -bfp -bhd -bjg -bkE -efx -boj -bqc -brn -aJd -btQ -bvs -bwZ -byV -bAI -bCl -bDV -bFU -bDQ -bJR -bLN -bNX -bPP -bSc -bUg -bWa -bXE -bZt -cbl -cdb -ceL -cge -chz -cje -ckB -clX -cnr -coU -cqr -crI -crI -cuO -cwh -cxO -czr -cBf -crI -crI -cFe -cBp -erO -cJz -cHS -cHX -cHX -cHX -cHX -cHX -cHX -cHX -cHS -cZL -dbc -dcE -deb -dfR -dhc -diQ -dkF -dmf -dcE -doO -dha -dfP -dtA -dsk -diO -doN -dcE -aaf -agg -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaH -aaf -aaf -aaf -aaH -aaa -aaa -aaH -aaf -aaf -aaf -aaf -dVu -aaf -aaf -aaf -aaf -aaa -aaa -eae -aaf -aaf -aaf -dVu -aaf -aaf -aaf -eae -aaf -aaa -aaa -aaf -aaa -aae -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(103,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -agg -aaf -aiW -ajN -ajL -alR -anc -anc -aoL -apG -ari -asn -ehy -auG -YGL -avR -axT -ehJ -ehy -aBd -ark -aDL -aiW -aGB -aHS -aIZ -aKC -aMi -aNR -aPs -aRj -aTa -aUy -aWr -aXV -aWr -aWr -aWr -bdy -bfq -bhe -bjh -bkF -bml -bok -bqd -bro -aIZ -aIZ -aIZ -aIZ -aIZ -aIZ -bCm -bDW -bFV -bFQ -bJS -bvg -bNY -bPQ -bSd -bUh -bNY -bXF -bZu -cbm -ccW -ceM -cgf -chA -bVT -ckC -clY -cns -coV -ckC -crI -ctc -cuP -cwi -cxP -czs -cBg -cCA -crI -cFe -bZC -bZD -cJA -cHS -cHS -cOs -cHX -cHX -cTv -cOs -cHS -cHS -cZM -cFo -dcE -dec -dfQ -dhd -diR -dkG -dmg -dnB -doP -dfP -dsj -dtA -duH -dkD -dxr -dcE -aaf -agg -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaH -aaf -aaf -aaH -aaa -aaa -agg -aaf -dVv -aaf -aaa -aaa -aae -aaa -dZB -eaf -ear -aaa -aaf -eae -aaf -aaa -dZB -eaf -ear -aaa -aBW -aae -aae -aae -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(104,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -agg -aaa -aiW -ajL -ajL -ajL -ajL -ajL -aoI -apK -ebP -aso -ehy -auH -auC -auC -ehy -azg -aAe -aBe -aCj -aDM -aiW -aiW -aiW -aIZ -aKD -aMj -aNL -aPm -aRc -aTb -aUz -aWs -aUz -aUz -baS -bck -bdz -bfr -bhf -bji -epY -bmm -bol -bqe -brp -bsC -btR -bvt -bxa -byW -aIZ -bCn -bDX -bFW -bHP -bJT -bLO -bJU -bPR -bSe -bUi -bWb -bXG -bZv -cbn -cdc -ceN -cgg -efR -bVT -ckD -clZ -cnt -coW -cqs -crI -ctd -cuQ -cwj -erE -czt -cBh -cCB -crI -cFf -cGF -cHR -cJB -cHS -cMK -cOt -cQs -cRK -cTw -cVb -cWP -cHS -cJw -cFm -dcE -ded -dfS -dhe -diS -dkH -dme -dnB -doQ -dfQ -dsk -dtB -dtA -dwk -dxs -dcE -aaf -agg -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaf -aaf -aaf -agg -aaf -dVw -aaf -aaa -aaa -aae -aaa -dZB -eaf -ear -aaa -dZB -eaf -ear -aaa -dZB -eaf -ear -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(105,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -agg -aaf -aiW -ajL -ajL -ajL -ajL -ajL -epo -apQ -ebQ -epw -atm -auI -avS -auI -atl -azh -aAf -aBf -aCk -aDN -aFh -aGC -aHT -aIZ -aKD -aMk -aNL -aPt -aRk -aTc -aUA -aTc -aXX -aXX -baT -bcl -bdA -bfs -bhg -efv -aIZ -bmn -bom -bqf -brq -bsD -eqX -ehN -bvu -byX -aIZ -bCo -bDY -bFX -bHQ -bJU -bLP -bHQ -bPS -bSf -bUj -bLT -bXH -bZw -cbo -cdd -bVT -bVT -bVT -bVT -ckE -cma -cnu -coX -cqt -crI -cte -cuR -cwk -cxR -czu -cBi -cCC -crI -cFc -cGG -cHS -cJC -cHW -cML -cOu -cQt -cRL -cTx -cVc -cML -cHS -cZO -dbc -dcE -dee -dfT -dhf -diT -dkI -dmh -dnB -doR -dha -dsl -dtC -diT -diO -dxt -dcE -aaf -agg -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaa -agg -agg -agg -aaf -aaf -aaf -aaf -dVw -aaf -aaf -aaa -aae -aaf -dZB -eaf -ear -aaf -dZB -eaf -ear -aaf -dZB -eaf -ear -aaf -aae -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(106,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -aaf -aaf -aiW -ajL -akR -ajL -akQ -ajL -eps -epu -arl -asp -atn -auJ -avT -awV -axU -azi -azi -aBg -aCl -aDO -aFi -aGD -aHU -aIZ -aKD -aMl -aNS -aPu -aRl -aTd -aUB -aWt -aXY -aZw -baU -bcm -bdB -bft -bhh -bjk -aIZ -bmo -bon -bqg -brr -bsE -btS -bvv -bxb -byY -bAJ -bCp -bDZ -bFY -bHR -bJV -bLQ -bNZ -bPT -bSg -bUk -bLT -bXI -bZx -cbp -cde -bVT -cgh -chC -bVT -ckF -cma -cnu -coY -cqu -crI -ctf -cuQ -cwl -cxQ -czv -cBh -cCD -crI -cFc -cGG -cHT -cJD -cHW -cMM -cOv -cQu -cRM -cQu -cVd -cWQ -cHS -cZL -dbc -dcE -dcE -dcE -dcE -diU -dkI -dmi -dcE -doS -dqy -diS -dtD -dhe -duI -deb -dcE -aaf -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -dUl -dVx -dUl -aaf -aaa -aae -aaa -dZB -eaf -ear -aaa -dZB -eaf -ear -aaa -dZB -eaf -ear -aaa -aae -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(107,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaa -agg -aaf -aiW -ajP -akP -akP -akP -aoa -aiW -apR -ebR -asq -ato -auK -avU -epy -axV -azj -aAg -aBh -aCm -aDP -aFj -aGE -aHV -aIZ -aKE -aMm -aNT -aPv -aMm -aTe -aUC -aWu -aXZ -aZx -baV -bcn -bdC -aZx -bhi -bjl -aIZ -bmp -boo -bqh -brs -bsF -aWq -bvw -bxc -byZ -bAK -bCq -bEa -bFZ -bHS -bJW -bLR -bOa -bPU -bSh -bUl -bWc -bXI -bZy -cbq -cdf -bVT -cgi -chD -bVT -ckG -cmb -cnv -coZ -cqv -crI -efU -cuS -cwm -cxS -czw -cBj -cCE -crI -cFd -cGG -cHU -cJE -cLm -cMN -cOw -cQv -cRN -cTy -cVe -cWR -cHS -cZP -dbe -cDC -def -dfU -dcE -dcE -dkJ -dcE -dcE -doT -dqz -dsm -dtE -duI -dwl -dxv -dcE -aaf -aaf -aaf -aaf -aaH -aaa -aaH -aaf -aaf -aaf -agg -agg -aaf -agg -agg -agg -agg -agg -aaf -agg -agg -aaf -aaf -dUl -dVy -dUl -aaf -aaf -aBW -aaa -dZB -eag -ear -aaa -dZB -eaf -ear -aaa -dZB -eag -ear -aaa -aBW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(108,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -agg -aaf -aiW -aiW -aiW -aiW -aiW -aiW -aiW -apS -ebS -asr -atp -auL -avV -eqz -axW -azk -aAh -aBi -aCn -aiW -aiW -aiW -aiW -aJe -aIZ -aIZ -aIZ -aPw -aIU -aPw -aIZ -aSM -aIU -aWe -aIZ -aSM -aIU -aWe -aIZ -epW -aIZ -bmq -bop -bqi -brt -bsG -btT -bvx -bxd -bza -bAK -bCr -bEb -bGa -bHT -bJX -bLS -bOb -bPV -bSi -bUm -bLT -bXJ -bZz -cbr -cdg -bVT -cgj -chE -bVT -ckG -cmc -cnw -cpa -cqv -crI -crI -crI -crI -crI -crI -crI -crI -crI -cFg -cGG -cHV -cJF -cHW -cMO -cOx -cQw -cRO -cTz -cVf -cWS -cYD -cZQ -dbf -dcH -deg -dfV -bWg -diV -dkK -dmj -dcE -dcE -dcG -dcE -dtF -dcE -dcE -dcE -dcE -aaf -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaf -dUl -dUl -epQ -dUl -dUl -aaf -aae -aaa -aaa -aaf -aaa -aaa -dZB -eag -ear -aaa -aaa -aaf -aaa -aaa -aae -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(109,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -aaf -aaa -aaf -aaa -aaf -aaa -aiW -apT -arn -ass -atq -auM -atq -awW -axX -azl -aAi -aBj -aCo -aiW -aaf -aaf -aaf -aaf -aaf -aaf -aNU -aPx -aNU -aPx -aNU -aSL -aNU -aWd -aNU -aSL -aNU -aWd -bhj -aJg -aIZ -bmr -boq -bqj -bru -bsH -btU -bvy -bxe -aIZ -bAK -bCs -bEc -bGb -bHU -bJY -bLT -bLT -bLT -bLT -bLT -bLT -bVT -bVT -bVT -bVT -bVT -bWg -chF -cjf -cjf -cjf -cjf -cjf -cjf -cjf -cth -cbw -cwn -cxT -cbw -cBk -cbw -cwn -cFh -cGG -cHW -cHW -cHW -cHW -cOy -epl -epm -epn -cOy -cHW -cHS -cHS -cHS -cHS -deh -dbe -dhg -diW -dkL -cHI -dnD -doU -def -def -cJf -duJ -bWg -aaa -aaf -aaf -aaf -aaf -aaf -aaH -aaa -aaH -aaH -aaH -aaf -aaa -agg -agg -agg -agg -agg -aaf -agg -agg -agg -aaa -aaf -dUm -dUR -dVz -dWh -dUm -aaf -aae -aae -aae -aBW -aae -aaa -aaa -aaf -aaa -aaa -aBW -aae -aae -aaf -aae -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(110,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aiW -aiW -aiW -aiW -atr -aoK -atr -aiW -axY -aoK -aoK -aiW -aiW -aiW -aaa -aaf -aaa -aaf -aaa -aaf -aNV -aPy -aIU -aTf -aNV -aWv -aIU -aZy -aNV -aWv -aIU -aZy -aNV -aJg -aib -bms -bor -bqk -brv -bsI -btV -bvz -bxf -bvz -bxf -bCt -bEd -bGc -bHV -bGc -bLU -bGc -bGc -bSj -bUn -bWd -bWg -bZA -cbs -cdh -bZD -cbv -chG -cjf -ckH -cmd -cnx -cpb -cqw -cjf -cti -bWg -bWg -bWg -bWg -bWg -bWg -bWg -cFc -cGG -cHX -cHX -cHX -cMP -cOz -cQy -cML -cTB -cVg -cWT -cYE -cHX -cHX -cHS -dei -dfW -dcH -diX -dkM -dmk -dcH -doV -dqA -dmk -dtG -duK -bWg -aaf -dms -dyv -dyv -dms -dyv -dms -dFJ -dms -dHX -dIJ -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -dUm -dUS -dVA -dWi -dUm -aaf -aaa -aaa -aaa -aaf -aae -aae -aae -aaf -aae -aae -aBW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(111,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaa -aaf -aaa -aaf -ats -aaf -ats -aaf -axZ -azm -aAj -azm -aAj -azm -aAj -azm -aAj -aJf -aaf -aaf -aNV -aPz -aRn -aTg -aNV -aWw -aYa -aZz -aNV -bco -bdD -bfx -aNV -aJh -aib -bmt -bos -bql -brw -bsJ -btW -bvA -bxg -bzb -bAL -bCu -bEe -bGd -bGd -erk -bLV -bGd -bPW -bSk -bUo -bWe -bXK -bZB -cbt -cdi -cbt -cgk -chH -cjf -ckI -ckI -cny -cpc -cqx -cjf -ctj -bWg -cwo -cxU -czx -ejA -cCF -bWg -cFi -cGG -cHY -cJG -cHX -cMQ -cOA -cQz -cRM -cTC -cVh -cWU -cHX -cJH -dbg -cHS -dej -dej -dej -diY -dkN -dej -dej -dej -dej -dej -cYz -duL -cJc -aaa -dyv -dzE -dBb -dCl -dDJ -dyv -dFK -dms -dHY -dIK -dIK -dIK -dIK -dIK -dIK -dIK -dIK -dIK -dIK -dIK -dIK -dIK -aaf -dUm -dUT -dVB -dWj -dUm -aaf -aaf -aaf -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(112,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiX -aiX -aiY -aiY -aiY -aiX -aiX -aib -aib -aib -aok -aok -aok -aib -aok -aok -aok -aib -aib -aib -aib -aib -aib -aJg -aaa -aaf -aNV -aPA -aRo -aPB -aNV -aWx -aYb -aWy -aNV -bcp -bdE -bcq -aNV -aJg -aib -bmu -bot -eiE -brx -brx -btX -bvB -bxh -bot -bAM -bCv -bEf -bCv -bCv -bCv -bLW -bOc -bPX -bSl -bUp -bWf -bWg -bZC -cbu -err -bZC -cdj -chI -cjf -ckJ -cme -cnz -cpd -cqy -cjf -ctk -bWg -cwp -bZD -czy -cBm -efV -bWg -cFd -cGG -cHX -cHX -cLn -cMR -cOB -cQA -cRQ -cTD -cVi -cWV -cHX -cHX -cHX -cHS -egi -dfX -dhh -diZ -dkO -dml -dnE -doW -dqB -dej -cEV -duM -cJc -aaf -dyv -dzF -dBc -dCm -dDK -dEA -dFL -dms -dHZ -dIK -dJt -dKr -dLo -dMu -dNt -dMv -dPc -dPT -dQJ -dRA -dSr -dIK -dIJ -dUm -dUU -dVC -dWk -dUm -dIJ -dIJ -aaf -agg -aaf -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(113,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiX -eeE -akS -alS -and -aob -aiX -aic -aic -ast -aic -aoT -avW -ast -aic -aoT -aoT -ars -aic -aic -awY -aGF -aib -aJh -aaf -aaf -aNV -aPB -aRp -aPB -aNV -aWy -aYc -aWy -aNV -bcq -bdF -bcq -aNV -aJh -aib -bmv -bou -bou -bou -bov -bou -bou -bou -bou -bou -bou -bou -bou -bou -bou -bou -bOd -bPY -epi -bUq -bWg -bWg -bZD -bZC -bWg -ceO -bZC -chI -cjf -ckK -cmf -cnA -cpe -cqz -cjf -cti -bWg -cwq -cxV -czz -cBn -cCH -bWg -cFc -cGG -cHW -cHW -cHW -cHW -cOC -cQA -cRR -cTE -cOF -cHW -cHW -cHW -cHW -cHS -del -dfY -dhi -dja -dkP -dmm -dnF -doX -dqC -dej -dtH -duK -bWg -aaa -dms -dzG -dBd -dCn -dDL -dyv -ebF -dms -dIa -dIK -dJu -dKs -dLp -dMv -dNu -dLr -dMz -dMu -dQK -dRB -dSs -dIK -dTK -dUn -dUV -dVD -dVK -dFW -dWU -dXt -aaf -agg -agg -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(114,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiX -ajR -akT -alT -akT -aoc -aiX -aic -eeL -asu -aic -auN -aoQ -awX -awX -awX -awX -awX -awX -awX -aoT -aGG -aib -aJg -aaa -aaf -aNV -aNV -aNV -aNV -aNV -aNV -aNV -aNV -aNV -aNV -aNV -aNV -aNV -aJg -aib -bmw -bou -aaa -aaf -aaa -aaf -btY -bxi -bzc -bAN -bCw -bEg -bGe -bHW -bJZ -bLX -bou -bPZ -bSn -bUr -bWg -bXL -bZC -cbv -cdk -bZD -bZC -chJ -cjf -cjf -cmg -cnB -cjf -cjf -cjf -ctl -bWg -cwr -cxW -czA -bZD -cCI -bWg -cFj -cGG -cHX -cHX -cHX -cMS -cOD -cQA -cRR -cTF -cVj -cWW -cYE -cHX -cHX -cHS -dem -dfZ -dhj -djb -dkQ -dmn -dnF -doY -dqB -dej -dtI -duN -cJc -aaf -dyv -dzH -dBe -dCo -dDM -dEB -dFM -dms -dIb -dIL -dJv -dKt -dLq -dMw -dNv -dOl -dPd -dOo -dMz -dPe -dSt -dIK -dIi -dUo -dFW -dTm -dFW -dQQ -dXn -dXt -aaf -aaf -aaf -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(115,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiY -ajS -akU -alU -ane -eeH -aiX -apU -aoQ -asv -att -aic -avX -awX -aya -azn -aAk -azo -aCp -awX -axa -ame -aib -axZ -aAj -azm -aAj -azm -aAj -azm -aAj -azm -aAj -azm -aAj -azm -aAj -azm -aAj -bjn -aib -bmx -bou -aaf -bry -brz -btY -btY -bxj -bzd -bzd -bzd -bEh -bzd -bzd -bzd -bLY -bou -bQa -bSn -bUs -bWh -bXM -bZE -bXM -bXM -bXM -cgl -chK -cjg -bXM -bXM -cnC -cpf -cqA -bXM -ctm -cuT -cuT -cuT -czB -cuT -cuT -cuT -cFk -cGH -cHZ -cJH -cHX -cMT -cOA -cQB -cRS -cTG -cVh -cWX -cHX -cJG -dbh -cHS -den -dga -dhk -djc -dkR -dmo -dnF -doZ -dqB -dej -esh -duK -cJc -aaa -dyv -dzI -dBf -dCp -dDN -dyv -dFN -dms -dFW -dIM -dJw -dJA -dJA -dMx -dNw -dJA -dJA -dJw -dJw -dRC -dSu -dIK -dTL -dUo -dFY -dFY -dFY -dFY -dFY -dFY -dFY -dFY -aaf -aaf -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(116,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiX -ajT -akV -alV -anf -anf -aiX -apV -arp -eqy -atu -auO -avY -awX -ayb -azo -azo -azn -aCq -aDQ -axa -aoQ -aib -aib -aib -aib -aib -aok -aok -aok -aib -aok -aok -aok -aib -aok -aok -aok -aib -aib -aib -bmy -bou -aaa -brz -bsK -btZ -brz -bxk -bze -bAO -bCx -bEi -bGf -bHX -bKa -bLZ -bOe -bQb -bSo -bUt -bWg -bXN -bZF -cbw -bZF -ceP -cbw -chL -cjh -ckL -cmh -cnD -ckL -cmh -crJ -ctn -cuU -crJ -cxX -czC -crJ -cCJ -cDB -cFl -cGG -cHX -cHX -cLn -cMU -cOE -cQA -cRR -cTF -cVk -cWY -cHX -cHX -cHX -cHS -deo -dgb -dhl -djd -dkS -dmp -dnF -dpa -dqD -dej -cEV -duM -bWg -aaf -dms -dzJ -dBg -dCq -dDO -dEC -dFO -dms -dIc -dIN -dJx -dKu -dJx -dMy -dNx -dOm -dOm -dOm -dOm -dRD -dSv -dIK -dIi -dUp -dUW -dVE -dWl -dWN -dXo -dYd -dYN -dUW -aaf -agg -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(117,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiY -ajU -akW -alV -ala -akW -eeI -apW -aic -asw -atv -auP -ame -awX -ayc -azo -azo -aBk -aCr -awX -aoT -aic -ast -aoT -aoT -aMn -ast -aic -aoT -aoT -aoT -ars -ars -ast -aic -aic -ast -ars -bhk -aoQ -ars -bmz -bov -aaf -brA -bsL -bua -bvC -bxl -bzf -bzf -bzf -bEj -bzf -bzf -bzf -bxl -bOf -bQc -bSp -bUu -bWi -bWi -bWi -bWi -bWi -bWi -bWi -chM -cji -bWi -bWi -bWi -bWi -bWi -bWi -bWi -bWi -bWi -bWi -bWi -bWi -cCK -bZD -cFm -cGG -cHW -cHW -cHW -cHW -cOF -cQC -erU -cTF -cOC -cHW -cHW -cHW -cHW -cHS -dep -dgc -dhm -dje -dkT -dmp -dnF -dpb -dqB -dej -dtI -duO -bWg -bWg -dms -dms -dms -dCr -dDP -dms -dms -dms -dId -dIL -dJy -dKv -dLr -dMz -dMv -dOn -dMu -dPU -dOo -dRE -dSw -dIK -dTM -dUq -dUX -dFW -dWm -dWO -dSC -dYe -dYO -dZC -aaf -agg -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(118,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiY -ajV -akX -alW -ang -aoe -aoN -apX -aib -aib -aib -aib -aib -awX -ayd -azn -azo -aBl -aCs -awX -aic -aoQ -aHW -aHW -aHW -aHW -aNW -aPC -aHW -aHW -avX -aWz -aoT -aZA -aoT -bcr -bcr -aic -bhl -aic -aoT -aUG -bou -aaa -brB -bsM -bub -brB -bxk -erb -bAP -bCy -bEk -bGg -bHY -bze -bMa -bou -bQd -bSn -bUr -bWi -bXO -bZG -cbx -cdl -ceQ -ceR -chN -cjj -ckM -cmi -cnE -cpg -bWi -bXT -cto -cuV -cws -cxY -czD -bWi -cCL -ceO -cFn -cGG -cHX -cHX -cHX -cMV -cOG -cQD -cRT -cTF -cVg -cWZ -cYE -cHX -cHX -cHS -deq -dgd -dhn -djf -dkU -dmq -dnG -dpc -dqB -dej -cYz -duN -dwm -bZC -dyw -dzK -dBh -dCs -dDQ -dzK -dFP -dHs -dIe -dIK -dJz -dKt -dLs -dMz -dMz -dOo -dPe -dOo -dOl -dRF -dSx -dIK -dMI -dUo -dUY -dVF -dWn -dWP -dWP -dYf -dYP -dZC -aaf -agg -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(119,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiY -ajW -eeF -alX -anh -aof -eeI -apY -aib -asx -atw -auQ -aic -awX -aye -azn -azo -aBl -aCt -awX -aoS -aGH -aHW -aJj -aKF -eff -aNX -aPD -aJm -aHW -aoQ -aGI -efo -aic -baW -bcs -aib -efo -aoQ -aib -aib -bmA -bou -aaf -bry -brB -btY -btY -bxn -bzg -bzg -bzg -bEl -bzg -bzg -bzg -bMb -bou -bQd -bSn -bUr -bWj -bXP -bZH -cby -cdm -ceR -cgm -chN -cjj -ckN -cmj -chQ -cpg -bWj -crK -ctp -cuW -cwt -ctp -czE -bWi -cCM -bZC -cFn -cGG -cIa -cJG -cHX -cMW -cOA -cQE -cRU -cTH -cVh -cXa -cHX -cJH -dbi -cHS -der -dgd -dho -djg -dkV -dmo -dnH -dpd -dqC -dej -dtJ -duP -cmh -dxw -cOq -dzL -dBi -dCt -dDR -dED -dFQ -dHt -dIf -dIK -dJA -dKw -dLt -dMA -dNy -dMv -dMz -dMv -dQL -dRG -dSy -dIK -dTN -dUr -dUZ -dVG -dSC -dWQ -dXp -dYg -dYQ -dFY -aaf -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(120,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiY -ajX -akZ -alY -ani -aog -aoO -apZ -aib -aoT -aoT -auR -eeQ -awX -ayf -azo -aAl -aBm -aCu -aDR -aFk -aGI -aHW -aJk -aKG -aMp -aNY -aNZ -aRr -aHW -aUD -eqL -aib -aoQ -efo -aib -aib -bfy -aic -bjo -efo -aUG -bou -aaa -aaf -aaa -aaf -bvD -bxo -bzh -bAQ -bCz -bEm -bGh -bHZ -bKb -bMc -bou -bQe -bSn -bUs -bWk -bXQ -bXQ -cbz -bXQ -bXQ -cgn -chO -cjk -ckO -bXQ -bXQ -bXQ -cqB -bXQ -ctq -cuX -cwu -cxZ -crK -bWi -cCK -bZD -cFn -cGG -cHX -cHX -cLn -cMX -cOB -cQy -cML -cTB -cVl -cXb -cHX -cHX -cHX -cHS -des -egk -dhp -djh -dkW -dmr -dnH -dpe -dqB -dej -dtK -cMH -dwn -cMH -dyx -dzM -dBj -dCu -dDS -dzM -dFR -dHu -dIg -dIK -dJB -dKx -dLu -dJA -dNz -dMv -dPf -dLr -dQM -dRH -dSz -dIK -dIi -dUr -dFY -dVH -dWo -dWR -dXq -dYh -dIJ -dFY -aaf -agg -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(121,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiY -ajU -akW -alZ -anj -akV -eeI -aqa -arq -asy -atx -auS -awa -awX -ayg -azo -azo -aBn -aCv -aDS -aFl -aGI -aHW -aJl -aKH -aMq -aNZ -aPE -efh -aHW -awZ -aic -aic -aic -ast -ars -aic -ast -aic -ars -ars -bmB -bow -bou -bou -bov -bou -btY -btY -btY -btY -btY -btY -btY -btY -btY -btY -btY -ecv -ecw -ecx -bWl -bXR -bZI -bXR -ers -bZI -cgo -chP -bXR -bZI -bXR -bXR -bXR -cqC -bXR -ctr -cuY -cwv -cya -czG -bWi -cCK -erJ -cFo -cGG -cHW -cHW -cHW -cHW -cOH -epl -epm -epn -cOH -cHW -cHW -cHS -cHS -dcI -det -det -det -dji -dkX -dms -dms -dms -dms -dms -dms -dms -dms -dms -dms -dms -dms -dCv -dms -dms -dFS -dHv -dIh -dIK -dJC -dKy -dLv -dMB -dNA -dIK -dIK -dIK -dIK -dRI -dIK -dIK -dTO -dUs -dVa -dVI -dWp -dSC -dXr -dYi -dYR -dFY -aaf -agg -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(122,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiX -ajZ -ecb -ama -ank -aoi -aiX -aqb -aib -aic -aty -aic -eeR -awX -ayh -edd -azo -azo -aCw -awX -aqg -aoT -aHW -ejz -ecs -aMr -aOa -aPF -efi -aHW -aUE -aWA -aWA -aZB -baX -aWA -aZB -aZB -bhm -bjp -aZB -bmC -box -bqm -aBo -aCy -buc -bvE -bxp -akm -ajl -ajl -erf -akm -ajl -bKc -aip -eph -bQf -bSn -bUr -bWj -bXS -bZJ -cbA -cdn -ceS -cgp -ehO -cjl -ckP -cjl -chQ -cpg -bWj -crL -cts -cuZ -cww -cgp -czH -bWi -cCK -ceO -cFo -cGG -ecI -ecI -ecI -cHW -cOI -cQy -cML -cTB -cVm -cXc -cYF -cZR -dbj -dcJ -eju -dad -dhq -djj -dkY -dmt -dnI -dpf -dqE -dsn -dtL -duQ -dwo -dxx -dyy -dzN -dBk -dCw -dDT -dms -dFT -dHw -dIh -dIK -dJD -dKz -dLw -dJw -dNB -dIK -dPg -dPV -dQN -dRJ -dSA -dIK -dTM -dUt -dVb -dVF -dWn -dWP -dWP -dYj -dYS -dZC -aaf -aaf -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(123,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiY -aka -alb -amb -anl -aoj -edc -aUJ -ecd -asz -ece -auT -awc -ecf -ecg -ede -ecj -eck -aCx -ecl -ecm -ecn -ecp -aJn -aKJ -aMs -aOb -aPG -aRu -ecp -aUF -boy -boy -boy -boy -boy -boy -boy -boy -boy -boy -boy -boy -boy -boy -boy -boy -bvF -bxq -bzi -bzi -bzi -bzi -bzi -bzi -bzi -bzi -bzi -bQg -bSo -bUt -bWi -bXT -bZK -cbB -cdo -ceS -cgq -ehO -cjl -ckP -cjl -chQ -cpg -bWi -crM -ctt -cva -cwx -cyc -czI -bWi -cCL -ceO -cFm -cGG -ecI -cJI -cLo -cMY -cOJ -cQF -cRV -cTI -cVn -cXd -cYG -cZS -dbk -cLI -deu -dgf -dhr -djk -dkZ -dmu -dnJ -dnJ -dqF -dso -dtM -duR -dwp -dxy -dyz -dzO -dBl -dCx -dDU -dms -dFU -dHw -dIi -dIK -dIK -dIK -dIK -dIK -dNC -dIK -dPh -dMA -dQO -dRK -dSB -dIK -dIi -dUq -dUX -dSC -dWq -dWS -dSC -dYk -dYT -dZC -aaf -agg -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(124,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aax -egV -aax -aaf -aaa -aaa -aaf -aax -egV -aax -aaf -aaf -aaf -aaf -aaf -aax -aax -aax -aax -aaa -aiY -aiY -aiY -aiY -aiX -aiX -aiX -aqc -aib -aib -eeL -aib -aib -awX -ayi -azo -aAm -azn -aCp -awX -aFm -aGJ -aHW -aJo -efa -efg -aNZ -aPH -aJm -aHW -ecu -aWB -aYd -efp -baY -aWB -bdG -bfz -bhn -bjq -bkG -bmD -boz -bjq -efA -bsN -aWB -aqu -bxr -bzj -bAR -bCA -bEn -bGi -bIa -bKd -bMd -bzr -bQh -bSm -bUv -bWi -bWi -bWi -bWi -cdp -ceS -cgp -chQ -chQ -ckP -erw -chQ -cph -cqD -crN -ctu -cvb -cwy -cyd -czJ -bWi -cCN -bWg -cFp -cGG -cIb -cJJ -cLp -cMZ -cOK -cQG -cRW -cTJ -cVo -cXe -cOK -cZT -dbk -cLH -dev -dgg -dhs -djl -dla -dmv -dnK -dpg -dqG -dsp -dtN -duS -dwq -dxz -dyA -dxz -esm -dCy -dDV -dEE -dFV -dHx -dIi -dIO -dJE -dFW -dLx -dIK -dIK -dIK -dIK -dIK -dIK -dIK -dIK -dIK -dTM -dUo -dVc -dVJ -dWr -dWT -dXs -dYl -dYU -dUW -aaf -agg -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(125,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaa -aaa -aaf -aaa -aaa -aaf -aaa -aax -ack -aax -aax -aax -aax -aax -aax -ack -aax -aaa -aaf -aaa -aaa -aaa -aax -agh -agJ -aax -aaf -aaf -aaf -aaf -aaf -aaf -aok -aoP -aqd -aib -asA -atz -auU -awd -awX -awX -awX -awX -awX -awX -awX -aFm -aoT -aHW -aHW -aHW -aHW -aNW -aPI -aHW -aHW -aUH -aWC -aYe -aZD -baZ -bct -bdH -bfA -bho -bho -bho -bho -bho -bho -brD -bsO -aWB -bvG -bxr -efE -bAS -bCB -bCB -bCB -bCB -bKe -bMe -bAZ -bQd -erm -bUr -bWi -bXU -bZL -bWi -cdq -ceS -cgp -ehO -cjm -ckP -cmk -chQ -cmk -bWi -crO -ctv -cvc -cwz -cyc -czK -bWi -cCL -ceO -cFn -cGG -ecI -cJK -cLq -cNa -cYG -cQH -cRX -cTK -cRX -cXf -cYH -cZU -dbl -dcK -dew -ecV -dht -djm -dlb -dmu -dnL -dnL -dqH -dsq -dtO -duT -dwr -dxA -dyB -dzP -dBm -dCz -dDW -dms -dFW -dHy -dIj -dIP -dJF -dKA -dLy -dMC -dIP -dOp -dPi -dPW -dQP -dRL -dQP -dTl -dTP -dUu -dFY -dFY -dFY -dFY -dFY -dFY -dFY -dFY -aaf -agg -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(126,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aax -aax -aaD -aax -aax -aaD -aax -aax -aaD -abP -aax -egU -aax -acC -acT -ack -adq -aax -egW -aax -abR -aaD -aax -aax -aaD -aaD -agi -agK -aaD -aib -aib -aib -aib -aib -aib -aib -aoQ -aqc -eeL -asB -atA -auV -aib -aib -ayj -azp -aAn -aBo -aCy -aDT -aFn -aBo -aHX -aCy -aBo -aMu -aOc -aPJ -aBo -aMu -aUI -aWD -aYf -aZE -bba -bcu -bdI -bfB -bhp -bjr -bjt -eqT -boA -bjt -bbf -bsO -aWB -aqu -bxr -bzl -bAT -bCC -bEo -bCC -erd -bKf -bCF -bAZ -bQd -bSn -bUr -bWi -bXV -bZM -cbC -cdr -ceT -cgp -ehO -cjn -ckP -cmk -cby -cmk -bWi -bWi -bWi -bWi -bWi -cji -czL -bWi -cCK -bZD -cFn -cGG -ecI -ecI -ecI -cHW -cOM -cQI -cRY -cTL -cVp -cXg -cYI -cHS -dbm -dcL -cPe -dgh -dhu -djj -dkY -dmw -dnM -dph -dqI -dsr -dtP -duU -dws -dxB -egr -dzQ -duU -dCA -egv -dms -dFX -dHz -dIk -dIk -dJG -dKB -dLz -dMD -dND -dOq -dPj -dPX -esr -dFW -dSC -dTm -dSC -dSC -dTm -dVK -dFW -dWU -dXt -aaf -aaa -aaa -aaf -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(127,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aax -aaC -aaI -aaP -aaP -aba -aaP -aaP -abB -aaP -aaP -aaP -aaP -aaP -aaP -aaP -aaP -adH -adZ -adZ -adZ -aeJ -adZ -adZ -afx -afO -agj -agL -aaD -aic -aiZ -akb -aic -amc -aic -aib -aoR -aqe -arr -aoT -atB -auW -aib -awY -ayk -azq -aAo -aAo -aAo -aAo -aAo -aAo -aAo -aJp -aJp -aJp -aOd -aPK -aJp -aJp -aUJ -aWE -aYg -aZF -bbb -bcv -bdJ -bfC -bhq -bjs -bkH -bmE -boB -bqn -bbf -bsP -aWB -aqu -bxs -bzm -bAU -bCD -bEp -bEq -bIb -bKg -bMf -bOg -bQi -bSn -bUr -bWi -bXW -bZN -bWi -cds -ceS -cgp -chQ -cjo -ebK -cml -cnF -cpi -bWi -crP -ctw -cvd -bWi -cJA -czM -cBo -cCO -cDC -cFq -cGI -cjf -cHS -cHS -cHS -cON -cQJ -cRZ -cTM -cRZ -cXh -cYJ -cHS -dbn -cLI -cPe -cJL -cJL -djn -dlc -dms -dms -dms -dms -dms -dms -dms -dms -dms -dms -dms -dmt -dCB -dDY -dms -dFY -dFY -dFY -dFY -dJH -dKC -dLA -dME -dNE -dNE -dNE -dNE -dNE -dNE -dNE -dNE -dFX -dFW -dFW -dFW -dQQ -dHs -dXt -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(128,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aax -aaC -aaJ -aaQ -aaQ -aba -aaQ -aaQ -abC -abQ -abQ -abQ -abQ -abQ -abQ -abQ -abQ -adI -abQ -abQ -abQ -aeK -abQ -afl -afy -afP -agk -agM -aht -aid -aja -akc -alc -amd -anm -eph -aip -aqf -aib -asC -atC -eeO -aib -awZ -ayl -azr -aAp -aBp -aCz -aAu -aFo -aGK -aHY -aJq -aKL -aMv -aOe -aPL -aRv -aJq -aUK -aWF -aYh -aZG -bbc -aWB -bdK -bfD -bhr -bjt -bkI -bmF -bjt -bqo -bbf -bsQ -aWB -bvH -bxt -bzn -bAV -bCC -bEq -bGj -bCC -bGk -bGl -bOh -bQd -bSn -bUw -bWi -bWi -bWi -bWi -cdt -ceS -cgr -chR -cjp -ckQ -cmm -cnG -cpj -cqE -crQ -ctx -cve -bWi -cyg -bXM -bXM -cCP -bXM -cFr -cGJ -cIc -cJL -cLr -cHS -cHS -cHS -cHS -cHS -cHS -cHS -cHS -cHS -dbo -cLH -cPe -dgi -dhv -djo -dld -dmx -dnN -dpi -dqJ -dss -dtQ -duV -dwt -dxC -dyD -dzR -dBn -dCC -dDZ -dEF -dFZ -dFZ -dIl -dIQ -dJI -dKD -dLB -dME -dNF -dOr -dNF -dPY -dNF -dRM -egP -dNE -dTQ -dTQ -dTQ -dTQ -dTQ -dNE -dNE -dNE -dNE -dZD -dNE -dNE -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(129,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aax -aax -aaD -aax -aax -aaD -aax -aax -aaD -aax -aax -aax -aax -acD -acU -acW -adr -aax -aax -aax -aax -aaD -aax -aax -aaD -aaD -agl -agN -aaD -aie -ajb -akd -ald -ame -ann -aib -aoS -aqg -aib -asD -atD -auY -aib -aoT -aym -azr -aAq -aBq -aCA -aAu -aFp -aGL -aHZ -aJq -efb -aMw -aOf -aPM -efj -aJq -aqg -aWF -aYi -aZH -bbd -aWB -bdL -bfD -bhs -bju -bkJ -bjt -bjt -bjr -bbf -bsO -aWB -aUK -bxr -bzo -bAW -erd -bEr -bCC -bCC -bKf -bCF -bAZ -bQj -bSq -bUr -bWi -bXU -bZL -bWi -cdu -ceS -cgp -chQ -cjq -ckR -cmn -cnH -bXR -cqF -crR -cty -cvf -bWi -cyh -czN -cBp -cCQ -erJ -cFs -cGK -cId -cJM -ejs -cLs -cOO -cOO -cLs -cTN -cLs -cLs -cLs -cZV -dbp -dcM -dey -dgj -dhw -djp -dle -dmy -dnO -dnO -dqK -dnO -dnO -duW -dwu -dxD -dyE -dzS -dBo -dCD -dEa -dEF -dFZ -dFZ -dIl -dIQ -dJJ -dKE -dLC -dMF -dNG -dOs -dPk -dPZ -dQR -dRN -dSE -dTn -dTR -dUv -dVd -dVL -dWs -dNE -dXu -dNE -dYV -dZE -eah -dNE -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(130,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaa -aaa -aaf -aaa -aaa -aaf -aaa -aaa -aaf -aax -aax -aax -aax -aax -aax -aaf -aaa -aaa -aaf -aaa -aaa -aaa -aaD -agm -agO -ahu -ahu -ahu -ahu -ahu -ahu -ahu -ahu -aoT -aqb -aib -aib -atE -aib -aoQ -eqA -ayn -azr -aAr -aBr -aCB -aAu -aFq -aGM -aIa -aJq -aKN -aMx -aOg -aPN -aRx -aJq -aqb -aWF -aYj -aZI -bbe -aWB -bdM -bfE -bht -bjv -bjv -bjv -bjv -bjv -brE -bsO -aWB -aqc -bxr -bzp -bAX -bCE -bEs -bGk -bCE -bKh -bMg -bAZ -bQd -bSn -bUr -bWi -bXV -bZM -cbC -cdr -ceT -cgp -chS -cjr -ckS -cmo -ckS -cpk -cqD -crS -ctz -cvg -bWi -bZC -czO -bZD -cCR -cDD -cFt -cGL -cwn -cJN -cLt -cNb -cOP -cQK -cLI -erX -cLI -cLH -cLI -cIm -dbq -dcN -dez -dgk -dhx -djq -dlf -dmz -dnP -dpj -dqL -dst -dtR -duX -dwv -dxE -dyF -dzT -dBp -dCE -dEb -dEb -dEb -dHA -dIm -dIQ -dJK -dKF -dLD -dMG -dNH -dOt -dPl -dQa -dQS -dRO -dSF -dTo -dTS -dUw -dVe -dVM -dWt -dWV -dXv -dWV -dYW -dZF -eai -dZD -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(131,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aax -agl -agP -ahu -aif -eeB -ake -ale -amf -aif -ahu -aic -aqg -ars -ars -atF -aoT -ast -aic -ayo -azr -aAs -aBs -aCC -aAu -aFr -aGN -aIb -aJq -efc -aMw -aOh -aPM -aRy -aJq -aqc -aWF -aYk -aZG -eqM -aWB -bdN -bfF -bhu -bjw -bkK -bmG -bmG -bqp -brF -efB -aWB -aqg -bxr -bzq -bAY -bCF -bEt -bGl -bCF -bKi -bMh -bMi -bQe -bSn -bUr -bWi -bXW -bZN -bWi -cdv -ceS -cgp -cdn -cjs -ckT -cmp -cnI -cpl -bWi -crT -ctA -cvh -bWi -cyi -czP -ceO -czP -cDE -cFu -cGM -cIe -cJO -cLu -cNc -cOQ -cQL -cSa -cNc -cNc -cNc -cYK -cZX -dbr -dcO -deA -dgl -dgm -djr -dlg -dgm -dgp -dgm -dgp -dgm -dgm -dgm -dgm -dgm -dyG -dzU -dBq -dCF -dEc -dEG -dGa -dHB -dHB -dIQ -dJL -dKG -dLE -dMH -dNI -dNI -dPm -dPm -dNI -dNI -dNI -dNI -dNI -dNI -dNI -dNI -dNI -dNI -dNI -dNE -dYX -dZG -eaj -dZD -aaa -aaf -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(132,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aax -aaD -agn -agN -ahu -aig -ajd -akf -akk -ajd -ano -ahu -aoU -aqh -ajl -asE -atG -auZ -ajl -axb -ayp -azs -aAt -aBs -aCD -aAu -aFs -aGN -aIc -aJq -aKP -aMy -aOi -aPO -efk -aJq -aUL -aWF -aYl -aZJ -bbg -aWB -bdO -bfG -bhv -aWB -bkL -bmH -boC -bct -brG -aWB -aWB -bvI -bxr -bzr -bAZ -bAZ -bEu -bGm -bAZ -bAZ -bMi -bOi -bQk -bSr -bUx -bWm -bWi -bWi -bWi -bWj -ceU -cgs -bWj -bWi -bWi -bWi -bWi -bWi -bWi -bWi -bWi -bWi -bWi -bWg -bWg -bWg -bWg -cDF -cFv -cGN -bWg -cJP -cLv -cNd -cOR -cQM -cLv -cLv -cVq -cQQ -cLv -cZY -dbs -dcP -deB -dgm -dhy -djs -dlh -dmA -dnQ -dpk -dqM -dsu -dtS -duY -dww -dgm -dyH -dzV -dBr -dCG -dEd -dEH -dGa -dGa -dGa -dIQ -dFX -dKH -dLB -dIh -dNI -dOu -dPn -dPn -dQT -dRP -dSG -dTp -dTT -dUx -dQV -dVN -dWu -dWW -dXw -dNE -dYY -dZH -eak -dZD -aaf -agg -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(133,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -edo -edC -edo -edo -eev -edo -edo -eex -edo -aaf -abP -adr -agl -equ -ahv -aih -aje -akg -alf -amg -eeG -ahu -aoV -aqi -art -art -art -art -art -art -ayo -azr -aAu -aBt -aCE -aAu -aAu -aGO -aCE -aJq -aJq -aMz -aOj -aPP -aJq -aJq -aUM -aCE -aAu -aZK -bbh -aAu -bdP -bfH -bhw -bjx -bkM -bmI -bmI -bqq -brH -brH -bud -bvJ -bxu -bmI -bBa -bBa -bEv -bBa -bBa -bBa -bMj -bqq -bvJ -bSs -bUy -brN -bXX -brN -cbD -brN -ceV -bUy -brN -brN -brN -bqq -brN -bsZ -brN -brN -ctB -brN -brN -brN -brN -brN -brN -ceV -cFw -cGO -brK -cJP -cLw -cNe -cOS -cQN -cSb -cTO -cVr -cXi -cTO -cZZ -cNp -esb -dez -dgn -dhz -djt -dli -dmB -dnR -dpl -dqN -dsv -dtT -duZ -dwx -dgm -dyI -dyI -dyI -dyI -dyI -cJL -cJL -cJL -cJL -cJL -dac -dac -dLA -dMI -dNI -dOv -dPn -dQb -dQU -dRQ -dSH -dRQ -dTU -dUy -dVf -dVO -dWv -dNI -dOD -dNE -dYZ -dZI -eal -dNE -aaf -agg -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(134,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -eeq -ees -edo -edo -edD -edD -edp -edp -ehm -edD -edD -edC -aax -aax -aax -agl -agN -ahu -aii -ajf -ajj -ajj -ajd -anq -ahu -aoW -aqj -art -asF -atH -ava -eeS -axc -ayq -azt -aAv -aBu -aCF -aDU -aFt -aGP -aId -aJr -aKQ -aMA -aOk -aPQ -aKQ -aTh -aUN -aWG -aYm -aZL -bbi -bcw -bdQ -bfI -bhx -bjy -bkN -bmJ -boD -bqr -brI -brI -eqY -bvK -brI -bzs -brO -bCG -brO -brO -brO -brO -brO -bqv -bQl -bSt -brO -brO -bXY -brO -brO -brO -bBy -brO -brO -brO -brO -bqv -cnJ -cpm -brO -brO -brO -eri -brO -brO -brO -brO -brO -cDG -cFx -boR -cIf -cJP -cLx -cNf -cOT -cQO -cSc -cTP -cVs -cXj -cYL -daa -dbt -cLD -dez -dgo -dhA -dju -dlj -dmC -dnS -dpm -dqO -dsw -dtU -dva -dwy -dgm -dyJ -dzW -dBs -dCH -dEe -cJL -dGb -dcK -dIn -dIR -dJM -dac -dLF -dMJ -dNI -dOw -dPn -dQc -ess -dRP -dSI -dRP -dTV -dUz -dVg -dVP -dPn -dNI -dXx -dNE -dNE -dZJ -dNE -dNE -aaf -aaf -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(135,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aaf -aaf -aaa -aaa -aaa -aaa -aaa -eeq -edl -edp -ehi -edz -edp -edp -edp -edT -edp -edp -edp -een -epc -ack -epC -agl -agN -ahu -aij -ajf -ajd -ajd -amf -anr -ahu -aoW -aqk -art -asG -atI -avb -awf -axd -ayr -azu -aAw -aBv -aCG -aDV -aFu -aGQ -aIe -eqE -aJs -aMB -aOl -aPR -aRA -aTi -aUO -aWH -aYn -aZM -bbj -bcx -bdR -bfJ -bhy -bjz -bkO -bmK -boE -bqs -brJ -brJ -brJ -bvL -bxv -bzt -bBb -bCH -bEw -bGn -bGn -bGn -bGn -bOj -bQm -bSu -bUz -bUz -bXZ -bZO -bUz -bUz -ceW -bEw -chU -bGn -bGn -bOj -cnK -cpn -bnd -crU -bnd -cvi -bnd -bnd -bnd -bnd -bnd -cDH -bmX -cGP -cIg -cJP -cLy -cNg -cOU -cQP -cSd -cTQ -cVt -cXk -cVu -dab -dbo -cLE -dez -dgp -dhB -djv -dlk -dmD -dnT -dpn -dqP -dsx -dtV -dvb -dwz -dxF -dyK -dzX -dBt -dCI -dEf -cJL -dac -dHC -dIo -dac -dac -dac -dLG -dMK -dNI -dOx -dPn -dQc -dQU -dRQ -dSH -dTq -dTU -dUA -dVg -dPn -dWw -dNI -dXy -dNE -dZa -dZK -egR -dNE -aaf -agg -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eaY -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(136,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -eeq -eet -edo -edo -edF -edF -ehk -edp -edp -edF -edF -edC -aax -aax -aax -agl -agQ -ahw -aik -ajg -akh -alg -akh -ans -ahu -aoV -aql -art -asH -atJ -avc -awg -art -ays -azv -aAx -aAx -aCH -aDW -eeV -aAx -aAx -aHb -efd -aHb -aOm -aPS -efd -aHb -aUP -aUP -aYo -aZN -aUP -aUP -bdS -bfK -bhz -aYx -bkP -bmL -boF -boZ -brK -brM -brM -bsV -bxw -bzu -bBc -bCI -bEx -bEx -bId -bKj -bMk -bEx -bQn -bSv -bUA -bqt -bqt -bZP -bqt -cdw -bqu -bQn -bQn -bQn -bQn -cmq -cnL -cpo -cqG -cqH -cqH -cqH -cwA -cqH -cqH -cqH -cCS -bkS -bmZ -boJ -cIh -cJP -cJP -cNd -cOV -cQQ -cJP -cJP -cVu -cXl -cLv -dac -dbu -dcQ -deA -dgq -dhC -djw -dll -dmE -dnU -dpo -dqQ -dsu -dtW -dvc -dwA -dgm -dyL -dzY -dBu -dCJ -dEg -cJL -dGc -dHD -dIp -dIS -dJN -cJM -dLH -dML -dED -dOy -dPo -dQd -dPo -dPo -dPo -dPo -dTW -dUB -dVh -dVQ -dWx -dNI -dXz -dYm -dZb -dZL -ean -dZD -aaf -agg -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(137,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -edo -edC -edo -edo -eev -edo -edo -eex -edo -aaf -abR -adq -ago -agM -ahx -ail -ajh -aki -alh -amh -ant -ahu -aoX -aqm -art -asI -atK -avd -awh -axe -ayt -aqg -aAx -aBw -aCI -aDX -aFv -aGR -aAx -aJt -aKS -aMC -aOn -aPT -aRB -aTj -aUQ -aWI -aYp -aZO -bbk -bcy -bdT -bfL -eft -aUP -bkP -bmL -boG -boZ -brL -brL -brL -bsV -bxx -bzv -bBd -bCJ -bEx -bGo -bIe -bKk -bMl -bOk -bQn -bSw -bUB -bWn -bWn -bZQ -bWn -bWn -efO -bQn -chV -cjt -ckU -bQn -cnM -cpp -cqH -crV -ctC -cvj -cwB -cyj -czQ -cBq -cqH -cDI -bmX -boR -cIi -efY -cLz -cNh -cOW -cQR -cSe -cJL -cVv -cXm -cYM -dac -dbm -ejt -dez -dgr -dhD -djx -dlm -dgm -dgm -dpp -dgm -dgl -dgm -dgm -dgm -dgm -dyM -dzZ -dyI -dyI -dyI -cJL -egw -dHE -dIq -dIT -dJO -dKI -dLI -dMM -dNK -dOz -dPp -dQe -dQW -dRR -dSJ -dTr -dQW -dUC -dVi -dPp -dWy -dWX -dXA -dYn -dZc -dZM -eao -eas -aaa -aaf -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(138,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aax -aaD -agp -agN -ahu -aim -aji -akj -ali -alg -ans -ahu -aoV -aqn -art -asJ -atL -ave -awi -axf -ayu -aqc -aAx -aBx -aCJ -aDY -aFw -aGS -aAx -eeX -aKT -eqH -aOo -aPU -aKT -efm -aUP -aWJ -aYq -aZP -bbl -aUP -aZV -bfM -bhB -aUP -bkP -bmL -boH -bqt -aaa -aaf -aaa -bsV -bxy -bzw -bBe -bCK -bEx -bGp -bIf -bKl -bIf -bOl -bQn -bQn -bUC -bWo -bYa -bWo -cbE -bWo -bQn -bQn -chW -cju -ckV -bQn -cnM -cpp -cqH -crW -ctD -cvk -erD -cwC -czR -cBr -cqH -blb -bmX -cGQ -cIj -cJR -cLA -cLB -cOX -cQS -cSf -cTR -cVw -cXn -cYN -epL -dbv -dcR -deC -dgs -dgs -djy -dln -dmF -dgs -dpq -dgs -cZX -dgs -dgs -dgs -dxG -djy -dAa -dpq -dCK -dEh -cJO -dGe -dHF -dIr -dIU -dJP -cJO -dLJ -esp -dNI -dOA -dPn -dQf -dQU -dRQ -dSH -dRQ -dQU -est -dVg -dVP -dQc -dNI -dXB -dYo -dZd -dZN -eap -eas -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(139,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aax -egV -aax -aaf -aaf -aaf -aaf -aax -egT -aax -aaf -aaf -aaf -aaf -aaf -aax -agl -agN -ahy -ain -ajj -akk -ali -akh -anv -ahu -aoV -aqj -art -asK -atM -eeP -awj -art -ayv -aqb -aAx -aBy -aCK -aDZ -aFx -aGT -aAx -aJv -aKU -aMD -aOp -aPV -aRC -aTl -aUP -aWK -aYr -aZQ -bbm -bcz -bdU -bfN -bhC -aUP -bkP -bmL -boH -bqt -aaa -aaf -aaa -bsV -bxw -bzx -bBf -bCL -bEx -bGq -bIg -bKm -bMm -bOm -bQn -bSx -bUD -bWp -bYb -bZR -cbF -cdx -ceY -bZU -bZU -cjv -ckW -bQn -cnM -cpq -cqI -crX -ctE -cvl -cvl -cvl -czS -cBs -cqH -cDJ -bmX -cGR -cIk -cJS -cLB -cNi -cOY -cLI -cOW -cTS -cVx -cXo -cYO -cKc -dbw -dcM -deD -cLA -cLB -djz -dlo -dmG -dnV -dpr -dqR -dsy -dqR -dmG -dqR -dpr -esl -dAb -dBv -dCL -dEi -dEI -dGf -dHG -dIs -dIV -dJQ -dac -dLK -dIi -dNI -dOB -dPq -dQg -dQX -dRS -dSK -dRS -dQX -dUD -dQX -dVR -dWz -dWY -dXC -dYp -dZe -dZO -eap -eas -aaf -agg -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(140,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaa -aaa -aaf -aaa -aaa -aaf -aaa -aax -ack -aax -aax -aax -aax -aax -aax -ack -aax -aaa -aaf -aaa -aaa -aaa -aaD -ago -agR -ahu -eeA -ajk -akl -alj -ami -anw -ahu -aoY -aqo -art -art -art -art -art -art -ayw -eqC -aAx -aBz -aCL -aEa -aFw -aGU -aAx -eeY -aKV -aME -aOq -aPW -aKV -efn -aUP -aWL -aYs -aZR -bbn -aUP -aZV -bfO -bhD -aUP -bkP -bmL -boH -bqt -aaa -aaf -aaa -bsV -bxz -bzy -bBg -bCM -bEy -bGr -bIh -bKn -bMn -bMs -bQn -bSy -bUE -bWq -bUE -bWq -bUE -cdy -ceZ -cgt -chX -cjw -ckX -bQn -cnM -eiR -cqH -crY -ctF -cvm -cvm -cvm -czT -cBt -cCT -cDK -bmY -cGS -cIk -cJS -cLC -cNj -cOZ -cQT -cSg -cTT -cVy -cXp -cYP -epM -dbx -dcS -deE -dgt -dhE -djA -dlp -dmH -dlp -dps -dqS -dsz -dmH -dmH -dwB -dxH -dhE -dAc -dhE -dCM -dhE -cJM -dGg -dHH -dIt -dIW -dJR -dac -dLL -dMN -dNI -dOC -dPr -dPn -dQY -dRT -dSH -dTs -dTX -dTq -dQU -dVS -eaZ -dNI -dXD -dYq -dZf -dZP -eaq -dNE -aaf -agg -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(141,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aay -aaD -aaD -aaD -aaD -aaD -aax -aax -aaD -abR -aax -egU -aax -acE -acV -adg -adr -aax -egW -aax -abP -aaD -aax -aax -aaD -aaD -agq -agN -ahu -ahu -ahu -ahu -alk -ahu -ahu -ahu -aoV -aqp -aru -asL -atN -avg -aru -axg -ayx -azw -aAx -aBA -aCM -aEb -aFy -aGV -aAx -aJx -aKW -aMF -aMF -aMF -aMF -aTn -aUP -aWM -aYt -aZS -bbo -aUP -bdV -bfP -bhE -aUP -bkQ -bmL -efy -boZ -aaf -aaf -aaf -bsV -bxA -bzy -bBg -bCN -bEy -bGs -bIi -bKo -bMo -bOn -bQn -bSz -bUF -bWr -bUF -bWr -erq -bWr -cfa -cgu -chY -cjx -ckY -cmr -cnN -cpr -cqH -crZ -ctG -cvn -cwD -cyk -czU -cBu -cCU -cDL -bmX -boR -cIi -cJT -cLD -cNk -cPa -erS -cSh -cTU -cVz -cXq -cYQ -dad -cNp -dcT -deF -dgu -dgu -djB -dgu -dmI -dgu -dpt -dgu -dsA -dsA -dsA -dwC -dxI -dyN -dsA -dsA -dsA -dsE -cJL -dac -dac -dac -dac -dac -dac -dLM -dMH -dNI -dOD -dPs -dQh -dOD -dNI -dOD -dNI -dNI -dOD -dNI -dNI -dNI -dNI -dXE -dNE -dNE -dNE -dNE -dNE -aaf -aaf -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(142,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aas -aas -aas -aaK -aaR -aax -abb -aaP -aaP -abD -abS -aaP -aaP -acq -acF -acF -acF -acF -acF -acF -acF -acF -aeL -acF -acF -afz -afQ -agr -agS -ahz -aip -ajl -akm -all -amj -akm -aom -aoZ -aqq -arv -arv -arv -arv -arv -arv -ayy -azx -aAx -eeT -aCN -eeU -aFz -aAx -aAx -aJy -aKX -aMG -aMG -aMG -aRD -aTo -aUP -aUP -aUP -aUP -aUP -aUP -bdW -bfQ -bhF -bjA -bkP -bmL -boH -bqt -aaa -aaf -aaa -bsV -bxB -bzz -bBh -bCO -bEy -bGt -bIj -bKp -bMp -bOo -bQo -bSA -bUG -bWs -bYc -bZS -cbG -bWs -cfb -bYc -chZ -cjy -ckZ -bQn -cnM -cps -cqH -crY -ctH -cvo -cvo -cvo -czV -cBv -cCV -cDM -eqV -boR -cIi -cJU -cLE -cNk -cPa -cLH -cSi -cTV -cVA -cTW -cTW -cTW -dby -dcU -deG -dgv -dhF -djC -dlq -dlv -dnW -dpu -dqT -dsA -dtX -dvd -dwD -dxJ -dyO -dAd -dBw -dCN -dsE -dEJ -dGh -dHI -dIu -dIX -dJS -dKJ -dLN -dMO -egA -egH -dQi -dQi -dPt -dQi -dQi -dRU -dSL -dTt -dTY -dUE -dVj -dVT -dPA -dWZ -dXF -dYr -dZg -dZQ -aaH -aaH -aaa -aaf -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(143,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aap -aat -aaz -aaE -aaL -aaS -aaV -abc -abh -abh -abh -abh -abh -abh -acr -abh -abh -abh -abh -adJ -abh -abh -abh -abh -abh -abh -afA -aba -agl -agN -ahA -ahA -ahA -ahA -ahA -ahA -ahA -ahA -aoV -aqr -arv -asM -atO -atO -awk -axh -ayy -aqg -aAx -aBC -aCM -aEd -aFA -aGW -aIf -aGY -aGY -aGY -aGY -aGY -aGY -aTp -aUR -aWN -aUQ -aZT -bbp -bcA -eqR -bfR -bhG -bjA -bkR -bmM -boH -bqt -aaa -aaf -aaa -bsV -bxC -bzA -bBi -bCP -bEz -bGu -bIk -bKq -bMq -bOp -bQp -bSB -bUH -bWt -bWt -bZT -cbH -bWt -bWt -bWt -bWt -cjz -cla -cms -cnO -cpt -cqJ -csa -ctI -cvl -cvl -cvl -czW -cBw -cqH -cDN -bna -boR -cIl -cJV -cLF -cNl -cPa -cLI -cSj -cTW -cVB -cXr -cYR -dae -dbz -dcV -deH -dgv -dhG -djD -dlr -dmJ -dmJ -dpv -dqU -dsB -dtY -dve -dwE -dxK -dyP -dAe -dBx -dCO -dEj -dEK -dGi -dHJ -dIv -dIY -dJT -dKK -dLO -dMP -egB -egI -egM -dOF -dPu -dQj -dQj -dQj -dSM -dQj -dQj -dQj -dQj -dVU -dWA -ahL -ahL -ahL -ahL -dZR -aaf -aaf -aaa -agg -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(144,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aas -aas -aas -aaK -aaT -aax -abd -aaQ -aaQ -abE -aaQ -aaQ -aaQ -aaQ -aaQ -aaQ -aaQ -aaQ -adK -aea -aea -aew -aeM -aea -aea -afB -afO -ags -agT -ahB -aiq -ajm -akn -alm -amk -anx -ahA -apa -aqs -arv -asN -atP -avh -arv -arv -ayy -aqc -aAx -aBD -aCO -aEe -aFB -aGX -aGY -aJz -aKY -aMH -aGY -aJA -aRE -aGY -eqF -aGX -aYu -aZU -aZV -aZU -aZV -bfQ -bhH -bjA -bkP -bmL -boH -bqt -aaa -aaf -aaa -bsW -bxD -bzB -bBj -bCQ -bEA -bGv -bIl -bKr -bMr -bGv -bQq -bSC -bUI -bWu -bYd -ecy -cbI -cdz -efP -cgv -cia -cjA -clb -bQq -cnP -cpu -cqH -csb -ctJ -cvp -cwE -cyl -czX -cBx -cqH -cDO -bmX -boR -cIi -cJW -cLG -cNm -cPb -cLB -cSk -cTX -cVC -cXs -cYS -daf -dbA -cXu -deI -dgw -dhH -djE -dls -dmK -dls -dpw -dqV -dsB -dtZ -dvf -dwF -dxL -dwH -dAf -dBy -dCP -dsE -dEL -dGj -ahA -ahA -ahA -ahA -ahA -ahA -dMQ -dNN -dPx -dPx -dOG -dPv -dPx -dPx -dPx -dSN -dQo -dQo -dQo -dQo -dVV -dWB -ahN -dXG -dYs -dZh -dZR -aaf -agg -aaf -agg -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(145,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aay -aaD -aaD -aaD -aaD -aaD -aax -aax -aaD -abP -aax -egT -aax -acG -acW -acW -ads -aax -egT -aax -abR -aaD -aax -aax -aaD -afR -agl -agN -ahC -air -ajn -ako -aln -aml -any -aon -apb -aqt -arv -asO -atQ -avi -awk -axi -ayy -aqg -aAx -aBE -aCM -aEf -aFB -aGX -aGY -aJA -aKZ -aMI -aGY -aPX -aRF -aJA -aGY -aGX -aYv -aZV -bbq -bcB -bdX -bfP -bhI -aUQ -bkS -bmN -boJ -bqu -aaf -aaf -aaf -bsU -bxE -bzC -bBk -bCR -bEy -bGw -bIm -bKs -bMs -bEx -bQn -bQn -bQn -bQn -bQn -bQn -bQn -bQn -bQn -bQn -bQn -bQn -bQn -bQn -cnM -erx -cqH -csc -ctK -cvq -cwF -cvq -czY -cBy -cqH -cDP -bmX -boR -cIi -cJX -cLH -cNk -cPa -cLI -cSl -cTW -cVD -cXt -cYT -dag -dbB -cXu -deJ -dgv -dhH -djF -dlt -dmL -dnX -dpx -dqW -dsC -dua -dvg -dwG -dxM -dyQ -dAg -dBz -dCQ -dEk -dEM -dGk -ahA -dIw -dIZ -dJU -dKL -egy -dMQ -dNN -dPx -dPx -dOH -dPw -dQk -dQZ -dQk -dSO -dPw -dQk -dQZ -dQk -dVW -dWC -dXa -dXH -dYt -dZi -dXb -aaf -aaf -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(146,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaa -aaf -aaa -aaa -aaf -aaa -aax -ack -aax -aax -aax -aax -aax -aax -ack -aax -aaa -aaf -aaa -aaa -aaa -aaD -agl -agN -ahA -ais -ajo -akp -alo -amm -anz -ahA -apc -aqu -arv -asP -atR -avj -arv -arv -ayy -aqc -aAx -aBF -aCP -aEg -aFC -aGX -aGY -aJA -aLa -aMJ -aOr -aPY -aRG -aJA -aGY -aGY -aUP -aZW -bbr -bcC -bdY -bfS -bhJ -bjA -bkP -eqU -boH -bqt -aaa -bsS -bue -bsV -bxF -bzy -bBd -bCS -bEy -bEx -bIn -bKt -bMt -bEx -bQr -bSD -bQr -bQr -bYe -bZV -bQr -bQr -bSD -bQr -bQs -aaa -aaa -cmt -cnQ -cpp -cqH -cqH -ctL -cqH -cqH -cqH -cqH -cqH -cqH -bla -bmX -cGP -cIk -cJY -cLA -cNn -cPc -cLB -cSm -cTY -cVE -cXu -cYU -dah -dbC -dcW -deK -dgx -dhI -djG -dlt -dmM -dnX -djG -dqX -dsB -dtZ -dvg -esj -dxN -dyR -dAh -dBA -dCR -dsE -dEN -dGl -dHK -dIx -dJa -dJV -ako -dLQ -dMR -dNO -dPx -dPx -dOI -dPx -dQl -dRa -dRV -dSP -dPx -dQl -dRa -dRV -dVX -dWB -dXb -dXI -dYu -dZj -dZS -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(147,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aax -egU -aax -aaf -aaa -aaa -aaf -aax -egW -aax -aaf -aaf -aaf -aaf -aaf -aax -agl -agN -ahA -ahA -ajp -akq -alp -amn -ahA -ahB -aib -aqv -arv -arv -atS -avk -awk -axj -ayy -azy -aAx -aBG -aCM -aEf -aFB -aGX -aGY -aJA -aLb -aMK -aGY -edf -aRH -aJA -aGY -aGZ -aYv -aZV -edb -bcD -bdZ -bfP -bhK -bjA -bkP -bmL -boH -bqt -aaa -bsT -buf -bvM -bxG -bzy -bBd -bCN -bEB -bGx -bGx -bGx -bGx -bGx -bQs -bQr -bQr -bQr -bYf -bZW -cbJ -cdA -cdA -cgw -cib -aaf -aaf -cmu -cnR -cpv -cqK -aaf -aaf -cvr -cwG -cym -czZ -cBz -cCW -blb -bmX -boR -cIm -cJZ -cLH -cNk -cPa -cLI -cSn -cTZ -cVF -cXv -cYV -cXu -dbD -cXu -deL -dgv -dhJ -djH -dlt -dmK -dnY -dpy -dqY -dsD -dub -dvh -dwI -dxO -dyS -dAh -dBB -dCS -dsE -dEO -dGm -dHL -dIy -dJb -dJW -dKM -dLR -dMS -dNO -dPx -dPx -dOI -dPx -dQm -dRb -dRV -dSP -dPx -dTZ -dRb -dVk -dVX -dWB -dXc -dXJ -dYv -dZk -dZT -aaf -aaf -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(148,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aaa -aaf -aaa -aaa -abq -abU -abV -acl -abV -abW -abW -abW -abW -adL -acl -abV -abV -aaa -aaa -aaa -aaa -aaD -agp -agU -ahD -afO -ajq -akr -alq -amo -amo -afO -apd -aqw -arw -arv -atT -avl -arv -arv -ayy -aqc -aAx -aBH -aCQ -aEh -aFB -aGZ -aGY -eqF -aJA -aML -aGY -aPZ -aRI -aTq -aGY -aWO -aYw -aZX -bbs -aZX -bbs -bfT -bhL -bjA -bkP -bmO -boH -bqt -aaa -bsT -bug -bvN -bvP -bzy -bBl -bCT -bEC -bGx -bIo -bKu -bMu -bOq -bQt -bSE -bUJ -bWv -bYg -bZX -cbK -cdB -cfd -cgx -bQs -aaa -aaa -cmt -cnM -cpw -cmt -csd -cqK -cvs -cwH -cyn -cAa -cBA -cCX -blb -cFy -boR -cIi -cKa -cLI -cNo -cPd -cLH -cSo -cTY -cVG -cXw -cYW -dai -dbE -dcX -deM -dgv -dhK -djI -dlu -djI -djI -djI -dqZ -dsB -duc -dvi -dwJ -dxP -dyT -dAi -dBC -dCT -dsE -dEP -dGn -ahA -dIz -dJc -dJX -dKN -dLS -dMT -dNO -dPx -esq -dOI -dPx -dQl -dRc -dRV -dSP -esq -dQl -dRc -dRV -dVX -dWD -dXd -dXK -dYw -dZl -dZR -aaf -agg -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(149,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aaa -aaf -aaa -abp -abq -abV -abY -acm -acs -acH -acH -acH -acH -adM -acm -aei -abV -aaa -aaa -aaa -aaa -aax -ago -agV -ahE -afP -ahE -ahE -ahE -amp -ahE -afP -ahE -aqx -arx -asQ -atU -avm -awl -axk -ayy -aqe -aAx -aBI -aCR -aEi -aFB -aHa -aIg -aGY -aGY -aMM -aGY -aQa -aGY -aGY -aUS -aWP -aUQ -aZY -aZX -bbs -aZX -bfU -efu -aYx -bkP -bmP -boK -bqt -aaa -bsU -buh -bvO -bxH -bzD -bBm -bCU -bED -bGx -bIp -bKv -bMv -bOr -bQu -bSE -bUK -bWw -bYh -bZY -cbK -cdC -cfe -bQr -bQs -cjB -cjB -cmt -cnS -cpx -cqL -cse -ctM -cvt -cwI -cyo -cwI -cwI -cCY -cDQ -cFz -boS -cIi -cKb -cLJ -cNp -cPe -cQU -cSp -cTW -cVH -cXx -cYX -cTW -dbF -dcY -dbF -dgv -dhL -djJ -dlv -dmN -dlv -dpz -dra -dsE -dsB -dvj -dsB -dsE -dyU -dAj -dBD -dCU -dsE -dEQ -dGo -ahA -ahA -ahC -dJY -dKO -ahA -dMQ -egC -dPw -dPw -dOJ -dPx -dQn -dRd -dRW -dSP -dTu -dUa -dRd -dVl -dVX -dWB -dXe -dXL -dYx -dZm -dZR -aaf -agg -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(150,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aaa -aaf -aaa -abp -abF -abW -abZ -acn -acn -acn -acn -acn -acn -acn -acn -aej -abV -abV -abW -abV -aaa -aax -agt -agW -ahF -ait -ajr -aks -alr -amq -anA -aiu -ape -aqy -ary -asR -arv -arv -arv -arv -ayy -azz -aAx -aAx -aAx -aAx -aFD -aHb -aHb -aJB -aJB -aMN -aOs -aQb -aJB -aJB -aHb -aHb -aYx -aUP -bbt -bbt -bbt -bfV -aUP -bjB -bkP -bmQ -boL -boZ -aaf -bsV -bui -bvP -bvP -bzE -bBn -bCV -bEE -bGy -bIq -bKw -bMw -bOs -bQu -bSF -bUL -bWx -bYh -bZZ -ecz -ecz -ecz -ecE -ecG -cjC -clc -cmt -eiP -cpy -cqM -csf -ctN -cvr -cwJ -cyp -cAb -cBB -cvs -cDR -cFA -cGT -cIn -cKc -cIi -cNq -cPf -cIi -cKc -cUb -cTY -cTW -cTY -cTV -dbG -dcZ -deN -dgv -dgv -dgv -dlw -dmO -dmO -dmI -dgv -dsE -dbG -dcZ -deN -dsE -dsE -dsE -dsE -dsE -dsE -dER -dGp -dgB -dIA -dJe -dJZ -dKP -dLT -dMU -dNO -dPx -dPx -dOK -dPx -dQl -dRa -dRV -dSP -dPx -dQl -dRa -dRV -dVX -dWE -ahL -dXk -dYy -dXk -dZR -aaf -agg -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(151,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aaa -aaf -aaa -abp -abF -abW -aca -acn -acn -acI -acI -acI -acI -adN -acn -aek -aex -aeN -aeV -abW -aaa -aax -agl -agX -ahG -aax -ajs -akt -eqx -amr -anB -aaD -apf -aqz -arz -asS -atV -avn -awm -awm -ayA -azA -aAy -aBJ -awm -awm -aFE -awm -awm -awm -awm -aMO -awm -ayA -awm -awm -aUT -aWQ -aYy -awm -awm -awm -bea -bfW -awm -bjC -bkT -bmR -boM -bqt -aaa -bsW -buj -bvQ -bvP -bzF -bBo -bCW -bEF -bGx -bIr -bKx -bMx -bOt -bQv -bQv -bQv -bWy -bYi -caa -cbL -cdD -bQv -bQv -bQv -cjD -cld -cmv -cnP -cpz -cqN -csg -ctN -cvs -cwK -cyq -cAc -cBC -cCW -cDS -cFB -cGU -cIo -cKd -cKd -cNr -cPg -cKd -cKd -cUc -cVI -cVI -cVI -cVI -cVI -cVI -cVI -dgy -cUc -djK -dlx -dmP -dmP -dpA -drb -dgy -dud -cVI -cVI -cUc -cKd -cKd -cKd -cKd -cKd -cPg -dGq -dHM -dIB -dJf -dJf -dKQ -dLU -dMV -egD -egJ -egJ -dOL -dPy -dQm -dRb -dRX -dSP -dPx -dQl -dRb -dVk -dVX -dWB -dXb -egQ -dYz -dZn -dZR -aaf -agg -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(152,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aaf -aaf -aaa -egS -abq -abU -acb -acn -act -ehj -acJ -adh -acJ -adt -ehl -ael -aey -aeO -aeW -abW -aaa -aax -agl -agY -ahH -aax -ajt -aku -als -ams -anC -aaD -apg -aqA -agX -asT -atW -avo -awn -axl -eqB -azB -axl -aBK -axl -axl -aFF -axl -axl -axl -axl -aMP -aOt -aQc -aRJ -aTr -aUU -axl -aYz -axl -eqB -bcE -beb -bfX -axl -bjD -bkU -bmS -boN -bqt -aaa -bsX -buk -bvR -bxI -bzG -bBp -bCX -bEG -bGz -bIs -bKy -bMy -bMy -bQw -bSG -bUM -bWz -bYj -cab -cbM -bWz -cff -bSG -cic -cjE -cle -cmw -cnT -cpA -cqO -csh -ctO -cvs -cwL -cyr -cAd -cBD -cCW -cDT -cFC -cGV -cIp -cKe -cKe -cNs -cPh -cKe -erV -cKe -cVJ -cKe -cKe -cKe -cKe -cKe -cKe -dgz -cKe -cKe -dly -cKe -erV -cKe -drc -dgz -cKe -cKe -eiI -eiK -dyV -eiK -eiK -esn -eiK -dES -dGr -dHN -dIC -cKe -dKa -dKR -dLV -dMW -dNO -dPx -dPx -dOM -dOK -dQl -dRc -dRV -dSP -dPx -dQl -dRc -dRV -dVY -dWF -dXf -dXN -dYA -dZo -dXb -aaf -aaf -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(153,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aaa -aaf -aaa -abp -abF -abW -acc -acn -acn -acH -acH -acH -acH -adO -acn -aem -aez -aeP -aeV -abW -aaa -aax -agl -agX -ahI -aax -aju -akv -akt -akt -anD -aaD -aph -aqB -arA -asU -atX -avp -awo -axm -axm -azC -aAz -aBL -aCS -aEj -aEj -aCS -aIh -aJC -axm -aMQ -axm -axm -aRK -aTs -aUV -axm -aYA -axm -bbu -bcF -bec -bbu -bhN -asU -bkV -bmT -boO -bqt -aaa -bsY -bul -bvQ -eqZ -bzE -bBq -bCY -bEH -bGx -bIt -bKz -erl -bOu -bQu -bQu -bQu -bWA -bYh -bZY -bWx -cdF -bQu -bQu -bQu -cjF -clf -cmt -cnU -cpB -cqP -csi -ctP -cvs -cwM -cys -cAe -cBE -cCW -cDU -cFD -cGW -cIq -cKf -cKf -cNt -cPi -cQV -cSq -cUd -cVK -cXy -cYY -cYY -dbH -cYY -cYY -dgA -cSq -djL -cSq -dmQ -dnZ -dpB -drd -dsF -due -dpB -eiJ -dxQ -dyW -dAk -cSq -cSq -dEl -dET -dGs -dHO -dID -dJg -dKb -dKb -dLW -dMV -egD -egJ -egJ -dON -dPz -dQo -dQo -dQo -dSQ -dPx -dPx -dUF -dPx -dVZ -dWB -dXg -dXO -dYB -dZp -dZS -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(154,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aaa -aaf -aaa -abp -abF -abW -abZ -acn -acn -acn -acn -acn -acn -acn -acn -ecc -abV -abV -abW -abV -aaa -aax -agl -agX -ahJ -aiu -ajv -akw -alr -amt -anE -ait -api -aqy -arB -asV -asW -avq -asW -asW -asW -asW -asW -aBM -aCT -aEk -aEk -aHc -aEk -aBM -aBM -aBM -aBM -ehV -aRL -aTt -ehW -ehV -ehV -aZZ -bbv -bcG -bed -bbv -bhO -bjE -bkW -bmU -boP -boZ -aaf -bsV -bum -bvP -bvP -bzE -bBr -bCZ -bEI -bGA -bIu -bKA -bMw -bOv -bQu -bSH -bUL -bWx -bYh -cad -cbN -cbN -cbN -ecE -ecG -cjG -clg -cmt -cnV -cpC -cqQ -csj -ctP -cvr -cwJ -cyt -cAf -cBF -cvs -cDV -cFE -cGX -cIr -cIw -cIs -cNu -cPj -cQW -cIw -cKs -cVL -cXz -cVL -daj -dbI -dda -deO -eqg -eqg -djM -eqg -eqg -eqg -doa -dre -doa -dcZ -dbG -dwK -dwK -dwK -dAl -dwK -dwK -dwK -dEU -dGt -dgB -dIE -dJh -dKc -dJh -egz -dMX -dNR -dOO -dOO -dOO -dOO -dOO -dOO -dOO -dOO -dOO -dOO -dOO -dOO -dOO -dWG -dXh -dXP -dYC -dZq -dZT -aaf -aaf -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(155,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aaa -aaf -aaa -abp -abq -abV -abY -aco -acu -acI -acI -acI -acI -adP -aco -aen -abV -aaa -aaa -aaa -aaa -aax -ago -agV -ahE -afP -ahE -akx -ahE -ahE -ahE -afP -ahE -aqC -arB -asW -atY -avr -awp -axn -ayB -azD -aAA -aBM -aCU -aEk -aFG -aHd -aIi -aJD -aLc -aMR -aBM -aQd -aRM -aTu -aUW -aWR -ehV -baa -bbw -bcH -bee -bfY -bhP -bbv -bkW -bmV -boQ -bqt -aaa -bsS -bun -bvO -bxJ -bzH -bBs -bDa -bEJ -bGx -bIv -bKB -bMA -bOw -bQu -bSE -bUN -bWB -bYh -bZY -ecA -cdG -cfg -bQr -bQs -cjB -cjB -cmt -cnW -cpD -cqR -csk -ctQ -cvu -cwN -cyu -cwN -cwN -cvu -cDW -cFF -cGY -cIs -cKg -cLK -cNv -cPk -cQX -cSr -cKs -cVM -cXA -cYZ -cXz -dbJ -ddb -cVL -eqg -dhM -djN -dlz -dmR -eqg -dpC -drf -doa -duf -dvk -dwK -dxR -dyX -dAm -dBE -dCV -dwK -dEV -dGu -dgB -dgB -dJi -dJi -dJi -dgB -dMQ -egF -egL -dPA -dUG -dPA -dPA -dPA -dPA -dPA -dPA -dPA -dUG -dPA -dPA -dPA -dXi -dXQ -dYD -dZr -dZR -aaf -agg -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(156,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aaa -aaf -aaa -aaa -abq -abU -abV -acl -abV -abW -abW -abW -abW -adL -acl -abV -abV -aaa -aaa -aaa -aaa -aaD -agu -agZ -ahK -afO -ajw -aky -alt -amo -amo -afO -apj -aqD -arC -asW -asW -asW -asW -asW -asW -azE -asW -aBM -aCV -aEl -aFH -aHe -aIj -aJE -aLd -aMS -aEk -aQe -aRN -aTv -aUX -aWS -aYB -bab -bbx -bcI -bef -bbz -bhQ -bbv -bkW -bmW -boR -bqt -aaa -bsT -buo -bvS -bvP -bzy -bBt -bDb -bEK -bGx -bIw -bKC -bMB -bOx -bQs -bSE -bUO -bWC -bYl -cae -ecA -cdH -cfh -cgx -bQs -aaa -aaa -cmt -cnV -cpE -cmt -csl -cqK -cvs -cwH -cyv -cAa -cBG -cCX -bkP -bmW -cGY -cIs -cKh -cLL -cNw -cPl -cQY -cSs -cUe -cVN -cXB -cZa -dak -dbK -ddc -deP -eqg -dhN -djO -dlA -eqo -eqg -dpD -drg -dsG -dug -dvl -dwK -dxS -dyY -dAn -dBF -dyY -dwK -dEW -dGv -dHP -aaa -aaf -aaa -aaf -aaa -dMY -dMY -dMY -dMY -dMY -dMY -dMY -dRe -dRY -dRe -dMY -dMY -dUH -dMY -dMY -dRe -dXj -dXR -ahM -dZs -dZU -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(157,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aax -egV -aax -aaf -aaa -aaa -aaf -aax -egV -aax -aaf -aaf -aaf -aaf -aaf -aax -agl -agN -ahL -ahL -ajx -akz -alu -amu -ahL -ahN -aeX -aqE -arD -asW -atZ -aua -awq -ejv -ayC -azF -aAB -aBN -aCW -aEl -aFI -aHf -aIk -aJF -aLe -aMT -aOu -aQf -aRO -aTw -aUY -aWT -aYC -bac -bby -bcJ -beg -bfZ -bhR -bjF -bkW -bmX -boR -bqt -aaa -bsT -bup -bvT -bxK -bzy -bBd -bCN -bEB -bGx -bGx -bGx -bGx -bGx -bQs -bQr -bQr -bQr -bYm -caf -cbO -cdA -cdA -cgw -cib -aaf -aaf -cmu -cnX -cpF -cqK -aaf -aaf -cvr -cwO -cyw -cAg -cBH -cCW -bkP -bmX -cGY -cIt -cKi -cLM -cNx -cPm -cQZ -cSt -cUf -cVO -cXC -cZb -cZb -dbL -ddd -deQ -eqg -dhO -djP -dlB -dmS -dob -dpE -drh -dsH -duh -dvm -dwL -dxT -dyZ -dAo -dBG -dCW -dwK -dEX -dGw -dHP -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaa -aaa -dMY -dPA -dMY -dPA -dMY -aaf -aaf -aaf -dMY -dPA -dXk -dXS -dXk -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(158,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaa -aaf -aaa -aaa -aaf -aaa -aax -ack -aax -aax -aax -aax -aax -aax -ack -aax -aaa -aaf -aaa -aaa -aaa -aaD -agv -equ -ahL -aiv -ajy -akA -alv -amv -anF -ahL -apk -aqF -arE -asW -aua -avs -awr -axo -ayD -azG -aAC -aBO -aCX -aEm -aFJ -aHg -aIl -aIl -aLf -aMU -aOv -aQg -aRP -aTx -aUZ -aWU -ehW -bad -bbz -bcK -beh -bga -bhS -bjG -bkX -bmY -boS -bqt -aaa -bsU -bue -bsV -bxL -bzy -bBd -bCN -bEL -bEL -bIx -bKD -bMC -bEL -bQr -bSI -bQr -bQr -bYn -cag -cbP -bQr -bSI -bQr -bQs -aaa -aaa -cmt -cnY -cpG -cqS -cqS -ctR -cqS -cqS -cqS -cqS -cqS -cqS -cDX -bmX -cGY -cIt -cKi -cLL -cNy -cPn -cLM -cSu -cUg -cVP -cXD -cZc -dal -dbM -dde -deR -dgC -dhP -djQ -dlC -dmT -doc -dpF -dri -dsI -dui -dvn -dwK -dxU -dza -dAp -dBH -dCX -dwK -dEY -dGx -dHP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dMY -epO -dMY -epO -dMY -aaa -aaa -aaa -dMY -epO -dXk -epS -dXk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(159,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aay -aaD -aaD -aaD -aaD -aaD -aax -aax -aaD -abR -aax -egW -aax -acK -acY -adi -adr -aax -egU -aax -abP -aaD -aax -aax -aaD -afR -agl -agN -ahM -aiw -ajz -akB -alw -amw -anG -aoo -apl -aqG -arF -asX -aub -avt -aws -axp -ayE -azH -aAD -aBP -aCY -aEn -aFK -aHh -aIm -aJG -aLg -aBM -aBM -aQh -aRQ -aTy -aUZ -aWV -eib -bae -bbz -bcL -bei -bbz -bhT -bjH -bkS -bmZ -boJ -bqu -aaf -aaf -aaf -bsS -bxM -bzI -bBj -bDc -bEM -bGB -bIy -bKE -bMD -bEL -bEL -bEL -bQC -bQC -bQC -bQC -bQC -bQC -cfi -cfi -cfi -cfi -cfi -cfi -eiQ -eiS -cqS -csm -ctS -cvv -cwP -cyx -cAh -cBI -cqS -bkP -bmX -cGY -cIs -cKj -erQ -cNx -cPo -cLO -cSv -cUh -cVQ -cXE -cZd -dam -dbN -cZb -deS -eqg -dhQ -djR -dlD -dmU -eqg -dpG -drj -dsJ -duj -dvo -dwM -dxV -dxX -dAq -dBI -dxW -dwK -dEZ -dGy -dHP -aaa -aaa -aaa -aaa -dJk -dKS -dKT -dKT -dKU -dKU -dKT -dKT -dRg -dRZ -dSR -dKT -dKU -dKU -dKU -dKT -dRg -dKT -dXT -dKT -dKT -dKT -dKT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(160,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aau -aau -aau -aaM -aaR -aax -abb -aaP -aaP -abG -aaP -aaP -aaP -acq -acF -acZ -acF -acF -acF -acF -acF -acF -aeQ -acF -acF -afz -afP -agw -aha -ahN -aix -ajA -akC -alx -amx -anH -ahL -apm -aqH -arG -asY -auc -avu -awt -axq -ayF -azI -aAE -aBN -aCZ -aEo -aFL -aEo -aEo -aJH -aEo -aMV -aOw -aQi -aRQ -aTz -aVa -aWU -ehW -baf -bbA -bcM -bej -bby -bhU -bjI -bkV -bmX -boR -bqt -aaa -aaf -aaa -bsY -bxN -bzJ -bBd -bDd -bEL -bGC -bIz -bIB -bME -bOy -bQy -bSJ -bUP -bWD -bYo -cah -cbQ -bQC -cfj -cfj -cid -cjH -clh -cfi -cnV -cpH -cqT -csn -ctT -cvw -cwQ -cwQ -cAi -cBJ -cqT -cDY -bmY -cGZ -cIs -cKk -cLL -cNx -cPp -cLM -cSw -cKs -cVR -cXF -cXF -cXF -dbO -cXF -deT -dgD -dgD -dgD -dgD -dgD -dod -dpH -drk -dsK -duk -dvp -dwN -dxS -dzb -dAr -dBJ -egt -dwK -dFa -eso -dHQ -aaa -aaa -aaa -dJj -dKd -dKT -dLY -ehr -dNT -dNT -dPB -dMZ -dOS -ehs -dOS -dMZ -dNT -dNT -dNT -ehr -dOS -dKT -dXU -dYF -dZt -dZV -dKT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(161,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaq -aav -aaA -aaF -aaN -aaS -aaW -abc -abh -abh -abh -abh -abh -abh -acr -abh -ada -abh -abh -adJ -abh -abh -abh -abh -abh -abh -afA -aba -agx -ahb -ahL -ahL -ahL -ahL -ahL -ahL -ahL -ahL -ajD -aiB -arH -asZ -aud -avv -awu -axr -ayG -azJ -aAF -aBQ -aBQ -aEp -aFM -aHi -aBQ -aBQ -aLh -aHi -aOx -aQj -aRR -aTA -aVb -aWX -ehW -baf -bbz -bcK -bek -bbz -bhR -bjF -bkY -bna -boR -bqt -aaa -aaf -aaa -bsV -bxC -bzA -bBu -bDe -bEN -bGD -bIA -bKF -bMF -bOz -bQz -bSK -bUQ -bWE -bYp -cai -cbR -bQC -cfj -cfj -cie -cjI -cli -cmx -cnZ -cpI -cqU -cso -ctU -cvx -cwR -cyy -cAj -cBK -cCZ -cDZ -bna -cGY -cIu -cKl -cLN -cNx -cPq -cLL -cSx -cUe -cVS -cXG -cZe -dan -dbP -ddf -deU -dgD -dhR -djS -dlE -dmV -dod -dpI -drl -dsL -dul -dvq -dwN -dxW -dxW -dAq -dBI -dxX -dwK -dEX -dGA -dHP -aaa -aaa -aaa -dJj -dKd -dKU -dLZ -dNa -dNa -dNa -dNa -dNa -dNa -dNa -dNa -dNa -dNa -dNa -dNa -dNa -dWH -dXl -dXU -dXU -dXU -dZV -dKU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(162,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aau -aau -aau -aaM -aaT -aax -abd -aaQ -aaQ -abH -aaQ -aaQ -aaQ -aaQ -aaQ -adb -aaQ -aaQ -adK -aec -aea -aew -aeR -aea -aea -afB -afS -agj -ahc -aeX -aiy -ajB -akD -aly -aly -anI -agA -agA -aqI -arI -asZ -aue -avw -awv -axs -ayH -azK -aAG -aBQ -aDa -aEq -aFN -aHj -aIn -aJI -aLi -aMW -aOy -aQk -aRQ -eqI -aUZ -aWY -ehW -baf -bbz -eqQ -bei -bbz -bhV -bbv -bkW -bmX -boR -bqt -aaa -aaf -aaa -bsV -bxO -bzK -bBv -ere -bEO -bGE -bIB -bKG -bMG -bOA -bQA -bSL -bQC -bWF -bYq -caj -cbS -bQC -cfk -cfk -cif -cjJ -clj -cfi -coa -cpG -cqS -csp -ctV -cvy -cwS -cyz -cAk -cBL -cqS -bkP -bmX -cGY -cIs -cKm -cLL -cNx -cPp -cLM -cSy -cKs -cVT -cXz -cZf -cXz -dbQ -ddg -deV -dgD -dhS -djT -dlF -dmW -dod -dpJ -drm -dsM -dum -dvr -dwN -dxS -dzc -dAs -dBK -dCZ -dwK -dFb -dGB -dHP -aaa -aaa -aaa -dJj -dKd -dKU -dLZ -dNa -dNU -dNU -dNU -dNU -dNU -dNa -dNU -dNU -dNU -dNU -dNU -dNa -dWH -dKT -dXV -dXU -dXU -ehw -dKT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(163,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -acv -acL -adc -aaG -aaG -acv -aed -aeo -aaG -aaG -aeX -afm -aeX -aeX -agy -ahd -aeX -aiz -ajC -ajC -alz -amy -anJ -aop -ahg -aqJ -arJ -asZ -aue -avv -aww -axt -ayI -azL -aAH -aBQ -aDb -aEr -aFO -aHk -aIo -aJJ -aLj -aMX -aOz -aQl -aRS -aTB -aUZ -aWZ -aYD -bag -bbz -bcL -bei -bbz -bhW -bbv -bkW -bmX -efz -boZ -aaf -aaf -aaf -bsV -bxP -bzy -bBd -bDf -bEL -bGF -bIB -bKH -bMH -ebJ -bOB -bSM -bQC -bWG -bYr -cak -cbT -cdI -cfl -cfk -cig -cjK -clk -cmy -cob -cpJ -cqS -csq -ctW -cvz -cwT -cyA -cAl -cBM -cqS -bkP -eqV -cGY -cIs -cKn -cLM -cNx -erR -cLL -cSz -cIs -cVU -cXH -egd -cKs -dbR -ddh -deW -dgD -dhT -djU -dlG -dmX -dod -dpK -drn -dsN -dun -dvs -dwN -dxX -dxW -dAq -dBI -dDa -dwK -dEZ -dGC -dHQ -aaf -aaa -aaa -dJk -dJk -dKT -dLZ -dNa -dNV -dOQ -dPC -dQp -dNV -dNa -dSS -dQp -dUb -dOR -dSS -dNa -dWH -dKU -dXV -dXU -dZu -dZV -dKT -dKT -dRZ -dKU -dKT -dKT -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(164,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaG -aaX -aaG -abi -abr -abI -abX -acd -aaG -acw -acM -add -adj -adu -adQ -aee -adQ -aeA -aaG -aeY -afn -afn -aeX -agz -ahe -aeX -aiA -ajD -aeX -aeX -aeX -afF -aeX -aeX -aeX -arK -asZ -auf -avx -awx -axu -aua -azM -aAI -aBQ -aDc -aEs -aFP -aHl -aIp -aJK -aLk -aMY -aOA -aQm -aRT -aTC -aVc -aXa -ehV -bah -bag -bcN -bek -bgb -bhX -aZZ -bkZ -bmX -boR -bqt -aaa -aaf -aaa -bsV -bxz -bzy -bBd -bDg -bEL -bGG -bIC -bKI -bIB -bOC -bQB -bSN -bUR -bWH -bYr -cal -cbU -bUP -cfm -cgz -cih -cjL -cll -cmz -coc -cpK -cqS -cqS -ctX -cvA -cwU -cyB -cAm -cBN -cqS -cEa -bmX -cHa -cIv -cKo -cLO -cNz -cPr -cLM -cSA -cUi -cVV -cXI -cZh -dao -dbS -ddi -deX -dgE -dhU -djU -dlH -dmY -doe -dpL -dro -dsO -duo -dvt -dwN -dxY -dzd -dAt -dBL -dDb -dwK -dEX -dGA -dHP -aaa -aaa -aaa -dJj -dKd -dKT -ehp -dNa -dNT -dNT -dNT -dNT -dNT -dNa -dNT -dNT -dNT -dNT -dNT -dNa -dWH -dKT -dXW -dXU -dZv -dZW -dKT -eat -eax -eaD -eaL -dKT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(165,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aaH -aaU -aaY -abe -abj -abs -abJ -abJ -ace -acp -acx -acN -ade -adk -adv -eqt -aef -adR -aeB -aeS -aeZ -afo -afC -aeX -aeX -aeX -aeX -aiB -ajE -aeX -alA -amz -anK -amz -apn -aeX -arL -asZ -asW -avy -awy -asW -ayJ -asW -asW -aBQ -aBQ -aEt -aFQ -aHm -aBQ -aBQ -aEp -aMZ -aOx -atc -aRU -aTD -ata -aXb -aXb -aXf -bbB -bcO -bel -aXf -aXb -aXb -bla -bmX -boR -bqt -aaa -aaf -aaa -bsV -bxw -bzL -bBc -bCL -bEL -bGH -bID -bKJ -bMI -bEL -bQC -bQC -bQC -bWI -bYs -cam -cbV -bQC -cfn -cgA -cii -cjM -clm -cfi -cod -ery -cqV -cqS -ctY -cvB -cwV -cyC -cAn -cBO -cDa -cDL -bmX -cGY -cIt -cKp -cLM -cNx -cPm -cLL -cSA -cUj -cUu -cXJ -cZi -dap -dbT -ddj -deY -dgE -dhV -djV -dlI -dmZ -dof -dpM -drp -dsP -dup -dvu -dwN -dxZ -dze -dAu -dBM -dDc -dwK -dEY -dGz -dHP -aaa -aaa -aaa -dJj -dKd -dKU -dLZ -dNa -dNa -dNa -dNa -dNa -dNa -dNa -dNa -dNa -dNa -dNa -dNa -dNa -dWI -dKT -dKT -dXl -dKU -dRZ -dKT -eau -eay -eaE -eaM -dKU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(166,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaG -aaZ -aaG -abk -abt -esv -epT -acf -aaG -acy -adf -adl -esx -abK -abK -aeg -aep -aeC -aaG -afa -afp -afD -afT -agA -ahf -ahO -aiC -ajF -aeX -alB -amA -anL -aor -alC -aeX -arM -ata -aug -avz -awz -axv -ayK -azN -aAJ -avF -aDd -aEu -aFR -aHn -aIq -aJL -aLl -aNa -aOB -aQn -aRV -aTE -aVd -aXc -aYE -bai -bbC -bcP -bem -bgc -bhY -aXb -blb -bmX -boR -bqt -aaa -aaf -aaa -bsV -bxy -bzM -bBw -bxy -bEL -bGI -bIE -bIE -bIB -bOD -bQC -bSO -bUS -bWJ -bYt -can -cbW -bQC -cfo -cfk -cij -cjN -cln -cmA -cnV -cpG -cqW -cqS -ctZ -cvC -cwW -cyD -cAo -cBP -cDb -cDL -bmX -cGY -cIs -cKq -cLL -cNw -cPl -cLM -cSA -cUk -cVX -cLM -cSA -cIs -dbT -ddk -deY -dgE -dhW -djW -dlJ -dna -dog -dpN -drq -dsQ -duq -dvv -dwN -dwK -dwK -dAv -dBN -dwK -dwK -dFc -dGD -dHQ -aaf -aaa -aaa -dJk -dJk -dKT -ehp -dNa -dNU -dNU -dNU -dNU -dNU -dNa -dNU -dNU -dNU -dNU -dNU -dNa -dWH -dKU -dXX -dYG -dZw -dZX -dNc -eav -eav -eaF -eaN -dKU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(167,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aaf -aaG -aaG -abf -abl -abu -abL -abf -acg -aaG -acg -acg -acg -acg -adw -acg -acg -acg -acg -aaG -afb -afq -afE -afU -agB -eqw -afE -aiD -ajG -aeX -alC -amB -anM -amA -apo -aeX -arN -ata -auh -avA -awA -axw -ayL -azO -aAK -avG -awC -aEv -aFS -azQ -awC -awC -aLm -aul -aOC -aQo -aRW -aTF -aVe -aXd -aYF -baj -bbD -bcQ -ben -bgd -bhZ -aXf -bkW -eqV -boU -boZ -brL -brL -brL -bsV -bxx -bzy -bBd -bDh -bEL -bGJ -bIF -bKK -bMJ -bOE -bQC -bSP -bUT -bWK -bYu -cao -cbX -bQC -cfp -cfk -cik -cjO -clo -cfi -cnV -cpG -cqX -cqS -cua -cvD -cwX -cyE -cAp -cBQ -cDc -cDL -bmX -cGY -cIs -cKr -cLP -cNA -cPs -cRa -cSB -cIs -cVY -cXK -cZj -cKs -dbT -esc -deY -dgD -dhX -djX -dlK -dnb -dod -dpO -drr -dsR -dur -dvw -esz -dya -esD -dAw -dBO -dDd -esB -dFd -dGE -dHP -aaa -aaa -aaa -dJj -dKd -dKU -dLZ -dNa -dNV -dOR -dPC -dQp -dNV -dNa -dSS -dOQ -dUb -dUI -dSS -dNa -dWH -dXm -dLZ -dNa -dNa -dZY -dXm -eav -eav -eaG -eaO -dKU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(168,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aaf -aaf -aaf -abf -abm -abv -abM -abf -aaf -aaG -esw -acP -acP -acP -edj -acP -acP -acP -esy -aaG -afc -afr -eqd -afc -aeX -afc -ahQ -afc -aeX -aeX -alD -amC -anM -aos -app -aeX -arN -atb -aui -avB -awB -axx -ayM -azP -aAL -aBR -aDe -aEw -aFT -aFT -ayM -ayM -aLn -auq -aOD -aQp -aRX -aOE -aVf -aXe -aYG -bak -bbE -bcR -beo -bbD -bia -bjJ -blc -bmY -boV -boZ -brM -brM -brK -bsV -bxw -bzN -epE -bCL -bEL -bEL -bEL -bEL -bEL -bEL -bQC -bQC -bQC -bQC -bQC -bQC -bQC -bQC -cfi -cfi -cil -cfi -cfi -cmB -cnL -cpo -cqY -cqS -cqS -cqS -cqS -cqS -cqS -cqS -cDd -bkS -bmZ -boJ -cIw -cKs -cIs -cNB -cPt -cIs -cIw -cKs -cIs -cXL -cIs -cKs -dbT -ddl -deZ -dgF -dgE -djY -dlL -dgE -dod -dpP -drs -dsS -drs -dvx -esz -dyb -dzf -dAx -dBP -dDe -esB -dFe -dGF -dHP -aaa -aaa -aaa -dJj -dKd -dKU -dLZ -dNa -dNT -dNT -dNT -dNT -dNT -dNa -dNT -dNT -dNT -dNT -dNT -dNa -dWH -dXm -dLZ -dNa -dNa -dZY -dXm -eav -eav -eaH -eaP -dKU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(169,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aae -aaf -aaf -abg -abn -abw -ebg -abf -aaa -aaG -acA -acz -acQ -acR -acR -acR -acR -aeq -aeD -aaG -afd -afs -afG -afV -aeX -afn -ebW -aiE -eeC -akE -alB -amC -anN -amE -amE -aqK -arN -atc -auj -avC -awC -axy -ayN -azQ -axA -awC -aDf -aEv -aFU -awC -ayQ -awC -aLo -aNb -aDe -aQq -aRY -aDe -aVg -aXf -aYH -bal -eqO -bcS -bep -bge -bib -aXf -bkW -bnb -boW -bqq -brN -bsZ -brN -bvU -bxQ -bzO -bBx -bxQ -brN -bGK -brN -brN -brN -bqq -bsZ -bSQ -brN -brN -bsZ -brN -brN -brN -brN -cgB -cim -brN -brN -bqq -bkT -cpL -brH -csr -bmI -cvE -cwY -brH -brH -brH -brH -bkT -cFG -ebU -cIg -cKs -cLQ -cNv -cPu -cRb -cRb -cUl -cRb -cXM -cZk -cRb -dbU -ddm -dfa -dat -dhY -djZ -dlM -dnc -doh -dnc -drt -dsT -dnc -ego -dwO -dyc -dzg -dAy -dBQ -dDf -dwO -dFf -dGG -dHQ -aaf -aaa -aaa -dJk -dJk -dKT -dLZ -dNa -dNa -dNa -dNa -dNa -dNa -dNa -dNa -dNa -dNa -dNa -dNa -dNa -dWH -dKU -dXY -dYH -dZx -dYJ -dNc -eav -eaz -eaF -eaQ -dKU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(170,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -abf -abo -abx -abO -abf -aaf -aaG -acA -acQ -acR -acR -acR -acR -acR -acR -aeD -aaG -afe -aft -afH -afW -agC -afn -ahR -aiF -aeX -akF -alE -amD -anO -amC -apq -aqL -arO -atd -auk -avD -awD -axz -ayO -azR -eqD -ayO -aDg -aEx -aFV -aHo -aIr -aJM -aLp -aNc -aOE -aQr -aRZ -awC -aVh -aXb -aYI -bam -bbG -bcT -beq -bgf -bic -aXb -bld -bnc -boX -bqv -brO -bta -buq -brO -brO -bzP -bBy -bCG -buq -brO -eri -brO -brO -bqv -bta -bSR -brO -brO -bXY -brO -brO -brO -brO -bta -boX -eri -brO -bqv -bBy -cpM -brO -brO -bta -brO -brO -brO -brO -cBR -brO -bBy -cFH -boH -cIy -cKs -cLR -cNC -cPv -cLO -cSC -cLO -cSC -cLO -cZl -daq -dbV -ddn -dfb -dgG -dhZ -dka -dlN -dnd -doi -dnd -dru -dsU -dlN -dvz -dwP -dyd -dzh -dAz -dBR -dDg -dEm -dFg -dGH -dHP -aaa -aaa -aaa -dJj -dKd -dKU -dLY -dNb -dNU -dOS -dOS -dNU -dNU -eht -dNU -dNU -dNU -dOS -dOS -dNb -dLY -dKT -dRZ -dKT -dKT -dZZ -dKT -eau -eaA -eaI -eaR -dKU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(171,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aaf -abg -abg -aby -abg -abg -aaf -aaG -acA -acR -acR -acR -adx -acR -acQ -acR -aeD -aaG -eez -aft -afG -afX -agD -ahh -ahS -aiG -aeX -akG -afn -amE -amE -amA -alB -aqM -arP -atc -aul -avE -awC -awC -axA -azQ -axA -axA -awC -awC -axA -aHp -awC -eqG -aLm -aul -awC -aQs -aSa -axA -aVi -aXb -aXb -aXf -bbH -bcO -ber -aXf -aXb -aXb -ble -bnd -boY -bqs -brP -btb -bur -bvV -brP -bzQ -bBz -bBz -bEP -bGL -brP -brP -bMK -bqs -bQD -bSS -bUU -brJ -bYv -brJ -brJ -cdJ -cfq -cgC -cin -cjP -brJ -bqs -cof -cof -cra -css -cuc -brJ -bYv -brJ -brJ -cdJ -brJ -cEb -cFI -cHb -cIz -cKs -cLS -cND -cPw -cRc -cRc -cUm -cRc -cRc -cRc -cRc -dbW -ddo -dfc -dav -dia -dia -dlO -dlO -doj -dlO -drv -dlO -dus -dvA -esB -esC -dzi -dAA -dBS -esE -esB -dEY -dGA -dHP -aaa -aaa -aaa -dJj -dKd -dKT -dKT -dNc -dKU -dOT -dOT -dKU -dRh -dKT -dKT -dKT -dKT -dUJ -dUJ -dKT -dKT -dKT -dXZ -dYI -dZy -ehx -dKT -eaw -eaB -eaJ -eaS -dKT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(172,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -abg -abz -abg -aaf -aaf -aaG -acA -acR -acR -edi -ady -acR -acR -acR -aeD -aaG -afg -afs -afI -afY -agE -ahi -ahT -aiH -aeX -akH -alF -amF -amC -amB -apr -aqM -arQ -atc -aum -avF -awE -axA -ayP -azS -aAM -awC -awG -awC -ayP -aHq -awG -awC -aLq -auq -aOF -aQp -aSb -aTG -aVj -aXb -aYJ -ban -bbI -bcU -bes -bgg -bid -aeX -blf -aeX -boZ -boZ -brQ -btc -bus -bvW -bxR -boZ -boZ -cmX -bEQ -cmX -bIG -bIG -bIG -bOF -bQE -bST -bUV -bWL -bWM -bWM -bWM -bWM -cfr -cgD -bWP -bWM -bWM -bWM -bWM -cpN -crb -cst -cud -cvF -cvF -cvF -cvF -cvF -cDe -cDe -cFJ -cHc -cDe -cDe -cLT -cLT -cPx -cRd -cSD -cLT -cLT -cXN -cSD -dar -dbX -ddp -dfd -cIu -cIs -cWd -cWd -cIs -dok -dpR -drw -dsV -dol -dvB -dol -dol -dol -dol -dol -dol -dol -dEY -dGI -dHQ -aaf -aaa -aaa -dJk -dJk -dKT -dMa -dNd -dNW -dOS -dOS -dQq -dRi -dKT -dST -dTv -dUc -dOS -dOS -dWa -dWJ -dKT -dYa -ehv -dKS -dKT -dKT -dKT -dRZ -dKU -dKT -dKT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(173,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abg -epB -abg -aaf -aaf -aaG -acA -acR -acQ -acR -adz -acR -acR -acR -aeD -aaG -afh -aft -afJ -afZ -agF -ahh -ahU -ahX -aeX -akI -alG -afs -anP -amC -aps -aqM -arR -atc -aun -avF -awF -awC -awG -azS -aAN -awC -ayP -axA -aFW -aHp -awG -axA -aLm -auq -aOG -aQt -aSc -aTH -aVk -aXg -aYK -aYF -bbJ -bcQ -bet -bgh -bie -bjK -blg -aeX -aaa -aaf -aaa -btd -but -bvX -aaa -aaf -aaa -cmX -bER -cmX -bIH -bKL -bML -bIG -bQF -bSU -bUW -bWM -bYw -cap -cbY -cdK -cfs -cgE -cfu -cjQ -clp -cmC -cog -bWM -crc -csu -boH -cvF -cwZ -cyF -cAq -cvF -cDf -cEc -cFK -cHd -cIA -cKt -cLU -cNE -cPy -cRe -cSE -cUn -cVZ -cXO -cZm -cVZ -dbY -ddj -dfe -cIs -dib -dkb -dkb -dne -dol -dpS -drx -dsW -dut -dvC -dwQ -dye -dzj -dAB -dBT -dDh -dol -dEY -dGx -dHP -aaa -aaa -aaa -dJj -dKd -dKU -dMb -dNe -dNX -dNa -dNa -dQr -dRj -dSb -dOS -dTw -dUd -dUd -dUd -dWb -dWK -dKT -dYb -dYJ -dZz -eaa -dKT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(174,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aae -aaf -aae -aae -aaf -aae -aaa -aaf -aaf -aaf -abA -aaf -aaf -aaa -aaG -acA -acQ -acR -acR -acR -acQ -acR -acR -aeD -aaG -afi -aft -aft -afZ -agD -ahj -ebX -aiI -eeC -akJ -alH -amG -akG -aot -apt -aqM -arK -atc -auo -avG -awG -axA -ayQ -azS -aAO -awC -aDh -axA -aDf -aHq -ayP -awC -aLr -aNd -aOH -aQu -aSd -aTI -aVl -aXh -aYL -bao -bbK -bcV -beu -bgi -bif -bjL -blh -aeX -aaa -bqw -bqw -bte -buu -bqw -bqw -bqw -aaa -cmX -bES -cmX -bII -bKM -bMM -bOG -bQG -bSU -bUX -bWN -bYx -caq -cbZ -cbZ -cft -cgF -caq -caq -caq -caq -cbZ -bWN -crd -erz -boH -cvF -cxa -cyG -cAr -cvF -cDg -cEd -cFL -cHe -cEd -cKu -cLU -cNF -cPz -cRf -cSF -cUo -cWa -cXP -cZn -das -dbZ -ddq -dfe -cKs -dic -dkc -dlP -dnf -dom -dpT -dry -dsX -duu -dvD -dwR -dyf -dzk -dAC -dBU -dDi -dol -dFa -dGJ -dHP -aaa -aaa -aaa -dJj -dKd -dKU -dMc -dNf -dNY -dNa -dNa -dQr -dRj -dSb -dOS -dTx -dUe -dUe -dUe -dWc -dWK -dKT -dYa -dYK -dLZ -eaa -dKU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(175,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aae -aaf -aae -aae -aaa -aaa -aaf -aaa -aaa -aae -aae -aaf -aae -aaf -aak -aaf -aae -aaf -aaG -acA -acB -acR -acQ -acR -acR -acR -aer -aeD -aaG -afj -aft -afs -aga -aeX -ahk -ahV -aiJ -aeX -aeX -aeX -afu -afu -aeX -alJ -aqN -arS -alJ -aup -avG -awH -awC -ayR -azT -aAP -awC -awH -ayN -ayR -aHr -awH -awC -aLs -aNe -aNf -aQv -aSe -aTJ -aVm -aNg -aYM -bap -bbL -bcW -bev -bgj -big -aeX -afn -aeX -aaf -bqw -brR -btf -but -btj -bxS -bqw -aaf -cmX -bET -bGM -bIJ -bKN -bMN -bOH -bQF -ern -bUW -bWO -bYy -car -cca -cdL -cfu -cgG -cio -car -cfu -cfu -cfs -bWO -cre -csv -cue -cvF -cxb -cyH -cAs -cvF -cDh -cEe -cFM -cHf -erP -cKv -cLU -cNG -cPA -cRg -cSG -cUp -cWb -cXQ -cZo -cWb -dca -ddr -dff -cIs -did -dkd -dlQ -dng -dom -dpU -drz -dsY -duv -dvE -dwS -dyg -dzl -dyg -dBV -dDj -dol -dFa -dGK -dHQ -aaa -aaa -aaa -dJj -dKd -dKT -dMd -dNg -dNZ -dOU -dPD -dQs -dRk -dRh -dSU -dTy -dUf -dSa -dSa -dLY -dWL -dKT -dLY -dYL -dZA -eaa -dKT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(176,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aaa -aaa -aaf -aaa -aaa -aai -eba -aan -aaa -aaa -aaf -aaa -aaa -aaf -aal -aaa -aae -aaf -aaG -acB -acS -acS -acS -acS -acS -acS -acS -aer -aaG -aeX -afu -afu -aeX -aeX -aeX -ahW -aeX -aeX -aaf -aaf -aaH -aaH -aaf -alI -aqO -arT -alJ -auq -avH -awI -awI -ayS -awI -awI -awI -awI -awI -awI -awI -awI -awI -aLt -aNf -aOI -aQw -aSf -aTK -aVn -aXi -aYM -bap -bbM -bcX -bew -bgk -aXb -aeX -amC -aeX -aaa -bqw -brS -btg -buv -bti -bxT -bqw -aaa -cmX -bER -cmX -bIK -bKO -bMO -bOI -bQH -bSV -bUY -bWP -bYz -car -ccb -cdL -cfv -cgH -cip -cjR -clq -cmD -coh -cpO -crf -csw -cuf -cvF -cxc -cyI -cAt -cvF -cvF -cvF -cFN -cHg -cDg -cKw -cLU -cLT -cPB -cRh -cSH -cLT -cLT -cPx -cZp -dar -dcb -ddk -deY -cKs -die -dke -dlR -dnh -dom -dpV -drA -dsZ -duw -dvF -dwT -dyh -dzm -dAD -dBW -dDk -dol -dFh -dGL -dHP -aaa -aaa -aaa -aaa -dJk -dKS -dKT -dKU -dKU -dKU -dKU -dKT -dKT -dRZ -dKT -dKU -dKU -dKU -dKU -dKU -dKT -dKT -dKU -dYM -dYM -dKU -dKT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(177,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aai -eba -aan -aaa -aai -aaj -aan -aaa -aai -eba -aan -aaa -aaf -abA -aaf -aae -aaf -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaG -aaf -aaH -aaH -aaf -aeX -ahl -ebY -aiK -aeX -aaf -alI -alI -alI -alJ -alJ -aqP -arU -alJ -aur -avI -awJ -axB -ayT -ayT -aAQ -aAQ -ayT -aEy -aAQ -aAQ -aDi -aJN -aLu -aNf -aOJ -aQx -aSg -eqJ -aVo -aNf -aYN -baq -bbN -bcX -bex -bgj -bih -aeX -edh -aeX -aaa -bqw -brT -bth -buw -bvY -bxU -bqw -aaa -cmX -coB -cmX -bIL -bKP -bMP -bIG -bQF -bSU -bUW -bWM -efK -car -car -cdL -cfu -cgG -car -car -car -cmE -efT -bWM -crg -csx -boH -cvF -cxd -cyJ -cAu -cBS -cDi -cEf -cFO -cHh -cIB -cDg -cKs -cNH -cPC -cRb -cSI -cUq -egc -cRb -cRb -dat -dcc -esc -deY -cIs -dib -dkb -dkb -dni -dol -dpW -drB -dta -dux -dvG -dwU -dyi -dzj -dAE -dBX -dDl -dol -dFi -dGM -dHP -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(178,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aaa -aai -aaj -aan -aaa -aai -aaj -aan -aaa -aai -aaj -aan -aaa -aaf -abA -aaa -aaf -aaf -aaf -aaf -aaa -aaf -aaf -aaf -aaa -aaf -aaa -aaf -aaf -aaf -aaf -aaf -aaf -aeX -ahm -ahY -aiL -aeX -aaf -alI -amH -anQ -aou -apu -aqQ -arV -alJ -aus -avJ -avJ -avJ -avJ -awH -aAR -awH -aDi -aEz -aEz -aEz -aIs -aJN -aLv -aNf -aOK -aQy -aSh -aTL -aVp -aNg -aYO -bar -bbF -bcX -eqO -bgl -bii -aeX -blj -aeX -aaa -bqw -brU -bti -bux -bti -bxV -bqw -aaa -cmX -coB -cmX -bIG -bIG -bIG -bIG -bQI -bSW -bUZ -bWM -bYB -bYB -bYB -cdM -cfw -cgI -bYB -bYB -bYB -cmF -coj -bWM -crh -csu -boH -cvG -cxe -cyK -cAv -cBT -cDj -cEg -cFP -cHi -cIC -cDg -cKs -cNI -cLM -cLL -cNw -cUr -cLM -cLL -cLM -cIt -dcd -ddk -dfg -cIu -cIs -cWd -cWd -cIs -dok -dpR -drC -dsV -dol -dvH -dol -dol -dol -dol -dol -dol -dol -dch -dGN -cKs -cKs -dJl -dJp -dJp -dJp -dJp -aaa -dOV -dMh -dJp -dJr -dJp -dJq -dTz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(179,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aaf -aai -aaj -aan -aaf -aai -aaj -aan -aaf -aai -aaj -aan -aaf -aaf -abA -aaa -aae -aae -aaf -aae -aae -aae -aaf -aae -aae -aae -aae -aae -aaa -aaf -aaa -aaa -aaf -aeX -ahn -ahZ -aiM -aeX -aaf -alI -amI -anR -anR -apv -aqR -arW -alJ -aut -avK -awK -axD -ayU -azU -aAS -aBS -aDj -aEA -awK -awK -awK -awK -aLw -aNg -aOL -aQz -aSi -aTM -aVq -aNg -aYP -bas -bbO -bbF -bbF -bgm -bij -aeX -aeX -aeX -aaf -bqw -brV -btj -buy -btj -brR -bqw -aaf -cmX -bEV -bGN -bIM -bKQ -bMQ -bIM -bQJ -bSX -bVa -bWM -bYC -cas -ccc -cdN -cfx -cgJ -ciq -cjS -clr -cmG -cfs -bWM -cri -csy -cug -cvF -cxf -cyL -cAw -cvF -cvF -cvF -cFK -cHd -cDg -cDg -cKs -cNJ -cKp -cKp -cSJ -cPw -cRc -cRc -cRc -dav -dbW -dds -dfh -dav -dif -cZh -cZh -cZh -don -dif -drD -cZh -cZh -cZh -dwV -cZh -dzn -dif -dif -dDm -dEn -dFj -dGO -dHR -dIF -dJm -dKe -dKV -dMe -dJp -aaf -dOW -dPE -dQt -dRl -dSc -dSV -dTA -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(180,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aai -aaj -aan -aaa -aai -aaj -aan -aaa -aai -aaj -aan -aaa -aaf -aak -aaf -aae -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aaf -aaf -aaH -aaf -aaf -aaa -aaa -aaf -aeX -aeX -aeX -aeX -aeX -aaf -alJ -amJ -alJ -alJ -apw -aqS -ejy -alJ -aaf -aaf -aaf -axE -ayV -azV -aut -azV -aDk -axE -aaf -aaf -aaf -aaf -aaf -aNh -aOM -aQA -aSj -aTN -aVr -aNh -aYQ -bat -bbP -bbG -bey -bgn -bik -bjM -aaf -aaa -aaa -bqw -bqw -bqw -bqw -bqw -bqw -bqw -aaa -bDi -bDi -bGO -bDi -bKR -bMR -bIM -bQK -bSU -bVb -bWM -bYD -cat -ccd -cdO -cfy -cgK -cir -cjT -cls -cmH -cok -bWM -crg -csu -cuh -cvF -cxg -cyM -cAx -cBU -cDk -cvF -cFQ -cHj -cID -cID -cLV -cNK -cNK -cRi -cLV -cIs -cWd -cWd -cIs -daw -dbY -ddt -dfi -dgH -dig -cXR -cWe -cXR -cWe -dpX -drE -cXR -cWe -erZ -dfi -cXR -cWe -dAF -dfi -dDn -dEo -dFk -dGP -dHS -dDn -dJn -dKf -dKW -dMf -dJp -aaa -dJp -dPF -dQu -dRm -dSd -dSW -dJp -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(181,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aaf -aae -aae -aaf -aai -aaj -aan -aaa -aaf -aak -aaf -aaa -aai -aaj -aan -aaa -aaf -aaw -aaa -aae -aaa -aaa -aaa -aaa -aaH -aaf -aaf -aaH -aaa -aaa -aaH -aaa -aaf -aaa -aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -alI -amK -anS -aov -apw -aqT -arX -alJ -aaa -aaa -aaa -axF -ayW -azW -aAT -azW -aDl -aEB -aaa -aaa -aaa -aaa -aaf -aNi -aON -aQB -aSk -aTO -aVs -aXj -aYR -bau -bbQ -bcZ -aXf -bgo -aYR -bgp -aaf -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaa -bDi -efH -bGP -bIN -bIO -bMS -bDi -bQL -bSU -bUW -bWM -bYE -cau -cce -cdP -cfz -cgL -cis -cjU -clt -cmI -col -bWM -crg -csu -cuh -cvF -cxg -erF -cAy -cvF -cvF -cvF -cFQ -cHj -cIE -cKx -cLW -cNL -cPD -cRj -cLV -cUs -cKi -cSu -cZq -cIs -dce -ddu -dfj -dat -dih -dkf -dih -dnj -dih -dpY -drF -dih -duy -dih -dfl -dnj -dzo -dih -dfl -dDo -cNP -dFl -dGQ -dHT -dIG -dJo -dKg -dKX -dMg -dJp -aaf -dOX -dPG -dQv -dRn -dSe -dSX -dTB -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(182,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aaa -aaf -aaa -aaa -aaf -aak -aaf -aaf -aaf -aaw -aaf -aaf -aaf -aak -aaf -aaf -aaf -aaw -aaf -aae -aaf -aaH -aaf -aaf -aaH -aaa -aaa -aaH -aaf -aaf -aaH -aaf -aaf -aaf -aae -aae -aaf -aaa -aae -aae -aae -aaf -alI -amK -anT -aow -apx -aqU -arX -alI -aaa -avL -avL -avL -ayX -azX -avL -azX -aDm -avL -avL -avL -aaa -aaa -aaf -aNj -aOO -aQC -aSl -aTP -aVt -aNj -aaf -bav -bbR -bda -bez -bav -aaf -aaf -aaf -aaf -aaf -aaf -aae -aae -aae -aae -aae -aaf -aaf -bDj -bEX -bGQ -erj -bKS -bMT -bDi -bQL -bSU -bUW -bWM -bYF -cav -ccf -cdQ -cfA -cgM -cit -cjV -clu -cmJ -col -bWM -crj -csz -cui -cvF -cxh -cyO -cAz -cBU -cDl -cvF -cFK -cHj -cIF -cKy -cLX -cLX -cLX -cRk -ega -cUt -cWe -erZ -cZr -dax -dbZ -ddv -dfe -dgI -dgI -dgI -dgI -dnk -dlS -dpZ -dlS -dgI -dgI -daA -dwW -dyj -cKs -daA -dwW -dyj -cKs -dch -dGR -cKs -cKs -dJl -dJp -dKY -dJp -dJp -aaa -dOY -dPH -dQw -dRo -dSf -dSY -dOY -aaa -aaf -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(183,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aag -aah -aah -aah -aah -aah -aao -aar -aaw -aaw -aaw -aaO -aaw -aaw -aaw -aaw -aaw -aaa -aaf -aaa -aaH -aaa -aaa -aaH -aaf -aaf -aaH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aaf -alJ -amK -anU -aox -apy -aqV -arY -alI -aaa -avL -awL -axG -axG -azY -aAU -azY -azY -aEC -avL -avL -aIt -aaa -aaf -aNg -aNg -aQD -aSm -aTQ -aNg -aNg -aaa -baw -bbS -bdb -beA -baw -aaa -aaa -aaa -aaa -aaH -aaH -aaH -aaH -aaH -aaH -aaH -aaa -aaa -bDj -bEY -bGR -bIP -bKT -bMU -bOJ -bQM -bSY -bVc -bWQ -bYG -caw -ccg -cdR -cfB -cgN -ciu -cjW -clu -cmH -com -bWM -crg -csu -cuh -cvF -cxi -cyN -cAA -cvF -cvF -cvF -cFQ -cHj -cIG -cKz -cLY -cNM -cLY -cRl -cNK -cUu -cWf -cXS -cZs -cIt -dbY -ddj -dfe -dgI -dii -dkg -dgL -dnl -doo -dqa -drG -dtb -dgI -dvI -cNx -dyk -cKs -dvI -cNx -dyk -cKs -dFm -dGS -cDe -aaa -aaa -dJp -edg -dJp -aaa -aaa -dJp -dPI -dQx -dRp -dSg -dSZ -dJp -aaf -agg -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(184,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aaa -aaf -aaa -aaa -aaf -aal -aaf -aaf -aaf -aaw -aaf -aaf -aaf -aal -aaf -aaf -aaf -aaf -aaf -aae -aaf -aaH -aaf -aaf -aaH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -alJ -amL -anV -aoy -apz -aqW -arZ -alJ -aaa -avL -awM -axH -ayY -axH -axH -axH -axI -aED -aFX -aHs -aIu -aaa -aaf -aNh -aOI -aQE -aSf -aTR -aNh -aaf -aaa -bax -bbT -bdc -beB -bgp -aaa -aaa -aaa -bne -bne -bqx -bne -bne -bqx -bne -bne -bne -aaa -bDi -bEZ -bGS -bIQ -bKU -bMV -bOK -bQN -bSZ -eiF -bWM -bYH -cax -cch -cdS -cfC -cgO -civ -cjX -clv -efS -con -bWM -crg -csA -cuh -cvF -cxj -cyH -cAB -cBV -cDm -cvF -cFR -cHj -cIH -cKz -cLZ -cNN -cPE -cRm -cSL -cKp -cLM -cLL -cSA -cIt -dbY -ddk -dfe -dgJ -dij -dio -dgM -dnm -dop -dqb -drH -dtc -dgI -dvJ -cNw -dyl -cKs -dvJ -cNw -dyl -cKs -dFn -dGT -daM -aaf -aaf -dKh -dLa -dMh -aaf -aaf -dJq -dPJ -dQy -dRq -dSh -dTa -dMh -aaa -agg -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(185,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aae -aae -aae -aaf -aai -aam -aan -aaa -aaf -aal -aaf -aaa -aai -aam -aan -aaf -aae -aaf -aae -aae -aaa -aaH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aaf -alJ -amM -alJ -alJ -alI -alI -alJ -alJ -aaa -avL -ehn -axI -axI -axI -axH -axI -axH -aEE -aFX -aHt -aIu -aaa -aaf -aNk -aOP -aQF -aSn -aTS -aVu -aaf -aYS -aYS -aYT -bdd -aYT -aYS -aYS -aaa -aaa -bnf -bpa -bqy -brW -btk -buz -bvZ -bne -bzR -aaa -bDj -bFa -bGT -bIR -bKV -bMW -bOL -bQO -bTa -bVd -bWR -bWR -cay -cci -bWR -bWR -bWR -bWM -bWM -bWM -bWM -bWM -bWM -crk -csB -cuk -cvF -cxc -cvF -cAC -cvF -cvF -cvF -cFS -cHj -cII -cKA -cMa -cNO -cPF -cRn -cLV -cUv -cWg -cXT -cZt -cIs -dbY -esc -dfe -dgI -dik -dio -dgL -dnn -doq -dqc -drI -dtd -dgI -dvK -dwX -dym -cKs -dvK -dwX -dym -cKs -cHd -dGU -cDe -aaa -aaa -dJq -dKZ -dMh -aaa -aaa -dJp -dPK -dQz -dRr -dSi -dTb -dJp -aaf -aaf -aaf -agg -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(186,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aaa -aai -aam -aan -aaa -aai -aam -aan -aaa -aai -aam -aan -aaa -aae -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaH -aaa -aaH -aaf -aaf -aaf -aaf -aaa -aaa -avL -awN -axI -axH -axH -axH -axH -axH -aEE -aFY -aHt -aIu -aaa -aaf -aNi -aOQ -aQG -aSo -aTT -aNi -aaf -aYS -bay -bbU -bde -beC -bgq -aYS -aaa -aaa -bnf -bpb -bqz -brX -btl -buA -bwa -bxW -bzR -aaa -bDj -bFb -bGU -bIS -bKW -bMX -bOM -bQP -bTb -bVe -bWR -bYI -caz -ccj -cdT -cfD -bWR -ciw -cjY -clw -cmL -coo -cpP -crl -csC -cul -cvH -cxk -cyQ -cAD -cBW -clx -cEh -cFR -cHj -cID -cKB -cMb -cID -cID -cLV -cLV -cKs -cKs -cKs -cKs -cIw -dce -ddw -egj -dgI -dil -dkh -dil -dno -dgI -dqd -dgI -dgI -dgI -dvL -dwY -dyn -cKs -dvL -dwY -dyn -cKs -dFo -dGV -cDe -aaa -dJp -dJp -dLb -dJp -dJp -dJp -dJp -dOh -dQA -dRs -dMh -dKl -dJp -dJp -dJp -aaf -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(187,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aai -aam -aan -aaf -aai -aam -aan -aaf -aai -aam -aan -aaf -aae -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aae -aae -aaa -aaa -aaa -avL -awO -axJ -ayZ -axJ -eho -ayZ -axJ -aEF -avL -avL -aIv -aaa -aaf -aNl -aOR -aNg -aNg -aTU -aVv -aaf -aYT -baz -bbV -bdf -beD -bgr -bil -aaa -aaa -bnf -bpc -bqA -brY -btm -buB -bwb -bne -bzR -aaa -bDi -bFc -bGV -bIT -bKX -bMY -bDi -bQQ -bTc -bVf -bWS -bYJ -caA -cck -cdU -cfE -bWR -cix -cjZ -clx -cmM -cop -cpQ -crm -cpQ -cum -cpQ -cxl -cpQ -cAE -cBX -clx -cEi -cFT -cHk -cIJ -cKC -cMc -cKs -cPG -cKs -cSM -cUw -cWh -cXU -ege -cKs -egg -ddj -dfe -dgI -dim -dim -dlS -dnp -dor -dqe -drJ -egn -dgI -dvM -dwZ -dyo -cKs -dvM -dwZ -dyo -cKs -dFp -dGU -cDe -aaf -dJp -dKi -dLc -dMi -dNh -dOa -dOZ -dPL -dQB -dRt -dSj -dTc -dSj -dUg -dJp -dVm -dWd -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(188,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aaa -aai -aam -aan -aaa -aai -aam -aan -aaa -aai -aam -aan -aaa -aae -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aaa -aaH -aaa -aaa -aaa -aaa -aaa -aaa -avL -avL -avL -avL -avL -avL -aBT -avL -avL -avL -avL -aaa -aaa -aaf -aaf -aaf -aaa -aaa -aaf -aaf -aaf -aYS -baA -bbW -bdg -beE -bgs -aYS -aaa -aaa -bne -bne -bqB -bne -bne -bne -bwc -bne -bne -aaa -bDi -bDi -bGW -bIU -bDi -bDi -bDi -bQQ -bTd -bVg -bWT -bYK -caB -ccl -cdV -efQ -cgP -ciy -cka -clx -cmM -cop -cpQ -crn -erA -cun -cvI -cxm -cpQ -cAE -cBY -clx -cEj -cFU -cHl -cIK -cKD -cMd -cNP -cPH -cNP -cSN -cUx -cWi -cXV -cZv -day -dcg -ddx -dfl -dgK -din -dim -dlS -dnq -dos -dqf -drK -dtf -dgI -cKs -cKs -cKs -cKs -cKs -cKs -cKs -cKs -cHd -dGW -daM -aaa -dJq -dKj -dLd -dMj -dNi -dOb -dPa -dPM -dQC -dRu -dSk -dTd -dTC -dUh -dUK -dVn -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(189,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aaa -aai -ebb -aan -aaa -aai -aam -aan -aaa -aai -ebb -aan -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aaH -aaH -aaH -aaH -aaH -aaH -aaH -aaH -aaa -aaa -aaa -aaf -aaa -aaf -aaf -aaf -aaf -aaa -aaa -aYS -aYS -aYT -bdh -aYT -aYS -aYS -aaa -aaa -aaa -bpd -bqC -bpd -aaa -bpd -bwd -bpd -aaa -aaa -bDi -bFd -bGX -bIV -bKY -bMZ -bDi -bQR -ern -bVh -bWU -bYL -caC -ccm -cdW -cfG -cgQ -ciz -ckb -clx -cmM -cop -cpR -cro -csD -cuo -cvJ -cxn -cpR -cAE -cBZ -clx -cEk -cFV -cHm -cIL -cKE -cMe -cKs -cPI -cKs -cSO -cUy -cWj -cUz -cZw -daz -dbW -dds -dfm -dgL -dio -dim -dlS -dnr -dot -dqg -drL -dtg -dgI -dvN -daK -dyp -cYg -dAG -dBY -dDp -dgN -dFq -dGU -cDe -aaf -dJp -dKk -dLe -dMk -dNj -dOc -dPb -dPN -dQD -dRv -dSl -dTe -dTD -dUi -dUL -dVo -dWe -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(190,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aaa -aaa -aaf -aaa -aaa -aai -ebb -aan -aaa -aaa -aaf -aaa -aaa -aae -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aae -aaf -aaf -aaa -aaa -aaf -aaa -aaa -aaa -aaH -aaH -aaH -aaH -aaH -aaa -aaf -aaf -aaf -bpe -bqD -bpf -aaf -bpf -bwe -bpe -aaf -aaf -bDi -bFe -bGY -bIW -bKZ -bNa -bDi -bQL -bSU -bVi -bWR -bYM -caD -ccn -cdX -cfH -bWR -ciA -ckc -clx -cmN -coq -cpQ -crp -csE -cuo -cvK -cxo -cpR -cAF -cmN -clx -cvP -cvP -cvP -cvP -cKF -cMf -cNQ -cPJ -cRo -cSP -cUz -cWk -cXW -cZx -daA -dbY -ddk -dfn -ecW -dip -dim -dlS -dns -dou -dqh -drM -dth -dgI -dvO -dxa -cZA -dgO -dAH -dcj -dDq -dgO -cWn -dGX -cDe -aaa -dJp -dKl -dLf -dMl -dNk -dKl -dKl -dKl -dOY -dRw -dJq -dTf -dTE -dKl -dJp -dJp -dJp -dJp -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(191,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aae -aaf -aae -aae -aaa -aaa -aaf -aaa -aaa -aae -aae -aaf -aae -aae -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aae -aaa -aaf -aaa -aaa -aaf -aaa -aaa -aaf -aaa -aaa -aaf -aaa -aaa -aaf -bjN -blk -bjQ -bpf -bqE -bpf -bjQ -bpf -bwf -bpf -bzS -bzS -bDi -bDi -bDi -bDi -bDi -bDi -bDi -bQS -bTe -bVj -bWR -bYN -bYN -bYN -bYN -bYN -bWR -ciB -ckd -clx -cmO -cor -cpS -crq -csF -cuo -cvL -cxp -erA -cAG -cCa -clx -cEl -cFW -cHn -cvP -cKG -cMg -cKs -efZ -cKs -cSQ -cUA -cWl -cXX -cZy -cKs -dbY -ddy -dfe -dgI -diq -dki -dlS -dnt -dov -dqi -drN -dti -dgI -dvP -dxb -dyq -dyq -dyr -dyq -dDr -dyq -dyq -dyq -dyq -aaf -dJp -dKm -dLg -dMm -cHL -egG -dKl -dPO -dQE -dKl -dSm -dTg -dTF -dUj -dUM -dVp -dWf -dJp -aaf -agg -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(192,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aae -aaf -aae -aae -aaf -aae -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aae -aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -bjO -bll -bng -bpg -bqF -brZ -bjQ -buC -bqF -bpg -bzT -bBA -bDk -bFf -bGZ -bIX -bGZ -bGZ -bON -bQT -bTa -efI -bWV -bDn -caE -cco -efM -bdi -cgR -ciC -eru -clx -ejB -cos -cpQ -crr -csG -cup -cvM -cxq -cyR -cAH -cCb -cDn -cEm -cFX -cHo -cvP -cKH -cHc -cKs -cKs -cKs -cKs -cKs -cKs -cKs -cKs -cKs -dch -ddz -dfo -dgI -dgI -dgI -dgI -dno -dgI -dqj -dgI -dgI -dgI -dvQ -dxc -dyq -dzp -dAI -dBZ -dDs -dAJ -dFr -dGY -dyq -aaa -dJr -dKn -dLh -dMn -dNm -dOe -dKl -dPP -dQF -dRx -dSn -dTh -dTG -dUk -dUN -dVq -dWg -dWM -aaa -aaf -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(193,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaf -aaa -aaa -aaa -aae -aaa -aaf -aaa -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaf -bjP -blm -bnh -bph -bqG -bsa -btn -buD -bwg -bxX -bzU -bBB -bDl -bFg -bDl -bDl -bLa -bDl -bDl -bQU -bTf -bVl -bWW -bYO -caF -ccp -cdZ -bdi -cgS -ciD -ckc -clx -cmP -cot -cpT -crs -csH -cuq -cvN -cxr -cvN -cAI -cBX -csB -cEn -cFY -cHp -cvP -cKI -cMh -cNR -cNR -cRp -cRp -cUB -cWm -cXY -cZz -daB -dci -ddA -dfp -dgN -dir -dkj -dkj -dnu -dow -dqk -drO -eiG -duz -dvR -dxd -dyq -dzq -dAJ -dCa -dDt -dAJ -dAL -dGZ -dHU -aaa -dJs -dKo -dLi -dMo -dNn -dOf -dMh -dPQ -dQG -dRy -dSo -dTi -dTH -dKl -dUO -dVr -dKl -dJp -aaf -agg -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(194,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaf -aaa -aaf -aaa -aaa -aaf -aaa -aaa -aaa -aae -aaf -aae -aaa -aaa -aaf -aaa -aaa -aaa -aaf -aaa -bdi -beF -bgt -bim -bjQ -bln -bni -bpi -bqH -bsb -bto -buE -bwh -era -bzV -bBC -bDm -bFh -bFh -bIY -bFh -bFh -bFh -bQV -bTg -bVm -bWX -bDn -caG -ccq -cea -bdi -cgT -ciB -cke -clx -cmP -cou -cpU -crt -csI -cur -cvO -cxs -cyS -cAJ -cCd -cDo -cEo -cFZ -cHq -cvP -cKJ -cMi -cMi -cPL -cRq -cSR -cUC -cWn -cWn -cZA -daC -dcj -ddB -dfq -dgO -dis -cMi -dcq -daL -dox -dql -daL -eiH -cWq -dvS -dxe -dyq -dzr -dAK -dCb -dDu -dEp -dFs -dHa -dHU -aaf -dJp -dKp -axC -dMp -dNo -dOg -dKl -dPR -dQH -dRz -dSp -dTj -dTI -dUk -dUP -dVs -dWg -dWM -aaa -aaf -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(195,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aaa -aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aae -aaa -aae -aaa -aaa -aBU -aEG -aEG -aBU -aBU -aaa -bdi -efr -bgu -bin -bjQ -blo -bnj -bpj -bqI -bsc -bjQ -buF -bwi -bxY -efF -bjQ -bDn -bFi -bHa -bdi -bDn -bFi -bHa -bdi -bTh -bVn -bWY -bdi -bdi -bDq -ceb -bdi -cgU -ciE -ckf -clx -clx -clx -cpV -clx -clx -clx -clx -clx -clx -clx -clx -clx -cEp -cGa -cHr -cvP -cvP -cvP -cvP -cvP -cvP -cSS -cUD -cWo -cWo -cWo -daD -cZH -cWo -cWo -dgP -dgP -dgP -dgP -dgP -doy -dgP -dgP -dgP -dgP -dvT -dxf -dyq -dzs -dAL -dAL -dDv -dAJ -dAL -dHb -dyq -aaf -dJp -dKl -egx -dMq -dNp -dOh -dKl -dPS -dQI -dKl -dSq -dTk -dTJ -dUj -dUQ -dVt -dWf -dJp -aaf -agg -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(196,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aaf -aaf -aaH -aaa -aaf -aaa -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aae -aaf -aaf -aBU -aVw -aXk -aYU -aBU -aaf -bdi -beH -bgv -bio -bjQ -blp -bnk -bpk -bqJ -bsd -blk -buG -bwh -bxZ -bzX -bjQ -bDo -erg -bHb -bIZ -bLb -bFj -bHb -bIZ -bTi -bVo -bWZ -bIZ -caH -ccr -cec -bdi -cgV -ciF -ckg -cly -cmQ -cov -cpW -cru -csJ -cus -cvP -cxt -cyT -cAK -cCe -eiT -eiZ -cGb -cHs -eiT -eci -cCg -cNS -cxw -cvP -cST -cUE -cWo -cXZ -cZB -daE -dck -ddC -dfr -dgP -dit -dkk -dlT -dnv -doz -dqm -drP -dtj -dgP -dvU -esk -dyq -dzt -dAM -dCc -dDw -dEq -dFt -dHc -dyq -aaf -aaf -dJp -dLk -dMr -dNl -dOi -dJp -dJp -dJp -dJp -dJp -dOY -dJp -dJp -dJp -dJp -dJp -dJp -aaf -aaa -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(197,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aaa -aaa -aaH -aaf -aaf -aaf -agg -agg -agg -aaf -aaf -aaf -aaf -aaf -aaa -aaa -aBU -aVx -aXl -aYV -aBU -aaa -bdi -beI -bgw -bip -bjQ -blq -bnl -bpl -bqK -bse -bjQ -buH -bwj -bya -bzY -bjQ -bDp -bFk -bHc -bAb -bLc -bit -bOO -bIZ -bTj -bVp -bXa -bIZ -caI -ccs -ced -bdi -cgW -ciG -ckh -clz -cmR -cow -cpX -crv -csK -cke -cvP -cxu -cyT -cyT -cyT -cDp -cEq -eje -cHt -cIM -cyX -cyX -cNT -cPM -cvP -erW -cUF -cWo -cYa -cZC -daF -dcl -ddD -dfs -dgP -diu -dkl -dkl -dkl -doA -dkl -dkl -dqm -dgP -dvP -cSS -dyq -dzu -dAN -dAN -dDx -dAN -dFu -dHd -dyq -aaf -aaf -dJq -dLl -dMs -dNq -dOj -dMh -aaa -aaf -aaf -aaf -aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -agg -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(198,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aaf -aaf -aaH -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaf -aBU -aBU -aBU -aBU -aBU -aBU -aVy -aXm -aBU -aBU -aBU -bdi -beJ -bgx -biq -bjQ -blr -bnm -bpm -bqL -blk -bjQ -bjQ -bwk -byb -bjQ -bjQ -bDq -bFl -bim -bIZ -bDq -bNb -bOP -bIZ -epG -bVq -epH -bIZ -beF -cct -bOP -bdi -cgX -ciH -cki -cgX -cgT -cox -cmX -cmX -ciB -erB -cvP -cxv -cyU -cAL -cCf -eiU -eja -cGd -cHu -eiU -cKK -cMj -cyX -cPN -cvP -cSS -cUF -cWo -cYb -cZD -daG -dcm -dcl -dft -dgP -div -dkl -dkl -dkl -doB -dkl -drQ -dtk -eqf -dvV -dxg -dyr -dzv -dAO -dAO -dDy -dAO -dAO -dHe -dHU -aaa -aaf -dJp -dLm -dMt -dNr -dOk -dJp -aaf -agg -agg -agg -aaf -agg -agg -agg -aaa -agg -agg -agg -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(199,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aaf -aaf -agg -aaa -aaf -aaf -aaf -aaf -aBU -aNm -aOS -aQH -aSp -aTV -aVz -aXn -aYW -baB -bbX -bdj -beK -bgy -bir -bjR -bir -bnn -bpn -bqM -bir -btp -buI -bwl -byc -bzZ -bir -bDr -bFm -bHd -bJa -bLd -bFm -bOQ -bQW -bTk -bir -bXb -bYP -caJ -ccu -cee -cfI -cgY -ciI -ckj -clA -cmS -coy -cpY -crw -ciB -cut -cvP -cvP -cvP -cvP -cvP -cvP -cEr -cGe -cHv -cvP -cvP -cvP -cvP -cvP -cvP -cSU -cUG -cWo -cYc -cZC -daH -dcn -ddE -dfu -dgP -diw -dkm -dkl -dnw -doC -dkl -drR -dtl -dgP -dvQ -dxh -dyr -dzw -dAL -dCd -dDz -dAI -dCa -dHf -dHU -aaa -aaf -dJp -dJp -dJp -dJp -dJp -dJp -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(200,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -aaf -aBU -aBU -aBU -aBU -aNn -aOT -aOT -aOT -aTW -aVA -aXo -aYX -baC -bbY -bdk -beL -bgz -bis -bjS -bls -bno -bpo -eqW -bqN -bqN -bqN -bwm -byd -efG -bBD -bDs -bFn -bHe -bqN -bLe -bFn -bOR -bqN -bTl -bVr -bjS -bYQ -caK -ccv -cef -cfJ -cgZ -ciJ -ckk -clB -cmT -coz -cpZ -cmX -ciF -cuu -cvP -cxw -cyV -cCg -ech -eiT -eiZ -ejf -ejj -eiT -cKL -cMk -cyY -cxz -cvP -cSV -cUG -cWo -cYd -cZE -cZC -dco -ddF -dfv -dgP -dix -dkl -dkl -dkl -dkl -dkl -drS -dtm -duA -dvW -cSS -dyq -dzx -dAP -dCe -dDA -dEr -dFw -dHg -dyq -aaf -aaf -aaf -aaa -aaa -aaa -aaf -aaf -aaf -agg -agg -aaf -aaf -aaf -agg -agg -agg -agg -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(201,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaa -aaf -aBU -aIw -aJO -aBU -aNo -aOU -aQI -aSq -aTX -aVB -aXp -aYY -baD -bbZ -bdl -beM -bgA -bit -bjT -bgA -bnp -bpp -bgA -bgA -btq -buJ -bwn -bye -bAb -bBE -bDt -bFo -bHf -bJb -bJb -bJb -bHf -bJb -bTm -bVs -bXc -bYR -bDt -ccw -ceg -cfK -cha -ciK -ckl -cgX -cmU -coA -cqa -cmX -csL -cuv -cvP -cxx -cyW -cyX -cyX -cDq -cEs -cGf -cHw -cIN -cyZ -cAO -cyZ -cPO -cvP -cSU -cUG -cWo -cYe -cZF -cZE -cZC -dcl -dfw -dgP -diy -dkl -dkl -dkl -dkl -dqn -drT -dtn -dgP -dvP -drW -dys -dys -dys -dys -dys -dys -dys -dys -dys -aaf -agg -agg -agg -aaf -agg -agg -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(202,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaf -aBU -aHu -eeZ -aBU -aBU -aBU -aBU -aBU -aBU -aVC -aXq -aBU -aBU -bca -bdm -bdm -bdn -biu -bjU -bdn -bnq -bpq -bqO -bdm -bdm -buK -bwo -byf -bdm -bBF -bDu -bBF -bBF -bHg -bLf -bHg -bBF -bBF -bTn -bVt -bXd -bBF -caL -ccx -bdi -bdi -chb -ciL -ckm -cgX -cgW -coB -cqb -cmX -csL -cuw -cvP -cxy -cyX -cAM -cCh -eiU -ejc -ejg -ejl -eiU -cKM -cyZ -cyZ -cPP -cvP -cSW -cUF -cWo -cYf -cZG -daI -dcp -ddG -cZG -dgP -diz -dkn -dlU -dnx -doD -dqo -drU -dto -dgP -dvT -dxf -dys -dzy -dAQ -dCf -dDB -dEs -dFx -dHh -dys -aaf -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(203,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -agg -aaf -aaf -aaa -aaf -aBU -aIx -aJQ -aLx -aNp -aHu -aQJ -aSr -aTY -aVD -aXq -aBU -baE -bcb -bdm -beN -bgB -biv -bjV -blt -bnr -bpr -bqP -bsf -bdm -biB -bkd -byg -bdm -bBG -bDv -bFp -bHg -bJc -bLg -bNc -bOS -bQX -bTo -bVu -bXe -bHg -caM -ccy -ceh -bdi -chc -ciM -ckn -cgX -cmV -coC -cqc -cmX -ciC -cux -cvP -cvP -cvP -cvP -cvP -cvP -cEu -ejh -cHx -cvP -cvP -cvP -cvP -cvP -cvP -cSX -cUH -cWo -cWo -cZH -daJ -cWo -cWo -cWo -dgP -dgP -dgP -dgP -dgP -doE -dgP -dgP -dgP -dgP -dvX -dxi -dyt -dzz -dAR -dCg -dDC -dEt -dFy -dHi -dAV -aaf -aaf -agg -agg -agg -agg -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(204,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -aaf -aaf -aaf -aaf -aBV -aIy -aJR -aLy -aNq -aOV -aQK -aSs -aTZ -aVD -aXr -aBU -baF -bcc -bdn -beO -bgC -biw -bjW -blu -bns -bps -bqQ -bsg -bdm -buM -bwp -byh -bdm -bBG -bDw -bFq -bHh -bJd -bLh -bNd -bOT -bQY -bTp -bVv -bXf -efL -caN -ccz -cei -bdi -chd -ciM -cko -cgX -cmW -coD -cqd -cmX -ciF -ckc -cvP -cxz -cyY -cAN -cCi -eiT -cEv -eji -cHy -eiT -cKN -cMl -cyT -cxt -cvP -cSY -cUI -cWp -cYg -cYg -daK -cWp -ddH -dfy -cWm -diA -cWp -esf -ddH -doF -cWp -cWp -dtp -ddH -dvY -dxf -dys -dzA -dAS -dCh -dDD -dEu -dFz -dHj -dAV -aaf -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(205,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -aBU -aBU -aEG -aBU -aBU -aIz -aJS -aLz -aNr -aHu -aQL -aSt -aUa -aVE -aXs -aBU -aBU -aEM -bdm -beP -bgD -bix -bjX -blv -bnt -bpt -bqR -bsh -btr -buM -bwq -byi -bdm -bBH -bDx -bBG -bDC -bJe -bLi -bNe -bOU -bQZ -bTq -bVw -bXg -bDC -caO -ccA -efN -bdi -che -ciM -ckp -cgX -cmX -coE -cmX -cmX -csL -cke -cvP -cxA -cyZ -cAO -cyZ -cDr -cEt -cGc -cHx -cIO -cyT -cyT -cyT -cPQ -cvP -cSZ -cUJ -cWq -cMi -cMi -daL -dcq -cMi -dfz -cWq -diB -dko -daL -dcq -dcq -dqp -drV -daL -dqp -dvZ -dxj -dys -egs -dAT -dAS -dDE -dAS -dFA -dHk -dAV -aaf -agg -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(206,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aBU -aDn -aEH -aFZ -aHu -aIA -aJT -aLA -aNs -aHu -aHu -aHu -aHu -aVF -aXt -aYZ -aBU -aaa -bdm -beQ -bgD -biy -bjY -biz -bnu -bpu -bqR -bsi -bdm -buN -bwr -efD -bdm -bBI -bDy -bFr -bHi -bHi -bLj -bLj -bHi -bRa -bTr -bVx -bXh -bHi -caP -ccB -cek -bdi -chf -ciM -chh -cgX -aaa -aaa -aaf -coE -csM -cuy -cvP -cxB -cyZ -cyZ -cCj -eiU -ejc -cGg -ejl -eiU -cKO -cMm -cNU -cPR -cvP -cTa -cUK -cEe -cYh -cDe -daM -cDe -cDe -dfA -cDe -dfA -cDe -cDe -daM -cDe -cDe -dfA -eig -eil -dwa -eiv -eig -dzC -dAU -dCi -egu -dEv -dFB -dHl -dys -aaf -agg -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(207,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aBV -aDo -aEI -aGa -aHv -aIB -aJU -aLB -aNt -aHu -aQM -aSu -aTY -aVG -aXu -aZa -aYX -aaf -bdm -beR -bgE -biz -bjZ -blw -bnv -bpv -bqS -bsj -bdm -buM -buM -byg -bdm -bBJ -bDz -bFs -bHi -bJf -bJf -bJf -bOV -bRb -bTs -bVy -bXi -bHi -caQ -ccC -cel -bim -chg -ciN -ckq -cgX -aaf -aaf -cqe -cqe -csN -cuz -cvP -cvP -cvP -cvP -cvP -cvP -cEw -cGa -cHz -cvP -cvP -cvP -cvP -cvP -cvP -cTb -cUL -cqe -cqe -cqe -aaf -cDe -ddI -dfB -cDe -diC -dkp -cDe -aaf -cDe -dqq -drW -eig -duB -eip -dxk -eig -dys -dAV -dys -dys -dys -dAV -dys -dys -aaf -agg -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(208,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aBU -aDp -aEJ -aGb -aHw -aIC -aJV -aLC -aGb -aOW -aQN -aSv -aUb -aVH -aXq -aZb -aBU -aaa -bdn -beS -bgF -biA -bka -blx -bnw -bpw -bqT -bsk -bdm -buO -bws -byk -bdm -bBK -bDA -bFt -bHi -bJg -bLk -bNf -bNf -bNf -bTt -bVy -bXj -bYT -caR -ccB -cem -bdi -chh -ciO -ckr -clC -aaa -aaa -cqe -crx -csO -cuA -cvQ -cxC -cza -cAP -cCk -cDs -cEx -cGh -cHA -cIP -cKP -cMn -cNV -cPS -cRr -cTc -cUM -cWr -cYi -cqe -aaa -dcr -ddJ -dfC -cDe -diD -dkq -daM -aaa -daM -dqr -drX -eig -duC -eiq -abN -eik -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaa -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(209,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aBV -aDq -aEK -aGc -aHx -aID -aJW -aLD -aNu -aHu -aQO -aSt -aUa -aVI -aXv -aHu -aBU -aaf -bdm -beT -bgG -bgG -bkb -bly -bnx -bpx -bgG -bgE -bts -buP -bwt -byl -bdm -bBL -bDB -bFu -bHi -bJh -bLl -bNg -bOW -bRc -bTu -bVz -bXk -bYU -caS -ccD -cen -bim -chi -ciM -cks -cgX -aaf -aaf -cqf -cry -csP -cuB -cvR -cxD -cxD -cxD -cxD -cxD -cEy -cGi -cHB -cxD -cxD -cxD -cxD -cxD -cRs -cvR -cUN -csQ -cYj -cqf -aaf -dcr -ddK -dfD -cDe -diE -dkr -daM -aaf -daM -dqs -drY -eig -duD -eir -dxl -eig -aaf -agg -agg -agg -aaf -agg -agg -agg -aaf -aaf -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(210,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aBU -aDr -aEL -aGd -aHu -aIE -aJX -aLE -aNv -aHu -aHu -aHu -aHu -aVJ -aXq -aZc -aBU -aaa -bdm -beU -bgH -bgH -bkc -blz -bny -bpy -bqU -bsl -btt -buQ -bwu -bym -bdm -bBF -bDC -bBF -bHi -bJi -bLm -bNh -bNh -bNh -bTv -bVA -bXl -bHi -caT -ccE -ceo -bdi -cgX -ciP -cgX -cgX -aaa -aaa -cqf -cry -csQ -cuC -cvS -cxE -czb -csQ -czc -cDt -cEz -cEz -cHC -cIQ -cKQ -csQ -cNW -cNW -cRt -cTd -cUO -cNW -cYj -cqf -aaa -dcr -dcr -cDe -cDe -cDe -daM -daM -aaa -daM -daM -cDe -eik -eik -eis -eik -eik -aaf -aaa -aaa -aaf -aaa -aaa -aaf -aaf -aaa -aaf -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(211,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -aBU -aBU -aEM -aBU -aBU -aIF -aJS -aLF -aNw -aHu -aQJ -aSw -aTY -aVK -aXo -aZd -aYX -aaf -bdm -beV -bgI -biB -bkd -blA -bnz -bpz -bqV -bsm -btu -biB -bwv -byn -bdm -aaf -aaa -aaf -bHi -bJj -bLn -bNi -bOX -bRd -bTw -bVB -bXm -bHi -caU -ccF -caU -bdi -aaa -aaf -aaa -aaa -cmY -aaa -cqf -crz -csQ -cuD -cvT -cxF -czc -csQ -cCl -cDu -cxF -cxF -cHD -cIR -cKR -csQ -cNX -cPT -cNW -cTe -cUP -cWs -cYj -cqf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -eik -eit -eik -aaf -aaa -aaa -agg -agg -aaf -agg -agg -agg -agg -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(212,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -aaf -aaf -aaa -aaf -aBU -aIG -aJY -aLG -aNx -aOX -aQP -aSx -aUc -aVL -aXs -aZe -aBU -aaa -bdm -beW -beW -biC -bke -blB -bnA -bpA -beW -beW -bdm -bdm -bdm -bdm -bdm -aaf -aaa -aaf -bHi -bHi -bHi -bHi -bHi -bHi -bHi -bHi -bHi -bHi -bdi -bVq -bdi -bdi -aaa -aaf -aaf -agg -aaf -aaf -cqf -crA -csQ -cuD -cvU -cxF -czc -csQ -cCl -cDu -cxF -cxF -cxF -cIR -cKR -csQ -cNY -cPU -csQ -cTe -cUQ -cWt -cYk -cqf -aaf -aaa -agg -agg -agg -agg -agg -aaa -agg -aaa -agg -agg -aaf -eik -epN -eik -aaf -aaf -agg -agg -aaa -aaa -aaf -aaa -aaa -aaf -aaf -agg -agg -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(213,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aBV -aIH -aJZ -aLH -aNy -aHu -aQQ -aSy -aHu -aVM -aXw -aBU -aBU -aaf -aaf -beW -bgJ -biD -bkf -blC -bnB -bpB -bqW -beW -aaa -aaa -aaf -aaa -aaa -aaf -aaa -aaf -aaf -aaf -aaf -aaf -bOY -aaf -aaa -aaa -aaf -aaa -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -cqf -crB -csQ -cuD -cvT -cxF -erH -csQ -cCl -cDu -cEA -cxF -cxF -cIR -cKR -csQ -cNZ -cPV -erT -cTf -cUR -cWu -czc -cqf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -dwb -aaf -aaf -aaa -aaf -aaa -aaa -dzD -ebD -dCj -aaa -aaa -aaf -aaa -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(214,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -aaa -aaf -aBV -aII -aKa -aLI -aHy -aHy -aHy -aHy -aBU -aVN -aXo -aYX -aaa -aaf -aaa -beX -bgK -biE -bkg -blD -bnC -biG -bqX -beX -aaf -agg -agg -aaf -agg -agg -agg -agg -aaf -agg -agg -agg -agg -aaf -agg -agg -agg -agg -agg -aaf -agg -agg -aaf -aaf -agg -agg -aaf -aaf -cqf -crC -csQ -cuE -cvV -cxG -czd -csQ -czc -cDv -cEB -cGj -cGj -cIS -cKQ -csQ -cNW -cNW -cRu -cTg -cUS -cNW -cWv -cqf -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -dwc -aaf -aaa -dzD -ebD -dCj -aaa -dzD -dAW -dCj -aaa -dzD -ebD -dCj -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(215,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -aaf -aaf -aBU -aIJ -aKb -aLJ -aHy -aOY -aQR -aSz -aBU -aVO -aXx -aYX -aaf -aaf -aaf -beY -bgL -biF -bkh -blE -bnD -bpC -bqY -bsn -aaa -aaf -aaa -aaa -aaf -aaf -aaa -aaf -aaf -aaf -aaa -aaf -aaf -aaa -aaf -aaa -aaf -aaa -aaa -aaf -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -cqf -crC -csQ -cuF -cvW -cxH -cxH -cxH -cxH -cxH -cEC -cxH -cxH -cxH -cxH -cxH -cxH -cxH -cxH -cTh -cuF -csQ -cWv -cqf -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -dwc -aaf -aaf -dzD -dAW -dCj -aaa -dzD -dAW -dCj -aaa -dzD -dAW -dCj -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(216,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aGe -aHy -aHy -aHy -aHy -aHy -aOZ -aQS -aSA -aUd -aVP -aXx -aYX -aaa -aaf -aaa -beZ -bgM -biG -bki -blF -bnE -biG -bqZ -beZ -aaf -aaf -agg -agg -agg -aaf -aaf -aaf -aaf -aaf -aaf -agg -agg -agg -agg -aaf -aaf -aaf -agg -agg -agg -agg -aaf -agg -aaf -aaf -agg -aaf -cqf -crC -crC -cuG -cvX -cxI -cze -cAQ -cAQ -cvX -cED -cGk -cGk -cIT -cKS -cMo -cMo -cPW -cMo -cKS -cUT -cWv -cYl -cqf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -dwc -aaf -aaa -dzD -dAW -dCj -aaf -dzD -dAW -dCj -aaf -dzD -dAW -dCj -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(217,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aaf -aaf -aHz -aIK -aKc -aLK -aNz -aPa -aQT -aSB -aUe -aVQ -aXy -aBU -aaf -aaf -aaf -beW -bgN -biH -bkf -blG -bnF -bpD -bra -beW -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cqf -crD -crD -crD -cqf -cqf -cqf -cqf -cqf -cqf -epj -cqf -cqf -epk -cqf -cqf -cqf -cqf -cqf -cqf -cUU -cWw -cYm -cqf -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaa -dwc -aaf -aaf -dzD -dAW -dCj -aaa -dzD -dAW -dCj -aaa -dzD -dAW -dCj -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(218,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aaa -aaa -aHz -aIL -aKd -aLL -aNA -aPb -aQU -aSC -aBU -aVR -aXz -aBU -aaf -aaa -aaf -beW -beW -biI -bkj -blH -bnG -bpE -beW -beW -aaf -aaf -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cqf -crE -csR -cuH -cqf -aaa -aaa -aaf -aaa -cqf -cEF -cqe -cGl -cIV -cqf -aaa -aaf -aaa -aaa -cqf -cUV -cWx -cYn -cqf -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -dwc -aaf -aaa -dzD -dAW -dCj -aaa -aaf -dwb -aaf -aaa -dzD -dAW -dCj -aaa -agg -aaf -agg -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(219,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aaf -aaf -aHz -aIM -aKe -efe -aNB -aPc -aQV -aSD -aBU -aVS -aXA -aBU -aaf -aaa -aaf -aaa -beW -biJ -bkk -blI -bnH -biJ -beW -aaa -aaa -aaf -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -cqe -cqf -cqf -cqf -cqe -aaf -czf -cAR -cAR -cAR -cEG -cqf -cqf -cIW -cKT -cKT -cKT -cPX -aaf -cqe -cqf -cqf -cqf -cqe -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -dwc -aaf -aaa -aaf -dwb -aaf -aaf -aaf -dwc -aaf -aaf -aaf -dwb -aaf -aaa -aaa -aaf -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(220,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aGe -aHy -aHy -aHy -aHy -aHy -aPd -aQW -aSE -aBU -aVT -aXB -aBU -aaf -aaa -aaf -aaa -beW -biK -bkf -blJ -bnI -bpF -beW -aaf -aaf -aaf -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaf -aaf -cqf -aaa -czg -cAS -cAS -cAS -cAS -cAS -cAS -cAS -cAS -cAS -cAS -cPY -aaa -cqf -aaf -aaf -aaf -aaf -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -dwc -dxm -dyu -dyu -dyu -dyu -dyu -dyu -dFC -dHm -dwc -dIH -dxm -dyu -dyu -dyu -dNs -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(221,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aBW -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aHy -aPe -aQX -aSF -aBU -aVR -aXz -aBU -aHu -aaf -aaf -aaf -beW -biL -bkl -blK -bnJ -bpG -beW -aaa -aaf -aaa -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -cqf -aaa -czg -cAS -cAS -cAS -cAS -cAS -cAS -cAS -cAS -cAS -cAS -cPY -aaa -cqf -aaf -aaa -aaa -agg -agg -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaa -aaa -aaf -aaa -aaf -dAX -aaf -aaf -aaf -dwc -aaf -aaf -aaf -dAX -aaf -aaa -aaa -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(222,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -agg -agg -aaa -agg -agg -agg -aaa -aHy -aHy -aHy -aHy -aBU -aVU -aXC -aZf -aHu -aaa -aaf -aaa -beW -biM -bkm -blL -bnK -bpH -beW -aaf -aaf -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -aaf -aaf -cqf -aaf -czh -cAT -cAS -cAS -cAS -cAS -cAS -cAS -cAS -cAS -cOa -cPZ -aaf -cqf -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -agg -aaf -aaf -aaa -dzD -dAY -dCj -aaa -aaf -dAX -aaf -aaa -dzD -dAY -dCj -aaa -agg -agg -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(223,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaH -aQY -aSG -aUf -aVV -aXD -aZg -aYX -aaa -aaf -aaa -beW -beW -bkn -blM -bnL -beW -beW -aaa -aaf -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -cqf -aaa -czg -cAS -cAS -cAS -cAS -cAS -cAS -cAS -cAS -cAS -cAS -cPY -aaa -cqf -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -dzD -dAY -dCj -aaa -dzD -dAY -dCj -aaa -dzD -dAY -dCj -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(224,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aHu -aHu -aHu -aVW -aXE -aKa -aHu -aaa -aaf -aaa -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaa -aaf -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -cqf -aaa -czg -cAS -cAS -cAS -cAS -cAS -cAS -cAS -cAS -cAS -cAS -cPY -aaa -cqf -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaa -dzD -dAY -dCj -aaf -dzD -dAY -dCj -aaf -dzD -dAY -dCj -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(225,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aHu -aVX -aXF -aVX -aHu -aaf -agg -agg -agg -aaf -agg -agg -agg -agg -agg -agg -aaf -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -cqe -aaf -czi -cAR -cAR -cAR -cEH -cqf -cqf -cIX -cKT -cKT -cKT -cQa -aaf -cqe -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -dzD -dAY -dCj -aaa -dzD -dAY -dCj -aaa -dzD -dAY -dCj -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(226,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -aHu -aVY -aVY -aZh -aHu -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -cqf -aaa -aaa -aaf -aaa -cqf -cEI -cGl -cqe -cIY -cqf -aaa -aaf -aaa -aaa -cqf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaa -dzD -ebE -dCj -aaa -dzD -dAY -dCj -aaa -dzD -ebE -dCj -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(227,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaf -aHu -aVZ -aXG -aVZ -aHu -aaf -aaf -agg -agg -agg -agg -agg -aaf -agg -agg -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -cqf -cqf -cqf -cqf -cqf -cqf -epj -cqf -cqf -epk -cqf -cqf -cqf -cqf -cqf -cqf -aaf -agg -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -aaa -aaa -aaa -aaa -aaa -dzD -ebE -dCj -aaa -aaa -aaa -aaa -aaa -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(228,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aHu -aWa -aXH -aWa -aHu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaf -aaf -aaf -cqf -cEJ -cGm -cHE -cIZ -cqf -aaf -aaf -aaf -aaf -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -agg -aaf -agg -agg -aaa -aaa -aaa -aaa -aaa -agg -aaf -agg -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(229,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUg -aWa -aXI -aWa -aUg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -agg -aaa -agg -aaf -cDw -cEK -cGn -cHF -cJa -cDw -aaf -aaa -agg -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agg -agg -aaf -agg -agg -aaf -agg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(230,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aWa -aXJ -aWa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cqf -cEL -cGo -cHG -cJb -cqf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(231,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aXK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cqf -cqf -cqf -cqf -cqf -cqf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(232,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(233,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(234,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(235,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(236,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(237,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(238,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(239,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(240,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(241,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(242,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(243,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(244,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(245,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(246,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(247,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(248,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(249,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(250,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(251,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(252,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(253,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(254,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(255,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/turf/open/space/basic, +/area/space) +"aab" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 24; + id = "syndicate_ne"; + name = "northeast of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"aac" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 24; + id = "syndicate_n"; + name = "north of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"aad" = ( +/obj/effect/landmark/carpspawn, +/turf/open/space, +/area/space) +"aae" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space, +/area/space) +"aaf" = ( +/obj/structure/lattice, +/turf/open/space, +/area/space) +"aag" = ( +/obj/machinery/power/tracker, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/starboard/fore) +"aah" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard/fore) +"aai" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/solar{ + id = "forestarboard"; + name = "Fore-Starboard Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/starboard/fore) +"aaj" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard/fore) +"aak" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard/fore) +"aal" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard/fore) +"aam" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard/fore) +"aan" = ( +/obj/structure/cable, +/obj/machinery/power/solar{ + id = "forestarboard"; + name = "Fore-Starboard Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/starboard/fore) +"aao" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space, +/area/solar/starboard/fore) +"aap" = ( +/obj/docking_port/stationary/random{ + id = "pod_lavaland1"; + name = "lavaland" + }, +/turf/open/space, +/area/space) +"aaq" = ( +/obj/docking_port/stationary/random{ + id = "pod_lavaland2"; + name = "lavaland" + }, +/turf/open/space, +/area/space) +"aar" = ( +/obj/structure/lattice/catwalk, +/obj/effect/landmark/xeno_spawn, +/turf/open/space, +/area/solar/starboard/fore) +"aas" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/pod_1) +"aat" = ( +/obj/effect/spawner/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/pod_1) +"aau" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/pod_2) +"aav" = ( +/obj/effect/spawner/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/pod_2) +"aaw" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard/fore) +"aax" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"aay" = ( +/turf/closed/wall/mineral/plastitanium, +/area/hallway/secondary/entry) +"aaz" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_x = -32; + possible_destinations = "pod_lavaland1"; + shuttleId = "pod1" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/shuttle/pod_1) +"aaA" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_x = -32; + possible_destinations = "pod_lavaland2"; + shuttleId = "pod2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/shuttle/pod_2) +"aaB" = ( +/turf/closed/wall/mineral/plastitanium, +/area/construction/mining/aux_base) +"aaC" = ( +/obj/effect/turf_decal/delivery, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aaD" = ( +/turf/closed/wall, +/area/hallway/secondary/entry) +"aaE" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_x = 25 + }, +/obj/item/storage/pod{ + pixel_x = -26 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/shuttle/pod_1) +"aaF" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_x = 25 + }, +/obj/item/storage/pod{ + pixel_x = -26 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/shuttle/pod_2) +"aaG" = ( +/turf/closed/wall, +/area/construction/mining/aux_base) +"aaH" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space) +"aaI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aaJ" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aaK" = ( +/obj/structure/shuttle/engine/propulsion/burst, +/turf/closed/wall/mineral/titanium, +/area/shuttle/pod_1) +"aaL" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Escape Pod Airlock" + }, +/obj/docking_port/mobile/pod{ + id = "pod1"; + name = "escape pod 1"; + port_direction = 2 + }, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/plasteel/white, +/area/shuttle/pod_1) +"aaM" = ( +/obj/structure/shuttle/engine/propulsion/burst, +/turf/closed/wall/mineral/titanium, +/area/shuttle/pod_2) +"aaN" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Escape Pod Airlock" + }, +/obj/docking_port/mobile/pod{ + id = "pod2"; + name = "escape pod 2"; + port_direction = 2 + }, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/plasteel/white, +/area/shuttle/pod_2) +"aaO" = ( +/obj/item/stack/cable_coil, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard/fore) +"aaP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aaQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aaR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"aaS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"aaT" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"aaU" = ( +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 2; + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"aaV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/external{ + name = "Escape Pod 1" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aaW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/external{ + name = "Escape Pod 2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aaX" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/closet/emcloset/anchored, +/obj/structure/sign/vacuum{ + pixel_x = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"aaY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"aaZ" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"aba" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"abb" = ( +/obj/structure/sign/pods{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"abc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"abd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"abe" = ( +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 1; + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: EXTERNAL AIRLOCK"; + pixel_x = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"abf" = ( +/turf/closed/wall/r_wall, +/area/maintenance/solars/starboard/fore) +"abg" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"abh" = ( +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/entry) +"abi" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/yellow/side{ + dir = 9 + }, +/area/construction/mining/aux_base) +"abj" = ( +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/construction/mining/aux_base) +"abk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plasteel/yellow/side{ + dir = 5 + }, +/area/construction/mining/aux_base) +"abl" = ( +/obj/structure/sign/electricshock, +/turf/closed/wall/r_wall, +/area/maintenance/solars/starboard/fore) +"abm" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"abn" = ( +/obj/machinery/power/smes, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"abo" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/obj/machinery/camera{ + c_tag = "Solar - Fore Starboard"; + name = "solar camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"abp" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/shuttle/arrival) +"abq" = ( +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/arrival) +"abr" = ( +/obj/structure/table/reinforced, +/obj/item/storage/belt/utility, +/obj/item/wrench, +/turf/open/floor/plasteel/yellow/side{ + dir = 8 + }, +/area/construction/mining/aux_base) +"abs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/neutral, +/area/construction/mining/aux_base) +"abt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 4 + }, +/area/construction/mining/aux_base) +"abu" = ( +/obj/machinery/door/airlock/engineering{ + name = "Starboard Bow Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/solars/starboard/fore) +"abv" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"abw" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"abx" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"aby" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 4; + name = "External Solar Access"; + req_access_txt = "10; 13" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/solars/starboard/fore) +"abz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/solars/starboard/fore) +"abA" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/space, +/area/solar/starboard/fore) +"abB" = ( +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"abC" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Dock - Fore"; + dir = 8; + name = "arrivals camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"abD" = ( +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"abE" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Shuttle - Fore Port"; + dir = 8; + name = "arrivals camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"abF" = ( +/obj/structure/window/reinforced, +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/shuttle/arrival) +"abG" = ( +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Shuttle - Fore Starboard"; + dir = 4; + name = "arrivals camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"abH" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"abI" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/mining_voucher, +/obj/machinery/camera{ + c_tag = "Auxillary Construction - Storage"; + dir = 4; + name = "engineering camera" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 8 + }, +/area/construction/mining/aux_base) +"abJ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/construction/mining/aux_base) +"abK" = ( +/turf/open/floor/plasteel/yellow/side{ + dir = 4 + }, +/area/construction/mining/aux_base) +"abL" = ( +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: EXTERNAL AIRLOCK" + }, +/turf/closed/wall/r_wall, +/area/maintenance/solars/starboard/fore) +"abM" = ( +/obj/structure/cable/white, +/obj/machinery/power/apc/highcap/ten_k{ + dir = 2; + name = "Starboard Bow Solar APC"; + areastring = "/area/maintenance/solars/starboard/fore"; + pixel_y = -26 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"abN" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"abO" = ( +/obj/machinery/power/solar_control{ + id = "forestarboard"; + name = "Starboard Bow Solar Control"; + track = 0 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"abP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: EXTERNAL AIRLOCK" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"abQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"abR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/vacuum, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"abS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"abU" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/arrival) +"abV" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/arrival) +"abW" = ( +/obj/structure/window/shuttle, +/obj/structure/grille, +/turf/open/floor/plating, +/area/shuttle/arrival) +"abX" = ( +/obj/structure/table/reinforced, +/obj/item/device/analyzer{ + pixel_x = 7; + pixel_y = 3 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 8 + }, +/area/construction/mining/aux_base) +"abY" = ( +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/structure/closet/crate/internals, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/shuttle/arrival) +"abZ" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/wardrobe/mixed, +/turf/open/floor/plasteel, +/area/shuttle/arrival) +"aca" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/emergency, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/shuttle/arrival) +"acb" = ( +/obj/structure/table/reinforced, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/shuttle/arrival) +"acc" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/shuttle/arrival) +"acd" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/obj/item/crowbar/red, +/turf/open/floor/plasteel/yellow/side{ + dir = 10 + }, +/area/construction/mining/aux_base) +"ace" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/yellow/side, +/area/construction/mining/aux_base) +"acf" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plasteel/yellow/side{ + dir = 6 + }, +/area/construction/mining/aux_base) +"acg" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"ack" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"acl" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Arrival Shuttle Airlock"; + req_access_txt = "0" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/shuttle/arrival) +"acm" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/shuttle/arrival) +"acn" = ( +/turf/open/floor/plasteel/neutral, +/area/shuttle/arrival) +"aco" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/shuttle/arrival) +"acp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/engineering{ + name = "Auxiliary Construction Storage"; + req_access_txt = "10;32;47;48" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"acq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"acr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/entry) +"acs" = ( +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/shuttle/arrival) +"act" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/shuttle/arrival) +"acu" = ( +/obj/machinery/ai_status_display{ + pixel_x = 32 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/shuttle/arrival) +"acv" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/construction/mining/aux_base) +"acw" = ( +/obj/machinery/requests_console{ + department = "Construction"; + departmentType = 0; + name = "Construction RC"; + pixel_y = 32 + }, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/yellow/side{ + dir = 9 + }, +/area/construction/mining/aux_base) +"acx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/construction/mining/aux_base) +"acy" = ( +/obj/structure/table/reinforced, +/obj/item/stack/packageWrap, +/obj/item/stack/cable_coil/white{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil/white, +/obj/item/stock_parts/cell/high, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 5 + }, +/area/construction/mining/aux_base) +"acz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"acA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"acB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"acC" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"acD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"acE" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"acF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"acG" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"acH" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/shuttle/arrival) +"acI" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/shuttle/arrival) +"acJ" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window/shuttle, +/turf/open/floor/grass, +/area/shuttle/arrival) +"acK" = ( +/obj/machinery/vending/snack/random, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"acL" = ( +/obj/machinery/door/poddoor/shutters{ + id = "construction"; + name = "Construction Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"acM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 8 + }, +/area/construction/mining/aux_base) +"acN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/construction/mining/aux_base) +"acP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"acQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"acR" = ( +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"acS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"acT" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"acU" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"acV" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"acW" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"acY" = ( +/obj/machinery/vending/cola/random, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"acZ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ada" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/entry) +"adb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"adc" = ( +/obj/machinery/door/poddoor/shutters{ + id = "construction"; + name = "Construction Shutters" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"add" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel/yellow/side{ + dir = 8 + }, +/area/construction/mining/aux_base) +"ade" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/construction/mining/aux_base) +"adf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/item/device/assault_pod/mining, +/turf/open/floor/plasteel/yellow/side{ + dir = 4 + }, +/area/construction/mining/aux_base) +"adg" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"adh" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/fernybush, +/obj/structure/window/shuttle, +/turf/open/floor/grass, +/area/shuttle/arrival) +"adi" = ( +/obj/item/device/radio/beacon, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"adj" = ( +/obj/machinery/button/door{ + id = "construction"; + name = "Auxiliary Construction Shutters"; + pixel_x = -26; + req_access_txt = "32;47;48" + }, +/obj/machinery/light_switch{ + pixel_x = -38 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Auxillary Construction"; + dir = 4; + name = "engineering camera" + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 8 + }, +/area/construction/mining/aux_base) +"adk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/construction/mining/aux_base) +"adl" = ( +/obj/machinery/computer/camera_advanced/base_construction, +/turf/open/floor/plasteel/yellow/side{ + dir = 4 + }, +/area/construction/mining/aux_base) +"adq" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"adr" = ( +/obj/effect/turf_decal/delivery, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ads" = ( +/obj/effect/turf_decal/delivery, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"adt" = ( +/obj/machinery/vending/wallmed{ + name = "Emergency NanoMed"; + req_access_txt = "0"; + use_power = 0 + }, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/arrival) +"adu" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Auxiliary Construction APC"; + areastring = "/area/construction/mining/aux_base"; + pixel_x = -26; + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/yellow/side{ + dir = 8 + }, +/area/construction/mining/aux_base) +"adv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/landmark/lightsout, +/obj/machinery/holopad, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/construction/mining/aux_base) +"adw" = ( +/obj/machinery/door/airlock/external{ + name = "Auxiliary Base Airlock" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"adx" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"ady" = ( +/obj/docking_port/mobile/auxillary_base{ + dheight = 4; + dir = 2; + dwidth = 4; + height = 9; + width = 9 + }, +/obj/machinery/bluespace_beacon, +/obj/docking_port/mobile/auxillary_base, +/obj/machinery/computer/auxillary_base, +/turf/closed/wall, +/area/shuttle/auxillary_base) +"adz" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Auxillary Base"; + dir = 4; + name = "engineering camera" + }, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"adH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"adI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"adJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/entry) +"adK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"adL" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/mineral/titanium, +/area/shuttle/arrival) +"adM" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/shuttle/arrival) +"adN" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/toy/figure/assistant, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/shuttle/arrival) +"adO" = ( +/obj/structure/table/reinforced, +/obj/item/folder, +/obj/item/storage/pill_bottle/dice, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/shuttle/arrival) +"adP" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/shuttle/arrival) +"adQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/yellow/side{ + dir = 8 + }, +/area/construction/mining/aux_base) +"adR" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/construction/mining/aux_base) +"adZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aea" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aec" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aed" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Auxiliary Construction Zone"; + req_access_txt = "0"; + req_one_access_txt = "32;47;48" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"aee" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/yellow/side{ + dir = 8 + }, +/area/construction/mining/aux_base) +"aef" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/construction/mining/aux_base) +"aeg" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/obj/item/pipe_dispenser, +/turf/open/floor/plasteel/yellow/side{ + dir = 4 + }, +/area/construction/mining/aux_base) +"aei" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/shuttle/arrival) +"aej" = ( +/obj/structure/closet/wardrobe/black, +/turf/open/floor/plasteel/neutral/side, +/area/shuttle/arrival) +"aek" = ( +/obj/structure/closet/wardrobe/grey, +/turf/open/floor/plasteel/blue/corner, +/area/shuttle/arrival) +"ael" = ( +/turf/open/floor/plasteel/blue/side, +/area/shuttle/arrival) +"aem" = ( +/obj/structure/closet/wardrobe/yellow, +/turf/open/floor/plasteel/blue/corner{ + dir = 8 + }, +/area/shuttle/arrival) +"aen" = ( +/obj/structure/table/reinforced, +/obj/item/storage/briefcase{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/secure/briefcase, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/shuttle/arrival) +"aeo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Auxiliary Construction Zone"; + req_access_txt = "0"; + req_one_access_txt = "32;47;48" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"aep" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/plasteel{ + amount = 20 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plasteel/yellow/side{ + dir = 4 + }, +/area/construction/mining/aux_base) +"aeq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"aer" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"aew" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aex" = ( +/obj/machinery/status_display, +/turf/closed/wall/mineral/titanium, +/area/shuttle/arrival) +"aey" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/machinery/door/airlock/shuttle{ + name = "Arrival Shuttle Airlock"; + req_access_txt = "0" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/shuttle/arrival) +"aez" = ( +/obj/machinery/ai_status_display, +/turf/closed/wall/mineral/titanium, +/area/shuttle/arrival) +"aeA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 10 + }, +/area/construction/mining/aux_base) +"aeB" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/yellow/side, +/area/construction/mining/aux_base) +"aeC" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/wrench, +/turf/open/floor/plasteel/yellow/side{ + dir = 6 + }, +/area/construction/mining/aux_base) +"aeD" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"aeJ" = ( +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aeK" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Arrivals Dock - Aft"; + dir = 8; + name = "arrivals camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aeL" = ( +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aeM" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Arrivals Shuttle - Aft Port"; + dir = 8; + name = "arrivals camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aeN" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/blue/side{ + dir = 8 + }, +/area/shuttle/arrival) +"aeO" = ( +/obj/structure/chair/office/dark, +/turf/open/floor/plasteel/blue/side{ + dir = 1 + }, +/area/shuttle/arrival) +"aeP" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/blue/side{ + dir = 4 + }, +/area/shuttle/arrival) +"aeQ" = ( +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Arrivals Shuttle - Aft Starboard"; + dir = 4; + name = "arrivals camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aeR" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aeS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "0"; + req_one_access_txt = "32;47;48" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"aeV" = ( +/obj/structure/frame/computer, +/turf/open/floor/plasteel/blue, +/area/shuttle/arrival) +"aeW" = ( +/obj/structure/frame/computer, +/turf/open/floor/plasteel/blue/side, +/area/shuttle/arrival) +"aeX" = ( +/turf/closed/wall, +/area/maintenance/starboard/fore) +"aeY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aeZ" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"afa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"afb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 5 + }, +/area/maintenance/starboard/fore) +"afc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"afd" = ( +/obj/machinery/vending/snack/random, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/vault{ + dir = 4 + }, +/area/maintenance/starboard/fore) +"afe" = ( +/obj/machinery/vending/cola/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 4 + }, +/area/maintenance/starboard/fore) +"afg" = ( +/obj/structure/chair/stool, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/vault, +/area/maintenance/starboard/fore) +"afh" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel/vault, +/area/maintenance/starboard/fore) +"afi" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault, +/area/maintenance/starboard/fore) +"afj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/vault, +/area/maintenance/starboard/fore) +"afl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"afm" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"afn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"afo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"afp" = ( +/mob/living/simple_animal/cockroach, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"afq" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"afr" = ( +/obj/structure/door_assembly/door_assembly_mhatch, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"afs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/redyellow, +/area/maintenance/starboard/fore) +"aft" = ( +/turf/open/floor/plasteel/redyellow, +/area/maintenance/starboard/fore) +"afu" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"afx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"afy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"afz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"afA" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"afB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"afC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"afD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/fore) +"afE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"afF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance_hatch/abandoned{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"afG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/redyellow, +/area/maintenance/starboard/fore) +"afH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/redyellow, +/area/maintenance/starboard/fore) +"afI" = ( +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/redyellow, +/area/maintenance/starboard/fore) +"afJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/redyellow, +/area/maintenance/starboard/fore) +"afO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"afP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"afQ" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"afR" = ( +/obj/structure/sign/pods, +/turf/closed/wall, +/area/hallway/secondary/entry) +"afS" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"afT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"afU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"afV" = ( +/obj/structure/table_frame/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/redyellow, +/area/maintenance/starboard/fore) +"afW" = ( +/obj/item/chair/stool/bar{ + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit/old, +/turf/open/floor/plasteel/redyellow, +/area/maintenance/starboard/fore) +"afX" = ( +/obj/structure/chair/stool/bar, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/redyellow, +/area/maintenance/starboard/fore) +"afY" = ( +/obj/machinery/light/small, +/turf/open/floor/plasteel/redyellow, +/area/maintenance/starboard/fore) +"afZ" = ( +/obj/structure/chair/stool/bar, +/turf/open/floor/plasteel/redyellow, +/area/maintenance/starboard/fore) +"aga" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel/redyellow, +/area/maintenance/starboard/fore) +"agg" = ( +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/space) +"agh" = ( +/obj/structure/table, +/obj/item/storage/briefcase, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"agi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/arrival{ + dir = 9 + }, +/area/hallway/secondary/entry) +"agj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/arrival{ + dir = 1 + }, +/area/hallway/secondary/entry) +"agk" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/arrival{ + dir = 1 + }, +/area/hallway/secondary/entry) +"agl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/arrival{ + dir = 1 + }, +/area/hallway/secondary/entry) +"agm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/turf/open/floor/plasteel/arrival{ + dir = 1 + }, +/area/hallway/secondary/entry) +"agn" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/arrival{ + dir = 1 + }, +/area/hallway/secondary/entry) +"ago" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/arrival{ + dir = 1 + }, +/area/hallway/secondary/entry) +"agp" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/arrival{ + dir = 1 + }, +/area/hallway/secondary/entry) +"agq" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Arrivals Hallway APC"; + areastring = "/area/hallway/secondary/entry"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Arrivals - Center Port"; + dir = 2; + name = "arrivals camera" + }, +/turf/open/floor/plasteel/arrival{ + dir = 1 + }, +/area/hallway/secondary/entry) +"agr" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel/arrival{ + dir = 1 + }, +/area/hallway/secondary/entry) +"ags" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/arrival{ + dir = 1 + }, +/area/hallway/secondary/entry) +"agt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/arrival{ + dir = 1 + }, +/area/hallway/secondary/entry) +"agu" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/turf/open/floor/plasteel/arrival{ + dir = 1 + }, +/area/hallway/secondary/entry) +"agv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/arrival{ + dir = 1 + }, +/area/hallway/secondary/entry) +"agw" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/arrival{ + dir = 1 + }, +/area/hallway/secondary/entry) +"agx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/arrival{ + dir = 1 + }, +/area/hallway/secondary/entry) +"agy" = ( +/turf/open/floor/plasteel/arrival{ + dir = 5 + }, +/area/hallway/secondary/entry) +"agz" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"agA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"agB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 5 + }, +/area/maintenance/starboard/fore) +"agC" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/food/snacks/meat/slab/human{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/snacks/meat/slab/human, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"agD" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"agE" = ( +/obj/structure/sign/nosmoking_2, +/turf/closed/wall, +/area/maintenance/starboard/fore) +"agF" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"agJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"agK" = ( +/turf/open/floor/plasteel/arrival{ + dir = 10 + }, +/area/hallway/secondary/entry) +"agL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/arrival, +/area/hallway/secondary/entry) +"agM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/arrival, +/area/hallway/secondary/entry) +"agN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/arrival, +/area/hallway/secondary/entry) +"agO" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/arrival, +/area/hallway/secondary/entry) +"agP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Arrivals - Port"; + dir = 1; + name = "arrivals camera" + }, +/turf/open/floor/plasteel/arrival, +/area/hallway/secondary/entry) +"agQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/arrival, +/area/hallway/secondary/entry) +"agR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/arrival, +/area/hallway/secondary/entry) +"agS" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/arrival, +/area/hallway/secondary/entry) +"agT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/arrival, +/area/hallway/secondary/entry) +"agU" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/arrival/corner{ + dir = 8 + }, +/area/hallway/secondary/entry) +"agV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/entry) +"agW" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/entry) +"agX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/entry) +"agY" = ( +/obj/effect/landmark/lightsout, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/entry) +"agZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/arrival/corner, +/area/hallway/secondary/entry) +"aha" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Arrivals - Starboard"; + dir = 1; + name = "arrivals camera" + }, +/turf/open/floor/plasteel/arrival, +/area/hallway/secondary/entry) +"ahb" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/arrival, +/area/hallway/secondary/entry) +"ahc" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/arrival, +/area/hallway/secondary/entry) +"ahd" = ( +/turf/open/floor/plasteel/arrival{ + dir = 6 + }, +/area/hallway/secondary/entry) +"ahe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/obj/item/storage/toolbox/emergency, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ahf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/fore) +"ahg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ahh" = ( +/turf/open/floor/plasteel/red/side, +/area/maintenance/starboard/fore) +"ahi" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"ahj" = ( +/turf/open/floor/plasteel/white/side, +/area/maintenance/starboard/fore) +"ahk" = ( +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "old sink"; + pixel_y = 28 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/red/side, +/area/maintenance/starboard/fore) +"ahl" = ( +/obj/structure/closet/crate/freezer/blood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"ahm" = ( +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "old sink"; + pixel_y = 28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/white/side, +/area/maintenance/starboard/fore) +"ahn" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/restraints/handcuffs, +/obj/item/clothing/mask/muzzle, +/turf/open/floor/plasteel/red/corner{ + dir = 8 + }, +/area/maintenance/starboard/fore) +"aht" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock{ + name = "Auxiliary Storage Closet" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ahu" = ( +/turf/closed/wall, +/area/security/vacantoffice) +"ahv" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/security/vacantoffice) +"ahw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/security/vacantoffice) +"ahx" = ( +/obj/machinery/door/airlock/abandoned{ + name = "Auxiliary Office"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/vacantoffice) +"ahy" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/security/vacantoffice) +"ahz" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"ahA" = ( +/turf/closed/wall, +/area/security/checkpoint/customs) +"ahB" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/security/checkpoint/customs) +"ahC" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/customs) +"ahD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/arrival{ + dir = 8 + }, +/area/hallway/secondary/entry) +"ahE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/entry) +"ahF" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/secondary/entry) +"ahG" = ( +/obj/machinery/vending/cigarette, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ahH" = ( +/obj/machinery/vending/clothing, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ahI" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ahJ" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/secondary/entry) +"ahK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/hallway/secondary/entry) +"ahL" = ( +/turf/closed/wall, +/area/security/checkpoint/checkpoint2) +"ahM" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/checkpoint2) +"ahN" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/security/checkpoint/checkpoint2) +"ahO" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/fore) +"ahQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/barricade/wooden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"ahR" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red, +/area/maintenance/starboard/fore) +"ahS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/maintenance/starboard/fore) +"ahT" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/red, +/area/maintenance/starboard/fore) +"ahU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/maintenance/starboard/fore) +"ahV" = ( +/obj/machinery/newscaster{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"ahW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"ahX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"ahY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/red, +/area/maintenance/starboard/fore) +"ahZ" = ( +/obj/structure/table/optable, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/maintenance/starboard/fore) +"aib" = ( +/turf/closed/wall, +/area/maintenance/port/fore) +"aic" = ( +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aid" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/maintenance/port/fore) +"aie" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency, +/obj/item/tank/internals/oxygen, +/obj/item/wrench, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aif" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/turf/open/floor/plasteel/grimy, +/area/security/vacantoffice) +"aig" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/grimy, +/area/security/vacantoffice) +"aih" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/photocopier, +/turf/open/floor/plasteel/grimy, +/area/security/vacantoffice) +"aii" = ( +/obj/structure/table/wood, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/grimy, +/area/security/vacantoffice) +"aij" = ( +/obj/structure/table/wood, +/obj/item/storage/briefcase, +/turf/open/floor/plasteel/grimy, +/area/security/vacantoffice) +"aik" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/security/vacantoffice) +"ail" = ( +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/security/vacantoffice) +"aim" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plasteel/grimy, +/area/security/vacantoffice) +"ain" = ( +/obj/structure/table/wood, +/obj/item/device/taperecorder, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/security/vacantoffice) +"aip" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"aiq" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/ids, +/turf/open/floor/plasteel/blue/side{ + dir = 9 + }, +/area/security/checkpoint/customs) +"air" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/photocopier, +/turf/open/floor/plasteel/blue/side{ + dir = 1 + }, +/area/security/checkpoint/customs) +"ais" = ( +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/machinery/keycard_auth{ + pixel_x = 26; + pixel_y = 26 + }, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/blue/side{ + dir = 5 + }, +/area/security/checkpoint/customs) +"ait" = ( +/obj/machinery/ai_status_display, +/turf/closed/wall, +/area/hallway/secondary/entry) +"aiu" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/hallway/secondary/entry) +"aiv" = ( +/obj/structure/filingcabinet/security, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/checkpoint/checkpoint2) +"aiw" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/table/reinforced, +/obj/item/crowbar, +/obj/item/restraints/handcuffs, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/checkpoint/checkpoint2) +"aix" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/device/radio, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/checkpoint/checkpoint2) +"aiy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aiz" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/maintenance/starboard/fore) +"aiA" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/maintenance/starboard/fore) +"aiB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aiC" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aiD" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/starboard/fore) +"aiE" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/blood/random{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/reagent_containers/blood/random, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"aiF" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aiG" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"aiH" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/donkpockets, +/obj/item/kitchen/knife/butcher, +/obj/item/stack/packageWrap, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"aiI" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/apron/chef, +/obj/item/clothing/head/chefhat, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"aiJ" = ( +/obj/structure/table, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -3; + pixel_y = 5 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"aiK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"aiL" = ( +/obj/structure/table_frame, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/maintenance/starboard/fore) +"aiM" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/retractor, +/obj/item/hemostat, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/maintenance/starboard/fore) +"aiV" = ( +/obj/machinery/power/tracker, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/port/fore) +"aiW" = ( +/turf/closed/wall/r_wall, +/area/engine/atmospherics_engine) +"aiX" = ( +/turf/closed/wall, +/area/crew_quarters/electronic_marketing_den) +"aiY" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/crew_quarters/electronic_marketing_den) +"aiZ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/maintenance/port/fore) +"aja" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/maintenance/port/fore) +"ajb" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"ajd" = ( +/turf/open/floor/plasteel/grimy, +/area/security/vacantoffice) +"aje" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/vacantoffice) +"ajf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/vacantoffice) +"ajg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"ajh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/security/vacantoffice) +"aji" = ( +/obj/structure/table/wood, +/obj/item/folder/blue{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/folder/yellow, +/obj/item/pen, +/turf/open/floor/plasteel/grimy, +/area/security/vacantoffice) +"ajj" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/security/vacantoffice) +"ajk" = ( +/obj/machinery/ai_status_display{ + pixel_x = 32 + }, +/obj/structure/frame/computer, +/turf/open/floor/carpet, +/area/security/vacantoffice) +"ajl" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ajm" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Customs Desk APC"; + areastring = "/area/security/checkpoint/customs"; + pixel_x = -26 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/blue/side{ + dir = 8 + }, +/area/security/checkpoint/customs) +"ajn" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"ajo" = ( +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/blue/side{ + dir = 4 + }, +/area/security/checkpoint/customs) +"ajp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + cyclelinkeddir = 0; + name = "Customs Desk"; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"ajq" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/blue/corner{ + dir = 8 + }, +/area/hallway/secondary/entry) +"ajr" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/obj/machinery/camera{ + c_tag = "Arrivals - Center"; + dir = 2; + name = "arrivals camera" + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry) +"ajs" = ( +/obj/structure/chair/comfy/brown, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry) +"ajt" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry) +"aju" = ( +/obj/structure/chair/comfy/brown, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry) +"ajv" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry) +"ajw" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/red/corner, +/area/hallway/secondary/entry) +"ajx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Security Checkpoint"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/checkpoint/checkpoint2) +"ajy" = ( +/obj/machinery/light_switch{ + pixel_x = -26; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/checkpoint/checkpoint2) +"ajz" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/checkpoint/checkpoint2) +"ajA" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Security Checkpoint APC"; + areastring = "/area/security/checkpoint/checkpoint2"; + pixel_x = 26 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/checkpoint/checkpoint2) +"ajB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ajC" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ajD" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ajE" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/starboard/fore) +"ajF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/crowbar/red, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/starboard/fore) +"ajG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/item/device/flashlight, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel/neutral/side{ + dir = 6 + }, +/area/maintenance/starboard/fore) +"ajJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/fore) +"ajK" = ( +/obj/structure/reflector/single/anchored{ + dir = 6 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/atmospherics_engine) +"ajL" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmospherics_engine) +"ajM" = ( +/obj/structure/reflector/box/anchored{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmospherics_engine) +"ajN" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmospherics_engine) +"ajO" = ( +/obj/machinery/camera{ + c_tag = "Supermatter Engine - Fore"; + name = "atmospherics camera"; + network = list("SS13","Engine") + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmospherics_engine) +"ajP" = ( +/obj/structure/reflector/single/anchored{ + dir = 10 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/atmospherics_engine) +"ajR" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/electronic_marketing_den) +"ajS" = ( +/obj/structure/table/wood, +/obj/item/storage/box/matches{ + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/plasteel/black, +/area/crew_quarters/electronic_marketing_den) +"ajT" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/electronic_marketing_den) +"ajU" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/wood, +/area/crew_quarters/electronic_marketing_den) +"ajV" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/wood, +/area/crew_quarters/electronic_marketing_den) +"ajW" = ( +/obj/structure/table/wood, +/obj/item/storage/briefcase, +/obj/item/device/taperecorder, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/crew_quarters/electronic_marketing_den) +"ajX" = ( +/obj/structure/table/wood, +/obj/item/electronics/firelock, +/obj/item/electronics/airlock, +/turf/open/floor/wood, +/area/crew_quarters/electronic_marketing_den) +"ajZ" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/wood, +/area/crew_quarters/electronic_marketing_den) +"aka" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/electronics/apc, +/turf/open/floor/wood, +/area/crew_quarters/electronic_marketing_den) +"akb" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/maintenance/port/fore) +"akc" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/maintenance/port/fore) +"akd" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ake" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/plasteel/grimy, +/area/security/vacantoffice) +"akf" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/vacantoffice) +"akg" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/turf/open/floor/carpet, +/area/security/vacantoffice) +"akh" = ( +/turf/open/floor/wood, +/area/security/vacantoffice) +"aki" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/mob/living/simple_animal/cockroach, +/turf/open/floor/wood, +/area/security/vacantoffice) +"akj" = ( +/obj/structure/table/wood, +/obj/item/device/paicard, +/turf/open/floor/plasteel/grimy, +/area/security/vacantoffice) +"akk" = ( +/turf/open/floor/carpet, +/area/security/vacantoffice) +"akl" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/structure/frame/computer, +/turf/open/floor/carpet, +/area/security/vacantoffice) +"akm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"akn" = ( +/obj/machinery/computer/crew, +/obj/machinery/ai_status_display{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/blue/side{ + dir = 10 + }, +/area/security/checkpoint/customs) +"ako" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/security/checkpoint/customs) +"akp" = ( +/obj/structure/table/reinforced, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/turf/open/floor/plasteel/blue/side{ + dir = 4 + }, +/area/security/checkpoint/customs) +"akq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/checkpoint/customs) +"akr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/blue/corner{ + dir = 8 + }, +/area/hallway/secondary/entry) +"aks" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry) +"akt" = ( +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"aku" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"akv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"akw" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry) +"akx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/entry) +"aky" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner, +/area/hallway/secondary/entry) +"akz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/checkpoint/checkpoint2) +"akA" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/checkpoint/checkpoint2) +"akB" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/security/checkpoint/checkpoint2) +"akC" = ( +/obj/machinery/computer/prisoner, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/camera{ + c_tag = "Security Post - Arrivals"; + dir = 8; + name = "security camera" + }, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/checkpoint/checkpoint2) +"akD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/starboard/fore) +"akE" = ( +/obj/machinery/computer/arcade, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"akF" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Starboard Bow Maintenance APC"; + areastring = "/area/maintenance/starboard/fore"; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool/bar, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"akG" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/maintenance/starboard/fore) +"akH" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/redyellow, +/area/maintenance/starboard/fore) +"akI" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/redyellow, +/area/maintenance/starboard/fore) +"akJ" = ( +/obj/structure/table/wood, +/obj/item/clothing/suit/syndicatefake, +/obj/item/clothing/head/syndicatefake, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/redyellow, +/area/maintenance/starboard/fore) +"akP" = ( +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/atmospherics_engine) +"akQ" = ( +/obj/structure/reflector/double/anchored{ + dir = 6 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmospherics_engine) +"akR" = ( +/obj/structure/reflector/double/anchored{ + dir = 10 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmospherics_engine) +"akS" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/electronic_marketing_den) +"akT" = ( +/turf/open/floor/plasteel/black, +/area/crew_quarters/electronic_marketing_den) +"akU" = ( +/obj/structure/table/wood, +/obj/item/clothing/neck/tie/red, +/obj/item/clothing/head/that, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/electronic_marketing_den) +"akV" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/crew_quarters/electronic_marketing_den) +"akW" = ( +/turf/open/floor/wood, +/area/crew_quarters/electronic_marketing_den) +"akX" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/crew_quarters/electronic_marketing_den) +"akZ" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/crew_quarters/electronic_marketing_den) +"ala" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/crew_quarters/electronic_marketing_den) +"alb" = ( +/obj/structure/frame/computer, +/obj/item/stack/cable_coil/white, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/wood, +/area/crew_quarters/electronic_marketing_den) +"alc" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/maintenance/port/fore) +"ald" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port/fore) +"ale" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/grimy, +/area/security/vacantoffice) +"alf" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/turf/open/floor/carpet, +/area/security/vacantoffice) +"alg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/security/vacantoffice) +"alh" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"ali" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"alj" = ( +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = -26 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"alk" = ( +/obj/machinery/door/airlock/maintenance_hatch/abandoned{ + name = "Office Maintenance"; + req_access_txt = "32" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/vacantoffice) +"all" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"alm" = ( +/obj/machinery/computer/card, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Customs"; + dir = 4; + name = "customs camera" + }, +/turf/open/floor/plasteel/blue, +/area/security/checkpoint/customs) +"aln" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/security/checkpoint/customs) +"alo" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/table/reinforced, +/obj/item/folder/blue, +/obj/item/pen, +/turf/open/floor/plasteel/blue/side{ + dir = 4 + }, +/area/security/checkpoint/customs) +"alp" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/door/window/brigdoor/southright{ + dir = 8; + name = "Customs Desk"; + req_access_txt = "19" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"alq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"alr" = ( +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry) +"als" = ( +/obj/machinery/holopad, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"alt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"alu" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/checkpoint2) +"alv" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/door/window/brigdoor/southright{ + dir = 8; + name = "Security Desk"; + pixel_x = -8; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/checkpoint/checkpoint2) +"alw" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/security/checkpoint/checkpoint2) +"alx" = ( +/obj/machinery/computer/security, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26 + }, +/turf/open/floor/plasteel/red, +/area/security/checkpoint/checkpoint2) +"aly" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/starboard/fore) +"alz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"alA" = ( +/obj/structure/table/wood, +/obj/item/toy/plush/carpplushie, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/maintenance/starboard/fore) +"alB" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/maintenance/starboard/fore) +"alC" = ( +/obj/machinery/computer/arcade, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/maintenance/starboard/fore) +"alD" = ( +/obj/structure/table/wood, +/obj/item/coin/antagtoken, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/maintenance/starboard/fore) +"alE" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/chair/stool/bar, +/turf/open/floor/plasteel/black, +/area/maintenance/starboard/fore) +"alF" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/folder, +/obj/item/toy/dummy, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/redyellow, +/area/maintenance/starboard/fore) +"alG" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel/redyellow, +/area/maintenance/starboard/fore) +"alH" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/toy/syndicateballoon, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/redyellow, +/area/maintenance/starboard/fore) +"alI" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/disposal) +"alJ" = ( +/turf/closed/wall, +/area/maintenance/disposal) +"alO" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/solar{ + id = "foreport"; + name = "Fore-Port Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/port/fore) +"alP" = ( +/obj/structure/reflector/double/anchored{ + dir = 6 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmospherics_engine) +"alQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmospherics_engine) +"alR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmospherics_engine) +"alS" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/black, +/area/crew_quarters/electronic_marketing_den) +"alT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/electronic_marketing_den) +"alU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/black, +/area/crew_quarters/electronic_marketing_den) +"alV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/electronic_marketing_den) +"alW" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/electronic_marketing_den) +"alX" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/electronics/airalarm, +/obj/item/electronics/airlock, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/electronic_marketing_den) +"alY" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/electronic_marketing_den) +"alZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/electronic_marketing_den) +"ama" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/electronic_marketing_den) +"amb" = ( +/obj/structure/frame/computer, +/obj/item/circuitboard/computer/secure_data, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood{ + icon_state = "wood-broken2" + }, +/area/crew_quarters/electronic_marketing_den) +"amc" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"amd" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/fore) +"ame" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"amf" = ( +/obj/structure/chair/office/dark, +/turf/open/floor/plasteel/grimy, +/area/security/vacantoffice) +"amg" = ( +/mob/living/simple_animal/cockroach, +/turf/open/floor/plasteel/grimy, +/area/security/vacantoffice) +"amh" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"ami" = ( +/obj/structure/table/wood, +/obj/item/device/camera_film{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/device/camera_film, +/turf/open/floor/wood, +/area/security/vacantoffice) +"amj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/maintenance/port/fore) +"amk" = ( +/obj/machinery/computer/med_data, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/blue/side{ + dir = 9 + }, +/area/security/checkpoint/customs) +"aml" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/neutral, +/area/security/checkpoint/customs) +"amm" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/blue/side{ + dir = 4 + }, +/area/security/checkpoint/customs) +"amn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/white, +/turf/open/floor/plating, +/area/security/checkpoint/customs) +"amo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"amp" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/entry) +"amq" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry) +"amr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"ams" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"amt" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry) +"amu" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/white, +/turf/open/floor/plating, +/area/security/checkpoint/checkpoint2) +"amv" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/checkpoint/checkpoint2) +"amw" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/neutral, +/area/security/checkpoint/checkpoint2) +"amx" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/ai_status_display{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/checkpoint/checkpoint2) +"amy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/starboard/fore) +"amz" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"amA" = ( +/obj/structure/chair/stool/bar, +/turf/open/floor/plasteel/black, +/area/maintenance/starboard/fore) +"amB" = ( +/obj/structure/chair/stool/bar, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/black, +/area/maintenance/starboard/fore) +"amC" = ( +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"amD" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/black, +/area/maintenance/starboard/fore) +"amE" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/maintenance/starboard/fore) +"amF" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/item/coin/iron{ + icon_state = "coin_bananium_heads"; + name = "arcade coin"; + pixel_x = 6 + }, +/obj/item/coin/iron{ + icon_state = "coin_bananium_heads"; + name = "arcade coin"; + pixel_x = -6 + }, +/obj/item/coin/iron{ + icon_state = "coin_bananium_heads"; + name = "arcade coin"; + pixel_y = 6 + }, +/turf/open/floor/plasteel/redyellow, +/area/maintenance/starboard/fore) +"amG" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/clothing/head/collectable/HoP, +/turf/open/floor/plasteel/redyellow, +/area/maintenance/starboard/fore) +"amH" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/disposal) +"amI" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/conveyor{ + dir = 5; + id = "garbage"; + verted = -1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/maintenance/disposal) +"amJ" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/sign/vacuum{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"amK" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"amL" = ( +/obj/machinery/mass_driver{ + dir = 4; + id = "trash" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"amM" = ( +/obj/machinery/door/poddoor{ + id = "trash"; + name = "Disposals Launch Seal" + }, +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"amW" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/fore) +"amX" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/fore) +"amY" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/fore) +"amZ" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/fore) +"ana" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmospherics_engine) +"anb" = ( +/obj/structure/reflector/box/anchored, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmospherics_engine) +"anc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmospherics_engine) +"and" = ( +/obj/structure/table/wood, +/obj/item/circuitboard/computer/arcade, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/electronic_marketing_den) +"ane" = ( +/obj/structure/table/wood, +/obj/item/electronics/airalarm, +/obj/item/circuitboard/computer/med_data, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/electronic_marketing_den) +"anf" = ( +/obj/structure/chair/stool/bar, +/turf/open/floor/wood, +/area/crew_quarters/electronic_marketing_den) +"ang" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/turf/open/floor/wood, +/area/crew_quarters/electronic_marketing_den) +"anh" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/pen, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/wood, +/area/crew_quarters/electronic_marketing_den) +"ani" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/electronic_marketing_den) +"anj" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/wood, +/area/crew_quarters/electronic_marketing_den) +"ank" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/crew_quarters/electronic_marketing_den) +"anl" = ( +/obj/structure/frame/computer, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/electronic_marketing_den) +"anm" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port/fore) +"ann" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel/neutral/side{ + dir = 6 + }, +/area/maintenance/port/fore) +"ano" = ( +/obj/structure/table/wood, +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -3; + pixel_y = 3 + }, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/grimy, +/area/security/vacantoffice) +"anq" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/grimy, +/area/security/vacantoffice) +"anr" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/machinery/camera{ + c_tag = "Vacant Office"; + dir = 1; + name = "security camera" + }, +/turf/open/floor/plasteel/grimy, +/area/security/vacantoffice) +"ans" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/wood, +/area/security/vacantoffice) +"ant" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Auxiliary Office APC"; + areastring = "/area/security/vacantoffice"; + pixel_y = -26 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white, +/turf/open/floor/wood, +/area/security/vacantoffice) +"anv" = ( +/obj/structure/table/wood, +/obj/item/device/camera, +/obj/machinery/light/small, +/obj/structure/sign/nanotrasen{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"anw" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"anx" = ( +/obj/structure/closet/secure_closet/contraband/heads, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/item/storage/secure/briefcase, +/turf/open/floor/plasteel/blue/side{ + dir = 10 + }, +/area/security/checkpoint/customs) +"any" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/blue/side, +/area/security/checkpoint/customs) +"anz" = ( +/obj/structure/filingcabinet/medical, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/blue/side{ + dir = 6 + }, +/area/security/checkpoint/customs) +"anA" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/chips, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry) +"anB" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry) +"anC" = ( +/obj/machinery/light, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry) +"anD" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry) +"anE" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry) +"anF" = ( +/obj/structure/closet/wardrobe/red, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/checkpoint/checkpoint2) +"anG" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/checkpoint2) +"anH" = ( +/obj/structure/closet/secure_closet/security, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/checkpoint/checkpoint2) +"anI" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"anJ" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"anK" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/maintenance/starboard/fore) +"anL" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"anM" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/maintenance/starboard/fore) +"anN" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/maintenance/starboard/fore) +"anO" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/maintenance/starboard/fore) +"anP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/maintenance/starboard/fore) +"anQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/maintenance/disposal) +"anR" = ( +/obj/machinery/conveyor{ + dir = 2; + id = "garbage" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"anS" = ( +/obj/machinery/button/door{ + id = "Disposal Exit"; + name = "Disposal Vent Control"; + pixel_x = -25; + pixel_y = 4; + req_access_txt = "12" + }, +/obj/machinery/button/massdriver{ + id = "trash"; + name = "Trash Ejector Control"; + pixel_x = -26; + pixel_y = -6 + }, +/obj/structure/chair/stool, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"anT" = ( +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "garbage"; + name = "disposal conveyor" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"anU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"anV" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"anZ" = ( +/obj/structure/cable, +/obj/machinery/power/solar{ + id = "foreport"; + name = "Fore-Port Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/port/fore) +"aoa" = ( +/obj/structure/reflector/single/anchored{ + dir = 9 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/atmospherics_engine) +"aob" = ( +/obj/structure/table/wood, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/light_switch{ + pixel_y = -26 + }, +/obj/item/stack/cable_coil/white, +/obj/item/stack/cable_coil/white, +/obj/item/stock_parts/console_screen, +/obj/item/stock_parts/console_screen, +/obj/item/circuitboard/machine/microwave, +/turf/open/floor/plasteel/black, +/area/crew_quarters/electronic_marketing_den) +"aoc" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/electronic_marketing_den) +"aoe" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/crew_quarters/electronic_marketing_den) +"aof" = ( +/obj/machinery/light/small, +/turf/open/floor/wood, +/area/crew_quarters/electronic_marketing_den) +"aog" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/electronic_marketing_den) +"aoi" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/structure/cable/white, +/obj/machinery/power/apc{ + dir = 2; + name = "Electronics Marketing APC"; + areastring = "/area/crew_quarters/electronic_marketing_den"; + pixel_y = -26 + }, +/turf/open/floor/wood, +/area/crew_quarters/electronic_marketing_den) +"aoj" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/obj/item/folder/red, +/obj/item/lighter, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/electronic_marketing_den) +"aok" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aom" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port/fore) +"aon" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Customs Maintenance"; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"aoo" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Security Maintenance"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"aop" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/starboard/fore) +"aor" = ( +/obj/structure/chair/stool/bar, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/black, +/area/maintenance/starboard/fore) +"aos" = ( +/turf/open/floor/plasteel/black, +/area/maintenance/starboard/fore) +"aot" = ( +/obj/structure/table/wood, +/obj/item/toy/talking/AI, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aou" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/maintenance/disposal) +"aov" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right"; + layer = 3 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"aow" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 1; + icon_state = "left"; + name = "Danger: Conveyor Access"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"aox" = ( +/obj/machinery/mineral/stacking_machine{ + input_dir = 2 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"aoy" = ( +/obj/machinery/mineral/stacking_unit_console{ + dir = 2; + machinedir = 8; + pixel_x = 32 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/maintenance/disposal) +"aoG" = ( +/obj/structure/lattice/catwalk, +/obj/effect/landmark/xeno_spawn, +/turf/open/space, +/area/solar/port/fore) +"aoH" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/emitter/anchored{ + dir = 1; + state = 2 + }, +/turf/open/floor/circuit/green, +/area/engine/atmospherics_engine) +"aoI" = ( +/obj/structure/sign/electricshock, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/atmospherics_engine) +"aoJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos{ + name = "Reflector Access"; + req_access_txt = "0"; + req_one_access_txt = "24;10" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aoK" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engine/atmospherics_engine) +"aoL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos{ + name = "Reflector Access"; + req_access_txt = "0"; + req_one_access_txt = "24;10" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aoN" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/electronic_marketing_den) +"aoO" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/electronic_marketing_den) +"aoP" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aoQ" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aoR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aoS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/maintenance/port/fore) +"aoT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aoU" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aoV" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aoW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/maintenance/port/fore) +"aoX" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/maintenance/port/fore) +"aoY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aoZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/port/fore) +"apa" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"apb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"apc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/space_heater, +/turf/open/floor/plasteel/neutral/side{ + dir = 5 + }, +/area/maintenance/port/fore) +"apd" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/secondary/entry) +"ape" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/secondary/entry) +"apf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"apg" = ( +/obj/machinery/vending/cola/random, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Arrivals - Aft"; + dir = 2; + name = "arrivals camera" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aph" = ( +/obj/machinery/vending/snack/random, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"api" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"apj" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/secondary/entry) +"apk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/neutral/side{ + dir = 9 + }, +/area/maintenance/starboard/fore) +"apl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"apm" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"apn" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/item/coin/iron{ + icon_state = "coin_bananium_heads"; + name = "arcade coin" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"apo" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"app" = ( +/obj/structure/table/wood, +/obj/item/toy/talking/codex_gigas, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/maintenance/starboard/fore) +"apq" = ( +/obj/structure/table/wood, +/obj/item/clothing/glasses/regular/hipster, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/maintenance/starboard/fore) +"apr" = ( +/obj/machinery/computer/arcade, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aps" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/item/coin/iron{ + icon_state = "coin_bananium_heads"; + name = "arcade coin" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"apt" = ( +/obj/structure/table/wood, +/obj/item/gun/ballistic/automatic/toy/pistol/unrestricted, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/maintenance/starboard/fore) +"apu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal) +"apv" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/conveyor{ + dir = 9; + id = "garbage"; + verted = -1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"apw" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"apx" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"apy" = ( +/obj/machinery/conveyor{ + dir = 6; + id = "garbage" + }, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 4; + icon_state = "left"; + name = "Danger: Conveyor Access"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"apz" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/maintenance/disposal) +"apD" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/port/fore) +"apE" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/fore) +"apF" = ( +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/glasses/meson/engine, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"apG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"apH" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"apI" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"apJ" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"apK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"apL" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"apM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/caution{ + dir = 4 + }, +/area/engine/atmospherics_engine) +"apN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/circuit/green, +/area/engine/atmospherics_engine) +"apO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/caution{ + dir = 8 + }, +/area/engine/atmospherics_engine) +"apQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"apR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"apS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"apT" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/suit/radiation, +/obj/item/clothing/head/radiation, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"apU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/barsign{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/maintenance/port/fore) +"apV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"apW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 5 + }, +/area/maintenance/port/fore) +"apX" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"apY" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port/fore) +"apZ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aqa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aqb" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port/fore) +"aqc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aqd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 10; + heat_capacity = 1e+006 + }, +/area/maintenance/port/fore) +"aqe" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"aqf" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port/fore) +"aqg" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aqh" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aqi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/maintenance/port/fore) +"aqj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port/fore) +"aqk" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aql" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aqm" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aqn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port/fore) +"aqo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aqp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aqq" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aqr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/port/fore) +"aqs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port/fore) +"aqt" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port/fore) +"aqu" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aqv" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"aqw" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/secondary/entry) +"aqx" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/entry) +"aqy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/entry) +"aqz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/entry) +"aqA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall1"; + location = "hall15" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/entry) +"aqB" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/entry) +"aqC" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/entry) +"aqD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/secondary/entry) +"aqE" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"aqF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aqG" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/maintenance/starboard/fore) +"aqH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/maintenance/starboard/fore) +"aqI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/maintenance/starboard/fore) +"aqJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/starboard/fore) +"aqK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch/abandoned{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"aqL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/closed/wall, +/area/maintenance/starboard/fore) +"aqM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/starboard/fore) +"aqN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/disposal) +"aqO" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/weldingtool, +/obj/item/device/assembly/voice, +/obj/item/clothing/head/welding, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"aqP" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"aqQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aqR" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aqS" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aqT" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aqU" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/obj/machinery/recycler, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aqV" = ( +/obj/machinery/door/window/eastright{ + dir = 4; + name = "Danger: Conveyor Access"; + req_access_txt = "12" + }, +/obj/machinery/conveyor{ + dir = 10; + id = "garbage" + }, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aqW" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aqX" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/fore) +"aqY" = ( +/obj/structure/table/reinforced, +/obj/item/device/analyzer{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/bot, +/obj/item/clothing/glasses/meson{ + pixel_y = 1 + }, +/obj/item/clothing/glasses/meson{ + pixel_y = 1 + }, +/obj/item/clothing/glasses/meson{ + pixel_y = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aqZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"ara" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 6 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmospherics_engine) +"arb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow, +/area/engine/atmospherics_engine) +"arc" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/trinary/filter/critical{ + dir = 4; + filter_type = "n2" + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmospherics_engine) +"ard" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow, +/area/engine/atmospherics_engine) +"are" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/trinary/filter/critical{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"arf" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/caution{ + dir = 4 + }, +/area/engine/atmospherics_engine) +"arg" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/circuit/green, +/area/engine/atmospherics_engine) +"arh" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/caution{ + dir = 8 + }, +/area/engine/atmospherics_engine) +"ari" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/trinary/filter/critical{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"arj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow, +/area/engine/atmospherics_engine) +"ark" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmospherics_engine) +"arl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow, +/area/engine/atmospherics_engine) +"arm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"arn" = ( +/obj/structure/table/reinforced, +/obj/item/tank/internals/emergency_oxygen/engi{ + pixel_x = -5 + }, +/obj/item/tank/internals/emergency_oxygen/engi{ + pixel_x = 5 + }, +/obj/item/device/geiger_counter, +/obj/item/device/geiger_counter, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"arp" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"arq" = ( +/obj/machinery/door/airlock/maintenance_hatch/abandoned{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"arr" = ( +/obj/machinery/door/airlock/maintenance_hatch/abandoned{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"ars" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/port/fore) +"art" = ( +/turf/closed/wall, +/area/janitor) +"aru" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"arv" = ( +/turf/closed/wall, +/area/crew_quarters/toilet/auxiliary) +"arw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/secondary/entry) +"arx" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/secondary/entry) +"ary" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/secondary/entry) +"arz" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"arA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/secondary/entry) +"arB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/secondary/entry) +"arC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/secondary/entry) +"arD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/starboard/fore) +"arE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"arF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"arG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/starboard/fore) +"arH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"arI" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"arJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 6 + }, +/area/maintenance/starboard/fore) +"arK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"arL" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/starboard/fore) +"arM" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"arN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"arO" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"arP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/maintenance/starboard/fore) +"arQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"arR" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/starboard/fore) +"arS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"arT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"arU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"arV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"arW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/brown, +/area/maintenance/disposal) +"arX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plating, +/area/maintenance/disposal) +"arY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plasteel/brown, +/area/maintenance/disposal) +"arZ" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Disposal APC"; + areastring = "/area/maintenance/disposal"; + pixel_y = -24 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/brown{ + dir = 6 + }, +/area/maintenance/disposal) +"asa" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space) +"asb" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space) +"asc" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/engine/atmospherics_engine) +"asd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"ase" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Cooling to Unfiltered"; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"asf" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/orange/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow, +/area/engine/atmospherics_engine) +"asg" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"ash" = ( +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"asi" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"asj" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"ask" = ( +/obj/structure/sign/electricshock{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/caution{ + dir = 4 + }, +/area/engine/atmospherics_engine) +"asl" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/circuit/green, +/area/engine/atmospherics_engine) +"asm" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/caution{ + dir = 8 + }, +/area/engine/atmospherics_engine) +"asn" = ( +/obj/structure/sign/nosmoking_2{ + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aso" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = -26 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"asp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"asq" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/yellow, +/area/engine/atmospherics_engine) +"asr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"ass" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"ast" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/port/fore) +"asu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"asv" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"asw" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/item/crowbar/red, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port/fore) +"asx" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/gloves/color/white, +/obj/item/clothing/head/rabbitears, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"asy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/redblue/redside{ + dir = 8 + }, +/area/maintenance/port/fore) +"asz" = ( +/obj/structure/table_frame/wood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"asA" = ( +/obj/structure/easel, +/obj/item/canvas/twentythreeXtwentythree, +/obj/item/canvas/twentythreeXtwentythree, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"asB" = ( +/obj/structure/easel, +/obj/item/canvas/twentythreeXtwentythree, +/obj/item/canvas/twentythreeXtwentythree, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/port/fore) +"asC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/maintenance/port/fore) +"asD" = ( +/obj/structure/table/wood, +/obj/item/device/camera_film, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"asE" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port/fore) +"asF" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/obj/item/storage/box/mousetraps{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/mousetraps, +/obj/item/restraints/legcuffs/beartrap{ + icon_state = "beartrap0" + }, +/obj/item/restraints/legcuffs/beartrap{ + icon_state = "beartrap0" + }, +/obj/item/restraints/legcuffs/beartrap{ + icon_state = "beartrap0" + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/neutral, +/area/janitor) +"asG" = ( +/obj/vehicle/janicart, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/bag/trash, +/obj/item/key/janitor, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/neutral, +/area/janitor) +"asH" = ( +/obj/structure/closet/jcloset, +/obj/machinery/power/apc{ + dir = 1; + name = "Custodial Closet APC"; + areastring = "/area/janitor"; + pixel_y = 24 + }, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/item/clothing/under/maid, +/obj/item/clothing/shoes/laceup, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/neutral, +/area/janitor) +"asI" = ( +/obj/structure/closet/l3closet/janitor, +/obj/machinery/requests_console{ + department = "Custodial Closet"; + departmentType = 0; + name = "Custodial RC"; + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Custodial Closet"; + dir = 2; + name = "service camera" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/neutral, +/area/janitor) +"asJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/item/clipboard, +/obj/item/toy/figure/janitor, +/turf/open/floor/plasteel/neutral, +/area/janitor) +"asK" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/stack/packageWrap, +/obj/item/crowbar, +/obj/item/hand_labeler, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/neutral, +/area/janitor) +"asL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"asM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch{ + pixel_x = -26 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/toilet/auxiliary) +"asN" = ( +/obj/structure/urinal{ + pixel_y = 28 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/toilet/auxiliary) +"asO" = ( +/obj/structure/urinal{ + pixel_y = 28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/crew_quarters/toilet/auxiliary) +"asP" = ( +/obj/structure/urinal{ + pixel_y = 28 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/toilet/auxiliary) +"asQ" = ( +/obj/machinery/door/airlock{ + name = "Auxiliary Restroom" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/toilet/auxiliary) +"asR" = ( +/obj/structure/sign/directions/evac{ + pixel_y = -8 + }, +/obj/structure/sign/directions/science{ + dir = 2 + }, +/obj/structure/sign/directions/engineering{ + dir = 2; + pixel_y = 8 + }, +/turf/closed/wall, +/area/crew_quarters/toilet/auxiliary) +"asS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Fore Primary Hallway" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"asT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Fore Primary Hallway" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"asU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/glass{ + name = "Fore Primary Hallway" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"asV" = ( +/obj/structure/sign/directions/evac{ + pixel_y = -8 + }, +/obj/structure/sign/directions/medical{ + dir = 2 + }, +/obj/structure/sign/directions/security{ + dir = 2; + pixel_y = 8 + }, +/turf/closed/wall, +/area/quartermaster/warehouse) +"asW" = ( +/turf/closed/wall, +/area/quartermaster/warehouse) +"asX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Warehouse Maintenance"; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"asY" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/closed/wall, +/area/quartermaster/warehouse) +"asZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/quartermaster/warehouse) +"ata" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/quartermaster/storage) +"atb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/quartermaster/storage) +"atc" = ( +/turf/closed/wall, +/area/quartermaster/storage) +"atd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Cargo Maintenance"; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"ate" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space, +/area/solar/port/fore) +"atf" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space) +"atg" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"ath" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"atj" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + icon_state = "pump_map"; + name = "Gas to Loop" + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmospherics_engine) +"atk" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"atl" = ( +/obj/machinery/ai_status_display, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"atm" = ( +/obj/machinery/status_display, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"atn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"ato" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plasteel/neutral, +/area/engine/atmospherics_engine) +"atp" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 8; + name = "scrubbers pipe" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"atq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"atr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engine/atmospherics_engine) +"ats" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "n2_in"; + volume_rate = 200 + }, +/turf/open/space, +/area/engine/atmospherics_engine) +"att" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral, +/area/maintenance/port/fore) +"atu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"atv" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"atw" = ( +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/suspenders, +/obj/effect/spawner/lootdrop/costume, +/turf/open/floor/plasteel/redblue, +/area/maintenance/port/fore) +"atx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/redblue/redside{ + dir = 8 + }, +/area/maintenance/port/fore) +"aty" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/melee/skateboard, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/port/fore) +"atz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood{ + icon_state = "wood-broken2" + }, +/area/maintenance/port/fore) +"atA" = ( +/mob/living/simple_animal/cockroach, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"atB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"atC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"atD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"atE" = ( +/obj/machinery/door/airlock/maintenance_hatch/abandoned{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"atF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"atG" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port/fore) +"atH" = ( +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/orange, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/neutral, +/area/janitor) +"atI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/janitor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/janitor) +"atJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/janitor) +"atK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 1 + }, +/area/janitor) +"atL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/janitor, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 5 + }, +/area/janitor) +"atM" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/neutral, +/area/janitor) +"atN" = ( +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"atO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/mirror{ + pixel_x = -26 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/toilet/auxiliary) +"atP" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/crew_quarters/toilet/auxiliary) +"atQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/crew_quarters/toilet/auxiliary) +"atR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/crew_quarters/toilet/auxiliary) +"atS" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/camera{ + c_tag = "Auxiliary Restroom"; + dir = 2; + name = "restroom camera" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/crew_quarters/toilet/auxiliary) +"atT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/crew_quarters/toilet/auxiliary) +"atU" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 5 + }, +/area/crew_quarters/toilet/auxiliary) +"atV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/fore) +"atW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/fore) +"atX" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Hallway - Fore"; + dir = 8; + name = "hallway camera" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/fore) +"atY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/warehouse) +"atZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"aua" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"aub" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"auc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/warehouse) +"aud" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Cargo - Warehouse"; + dir = 2; + name = "cargo camera" + }, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"aue" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/warehouse) +"auf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"aug" = ( +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/structure/table, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"auh" = ( +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/structure/filingcabinet/filingcabinet, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aui" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/filingcabinet/filingcabinet, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"auj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/storage) +"auk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aul" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/storage) +"aum" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/storage) +"aun" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/lights/mixed, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/storage) +"auo" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/stockexchange, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/storage) +"aup" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/storage) +"auq" = ( +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/storage) +"aur" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aus" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aut" = ( +/obj/machinery/status_display{ + name = "cargo display"; + supply_display = 1 + }, +/turf/closed/wall, +/area/quartermaster/storage) +"auu" = ( +/obj/item/stack/cable_coil, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/fore) +"auv" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/space, +/area/space) +"auw" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"aux" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/bot, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"auy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"auz" = ( +/obj/machinery/meter, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow, +/area/engine/atmospherics_engine) +"auA" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"auB" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"auC" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"auD" = ( +/obj/machinery/power/rad_collector/anchored, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/window/plasma/reinforced{ + dir = 4 + }, +/turf/open/floor/circuit/green, +/area/engine/supermatter) +"auE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"auF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"auG" = ( +/obj/machinery/power/rad_collector/anchored, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/window/plasma/reinforced{ + dir = 8 + }, +/turf/open/floor/circuit/green, +/area/engine/supermatter) +"auH" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "Supermatter Chamber"; + dir = 2; + network = list("Engine") + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"auI" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"auJ" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"auK" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Filter to Gas" + }, +/turf/open/floor/plasteel/yellow, +/area/engine/atmospherics_engine) +"auL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"auM" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"auN" = ( +/turf/open/floor/plasteel/neutral, +/area/maintenance/port/fore) +"auO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/maintenance/port/fore) +"auP" = ( +/obj/structure/rack, +/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auQ" = ( +/obj/structure/table_frame/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/redblue, +/area/maintenance/port/fore) +"auR" = ( +/turf/open/floor/plasteel/redblue, +/area/maintenance/port/fore) +"auS" = ( +/turf/open/floor/plasteel/redblue/redside{ + dir = 8 + }, +/area/maintenance/port/fore) +"auT" = ( +/obj/structure/dresser, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/port/fore) +"auU" = ( +/obj/structure/table/wood, +/obj/item/device/camera, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/maintenance/port/fore) +"auV" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/maintenance/port/fore) +"auW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/nosmoking_2{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auY" = ( +/obj/machinery/photocopier, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/mob/living/simple_animal/cockroach, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ava" = ( +/obj/structure/table/reinforced, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/item/storage/box/lights/mixed{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/lights/mixed, +/obj/item/device/lightreplacer, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/janitor) +"avb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 8 + }, +/area/janitor) +"avc" = ( +/obj/machinery/holopad, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/neutral, +/area/janitor) +"avd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/effect/landmark/event_spawn, +/mob/living/simple_animal/hostile/lizard{ + name = "Eats-The-Roaches"; + real_name = "Wags-His-Tail" + }, +/turf/open/floor/plasteel/neutral, +/area/janitor) +"ave" = ( +/turf/open/floor/plasteel/whitepurple/side{ + dir = 4 + }, +/area/janitor) +"avg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/maintenance/port/fore) +"avh" = ( +/obj/machinery/light/small, +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/crew_quarters/toilet/auxiliary) +"avi" = ( +/turf/open/floor/plasteel/neutral/side, +/area/crew_quarters/toilet/auxiliary) +"avj" = ( +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/neutral/side, +/area/crew_quarters/toilet/auxiliary) +"avk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral/side, +/area/crew_quarters/toilet/auxiliary) +"avl" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc{ + dir = 2; + name = "Auxiliary Restrooms APC"; + areastring = "/area/crew_quarters/toilet/auxiliary"; + pixel_y = -26 + }, +/turf/open/floor/plating, +/area/crew_quarters/toilet/auxiliary) +"avm" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral/side{ + dir = 6 + }, +/area/crew_quarters/toilet/auxiliary) +"avn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/fore) +"avo" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/fore) +"avp" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j1"; + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/fore) +"avq" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"avr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"avs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/secure/loot, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"avt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/warehouse) +"avu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"avv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"avw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/cardboard, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"avx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/warehouse) +"avy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Cargo Warehouse"; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"avz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"avA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"avB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"avC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"avD" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"avE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"avF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"avG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"avH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"avI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/loadingarea{ + dir = 8 + }, +/area/quartermaster/storage) +"avJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + dir = 1; + id = "cargounload" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"avK" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/storage) +"avL" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/supply) +"avN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + icon_state = "pump_map"; + name = "Thermo to Gas" + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"avO" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"avP" = ( +/obj/machinery/power/rad_collector/anchored, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/window/plasma/reinforced{ + dir = 4 + }, +/turf/open/floor/circuit/green, +/area/engine/supermatter) +"avQ" = ( +/obj/machinery/power/supermatter_shard/crystal/engine, +/turf/open/floor/engine, +/area/engine/supermatter) +"avR" = ( +/obj/machinery/power/rad_collector/anchored, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/window/plasma/reinforced{ + dir = 8 + }, +/turf/open/floor/circuit/green, +/area/engine/supermatter) +"avS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"avT" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"avU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmospherics_engine) +"avV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"avW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"avX" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"avY" = ( +/obj/machinery/light/small, +/obj/machinery/power/apc{ + dir = 2; + name = "Port Bow Maintenance APC"; + areastring = "/area/maintenance/port/fore"; + pixel_y = -26 + }, +/obj/structure/cable/white, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port/fore) +"awa" = ( +/obj/machinery/vending/autodrobe{ + req_access_txt = "0" + }, +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/redblue/redside{ + dir = 8 + }, +/area/maintenance/port/fore) +"awc" = ( +/obj/structure/table/wood, +/obj/item/lipstick/random{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/lipstick/random{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/lipstick/random, +/obj/structure/sign/nosmoking_2{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/port/fore) +"awd" = ( +/obj/structure/table/wood, +/obj/item/canvas/twentythreeXnineteen, +/obj/item/canvas/nineteenXnineteen, +/obj/item/storage/crayons, +/obj/item/storage/crayons, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/maintenance/port/fore) +"awf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 10 + }, +/area/janitor) +"awg" = ( +/obj/machinery/light_switch{ + pixel_y = -26 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 1 + }, +/area/janitor) +"awh" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/neutral, +/area/janitor) +"awi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/neutral, +/area/janitor) +"awj" = ( +/obj/machinery/disposal/bin, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/neutral, +/area/janitor) +"awk" = ( +/obj/machinery/door/airlock{ + name = "Toilet Unit" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/toilet/auxiliary) +"awl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/toilet/auxiliary) +"awm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/fore) +"awn" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/fore) +"awo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/fore) +"awp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"awq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/quartermaster/warehouse) +"awr" = ( +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"aws" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/warehouse) +"awt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"awu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"awv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/internals, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"aww" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"awx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/warehouse) +"awy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Cargo Warehouse"; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"awz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"awA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"awB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"awC" = ( +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"awD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"awE" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"awF" = ( +/obj/effect/landmark/start/cargo_technician, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"awG" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"awH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"awI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"awJ" = ( +/turf/open/floor/plasteel/loadingarea{ + dir = 8 + }, +/area/quartermaster/storage) +"awK" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/storage) +"awL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/shuttle/supply) +"awM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/shuttle/supply) +"awN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/shuttle/supply) +"awO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/shuttle/supply) +"awP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/space, +/area/solar/port/fore) +"awQ" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space) +"awR" = ( +/obj/structure/sign/securearea{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Supermatter Engine - Port"; + dir = 4; + name = "atmospherics camera"; + network = list("SS13","Engine") + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"awS" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"awT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel/yellow, +/area/engine/atmospherics_engine) +"awU" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"awV" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"awW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/securearea{ + pixel_x = 32 + }, +/obj/machinery/camera{ + c_tag = "Supermatter Engine - Starboard"; + dir = 8; + name = "atmospherics camera"; + network = list("SS13","Engine") + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"awX" = ( +/turf/closed/wall, +/area/hydroponics/garden/abandoned) +"awY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral/side{ + dir = 9 + }, +/area/maintenance/port/fore) +"awZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"axa" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/maintenance/port/fore) +"axb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port/fore) +"axc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/janitor) +"axd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock{ + name = "Custodial Closet"; + req_access_txt = "26" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/janitor) +"axe" = ( +/obj/machinery/door/poddoor/shutters{ + id = "custodialshutters"; + name = "Custodial Closet Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/janitor) +"axf" = ( +/obj/machinery/door/poddoor/shutters{ + id = "custodialshutters"; + name = "Custodial Closet Shutters" + }, +/obj/machinery/button/door{ + id = "custodialshutters"; + name = "Custodial Shutters"; + pixel_x = 26; + req_access_txt = "26" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/janitor) +"axg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port/fore) +"axh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit/old, +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/crew_quarters/toilet/auxiliary) +"axi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/machinery/light/small, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/toilet/auxiliary) +"axj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/machinery/light/small, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/toilet/auxiliary) +"axk" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/crew_quarters/toilet/auxiliary) +"axl" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/fore) +"axm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/fore) +"axn" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"axo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"axp" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/warehouse) +"axq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/cargo_technician, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/warehouse) +"axr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/warehouse) +"axs" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/warehouse) +"axt" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/warehouse) +"axu" = ( +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/warehouse) +"axv" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "QM #1" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"axw" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel/loadingarea{ + dir = 4 + }, +/area/quartermaster/storage) +"axx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"axy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"axz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"axA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"axB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor_switch{ + id = "cargounload" + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/storage) +"axC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Virology - Break Room"; + dir = 8; + name = "virology camera" + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 4 + }, +/area/medical/virology) +"axD" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/storage) +"axE" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/vacuum, +/turf/open/floor/plating, +/area/quartermaster/storage) +"axF" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/storage) +"axG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/shuttle/supply) +"axH" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/shuttle/supply) +"axI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/shuttle/supply) +"axJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/shuttle/supply) +"axK" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/space, +/area/solar/port/fore) +"axL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"axM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"axN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel/neutral, +/area/engine/atmospherics_engine) +"axO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"axP" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"axQ" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"axR" = ( +/obj/machinery/door/airlock/glass_atmos{ + heat_proof = 1; + name = "Supermatter Chamber"; + req_access_txt = "0"; + req_one_access_txt = "24;10" + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"axS" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"axT" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"axU" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"axV" = ( +/obj/machinery/meter, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmospherics_engine) +"axW" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + icon_state = "pump_map"; + name = "Atmos to Gas" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"axX" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"axY" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmospherics_engine) +"axZ" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 10 + }, +/turf/open/space, +/area/space) +"aya" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/sunflower, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hydroponics/garden/abandoned) +"ayb" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hydroponics/garden/abandoned) +"ayc" = ( +/obj/structure/table, +/obj/item/clothing/suit/apron/overalls, +/obj/item/cultivator, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics/garden/abandoned) +"ayd" = ( +/obj/machinery/biogenerator, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hydroponics/garden/abandoned) +"aye" = ( +/obj/structure/table, +/obj/item/seeds/poppy/lily{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/seeds/poppy/geranium, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/food/snacks/grown/wheat, +/obj/item/reagent_containers/food/snacks/grown/corn, +/obj/item/reagent_containers/food/snacks/grown/apple, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/hydroponics/garden/abandoned) +"ayf" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/tea, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hydroponics/garden/abandoned) +"ayg" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hydroponics/garden/abandoned) +"ayh" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/effect/decal/cleanable/dirt, +/obj/item/hand_labeler, +/obj/item/reagent_containers/food/snacks/grown/tea, +/obj/item/reagent_containers/food/snacks/grown/grapes, +/obj/item/reagent_containers/food/snacks/grown/cherries, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics/garden/abandoned) +"ayi" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/poppy, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hydroponics/garden/abandoned) +"ayj" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ayk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ayl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aym" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port/fore) +"ayn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port/fore) +"ayo" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ayp" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ayq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 9 + }, +/area/maintenance/port/fore) +"ayr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j2s"; + name = "Bar Junction"; + sortType = 19 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"ays" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/maintenance/port/fore) +"ayt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"ayu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j1s"; + name = "Custodial Junction"; + sortType = 22 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"ayv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ayw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/maintenance/port/fore) +"ayx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 5 + }, +/area/maintenance/port/fore) +"ayy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/toilet/auxiliary) +"ayA" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/fore) +"ayB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/warehouse) +"ayC" = ( +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"ayD" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"ayE" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/warehouse) +"ayF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/deadcockroach, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"ayG" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"ayH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/mousetraps, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"ayI" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"ayJ" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"ayK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "QM #2" + }, +/obj/effect/turf_decal/delivery, +/mob/living/simple_animal/bot/mulebot{ + home_destination = "QM #3"; + suffix = "#3" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"ayL" = ( +/turf/open/floor/plasteel/loadingarea{ + dir = 4 + }, +/area/quartermaster/storage) +"ayM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"ayN" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"ayO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"ayP" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"ayQ" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"ayR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"ayS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"ayT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/storage) +"ayU" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "cargounload" + }, +/obj/machinery/door/poddoor{ + id = "cargounload"; + name = "supply dock unloading door" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"ayV" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "cargounload" + }, +/obj/structure/plasticflaps, +/turf/open/floor/plating, +/area/quartermaster/storage) +"ayW" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "cargounload" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor{ + id = "cargounload"; + name = "supply dock unloading door" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"ayX" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "cargounload" + }, +/obj/machinery/door/poddoor{ + id = "cargounload"; + name = "supply dock unloading door" + }, +/turf/open/floor/plating, +/area/shuttle/supply) +"ayY" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/shuttle/supply) +"ayZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/shuttle/supply) +"aza" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + filter_type = "n2"; + name = "nitrogen filter" + }, +/turf/open/floor/plasteel/yellow, +/area/engine/atmospherics_engine) +"azc" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"azd" = ( +/obj/structure/sign/radiation, +/turf/closed/wall/r_wall, +/area/engine/atmospherics_engine) +"aze" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Gas to Filter" + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"azf" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + icon_state = "pump_map"; + name = "Gas to Chamber" + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"azg" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"azh" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"azi" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"azj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/yellow, +/area/engine/atmospherics_engine) +"azk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"azl" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/escape{ + dir = 4 + }, +/area/engine/atmospherics_engine) +"azm" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/space, +/area/space) +"azn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/hydrofloor, +/area/hydroponics/garden/abandoned) +"azo" = ( +/turf/open/floor/plasteel/hydrofloor, +/area/hydroponics/garden/abandoned) +"azp" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"azq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/port/fore) +"azr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/port/fore) +"azs" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/closed/wall, +/area/maintenance/port/fore) +"azt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"azu" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"azv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port/fore) +"azw" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"azx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/maintenance/port/fore) +"azy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/maintenance/port/fore) +"azz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"azA" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/fore) +"azB" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/fore) +"azC" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/fore) +"azD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"azE" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Warehouse Maintenance"; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"azF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j1s"; + sortType = 1 + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/quartermaster/warehouse) +"azG" = ( +/obj/effect/decal/cleanable/oil, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"azH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/warehouse) +"azI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"azJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"azK" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"azL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"azM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Cargo Warehouse APC"; + areastring = "/area/quartermaster/warehouse"; + pixel_x = 26 + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/warehouse) +"azN" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "QM #3" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"azO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/loadingarea{ + dir = 4 + }, +/area/quartermaster/storage) +"azP" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"azQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"azR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"azS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"azT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"azU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 4; + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"azV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"azW" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 8; + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"azX" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Supply Shuttle Airlock"; + req_access_txt = "31" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/shuttle/supply) +"azY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/shuttle/supply) +"azZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aAb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 5 + }, +/obj/item/wrench, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aAc" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aAd" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"aAe" = ( +/obj/machinery/atmospherics/components/binary/pump, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aAf" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "External Gas to Loop" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aAg" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmospherics_engine) +"aAh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aAi" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/pump, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/engine/atmospherics_engine) +"aAj" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/space, +/area/space) +"aAk" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics/garden/abandoned) +"aAl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/hydrofloor, +/area/hydroponics/garden/abandoned) +"aAm" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/sign/botany{ + pixel_x = 32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics/garden/abandoned) +"aAn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/port/fore) +"aAo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/hallway/secondary/service) +"aAp" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/service) +"aAq" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/service) +"aAr" = ( +/obj/structure/bed, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/item/bedsheet/rainbow, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/service) +"aAs" = ( +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/service) +"aAt" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/service) +"aAu" = ( +/turf/closed/wall, +/area/hallway/secondary/service) +"aAv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/hallway/secondary/service) +"aAw" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Service Hallway Maintenance Hatch"; + req_access_txt = "0"; + req_one_access_txt = "12;25;28;46" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"aAx" = ( +/turf/closed/wall, +/area/crew_quarters/bar) +"aAy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/fore) +"aAz" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/fore) +"aAA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/brown, +/area/quartermaster/warehouse) +"aAB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"aAC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/brown, +/area/quartermaster/warehouse) +"aAD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/brown, +/area/quartermaster/warehouse) +"aAE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"aAF" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"aAG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/brown, +/area/quartermaster/warehouse) +"aAH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/brown, +/area/quartermaster/warehouse) +"aAI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/brown{ + dir = 6 + }, +/area/quartermaster/warehouse) +"aAJ" = ( +/obj/machinery/camera{ + c_tag = "Cargo Bay - Port"; + dir = 4; + name = "cargo camera" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "QM #4" + }, +/obj/effect/turf_decal/delivery, +/mob/living/simple_animal/bot/mulebot{ + beacon_freq = 1400; + home_destination = "QM #1"; + suffix = "#1" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aAK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/loadingarea{ + dir = 4 + }, +/area/quartermaster/storage) +"aAL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aAM" = ( +/obj/structure/closet/cardboard, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aAN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/cargo_technician, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aAO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aAP" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aAQ" = ( +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/storage) +"aAR" = ( +/obj/machinery/button/door{ + dir = 2; + id = "cargounload"; + layer = 4; + name = "Loading Doors"; + pixel_x = 24; + pixel_y = 8 + }, +/obj/machinery/button/door{ + id = "cargoload"; + layer = 4; + name = "Loading Doors"; + pixel_x = 24; + pixel_y = -8 + }, +/obj/machinery/computer/cargo, +/obj/machinery/camera{ + c_tag = "Cargo Bay - Starboard"; + dir = 8; + name = "cargo camera" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aAS" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aAT" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aAU" = ( +/obj/machinery/button/door{ + dir = 2; + id = "cargounload"; + name = "Loading Doors"; + pixel_x = -24; + pixel_y = 8 + }, +/obj/machinery/button/door{ + id = "cargoload"; + name = "Loading Doors"; + pixel_x = -24; + pixel_y = -8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/shuttle/supply) +"aAV" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Gas to Cooling Loop"; + on = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aAW" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/green/visible, +/turf/open/floor/plasteel/yellow, +/area/engine/atmospherics_engine) +"aAX" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aAY" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aAZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/fire{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/trinary/filter/critical{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aBa" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/button/door{ + id = "engsm"; + name = "Radiation Shutters Control"; + pixel_y = 24; + req_access_txt = "24" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/green/visible, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aBb" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Gas to Filter"; + on = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aBc" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "Supermatter Engine - Aft"; + name = "atmospherics camera"; + network = list("SS13","Engine") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aBd" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/engine{ + pixel_y = 23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/supermatter) +"aBe" = ( +/obj/machinery/meter, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aBf" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aBg" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aBh" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/yellow, +/area/engine/atmospherics_engine) +"aBi" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aBj" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Atmospherics Engine APC"; + areastring = "/area/engine/atmospherics_engine"; + pixel_x = 26 + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aBk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/hydrofloor, +/area/hydroponics/garden/abandoned) +"aBl" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/hydrofloor, +/area/hydroponics/garden/abandoned) +"aBm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/hydrofloor, +/area/hydroponics/garden/abandoned) +"aBn" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/hydrofloor, +/area/hydroponics/garden/abandoned) +"aBo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aBp" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/service) +"aBq" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/service) +"aBr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/service) +"aBs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/service) +"aBt" = ( +/obj/machinery/door/airlock{ + id_tag = "AuxCabinA"; + name = "Cabin A"; + req_access_txt = "25" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/service) +"aBu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/secondary/service) +"aBv" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/secondary/service) +"aBw" = ( +/obj/structure/table/wood, +/obj/structure/reagent_dispensers/beerkeg, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/crew_quarters/bar) +"aBx" = ( +/obj/structure/closet/secure_closet/bar, +/obj/machinery/power/apc{ + dir = 1; + name = "Bar APC"; + areastring = "/area/crew_quarters/bar"; + pixel_y = 24 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/bar) +"aBy" = ( +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "sink"; + pixel_y = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/camera{ + c_tag = "Bar Backroom"; + dir = 2; + name = "service camera" + }, +/turf/open/floor/plasteel/black, +/area/crew_quarters/bar) +"aBz" = ( +/obj/structure/closet/secure_closet/bar, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/bar) +"aBA" = ( +/obj/structure/table/wood, +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = 26 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/item/storage/box/beanbag, +/turf/open/floor/plasteel/black, +/area/crew_quarters/bar) +"aBC" = ( +/obj/structure/table/wood, +/obj/structure/sign/barsign{ + pixel_y = 32 + }, +/obj/machinery/chem_dispenser/drinks, +/turf/open/floor/plasteel/black, +/area/crew_quarters/bar) +"aBD" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks/beer, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/bar) +"aBE" = ( +/obj/machinery/vending/boozeomat, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/black, +/area/crew_quarters/bar) +"aBF" = ( +/obj/structure/table/wood, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Bar Counter"; + departmentType = 0; + name = "Bar RC"; + pixel_y = 32; + receive_ore_updates = 1 + }, +/obj/item/book/manual/barman_recipes, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/glass/rag, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/bar) +"aBG" = ( +/obj/structure/table/wood, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/item/clipboard, +/obj/item/toy/figure/bartender, +/turf/open/floor/plasteel/black, +/area/crew_quarters/bar) +"aBH" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/cigarettes/cigars{ + pixel_y = 6 + }, +/obj/item/storage/fancy/cigarettes/cigars/cohiba{ + pixel_y = 3 + }, +/obj/item/storage/fancy/cigarettes/cigars/havana, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/bar) +"aBI" = ( +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/crew_quarters/bar) +"aBJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Port Primary Hallway APC"; + areastring = "/area/hallway/primary/fore"; + pixel_x = -26; + pixel_y = 3 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/fore) +"aBK" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/fore) +"aBL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/fore) +"aBM" = ( +/turf/closed/wall, +/area/quartermaster/sorting) +"aBN" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/quartermaster/sorting) +"aBO" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/mining{ + name = "Cargo Warehouse"; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aBP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/quartermaster/sorting) +"aBQ" = ( +/turf/closed/wall, +/area/security/checkpoint/supply) +"aBR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aBS" = ( +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 4; + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aBT" = ( +/obj/docking_port/mobile/supply{ + dwidth = 5; + roundstart_move = "supply_away"; + width = 12 + }, +/obj/docking_port/stationary{ + dir = 8; + dwidth = 5; + height = 7; + id = "supply_home"; + name = "Cargo Bay"; + width = 12 + }, +/turf/closed/wall/mineral/titanium, +/area/shuttle/supply) +"aBU" = ( +/turf/closed/wall/r_wall, +/area/security/prison) +"aBV" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/prison) +"aBW" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/open/space, +/area/space) +"aBX" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"aBY" = ( +/turf/closed/wall/r_wall, +/area/maintenance/solars/port/fore) +"aBZ" = ( +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"aCa" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"aCb" = ( +/obj/structure/table/reinforced, +/obj/item/tank/internals/plasma, +/obj/machinery/light/small, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aCc" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aCd" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = -28; + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aCe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/yellow, +/area/engine/atmospherics_engine) +"aCf" = ( +/turf/open/floor/plasteel/neutral, +/area/engine/atmospherics_engine) +"aCg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/yellow, +/area/engine/atmospherics_engine) +"aCh" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/yellow, +/area/engine/atmospherics_engine) +"aCi" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aCj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/yellow, +/area/engine/atmospherics_engine) +"aCk" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmospherics_engine) +"aCl" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/yellow, +/area/engine/atmospherics_engine) +"aCm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aCn" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aCo" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/obj/machinery/light/small, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aCp" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hydroponics/garden/abandoned) +"aCq" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/harebell, +/obj/machinery/light/small, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hydroponics/garden/abandoned) +"aCr" = ( +/obj/structure/table, +/obj/item/shovel/spade, +/obj/item/reagent_containers/glass/bottle/nutrient/rh{ + pixel_x = 5 + }, +/obj/item/reagent_containers/glass/bottle/nutrient/ez{ + pixel_x = -5 + }, +/obj/item/reagent_containers/syringe, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white, +/obj/machinery/power/apc{ + dir = 2; + name = "Abandoned Garden APC"; + areastring = "/area/hydroponics/garden/abandoned"; + pixel_y = -26 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics/garden/abandoned) +"aCs" = ( +/obj/machinery/seed_extractor, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hydroponics/garden/abandoned) +"aCt" = ( +/obj/structure/table, +/obj/item/device/plant_analyzer, +/obj/item/hatchet, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics/garden/abandoned) +"aCu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hydroponics/garden/abandoned) +"aCv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hydroponics/garden/abandoned) +"aCw" = ( +/obj/structure/table, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics/garden/abandoned) +"aCx" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/tower, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hydroponics/garden/abandoned) +"aCy" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aCz" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/obj/machinery/button/door{ + id = "AuxCabinA"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + pixel_x = -26; + pixel_y = 7; + req_access_txt = "0"; + specialfunctions = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/service) +"aCA" = ( +/obj/structure/table/wood, +/obj/item/device/paicard, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/service) +"aCB" = ( +/obj/machinery/light, +/obj/structure/closet/wardrobe/mixed, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/service) +"aCC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/service) +"aCD" = ( +/obj/structure/dresser, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/service) +"aCE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/hallway/secondary/service) +"aCF" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/secondary/service) +"aCG" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"aCH" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "Bar" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"aCI" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"aCJ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar) +"aCK" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar) +"aCL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar) +"aCM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/bar) +"aCN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Bar Backroom"; + req_access_txt = "25" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/crew_quarters/bar) +"aCO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/black, +/area/crew_quarters/bar) +"aCP" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/crew_quarters/bar) +"aCQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/black, +/area/crew_quarters/bar) +"aCR" = ( +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/bar) +"aCS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aCT" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "cargodeliver" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aCU" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "cargodeliver" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aCV" = ( +/obj/machinery/conveyor{ + dir = 2; + id = "cargodeliver" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aCW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/trunk{ + icon_state = "pipe-t"; + dir = 1 + }, +/obj/structure/disposaloutlet, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aCX" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aCY" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aCZ" = ( +/obj/structure/disposalpipe/trunk{ + icon_state = "pipe-t"; + dir = 1 + }, +/obj/structure/disposaloutlet, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aDa" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -32 + }, +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/device/radio, +/obj/machinery/button/door{ + desc = "A remote control switch."; + id = "cardoor"; + name = "Cargo Cell Control"; + normaldoorcontrol = 1; + pixel_x = -36; + pixel_y = -7 + }, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/checkpoint/supply) +"aDb" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/checkpoint/supply) +"aDc" = ( +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 38 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26; + pixel_y = 32 + }, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/checkpoint/supply) +"aDd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/red/corner{ + dir = 8 + }, +/area/quartermaster/storage) +"aDe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"aDf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aDg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aDh" = ( +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/structure/closet/crate/internals, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aDi" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "cargoload" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aDj" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "cargoload" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor{ + id = "cargoload"; + name = "supply dock loading door" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aDk" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "cargoload" + }, +/obj/structure/plasticflaps, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aDl" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "cargoload" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor{ + id = "cargoload"; + name = "supply dock loading door" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aDm" = ( +/obj/machinery/door/poddoor{ + id = "cargoload"; + name = "supply dock loading door" + }, +/obj/machinery/conveyor{ + dir = 4; + id = "cargoload" + }, +/turf/open/floor/plating, +/area/shuttle/supply) +"aDn" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/seeds/carrot, +/obj/structure/sign/electricshock{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/security/prison) +"aDo" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/item/cultivator, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/security/prison) +"aDp" = ( +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "old sink"; + pixel_y = 28 + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Prison - Garden"; + dir = 2; + name = "prison camera"; + network = list("SS13","prison") + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/security/prison) +"aDq" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/security/prison) +"aDr" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/seeds/tower, +/obj/item/seeds/amanita{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/sign/electricshock{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/security/prison) +"aDs" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"aDt" = ( +/obj/machinery/power/smes, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"aDu" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: EXTERNAL AIRLOCK"; + pixel_x = 32 + }, +/obj/machinery/camera{ + c_tag = "Solar - Fore Port"; + name = "solar camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"aDv" = ( +/obj/machinery/disposal/bin, +/obj/structure/sign/deathsposal{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/vault, +/area/maintenance/disposal/incinerator) +"aDw" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault, +/area/maintenance/disposal/incinerator) +"aDx" = ( +/obj/machinery/atmospherics/components/unary/tank/toxins, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault, +/area/maintenance/disposal/incinerator) +"aDy" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel/vault, +/area/maintenance/disposal/incinerator) +"aDz" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/camera{ + c_tag = "Atmospherics - Incinerator"; + name = "atmospherics camera" + }, +/turf/open/floor/plasteel/vault, +/area/maintenance/disposal/incinerator) +"aDA" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault, +/area/maintenance/disposal/incinerator) +"aDB" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/vault, +/area/maintenance/disposal/incinerator) +"aDC" = ( +/obj/machinery/power/smes{ + charge = 1e+006 + }, +/obj/structure/sign/electricshock{ + pixel_y = 32 + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/vault, +/area/maintenance/disposal/incinerator) +"aDD" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aDE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aDF" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aDG" = ( +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/machinery/light, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aDH" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aDI" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aDJ" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmospherics_engine) +"aDK" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aDL" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aDM" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/sign/electricshock{ + pixel_y = -32 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aDN" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aDO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aDP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aDQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/hydroponics/garden/abandoned) +"aDR" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hydroponics/garden/abandoned) +"aDS" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hydroponics/garden/abandoned) +"aDT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port/fore) +"aDU" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Service Hallway - Fore"; + dir = 4; + name = "hallway camera" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/secondary/service) +"aDV" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"aDW" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + name = "Bar Backroom"; + req_access_txt = "25" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"aDX" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"aDY" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar) +"aDZ" = ( +/obj/effect/landmark/start/bartender, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar) +"aEa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar) +"aEb" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/black, +/area/crew_quarters/bar) +"aEd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/black, +/area/crew_quarters/bar) +"aEe" = ( +/obj/effect/landmark/start/bartender, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/bar) +"aEf" = ( +/turf/open/floor/plasteel/black, +/area/crew_quarters/bar) +"aEg" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/bar) +"aEh" = ( +/obj/effect/landmark/start/bartender, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/bar) +"aEi" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/plasteel/black, +/area/crew_quarters/bar) +"aEj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aEk" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aEl" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aEm" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/sorting) +"aEn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aEo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + dir = 2; + id = "cargodisposals" + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aEp" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"aEq" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/checkpoint/supply) +"aEr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/security/checkpoint/supply) +"aEs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/checkpoint/supply) +"aEt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Security Post - Cargo"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aEu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/quartermaster/storage) +"aEv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"aEw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"aEx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"aEy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor_switch{ + id = "cargoload" + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/storage) +"aEz" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "cargoload" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aEA" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aEB" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aEC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/shuttle/supply) +"aED" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/shuttle/supply) +"aEE" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/shuttle/supply) +"aEF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/shuttle/supply) +"aEG" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/prison) +"aEH" = ( +/obj/machinery/seed_extractor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"aEI" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/neutral, +/area/security/prison) +"aEJ" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/security/prison) +"aEK" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/neutral, +/area/security/prison) +"aEL" = ( +/obj/machinery/biogenerator, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"aEM" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/prison) +"aEN" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 4; + name = "External Solar Access"; + req_access_txt = "10"; + req_one_access = null; + req_one_access_txt = "13; 24" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/solars/port/fore) +"aEO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/solars/port/fore) +"aEP" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"aEQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"aER" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"aES" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/atmos{ + name = "Port Bow Solar Access"; + req_access_txt = "0"; + req_one_access = null; + req_one_access_txt = "13; 24" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/solars/port/fore) +"aET" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/maintenance/disposal/incinerator) +"aEU" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"aEV" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Gas to Turbine" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"aEW" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Gas to Turbine" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"aEX" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"aEY" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"aEZ" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"aFa" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Turbine Generator APC"; + areastring = "/area/maintenance/disposal/incinerator"; + pixel_y = 24 + }, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"aFb" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 24; + pixel_y = 24 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"aFc" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Access"; + req_access_txt = "0"; + req_one_access_txt = "24;10" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aFd" = ( +/obj/structure/sign/securearea, +/turf/closed/wall/r_wall, +/area/engine/atmospherics_engine) +"aFe" = ( +/obj/structure/sign/biohazard, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/atmospherics_engine) +"aFf" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Engine Access"; + req_access_txt = "0"; + req_one_access_txt = "24;10" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aFg" = ( +/obj/structure/sign/radiation, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/engine/atmospherics_engine) +"aFh" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engine/atmospherics_engine) +"aFi" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_atmos{ + name = "Power Monitoring"; + req_access_txt = "0"; + req_one_access_txt = "24;10" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aFj" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engine/atmospherics_engine) +"aFk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"aFl" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aFm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/maintenance/port/fore) +"aFn" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/side{ + dir = 5 + }, +/area/maintenance/port/fore) +"aFo" = ( +/obj/structure/table/wood, +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"aFp" = ( +/obj/structure/table/wood, +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"aFq" = ( +/obj/structure/bed, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/item/bedsheet/orange, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"aFr" = ( +/obj/structure/dresser, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/hallway/secondary/service) +"aFs" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"aFt" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/secondary/service) +"aFu" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/loadingarea, +/area/hallway/secondary/service) +"aFv" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"aFw" = ( +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar) +"aFx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar) +"aFy" = ( +/obj/structure/table/wood, +/obj/item/gun/ballistic/revolver/doublebarrel, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/bar) +"aFz" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/crew_quarters/bar) +"aFA" = ( +/obj/structure/table/reinforced, +/obj/item/lighter{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/lighter, +/obj/machinery/camera{ + c_tag = "Bar - Fore"; + dir = 4; + name = "service camera" + }, +/turf/open/floor/plasteel/vault, +/area/crew_quarters/bar) +"aFB" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault, +/area/crew_quarters/bar) +"aFC" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/matches{ + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/plasteel/vault, +/area/crew_quarters/bar) +"aFD" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/crew_quarters/bar) +"aFE" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Hallway - Center"; + dir = 4; + name = "hallway camera" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/fore) +"aFF" = ( +/obj/effect/landmark/lightsout, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/fore) +"aFG" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aFH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "cargodeliver"; + name = "delivery conveyor"; + pixel_x = -12 + }, +/turf/open/floor/plasteel/loadingarea, +/area/quartermaster/sorting) +"aFI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/loadingarea, +/area/quartermaster/sorting) +"aFJ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/sorting) +"aFK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aFL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + dir = 2; + id = "cargodisposals" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aFM" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"aFN" = ( +/obj/machinery/computer/security, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/red, +/area/security/checkpoint/supply) +"aFO" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/neutral, +/area/security/checkpoint/supply) +"aFP" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/checkpoint/supply) +"aFQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"aFR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/quartermaster/storage) +"aFS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"aFT" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"aFU" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aFV" = ( +/obj/effect/landmark/start/cargo_technician, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aFW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aFX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/shuttle/supply) +"aFY" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/shuttle/supply) +"aFZ" = ( +/obj/machinery/hydroponics/constructable, +/obj/item/seeds/glowshroom, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/security/prison) +"aGa" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/security/prison) +"aGb" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aGc" = ( +/obj/item/device/plant_analyzer, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner, +/area/security/prison) +"aGd" = ( +/obj/machinery/hydroponics/constructable, +/obj/item/seeds/ambrosia, +/turf/open/floor/plating, +/area/security/prison) +"aGe" = ( +/turf/closed/wall, +/area/space) +"aGf" = ( +/obj/machinery/power/solar_control{ + id = "foreport"; + name = "Port Bow Solar Control"; + track = 0 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"aGg" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"aGh" = ( +/obj/structure/cable/white, +/obj/machinery/power/apc/highcap/ten_k{ + dir = 2; + name = "Port Bow Solar APC"; + areastring = "/area/maintenance/solars/port/fore"; + pixel_y = -26 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"aGi" = ( +/obj/structure/sign/electricshock, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/maintenance/solars/port/fore) +"aGj" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/obj/item/wrench, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/caution{ + dir = 9 + }, +/area/maintenance/disposal/incinerator) +"aGk" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"aGl" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plasteel/neutral, +/area/maintenance/disposal/incinerator) +"aGm" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/machinery/meter, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral, +/area/maintenance/disposal/incinerator) +"aGn" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/plasteel/neutral, +/area/maintenance/disposal/incinerator) +"aGo" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/neutral, +/area/maintenance/disposal/incinerator) +"aGp" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Mix to Turbine" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral, +/area/maintenance/disposal/incinerator) +"aGq" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/maintenance/disposal/incinerator) +"aGr" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral, +/area/maintenance/disposal/incinerator) +"aGs" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"aGt" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/atmos{ + name = "Turbine Generator Access"; + req_access_txt = "24" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"aGu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aGv" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aGw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/atmospherics, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aGy" = ( +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aGz" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aGA" = ( +/obj/machinery/shower{ + dir = 8; + name = "emergency shower" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aGB" = ( +/obj/structure/closet/radiation, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aGC" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aGD" = ( +/obj/structure/cable, +/obj/machinery/power/terminal, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aGE" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/obj/machinery/power/terminal, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aGF" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aGG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port/fore) +"aGH" = ( +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aGI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port/fore) +"aGJ" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port/fore) +"aGK" = ( +/obj/structure/table/wood, +/obj/item/device/camera, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"aGL" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"aGM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"aGN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"aGO" = ( +/obj/machinery/door/airlock{ + id_tag = "AuxCabinB"; + name = "Cabin B" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"aGP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/secondary/service) +"aGQ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/secondary/service) +"aGR" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/crew_quarters/bar) +"aGS" = ( +/obj/machinery/chem_master/condimaster{ + name = "HoochMaster 2000" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/bar) +"aGT" = ( +/obj/structure/closet/gmcloset, +/obj/item/wrench, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/obj/item/stack/sheet/metal{ + amount = 30 + }, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/machinery/light, +/turf/open/floor/plasteel/black, +/area/crew_quarters/bar) +"aGU" = ( +/obj/structure/table/wood, +/obj/machinery/reagentgrinder{ + desc = "Used to grind things up into raw materials and liquids."; + pixel_y = 5 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/bar) +"aGV" = ( +/obj/structure/table/wood, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/turf/open/floor/plasteel/black, +/area/crew_quarters/bar) +"aGW" = ( +/obj/structure/chair/stool/bar, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aGX" = ( +/obj/structure/chair/stool/bar, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aGY" = ( +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aGZ" = ( +/obj/structure/chair/stool/bar, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aHa" = ( +/obj/structure/chair/stool/bar, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26 + }, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aHb" = ( +/turf/closed/wall, +/area/crew_quarters/bar/atrium) +"aHc" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/machinery/door/window/southleft{ + dir = 4; + name = "Cargo Desk"; + req_access_txt = "50" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aHd" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/plasteel/brown{ + dir = 9 + }, +/area/quartermaster/sorting) +"aHe" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/sorting) +"aHf" = ( +/obj/effect/landmark/lightsout, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/sorting) +"aHg" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/brown{ + dir = 5 + }, +/area/quartermaster/sorting) +"aHh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "cargodisposals"; + name = "Trash Filter Switch"; + pixel_x = -1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aHi" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"aHj" = ( +/obj/machinery/computer/cargo, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/checkpoint/supply) +"aHk" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/neutral, +/area/security/checkpoint/supply) +"aHl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/checkpoint/supply) +"aHm" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/southright{ + dir = 8; + name = "Security Desk"; + req_access_txt = "63" + }, +/obj/machinery/door/window/northright{ + dir = 4; + name = "Security Desk" + }, +/obj/item/folder/red, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aHn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/quartermaster/storage) +"aHo" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"aHp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"aHq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"aHr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"aHs" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/shuttle/engine/heater, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/supply) +"aHt" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/shuttle/engine/heater, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/supply) +"aHu" = ( +/turf/closed/wall, +/area/security/prison) +"aHv" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/ai_status_display{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/security/prison) +"aHw" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass{ + name = "Garden" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aHx" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/security/prison) +"aHy" = ( +/turf/closed/wall/r_wall, +/area/security/execution/education) +"aHz" = ( +/obj/machinery/door/poddoor{ + id = "justiceblast"; + name = "Justice Blast door" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/black, +/area/security/execution/education) +"aHA" = ( +/obj/structure/lattice/catwalk, +/obj/item/wrench, +/turf/open/space, +/area/space) +"aHB" = ( +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/caution{ + dir = 8 + }, +/area/maintenance/disposal/incinerator) +"aHC" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"aHD" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/open/floor/plasteel/caution/corner, +/area/maintenance/disposal/incinerator) +"aHE" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/caution, +/area/maintenance/disposal/incinerator) +"aHF" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/caution, +/area/maintenance/disposal/incinerator) +"aHG" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"aHH" = ( +/obj/machinery/meter, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/plasteel/caution, +/area/maintenance/disposal/incinerator) +"aHI" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Port to Turbine" + }, +/turf/open/floor/plasteel/caution, +/area/maintenance/disposal/incinerator) +"aHJ" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/caution, +/area/maintenance/disposal/incinerator) +"aHK" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"aHL" = ( +/obj/structure/sign/vacuum{ + pixel_x = -32 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics - Turbine Access"; + dir = 1; + name = "atmospherics camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aHM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aHN" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/obj/structure/closet/emcloset/anchored, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aHO" = ( +/obj/structure/closet/radiation, +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aHP" = ( +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aHQ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aHR" = ( +/obj/machinery/shower{ + dir = 8; + name = "emergency shower" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aHS" = ( +/obj/structure/closet/radiation, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"aHT" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/computer/monitor{ + name = "Engineering Power Monitoring Console" + }, +/obj/structure/cable/white, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault, +/area/engine/atmospherics_engine) +"aHU" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/machinery/power/smes{ + charge = 2e+006 + }, +/obj/machinery/light/small, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/turf/open/floor/circuit/green, +/area/engine/atmospherics_engine) +"aHV" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = -24 + }, +/turf/open/floor/plasteel/vault, +/area/engine/atmospherics_engine) +"aHW" = ( +/turf/closed/wall, +/area/crew_quarters/abandoned_gambling_den) +"aHX" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port/fore) +"aHY" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/machinery/button/door{ + id = "AuxCabinB"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + pixel_x = -26; + pixel_y = 7; + req_access_txt = "0"; + specialfunctions = 4 + }, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"aHZ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"aIa" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/closet/wardrobe/mixed, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"aIb" = ( +/obj/structure/table/wood, +/obj/item/storage/briefcase, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"aIc" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"aId" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/secondary/service) +"aIe" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/secondary/service) +"aIf" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aIg" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aIh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/loadingarea, +/area/hallway/primary/fore) +"aIi" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/quartermaster/sorting) +"aIj" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/sorting) +"aIk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/sorting) +"aIl" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/sorting) +"aIm" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Cargo - Delivery Office"; + dir = 1; + name = "cargo camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aIn" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/machinery/door_timer{ + id = "cargocell"; + name = "Cargo Cell"; + pixel_x = -32; + pixel_y = -32 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Security Post - Cargo APC"; + areastring = "/area/security/checkpoint/supply"; + pixel_x = -26 + }, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/checkpoint/supply) +"aIo" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/supply) +"aIp" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Security Post - Cargo"; + dir = 8; + name = "security camera" + }, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/checkpoint/supply) +"aIq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/quartermaster/storage) +"aIr" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aIs" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "cargoload" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aIt" = ( +/obj/structure/shuttle/engine/propulsion/burst/left, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/supply) +"aIu" = ( +/obj/structure/shuttle/engine/propulsion, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/supply) +"aIv" = ( +/obj/structure/shuttle/engine/propulsion/burst/right, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/supply) +"aIw" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/item/soap/nanotrasen, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/floorgrime, +/area/security/prison) +"aIx" = ( +/obj/structure/table, +/obj/item/storage/crayons, +/obj/item/storage/crayons, +/obj/structure/sign/electricshock{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/security/prison) +"aIy" = ( +/obj/structure/table, +/obj/machinery/computer/libraryconsole/bookmanagement, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/security/prison) +"aIz" = ( +/obj/structure/easel, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/security/prison) +"aIA" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/security/prison) +"aIB" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/security/prison) +"aIC" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/security/prison) +"aID" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/security/prison) +"aIE" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/security/prison) +"aIF" = ( +/obj/structure/table, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/item/paper_bin, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/security/prison) +"aIG" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/item/toy/figure/syndie, +/obj/structure/sign/electricshock{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/security/prison) +"aIH" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/security/prison) +"aII" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/punching_bag, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/arrival{ + dir = 1 + }, +/area/security/prison) +"aIJ" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/weightlifter, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/security/prison) +"aIK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/sign/vacuum{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/execution/education) +"aIL" = ( +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/execution/education) +"aIM" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: EXTERNAL AIRLOCK"; + pixel_x = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/execution/education) +"aIN" = ( +/obj/structure/sign/fire, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"aIO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"aIP" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"aIQ" = ( +/obj/machinery/doorButtons/access_button{ + idDoor = "incinerator_airlock_exterior"; + idSelf = "incinerator_access_control"; + layer = 3.1; + name = "Incinerator airlock control"; + pixel_x = -24; + pixel_y = -8 + }, +/obj/machinery/doorButtons/access_button{ + idDoor = "incinerator_airlock_interior"; + idSelf = "incinerator_access_control"; + name = "Incinerator airlock control"; + pixel_x = 24; + pixel_y = -8 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"aIR" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/caution{ + dir = 10 + }, +/area/maintenance/disposal/incinerator) +"aIS" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"aIT" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/caution{ + dir = 4 + }, +/area/maintenance/disposal/incinerator) +"aIU" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/atmos) +"aIV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/engine/atmos) +"aIW" = ( +/obj/machinery/door/airlock/atmos{ + name = "Turbine Generator Access"; + req_access_txt = "24" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aIX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/plating, +/area/engine/atmos) +"aIY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"aIZ" = ( +/turf/closed/wall/r_wall, +/area/engine/atmos) +"aJa" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Access"; + req_access_txt = "0"; + req_one_access_txt = "24;10" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aJb" = ( +/obj/structure/sign/radiation, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"aJc" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Engine Access"; + req_access_txt = "0"; + req_one_access_txt = "24;10" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aJd" = ( +/obj/structure/sign/fire, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"aJe" = ( +/obj/structure/sign/electricshock, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"aJf" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 5 + }, +/turf/open/space, +/area/space) +"aJg" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/space, +/area/space) +"aJh" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/space, +/area/space) +"aJj" = ( +/obj/structure/table/wood, +/obj/item/clothing/glasses/sunglasses, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/abandoned_gambling_den) +"aJk" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/abandoned_gambling_den) +"aJl" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/abandoned_gambling_den) +"aJm" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"aJn" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Abandoned Gambling Den APC"; + areastring = "/area/crew_quarters/abandoned_gambling_den"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/crew_quarters/abandoned_gambling_den) +"aJo" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/wood, +/area/crew_quarters/abandoned_gambling_den) +"aJp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/theatre) +"aJq" = ( +/turf/closed/wall, +/area/crew_quarters/theatre) +"aJr" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/secondary/service) +"aJs" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/secondary/service) +"aJt" = ( +/obj/structure/table/wood, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/item/device/camera_film{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/device/camera_film, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/bar/atrium) +"aJv" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Atrium APC"; + areastring = "/area/crew_quarters/bar/atrium"; + pixel_y = 24 + }, +/obj/machinery/camera{ + c_tag = "Theatre Stage"; + dir = 2; + name = "service camera" + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar/atrium) +"aJx" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar/atrium) +"aJy" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/bar/atrium) +"aJz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aJA" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aJB" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/crew_quarters/bar/atrium) +"aJC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/fore) +"aJD" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/quartermaster/sorting) +"aJE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/sorting) +"aJF" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aJG" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/quartermaster/sorting) +"aJH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + dir = 2; + id = "cargodisposals" + }, +/obj/structure/plasticflaps, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aJI" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"aJJ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/door/window/brigdoor{ + id = "cargocell"; + name = "Cargo Cell"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/red, +/area/security/checkpoint/supply) +"aJK" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"aJL" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aJM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"aJN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/loadingarea{ + dir = 1 + }, +/area/quartermaster/storage) +"aJO" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/security/prison) +"aJQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/prison) +"aJR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/mob/living/simple_animal/mouse, +/turf/open/floor/plasteel/neutral, +/area/security/prison) +"aJS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/security/prison) +"aJT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/security/prison) +"aJU" = ( +/obj/structure/table, +/obj/item/storage/pill_bottle/dice, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/security/prison) +"aJV" = ( +/obj/structure/table, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/item/paper, +/obj/item/pen, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/security/prison) +"aJW" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/security/prison) +"aJX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/security/prison) +"aJY" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/security/prison) +"aJZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/security/prison) +"aKa" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/security/prison) +"aKb" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/security/prison) +"aKc" = ( +/obj/machinery/sparker{ + dir = 1; + id = "justicespark"; + pixel_x = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/darkred/corner{ + dir = 1 + }, +/area/security/execution/education) +"aKd" = ( +/obj/structure/chair, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/execution/education) +"aKe" = ( +/obj/machinery/flasher{ + id = "justiceflash"; + pixel_x = 26; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/darkred/corner{ + dir = 4 + }, +/area/security/execution/education) +"aKf" = ( +/obj/machinery/door/poddoor{ + id = "turbinevent"; + name = "Turbine Vent" + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"aKg" = ( +/obj/machinery/power/turbine{ + icon_state = "turbine"; + dir = 8; + luminosity = 2 + }, +/obj/structure/sign/vacuum{ + pixel_y = -32 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"aKh" = ( +/obj/machinery/power/compressor{ + icon_state = "compressor"; + dir = 4; + luminosity = 2; + comp_id = "incineratorturbine" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"aKi" = ( +/obj/machinery/igniter{ + icon_state = "igniter0"; + id = "Incinerator"; + luminosity = 2; + on = 0 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"aKj" = ( +/obj/machinery/door/airlock/glass{ + autoclose = 0; + frequency = 1449; + heat_proof = 1; + icon_state = "door_locked"; + id_tag = "incinerator_airlock_exterior"; + locked = 1; + name = "Incinerator Exterior Airlock"; + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"aKk" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"aKl" = ( +/obj/machinery/door/airlock/glass{ + autoclose = 0; + frequency = 1449; + heat_proof = 1; + icon_state = "door_locked"; + id_tag = "incinerator_airlock_interior"; + locked = 1; + name = "Incinerator Interior Airlock"; + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"aKm" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/maintenance/disposal/incinerator) +"aKn" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/binary/valve, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"aKo" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"aKp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault, +/area/engine/atmos) +"aKq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault, +/area/engine/atmos) +"aKr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault, +/area/engine/atmos) +"aKs" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/vault, +/area/engine/atmos) +"aKt" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/plasteel/vault, +/area/engine/atmos) +"aKu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 10 + }, +/area/engine/atmos) +"aKv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aKw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 6 + }, +/area/engine/atmos) +"aKx" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/vault, +/area/engine/atmos) +"aKy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/vault, +/area/engine/atmos) +"aKz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault{ + dir = 10 + }, +/area/engine/atmos) +"aKA" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aKB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 6 + }, +/area/engine/atmos) +"aKC" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/vault, +/area/engine/atmos) +"aKD" = ( +/turf/open/floor/plasteel/vault, +/area/engine/atmos) +"aKE" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/vault, +/area/engine/atmos) +"aKF" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/abandoned_gambling_den) +"aKG" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/abandoned_gambling_den) +"aKH" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/folder/red, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/abandoned_gambling_den) +"aKI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/crew_quarters/abandoned_gambling_den) +"aKJ" = ( +/obj/structure/chair/stool/bar, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/abandoned_gambling_den) +"aKL" = ( +/obj/structure/dresser, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/redblue, +/area/crew_quarters/theatre) +"aKN" = ( +/obj/machinery/vending/autodrobe, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Theatre Backstage APC"; + areastring = "/area/crew_quarters/theatre"; + pixel_y = 24 + }, +/turf/open/floor/plasteel/redblue, +/area/crew_quarters/theatre) +"aKP" = ( +/obj/structure/table/wood, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/obj/item/storage/crayons, +/obj/item/storage/crayons, +/obj/item/device/flashlight/lamp/bananalamp{ + pixel_y = 5 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/obj/item/toy/figure/clown, +/obj/item/clipboard, +/turf/open/floor/plasteel/redblue, +/area/crew_quarters/theatre) +"aKQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/secondary/service) +"aKS" = ( +/obj/structure/table/wood, +/obj/item/device/instrument/guitar, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/bar/atrium) +"aKT" = ( +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar/atrium) +"aKU" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/carpet, +/area/crew_quarters/bar/atrium) +"aKV" = ( +/turf/open/floor/carpet, +/area/crew_quarters/bar/atrium) +"aKW" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar/atrium) +"aKX" = ( +/obj/structure/table/wood, +/obj/item/clothing/head/fedora, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/bar/atrium) +"aKY" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aKZ" = ( +/obj/structure/table/wood, +/obj/item/storage/pill_bottle/dice, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aLa" = ( +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -8 + }, +/obj/structure/table/wood, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aLb" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/soda_cans/cola, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aLc" = ( +/obj/structure/table, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/item/stack/wrapping_paper{ + pixel_y = 5 + }, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/machinery/power/apc{ + dir = 8; + name = "Delivery Office APC"; + areastring = "/area/quartermaster/sorting"; + pixel_x = -26; + pixel_y = 3 + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/quartermaster/sorting) +"aLd" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/sorting) +"aLe" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/sorting) +"aLf" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/sorting) +"aLg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/plasticflaps, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aLh" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"aLi" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/closet/secure_closet/brig{ + id = "cargocell"; + name = "Cargo Cell Locker" + }, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/checkpoint/supply) +"aLj" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/checkpoint/supply) +"aLk" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/checkpoint/supply) +"aLl" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aLm" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aLn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aLo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aLp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aLq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aLr" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aLs" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Cargo Bay - Aft Starboard"; + dir = 1; + name = "cargo camera" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aLt" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aLu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aLv" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aLw" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aLx" = ( +/obj/structure/table, +/obj/item/book/manual/chef_recipes, +/obj/item/storage/box/donkpockets, +/obj/item/clothing/head/chefhat, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/security/prison) +"aLy" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/security/prison) +"aLz" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/prison) +"aLA" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/security/prison) +"aLB" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/snacks/deadmouse{ + pixel_y = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/security/prison) +"aLC" = ( +/obj/structure/table, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/item/toy/cards/deck, +/turf/open/floor/plasteel/neutral, +/area/security/prison) +"aLD" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/security/prison) +"aLE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral, +/area/security/prison) +"aLF" = ( +/turf/open/floor/plasteel/neutral, +/area/security/prison) +"aLG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/security/prison) +"aLH" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/security/prison) +"aLI" = ( +/obj/machinery/vending/coffee, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/redyellow/side, +/area/security/prison) +"aLJ" = ( +/turf/open/floor/plasteel/redyellow/side, +/obj/machinery/vending/sustenance, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/security/prison) +"aLK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault, +/area/security/execution/education) +"aLL" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on, +/turf/open/floor/plasteel/vault, +/area/security/execution/education) +"aLN" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4; + frequency = 1441; + id = "mix_in"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"aLO" = ( +/obj/structure/sign/fire, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"aLP" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"aLQ" = ( +/obj/machinery/doorButtons/airlock_controller{ + idExterior = "incinerator_airlock_exterior"; + idInterior = "incinerator_airlock_interior"; + idSelf = "incinerator_access_control"; + name = "Incinerator Access Console"; + pixel_x = 8; + pixel_y = -24; + req_access_txt = "12" + }, +/obj/machinery/button/ignition{ + id = "Incinerator"; + pixel_x = 8; + pixel_y = -36 + }, +/obj/machinery/button/door{ + id = "turbinevent"; + name = "Turbine Vent Control"; + pixel_x = -8; + pixel_y = -36; + req_access_txt = "12" + }, +/obj/machinery/button/door{ + id = "auxincineratorvent"; + name = "Auxiliary Vent Control"; + pixel_x = -8; + pixel_y = -24; + req_access_txt = "12" + }, +/obj/machinery/computer/turbine_computer{ + id = "incineratorturbine" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/caution{ + dir = 10 + }, +/area/maintenance/disposal/incinerator) +"aLR" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/item/reagent_containers/pill/patch/silver_sulf, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/caution, +/area/maintenance/disposal/incinerator) +"aLS" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/caution, +/area/maintenance/disposal/incinerator) +"aLT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmos) +"aLU" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/caution{ + dir = 9 + }, +/area/engine/atmos) +"aLV" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/tank_dispenser, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/caution{ + dir = 1 + }, +/area/engine/atmos) +"aLW" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/computer/atmos_control, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/caution{ + dir = 1 + }, +/area/engine/atmos) +"aLX" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/computer/atmos_alert, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/caution{ + dir = 1 + }, +/area/engine/atmos) +"aLY" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/table/reinforced, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/caution{ + dir = 1 + }, +/area/engine/atmos) +"aLZ" = ( +/obj/structure/table/reinforced, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 6 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = -6 + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/caution{ + dir = 5 + }, +/area/engine/atmos) +"aMa" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/atmos) +"aMb" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aMd" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/electronics/airalarm, +/obj/item/electronics/airalarm, +/obj/item/electronics/firealarm, +/obj/item/electronics/firealarm, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/caution{ + dir = 9 + }, +/area/engine/atmos) +"aMe" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/stack/cable_coil/white, +/obj/item/pipe_dispenser, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/caution{ + dir = 5 + }, +/area/engine/atmos) +"aMf" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/atmos) +"aMg" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aMh" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/atmos) +"aMi" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/item/stack/rods{ + amount = 23 + }, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plasteel/caution{ + dir = 9 + }, +/area/engine/atmos) +"aMj" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/turf/open/floor/plasteel/caution{ + dir = 1 + }, +/area/engine/atmos) +"aMk" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/table/reinforced, +/obj/item/stack/sheet/plasteel{ + amount = 20 + }, +/obj/item/stack/sheet/rglass{ + amount = 20; + pixel_x = 2; + pixel_y = -2 + }, +/turf/open/floor/plasteel/caution{ + dir = 5 + }, +/area/engine/atmos) +"aMl" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/atmos) +"aMm" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmos) +"aMn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/port/fore) +"aMp" = ( +/obj/structure/table/wood, +/obj/item/storage/briefcase, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/abandoned_gambling_den) +"aMq" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck/syndicate{ + icon_state = "deck_syndicate_full"; + pixel_y = 6 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/abandoned_gambling_den) +"aMr" = ( +/turf/open/floor/wood, +/area/crew_quarters/abandoned_gambling_den) +"aMs" = ( +/obj/structure/chair/stool/bar, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/abandoned_gambling_den) +"aMu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port/fore) +"aMv" = ( +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor/plasteel/redblue, +/area/crew_quarters/theatre) +"aMw" = ( +/obj/effect/landmark/start/clown, +/turf/open/floor/plasteel/redblue, +/area/crew_quarters/theatre) +"aMx" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/redblue, +/area/crew_quarters/theatre) +"aMy" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/theatre) +"aMz" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 8; + freq = 1400; + location = "Theatre" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/theatre) +"aMA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"aMB" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/secondary/service) +"aMC" = ( +/obj/structure/table/wood, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/device/camera, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/bar/atrium) +"aMD" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/bar/atrium) +"aME" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/carpet, +/area/crew_quarters/bar/atrium) +"aMF" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar/atrium) +"aMG" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/bar/atrium) +"aMH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/chair/stool, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aMI" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/reagent_containers/food/drinks/bottle/orangejuice, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aMJ" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/reagent_containers/food/snacks/cheesiehonkers, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aMK" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aML" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aMM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aMN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Atrium" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar/atrium) +"aMO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/fore) +"aMP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/hallway/primary/fore) +"aMQ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/fore) +"aMR" = ( +/obj/structure/table, +/obj/item/storage/box{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/lights/mixed, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + pixel_x = -26; + pixel_y = -26 + }, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/brown{ + dir = 10 + }, +/area/quartermaster/sorting) +"aMS" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/obj/item/device/destTagger, +/turf/open/floor/plasteel/brown, +/area/quartermaster/sorting) +"aMT" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/brown, +/area/quartermaster/sorting) +"aMU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/brown{ + dir = 6 + }, +/area/quartermaster/sorting) +"aMV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/deliveryChute{ + dir = 1 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aMW" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/checkpoint/supply) +"aMX" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/supply) +"aMY" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/checkpoint/supply) +"aMZ" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"aNa" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/brown{ + dir = 9 + }, +/area/quartermaster/storage) +"aNb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/storage) +"aNc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/storage) +"aNd" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/brown{ + dir = 5 + }, +/area/quartermaster/storage) +"aNe" = ( +/obj/machinery/status_display{ + name = "cargo display"; + supply_display = 1 + }, +/turf/closed/wall, +/area/quartermaster/qm) +"aNf" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/qm) +"aNg" = ( +/turf/closed/wall, +/area/quartermaster/qm) +"aNh" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/qm) +"aNi" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/qm) +"aNj" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/qm) +"aNk" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/quartermaster/qm) +"aNl" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/qm) +"aNm" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/bottle/morphine, +/obj/item/reagent_containers/syringe, +/turf/open/floor/plasteel/whitered/side{ + dir = 9 + }, +/area/security/prison) +"aNn" = ( +/obj/structure/table/glass, +/obj/item/folder/blue, +/obj/item/device/healthanalyzer, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/whitered/side{ + dir = 1 + }, +/area/security/prison) +"aNo" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/bottle/morphine, +/obj/item/reagent_containers/syringe, +/turf/open/floor/plasteel/whitered/side{ + dir = 5 + }, +/area/security/prison) +"aNp" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/floor/plating, +/area/security/prison) +"aNq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/security/prison) +"aNr" = ( +/obj/machinery/light/small, +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/red/corner{ + dir = 8 + }, +/area/security/prison) +"aNs" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/security/prison) +"aNt" = ( +/obj/machinery/camera{ + c_tag = "Prison - Relaxation Area"; + dir = 1; + name = "prison camera"; + network = list("SS13","prison") + }, +/turf/open/floor/plating, +/area/security/prison) +"aNu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral/corner, +/area/security/prison) +"aNv" = ( +/obj/machinery/holopad, +/obj/item/device/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + dir = 2; + name = "Prison Intercom"; + pixel_y = -28; + prison_radio = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/prison) +"aNw" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/security/prison) +"aNx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/security/prison) +"aNy" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/plating, +/area/security/prison) +"aNz" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "justicechamber"; + name = "Justice Chamber Blast door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/security/execution/education) +"aNA" = ( +/obj/machinery/door/poddoor/preopen{ + id = "justicechamber"; + name = "Justice Chamber Blast door" + }, +/obj/machinery/door/window/brigdoor/northright{ + dir = 2; + name = "Justice Chamber"; + req_access_txt = "3" + }, +/obj/machinery/door/window/brigdoor/northright{ + name = "Justice Chamber"; + req_access_txt = "3" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/execution/education) +"aNB" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "justicechamber"; + name = "Justice Chamber Blast door" + }, +/obj/structure/sign/electricshock{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/security/execution/education) +"aNC" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space) +"aND" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/space) +"aNE" = ( +/obj/machinery/door/poddoor{ + id = "auxincineratorvent"; + name = "Incineration Chamber Vent" + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"aNF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"aNG" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmos) +"aNH" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/plasteel/caution{ + dir = 8 + }, +/area/engine/atmos) +"aNI" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aNJ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aNK" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aNL" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aNM" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aNN" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aNO" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aNP" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aNQ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aNR" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aNS" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/atmos) +"aNT" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmos) +"aNU" = ( +/obj/structure/lattice, +/turf/open/space, +/area/engine/atmos) +"aNV" = ( +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"aNW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"aNX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/crew_quarters/abandoned_gambling_den) +"aNY" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken2" + }, +/area/crew_quarters/abandoned_gambling_den) +"aNZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/crew_quarters/abandoned_gambling_den) +"aOa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/mob/living/simple_animal/cockroach, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/crew_quarters/abandoned_gambling_den) +"aOb" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/abandoned_gambling_den) +"aOc" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j2s"; + name = "Theatre Junction"; + sortType = 18 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"aOd" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Theatre Backstage"; + req_access_txt = "46" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"aOe" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/redblue/redside{ + dir = 1 + }, +/area/crew_quarters/theatre) +"aOf" = ( +/obj/machinery/holopad, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/theatre) +"aOg" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/redblue/redside{ + dir = 1 + }, +/area/crew_quarters/theatre) +"aOh" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/redblue/redside{ + dir = 1 + }, +/area/crew_quarters/theatre) +"aOi" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/theatre) +"aOj" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + name = "Theatre Backstage"; + req_access_txt = "46" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/theatre) +"aOk" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"aOl" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"aOm" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + name = "Theatre Backstage"; + req_access_txt = "46" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar/atrium) +"aOn" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + pixel_x = -26; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/bar/atrium) +"aOo" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar/atrium) +"aOp" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/carpet, +/area/crew_quarters/bar/atrium) +"aOq" = ( +/obj/machinery/holopad, +/turf/open/floor/carpet, +/area/crew_quarters/bar/atrium) +"aOr" = ( +/obj/effect/landmark/lightsout, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aOs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Atrium" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar/atrium) +"aOt" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/goonplaque, +/area/hallway/primary/fore) +"aOu" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_mining{ + name = "Delivery Office"; + req_access_txt = 0; + req_one_access_txt = "48;50" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aOv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aOw" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/closed/wall, +/area/quartermaster/sorting) +"aOx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/security/checkpoint/supply) +"aOy" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"aOz" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/door/airlock/glass_security{ + id_tag = "cardoor"; + name = "Cargo Cell"; + req_access_txt = "63" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aOA" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"aOB" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Cargo Bay APC"; + areastring = "/area/quartermaster/storage"; + pixel_x = -26; + pixel_y = 3 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/camera{ + c_tag = "Cargo Bay - Aft Port"; + dir = 4; + name = "cargo camera" + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/quartermaster/storage) +"aOC" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/stockexchange, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"aOD" = ( +/obj/structure/table/reinforced, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"aOE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"aOF" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/donkpockets, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"aOG" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"aOH" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/storage) +"aOI" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel/brown{ + dir = 9 + }, +/area/quartermaster/qm) +"aOJ" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/toy/figure/qm, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/qm) +"aOK" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/qm) +"aOL" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Quartermaster's Office APC"; + areastring = "/area/quartermaster/qm"; + pixel_y = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/qm) +"aOM" = ( +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/qm) +"aON" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/qm) +"aOO" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26; + pixel_y = 32 + }, +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = 28 + }, +/turf/open/floor/plasteel/brown{ + dir = 5 + }, +/area/quartermaster/qm) +"aOP" = ( +/obj/structure/bed, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/item/bedsheet/qm, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/qm) +"aOQ" = ( +/obj/structure/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plasteel/brown{ + dir = 5 + }, +/area/quartermaster/qm) +"aOR" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/qm) +"aOS" = ( +/obj/structure/bed, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/item/clothing/glasses/sunglasses/blindfold, +/turf/open/floor/plasteel/whitered/side{ + dir = 8 + }, +/area/security/prison) +"aOT" = ( +/turf/open/floor/plasteel/white, +/area/security/prison) +"aOU" = ( +/obj/structure/bed, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/item/clothing/glasses/sunglasses/blindfold, +/turf/open/floor/plasteel/whitered/side{ + dir = 4 + }, +/area/security/prison) +"aOV" = ( +/obj/machinery/door/poddoor/preopen{ + id = "permacell3"; + name = "Cell Shutters" + }, +/obj/machinery/door/airlock/glass{ + id_tag = "permabolt3"; + name = "Cell 3" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aOW" = ( +/obj/machinery/door/poddoor/preopen{ + id = "permacell2"; + name = "Cell Shutters" + }, +/obj/machinery/door/airlock/glass{ + id_tag = "permabolt2"; + name = "Cell 2" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aOX" = ( +/obj/machinery/door/poddoor/preopen{ + id = "permacell1"; + name = "Cell Shutters" + }, +/obj/machinery/door/airlock/glass{ + id_tag = "permabolt1"; + name = "Cell 1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aOY" = ( +/obj/structure/table/reinforced, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/reagent_containers/glass/bottle/chloralhydrate{ + pixel_x = -7 + }, +/obj/item/reagent_containers/glass/bottle/facid{ + pixel_x = 7 + }, +/obj/item/storage/backpack/duffelbag/sec/surgery{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/darkred/side{ + dir = 9 + }, +/area/security/execution/education) +"aOZ" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/table/reinforced, +/obj/machinery/button/ignition{ + id = "justicespark"; + pixel_x = 7; + pixel_y = 26; + req_access_txt = "63" + }, +/obj/machinery/button/flasher{ + id = "justiceflash"; + pixel_x = 7; + pixel_y = 38; + req_access_txt = "63" + }, +/obj/machinery/button/door{ + id = "justiceblast"; + name = "Justice Shutters Control"; + pixel_x = -7; + pixel_y = 26; + req_access_txt = "63" + }, +/obj/machinery/button/door{ + id = "justicechamber"; + name = "Justice Chamber Control"; + pixel_x = -7; + pixel_y = 38; + req_access_txt = "3" + }, +/obj/item/folder/red{ + pixel_x = 3 + }, +/obj/item/restraints/handcuffs, +/obj/item/device/taperecorder, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/darkred/side{ + dir = 1 + }, +/area/security/execution/education) +"aPa" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/darkred/side{ + dir = 1 + }, +/area/security/execution/education) +"aPb" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/darkred/side{ + dir = 1 + }, +/area/security/execution/education) +"aPc" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/closet/secure_closet/injection, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/darkred/side{ + dir = 5 + }, +/area/security/execution/education) +"aPd" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/execution/education) +"aPe" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/execution/education) +"aPf" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/space, +/area/space) +"aPg" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/space, +/area/space) +"aPh" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/space, +/area/space) +"aPi" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/space, +/area/space) +"aPj" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmos) +"aPk" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/turf/open/floor/plasteel/caution{ + dir = 10 + }, +/area/engine/atmos) +"aPl" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aPm" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aPn" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + icon_state = "pump_map"; + name = "Port to Turbine" + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aPo" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + icon_state = "pump_map"; + name = "Port to Filter" + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aPp" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/effect/landmark/lightsout, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aPq" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aPr" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aPs" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aPt" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 1 + }, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aPu" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Air to Pure" + }, +/turf/open/floor/plasteel/arrival{ + dir = 5 + }, +/area/engine/atmos) +"aPv" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmos) +"aPw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"aPx" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/space, +/area/engine/atmos) +"aPy" = ( +/obj/machinery/meter{ + name = "Mixed Air Tank Out" + }, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"aPz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/on{ + dir = 8; + frequency = 1441; + id_tag = "air_out"; + name = "air out" + }, +/turf/open/floor/engine/air, +/area/engine/atmos) +"aPA" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics - Air Supply"; + name = "atmospherics camera" + }, +/turf/open/floor/engine/air, +/area/engine/atmos) +"aPB" = ( +/turf/open/floor/engine/air, +/area/engine/atmos) +"aPC" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/abandoned_gambling_den) +"aPD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"aPE" = ( +/obj/structure/chair/stool/bar, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/crew_quarters/abandoned_gambling_den) +"aPF" = ( +/obj/structure/chair/stool/bar, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"aPG" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/crew_quarters/abandoned_gambling_den) +"aPH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"aPI" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/abandoned_gambling_den) +"aPJ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"aPK" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/closed/wall, +/area/crew_quarters/theatre) +"aPL" = ( +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/theatre) +"aPM" = ( +/obj/effect/landmark/start/mime, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/theatre) +"aPN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/theatre) +"aPO" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = -26 + }, +/obj/machinery/disposal/bin, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Theatre Backstage"; + dir = 8; + name = "service camera" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/theatre) +"aPP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/theatre) +"aPQ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel/loadingarea, +/area/hallway/secondary/service) +"aPR" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/item/storage/pod{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/secondary/service) +"aPS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/bar/atrium) +"aPT" = ( +/obj/structure/table/wood, +/obj/item/lipstick/random{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/lipstick/random{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/lipstick/random, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/bar/atrium) +"aPU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar/atrium) +"aPV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/carpet, +/area/crew_quarters/bar/atrium) +"aPW" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/bar/atrium) +"aPX" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/coffee, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aPY" = ( +/obj/structure/table/wood, +/obj/item/device/paicard, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aPZ" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aQa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aQb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Atrium" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar/atrium) +"aQc" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/side, +/area/hallway/primary/fore) +"aQd" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/stockexchange, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/brown{ + dir = 9 + }, +/area/quartermaster/office) +"aQe" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/device/multitool, +/obj/item/pen/red, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/office) +"aQf" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/office) +"aQg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/office) +"aQh" = ( +/obj/machinery/photocopier, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/office) +"aQi" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/machinery/requests_console{ + department = "Cargo Office"; + departmentType = 0; + name = "Cargo Office RC"; + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Cargo - Office"; + dir = 2; + name = "cargo camera" + }, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/office) +"aQj" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/machinery/power/apc{ + dir = 1; + name = "Cargo Office APC"; + areastring = "/area/quartermaster/office"; + pixel_y = 28 + }, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/office) +"aQk" = ( +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/office) +"aQl" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/office) +"aQm" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/plasteel/brown{ + dir = 5 + }, +/area/quartermaster/office) +"aQn" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/quartermaster/storage) +"aQo" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"aQp" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/cargo_technician, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"aQq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"aQr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"aQs" = ( +/obj/effect/decal/cleanable/oil, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"aQt" = ( +/obj/machinery/computer/cargo, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"aQu" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/storage) +"aQv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/qm) +"aQw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/quartermaster/qm) +"aQx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/qm) +"aQy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/qm) +"aQz" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/qm) +"aQA" = ( +/obj/structure/table/reinforced, +/obj/item/device/flashlight/lamp, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/qm) +"aQB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/qm) +"aQC" = ( +/obj/machinery/computer/cargo, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/qm) +"aQD" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/qm) +"aQE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/quartermaster/qm) +"aQF" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/qm) +"aQG" = ( +/obj/machinery/computer/security/mining, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/camera{ + c_tag = "Cargo - Quartermaster's Quarters"; + dir = 8; + name = "cargo camera" + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/qm) +"aQH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/whitered/side{ + dir = 8 + }, +/area/security/prison) +"aQI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/whitered/side{ + dir = 4 + }, +/area/security/prison) +"aQJ" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/obj/effect/landmark/revenantspawn, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/prison) +"aQK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side, +/area/security/prison) +"aQL" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "permabolt3"; + name = "Cell Bolt Control"; + normaldoorcontrol = 1; + pixel_y = 25; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/structure/chair/stool, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/camera{ + c_tag = "Prison - Cell 3"; + dir = 2; + name = "prison camera"; + network = list("SS13","prison") + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/security/prison) +"aQM" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/revenantspawn, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/prison) +"aQN" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/side, +/area/security/prison) +"aQO" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "permabolt2"; + name = "Cell Bolt Control"; + normaldoorcontrol = 1; + pixel_y = 25; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/item/chair/stool, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/camera{ + c_tag = "Prison - Cell 2"; + dir = 2; + name = "prison camera"; + network = list("SS13","prison") + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/prison) +"aQP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/security/prison) +"aQQ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "permabolt1"; + name = "Cell Bolt Control"; + normaldoorcontrol = 1; + pixel_y = 25; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/camera{ + c_tag = "Prison - Cell 1"; + dir = 2; + name = "prison camera"; + network = list("SS13","prison") + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/prison) +"aQR" = ( +/obj/structure/table/reinforced, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -32 + }, +/obj/item/device/electropack, +/obj/item/device/assembly/signaler, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/clothing/head/helmet/sec, +/turf/open/floor/plasteel/darkred/side{ + dir = 8 + }, +/area/security/execution/education) +"aQS" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/execution/education) +"aQT" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/execution/education) +"aQU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/execution/education) +"aQV" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/darkred/side{ + dir = 4 + }, +/area/security/execution/education) +"aQW" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/obj/machinery/meter, +/obj/machinery/door/window/westright, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/execution/education) +"aQX" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4 + }, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/obj/item/tank/internals/oxygen/red{ + pixel_x = 3 + }, +/obj/item/tank/internals/oxygen/red{ + pixel_x = -3 + }, +/obj/item/wrench, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/execution/education) +"aQY" = ( +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 2; + name = "Security External Airlock"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/security/prison) +"aQZ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmos) +"aRa" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/atmos) +"aRb" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aRc" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aRd" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aRe" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/caution, +/area/engine/atmos) +"aRf" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics - Fore"; + dir = 1; + name = "atmospherics camera" + }, +/turf/open/floor/plasteel/caution, +/area/engine/atmos) +"aRg" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/caution, +/area/engine/atmos) +"aRh" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/caution, +/area/engine/atmos) +"aRi" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aRj" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aRk" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aRl" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "air_in"; + name = "Mixed Air Supply Control"; + output_tag = "air_out"; + sensors = list("air_sensor" = "Tank") + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/engine/atmos) +"aRn" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "air_sensor" + }, +/turf/open/floor/engine/air, +/area/engine/atmos) +"aRo" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/engine/air, +/area/engine/atmos) +"aRp" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine/air, +/area/engine/atmos) +"aRr" = ( +/obj/machinery/light/small, +/obj/structure/table/wood, +/obj/item/storage/pill_bottle, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"aRu" = ( +/obj/machinery/light/small, +/obj/structure/table/wood, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/syringe{ + pixel_y = 5 + }, +/obj/item/reagent_containers/syringe, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"aRv" = ( +/obj/structure/table/wood, +/obj/machinery/requests_console{ + department = "Theatre Backstage"; + departmentType = 0; + name = "Theatre RC"; + pixel_x = -32 + }, +/obj/item/lipstick/random{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/lipstick/random{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/lipstick/random, +/obj/structure/sign/nosmoking_2{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/theatre) +"aRx" = ( +/obj/machinery/vending/autodrobe, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/theatre) +"aRy" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/toy/figure/mime, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/theatre) +"aRA" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Service Hallway - Aft"; + dir = 8; + name = "hallway camera" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/secondary/service) +"aRB" = ( +/obj/structure/table/wood, +/obj/item/device/instrument/violin, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/bar/atrium) +"aRC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/bar/atrium) +"aRD" = ( +/obj/structure/table/wood, +/obj/item/clothing/mask/cigarette/pipe, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/bar/atrium) +"aRE" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aRF" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/chips, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aRG" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aRH" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/britcup, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aRI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair/stool, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aRJ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + icon_state = "pipe-j1s"; + name = "Quartermaster Junction"; + sortType = 3 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/fore) +"aRK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/brown/corner{ + dir = 4 + }, +/area/hallway/primary/fore) +"aRL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"aRM" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/quartermaster/office) +"aRN" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/cargo_technician, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/office) +"aRO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/office) +"aRP" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/office) +"aRQ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/office) +"aRR" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/office) +"aRS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/office) +"aRT" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/office) +"aRU" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/mining{ + name = "Cargo Bay"; + req_access_txt = "0"; + req_one_access_txt = "48;50" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aRV" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/quartermaster/storage) +"aRW" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"aRX" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"aRY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"aRZ" = ( +/obj/machinery/holopad, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/quartermaster, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aSa" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"aSb" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"aSc" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"aSd" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/storage) +"aSe" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Quartermaster's Office"; + req_access_txt = "41" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"aSf" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/quartermaster/qm) +"aSg" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/qm) +"aSh" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/mob/living/simple_animal/sloth/citrus, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/qm) +"aSi" = ( +/obj/machinery/holopad, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"aSj" = ( +/obj/structure/table/reinforced, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/item/folder/yellow, +/obj/item/stamp/qm, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/qm) +"aSk" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/landmark/start/quartermaster, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/qm) +"aSl" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/qm) +"aSm" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Quartermaster's Quarters"; + req_access_txt = "41" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"aSn" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/quartermaster, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/qm) +"aSo" = ( +/obj/machinery/computer/shuttle/mining, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/ai_status_display{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/qm) +"aSp" = ( +/obj/structure/table/glass, +/obj/item/storage/firstaid/regular, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitered/side{ + dir = 8 + }, +/area/security/prison) +"aSq" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitered/side{ + dir = 4 + }, +/area/security/prison) +"aSr" = ( +/obj/machinery/flasher{ + id = "PCell 3"; + pixel_x = -28 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/prison) +"aSs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/security/prison) +"aSt" = ( +/obj/structure/table, +/obj/item/paper, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/prison) +"aSu" = ( +/obj/machinery/flasher{ + id = "PCell 2"; + pixel_x = -28 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/security/prison) +"aSv" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/security/prison) +"aSw" = ( +/obj/machinery/flasher{ + id = "PCell 1"; + pixel_x = -28 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/security/prison) +"aSx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/security/prison) +"aSy" = ( +/obj/structure/table, +/obj/item/paper, +/obj/item/pen, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/prison) +"aSz" = ( +/obj/structure/table/reinforced, +/obj/machinery/light_switch{ + pixel_x = -7; + pixel_y = -26 + }, +/obj/item/device/flashlight/lamp, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26 + }, +/turf/open/floor/plasteel/darkred/side{ + dir = 10 + }, +/area/security/execution/education) +"aSA" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/darkred/side, +/area/security/execution/education) +"aSB" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/darkred/side, +/area/security/execution/education) +"aSC" = ( +/obj/machinery/newscaster/security_unit{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/darkred/side, +/area/security/execution/education) +"aSD" = ( +/obj/structure/cable/white, +/obj/machinery/power/apc{ + dir = 2; + name = "Education Chamber APC"; + areastring = "/area/security/execution/education"; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/darkred/side{ + dir = 6 + }, +/area/security/execution/education) +"aSE" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Justice gas pump"; + on = 0 + }, +/obj/machinery/door/window/westleft, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/execution/education) +"aSF" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/machinery/space_heater, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/execution/education) +"aSG" = ( +/obj/structure/sign/securearea{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/security/prison) +"aSH" = ( +/turf/open/floor/engine/co2, +/area/engine/atmos) +"aSI" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics - co2 Cell"; + name = "atmospherics camera" + }, +/turf/open/floor/engine/co2, +/area/engine/atmos) +"aSJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 4; + frequency = 1441; + id_tag = "co2_out"; + name = "co2 vent" + }, +/turf/open/floor/engine/co2, +/area/engine/atmos) +"aSK" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"aSL" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/space, +/area/engine/atmos) +"aSM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"aSN" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmos) +"aSO" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "CO2 to Pure"; + on = 0 + }, +/turf/open/floor/plasteel/vault, +/area/engine/atmos) +"aSP" = ( +/obj/machinery/atmospherics/pipe/manifold4w/yellow/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aSQ" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aSR" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aSS" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aST" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aSU" = ( +/obj/machinery/ai_status_display, +/turf/closed/wall, +/area/engine/atmos) +"aSV" = ( +/turf/closed/wall, +/area/engine/atmos) +"aSW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_atmos{ + name = "Atmospherics Storage"; + req_access_txt = "0"; + req_one_access_txt = "24;10" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aSX" = ( +/obj/structure/sign/nosmoking_2, +/turf/closed/wall, +/area/engine/atmos) +"aSY" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/engine/atmos) +"aSZ" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aTa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aTb" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aTc" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aTd" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/arrival{ + dir = 6 + }, +/area/engine/atmos) +"aTe" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmos) +"aTf" = ( +/obj/machinery/meter{ + name = "Mixed Air Tank In" + }, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"aTg" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "air_in" + }, +/turf/open/floor/engine/air, +/area/engine/atmos) +"aTh" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Service Hall APC"; + areastring = "/area/hallway/secondary/service"; + pixel_x = -26; + pixel_y = 3 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/secondary/service) +"aTi" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/secondary/service) +"aTj" = ( +/obj/structure/table/wood, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26; + pixel_y = -32 + }, +/obj/item/staff/broom, +/obj/item/clothing/head/witchwig, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/bar/atrium) +"aTl" = ( +/obj/structure/piano{ + icon_state = "piano" + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar/atrium) +"aTn" = ( +/obj/machinery/door/window/eastright{ + name = "Theatre Stage" + }, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar/atrium) +"aTo" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/bar/atrium) +"aTp" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26; + pixel_y = -26 + }, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aTq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aTr" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + icon_state = "pipe-j1s"; + name = "Cargo Junction"; + sortType = 2 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/fore) +"aTs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aTt" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aTu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aTv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/office) +"aTw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/office) +"aTx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/office) +"aTy" = ( +/obj/effect/decal/cleanable/oil, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/office) +"aTz" = ( +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aTA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/office) +"aTB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/office) +"aTC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/office) +"aTD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Cargo Bay"; + req_access_txt = "0"; + req_one_access_txt = "48;50" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aTE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/quartermaster/storage) +"aTF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"aTG" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"aTH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"aTI" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/storage) +"aTJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/quartermaster/qm) +"aTK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/quartermaster/qm) +"aTL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/qm) +"aTM" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/qm) +"aTN" = ( +/obj/structure/table/reinforced, +/obj/item/cartridge/quartermaster{ + pixel_x = -6 + }, +/obj/item/cartridge/quartermaster{ + pixel_x = 6 + }, +/obj/item/cartridge/quartermaster{ + pixel_y = 6 + }, +/obj/item/device/gps/mining, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/qm) +"aTO" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/qm) +"aTP" = ( +/obj/machinery/computer/security/mining, +/obj/machinery/requests_console{ + department = "Quartermaster's Desk"; + departmentType = 0; + name = "Quartermaster RC"; + pixel_x = 32; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = 23 + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/qm) +"aTQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/quartermaster/qm) +"aTR" = ( +/obj/structure/closet/secure_closet/quartermaster, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"aTS" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"aTT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/suit_storage_unit/mining/eva, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"aTU" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/qm) +"aTV" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/security/prison) +"aTW" = ( +/obj/machinery/door/airlock/glass_medical{ + name = "Sanitarium"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/security/prison) +"aTX" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/bluecross_2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/security/prison) +"aTY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/status_display, +/turf/closed/wall, +/area/security/prison) +"aTZ" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Long-Term Cell 3"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/floorgrime, +/area/security/prison) +"aUa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/security/prison) +"aUb" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Long-Term Cell 2"; + req_access_txt = "2" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/prison) +"aUc" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Long-Term Cell 1"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/floorgrime, +/area/security/prison) +"aUd" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Education Chamber"; + req_access_txt = "3" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/execution/education) +"aUe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/security/prison) +"aUf" = ( +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 1; + name = "Security External Airlock"; + req_access_txt = "63" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: EXTERNAL AIRLOCK"; + pixel_x = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/security/prison) +"aUg" = ( +/turf/closed/wall/mineral/plastitanium, +/area/security/prison) +"aUh" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/engine/co2, +/area/engine/atmos) +"aUi" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/engine/co2, +/area/engine/atmos) +"aUj" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "co2_sensor" + }, +/turf/open/floor/engine/co2, +/area/engine/atmos) +"aUk" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmos) +"aUl" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "co2_in"; + name = "Carbon Dioxide Supply Control"; + output_tag = "co2_out"; + sensors = list("co2_sensor" = "Tank") + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel/vault, +/area/engine/atmos) +"aUm" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aUn" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 4; + on = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aUo" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aUp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aUq" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aUr" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/device/lightreplacer, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aUs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/engine/atmos) +"aUt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/disposal/bin, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/caution{ + dir = 8 + }, +/area/engine/atmos) +"aUu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aUv" = ( +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aUw" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/mask/gas, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aUx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aUy" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aUz" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aUA" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aUB" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "O2 to Pure" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/atmos) +"aUC" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/securearea{ + pixel_x = 32 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics - Starboard"; + dir = 8; + name = "atmospherics camera" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmos) +"aUD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aUE" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 5 + }, +/area/maintenance/port/fore) +"aUF" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aUG" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aUH" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j2s"; + name = "Hydroponics Junction"; + sortType = 21 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aUI" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"aUJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aUK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port/fore) +"aUL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"aUM" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"aUN" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/secondary/service) +"aUO" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/landmark/lightsout, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/secondary/service) +"aUP" = ( +/turf/closed/wall, +/area/crew_quarters/kitchen) +"aUQ" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/crew_quarters/kitchen) +"aUR" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Bar - Aft"; + dir = 4; + name = "service camera" + }, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aUS" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aUT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Arrivals Hallway - Bar"; + dir = 4; + name = "hallway camera" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/fore) +"aUU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/fore) +"aUV" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/brown/corner{ + dir = 4 + }, +/area/hallway/primary/fore) +"aUW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/quartermaster/office) +"aUX" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/office) +"aUY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/office) +"aUZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/office) +"aVa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/office) +"aVb" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/office) +"aVc" = ( +/obj/structure/table/reinforced, +/obj/item/folder, +/obj/item/stamp/denied{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stamp, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/office) +"aVd" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = -32 + }, +/obj/machinery/light_switch{ + pixel_x = -26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 10 + }, +/area/quartermaster/storage) +"aVe" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/brown, +/area/quartermaster/storage) +"aVf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/purple/side, +/area/quartermaster/storage) +"aVg" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/brown, +/area/quartermaster/storage) +"aVh" = ( +/obj/structure/closet/wardrobe/cargotech, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aVi" = ( +/obj/structure/closet/wardrobe/cargotech, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aVj" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aVk" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel/brown, +/area/quartermaster/storage) +"aVl" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/item/storage/pod{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/purple/side{ + dir = 6 + }, +/area/quartermaster/storage) +"aVm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/quartermaster/qm) +"aVn" = ( +/obj/machinery/photocopier, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = -32 + }, +/turf/open/floor/plasteel/brown{ + dir = 10 + }, +/area/quartermaster/qm) +"aVo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/paper_bin, +/turf/open/floor/plasteel/brown, +/area/quartermaster/qm) +"aVp" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/light, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/brown, +/area/quartermaster/qm) +"aVq" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Cargo - Quartermaster's Office"; + dir = 1; + name = "cargo camera" + }, +/turf/open/floor/plasteel/brown, +/area/quartermaster/qm) +"aVr" = ( +/turf/open/floor/plasteel/brown, +/area/quartermaster/qm) +"aVs" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/brown, +/area/quartermaster/qm) +"aVt" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/stockexchange, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 6 + }, +/area/quartermaster/qm) +"aVu" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/white, +/turf/open/floor/plating, +/area/quartermaster/qm) +"aVv" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/qm) +"aVw" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/red/corner, +/area/security/prison) +"aVx" = ( +/obj/machinery/newscaster/security_unit{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/red/corner, +/area/security/prison) +"aVy" = ( +/obj/machinery/camera{ + c_tag = "Security - Prison Port"; + dir = 2; + name = "security camera" + }, +/turf/open/floor/plasteel/red/corner, +/area/security/prison) +"aVz" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red/corner, +/area/security/prison) +"aVA" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/red/corner, +/area/security/prison) +"aVB" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/red/corner, +/area/security/prison) +"aVC" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner, +/area/security/prison) +"aVD" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/red/corner, +/area/security/prison) +"aVE" = ( +/obj/machinery/button/door{ + id = "permacell3"; + name = "Cell 3 Lockdown"; + pixel_x = -4; + pixel_y = 25; + req_access_txt = "2" + }, +/obj/machinery/button/flasher{ + id = "PCell 3"; + pixel_x = 6; + pixel_y = 24 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 2 + }, +/area/security/prison) +"aVF" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/computer/security/telescreen{ + name = "Prisoner Telescreen"; + network = list("prison"); + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/red/corner, +/area/security/prison) +"aVG" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Security - Prison"; + dir = 2; + name = "security camera" + }, +/turf/open/floor/plasteel/red/corner, +/area/security/prison) +"aVH" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner, +/area/security/prison) +"aVI" = ( +/obj/machinery/button/door{ + id = "permacell2"; + name = "Cell 2 Lockdown"; + pixel_x = -4; + pixel_y = 25; + req_access_txt = "2" + }, +/obj/machinery/button/flasher{ + id = "PCell 2"; + pixel_x = 6; + pixel_y = 24 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 2 + }, +/area/security/prison) +"aVJ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen{ + name = "Prisoner Telescreen"; + network = list("prison"); + pixel_y = 32 + }, +/turf/open/floor/plasteel/red/corner, +/area/security/prison) +"aVK" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/red/corner, +/area/security/prison) +"aVL" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner, +/area/security/prison) +"aVM" = ( +/obj/machinery/button/door{ + id = "permacell1"; + name = "Cell 1 Lockdown"; + pixel_x = -4; + pixel_y = 25; + req_access_txt = "2" + }, +/obj/machinery/button/flasher{ + id = "PCell 1"; + pixel_x = 6; + pixel_y = 24 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 2 + }, +/area/security/prison) +"aVN" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner, +/area/security/prison) +"aVO" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/red/corner, +/area/security/prison) +"aVP" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/button/door{ + id = "brigprison"; + name = "Prison Lockdown"; + pixel_x = 26; + pixel_y = 26; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/security/prison) +"aVQ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/prison) +"aVR" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_security{ + name = "Prison Wing"; + req_access_txt = "1" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aVS" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aVT" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "brigprison"; + name = "Prison Blast door" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/prison) +"aVU" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/prison) +"aVV" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/security/prison) +"aVW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Security - Escape Pod"; + dir = 2; + name = "security camera" + }, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/prison) +"aVX" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/prison) +"aVY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating{ + luminosity = 2; + initial_gas_mix = "o2=0.01;n2=0.01"; + temperature = 2.7 + }, +/area/security/prison) +"aVZ" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 8 + }, +/turf/closed/wall/mineral/titanium, +/area/shuttle/pod_3) +"aWa" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/pod_3) +"aWb" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4; + frequency = 1441; + id = "co2_in"; + pixel_y = 1 + }, +/turf/open/floor/engine/co2, +/area/engine/atmos) +"aWc" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"aWd" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/space, +/area/engine/atmos) +"aWe" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"aWf" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmos) +"aWg" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 2; + filter_type = "co2"; + name = "co2 filter"; + on = 1 + }, +/turf/open/floor/plasteel/vault, +/area/engine/atmos) +"aWh" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aWi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aWj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aWk" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/machinery/meter, +/obj/item/wrench, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aWl" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aWm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/caution{ + dir = 8 + }, +/area/engine/atmos) +"aWn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aWo" = ( +/obj/structure/closet/secure_closet/atmospherics, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aWp" = ( +/obj/machinery/pipedispenser/disposal/transit_tube, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aWq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aWr" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aWs" = ( +/obj/machinery/atmospherics/components/trinary/mixer{ + dir = 1; + name = "air mixer"; + node1_concentration = 0.8; + node2_concentration = 0.2; + on = 1; + target_pressure = 4500 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aWt" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "O2 to Airmix"; + on = 1 + }, +/turf/open/floor/plasteel/blue/side{ + dir = 5 + }, +/area/engine/atmos) +"aWu" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmos) +"aWv" = ( +/obj/machinery/meter, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"aWw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 8; + frequency = 1441; + id_tag = "o2_out"; + name = "oxygen vent" + }, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"aWx" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics - Oxygen Supply"; + name = "atmospherics camera" + }, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"aWy" = ( +/turf/open/floor/engine/o2, +/area/engine/atmos) +"aWz" = ( +/turf/open/floor/plasteel/neutral/corner, +/area/maintenance/port/fore) +"aWA" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aWB" = ( +/turf/closed/wall, +/area/hydroponics) +"aWC" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/hydroponics) +"aWD" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Hydroponics Maintenance"; + req_access_txt = "35" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"aWE" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/closed/wall, +/area/hydroponics) +"aWF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/hydroponics) +"aWG" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"aWH" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"aWI" = ( +/obj/structure/kitchenspike, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"aWJ" = ( +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "sink"; + pixel_y = 28 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"aWK" = ( +/obj/machinery/gibber, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"aWL" = ( +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "sink"; + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = "Kitchen Cold Room"; + dir = 2; + name = "service camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"aWM" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"aWN" = ( +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aWO" = ( +/obj/structure/chair/stool/bar, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aWP" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"aWQ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/fore) +"aWR" = ( +/obj/machinery/autolathe, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -33 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/turf/open/floor/plasteel/brown{ + dir = 10 + }, +/area/quartermaster/office) +"aWS" = ( +/obj/machinery/disposal/bin, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/brown, +/area/quartermaster/office) +"aWT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/brown, +/area/quartermaster/office) +"aWU" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/brown, +/area/quartermaster/office) +"aWV" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/toy/figure/cargotech, +/turf/open/floor/plasteel/brown, +/area/quartermaster/office) +"aWX" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/plasteel/brown, +/area/quartermaster/office) +"aWY" = ( +/obj/machinery/computer/cargo, +/turf/open/floor/plasteel/brown, +/area/quartermaster/office) +"aWZ" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/plasteel/brown, +/area/quartermaster/office) +"aXa" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/stockexchange, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = 28 + }, +/turf/open/floor/plasteel/brown{ + dir = 6 + }, +/area/quartermaster/office) +"aXb" = ( +/turf/closed/wall, +/area/quartermaster/miningoffice) +"aXc" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/quartermaster/miningoffice) +"aXd" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/quartermaster/miningoffice) +"aXe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + name = "Mining Office"; + req_access_txt = "48" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"aXf" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/miningoffice) +"aXg" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"aXh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/mining{ + name = "Mining Dock"; + req_access_txt = "48" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"aXi" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/quartermaster/qm) +"aXj" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/structure/cable/white, +/turf/open/floor/plating, +/area/quartermaster/qm) +"aXk" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aXl" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/security/prison) +"aXm" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/light, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/security/prison) +"aXn" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/security/prison) +"aXo" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/security/prison) +"aXp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/security/prison) +"aXq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/security/prison) +"aXr" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/security/prison) +"aXs" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/security/prison) +"aXt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/security/prison) +"aXu" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/lightsout, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/security/prison) +"aXv" = ( +/obj/structure/cable/white, +/obj/machinery/power/apc/highcap/five_k{ + dir = 2; + name = "Prison Wing APC"; + areastring = "/area/security/prison"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/security/prison) +"aXw" = ( +/obj/machinery/light, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/security/prison) +"aXx" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/security/prison) +"aXy" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/structure/sign/pods{ + dir = 8; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/prison) +"aXz" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/prison) +"aXA" = ( +/obj/machinery/light/small, +/obj/structure/sign/securearea{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aXB" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigprison"; + name = "Prison Blast door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/prison) +"aXC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/security/prison) +"aXD" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/security/prison) +"aXE" = ( +/turf/open/floor/plating, +/area/security/prison) +"aXF" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod 3" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aXG" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Escape Pod Airlock" + }, +/obj/docking_port/mobile/pod{ + dir = 4; + id = "pod3"; + name = "escape pod 3"; + port_direction = 2; + preferred_direction = 4 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/shuttle/pod_3) +"aXH" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 24 + }, +/obj/item/storage/pod{ + pixel_x = 6; + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/machinery/light/small, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/shuttle/pod_3) +"aXI" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_y = -32; + possible_destinations = "pod_lavaland3"; + shuttleId = "pod3" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/shuttle/pod_3) +"aXJ" = ( +/obj/effect/spawner/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/pod_3) +"aXK" = ( +/obj/docking_port/stationary/random{ + dir = 4; + id = "pod_lavaland4"; + name = "lavaland" + }, +/turf/open/space, +/area/space) +"aXM" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/sign/securearea{ + pixel_x = -32 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics - Port"; + dir = 4; + name = "atmospherics camera" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmos) +"aXN" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/atmos) +"aXO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aXP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aXQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aXR" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/fireaxecabinet{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/caution{ + dir = 8 + }, +/area/engine/atmos) +"aXS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/atmospheric_technician, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aXT" = ( +/obj/machinery/suit_storage_unit/atmos, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aXU" = ( +/obj/machinery/pipedispenser/disposal, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aXV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aXX" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aXY" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "o2_in"; + name = "Oxygen Supply Control"; + output_tag = "o2_out"; + sensors = list("o2_sensor" = "Tank") + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel/blue/side{ + dir = 4 + }, +/area/engine/atmos) +"aXZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmos) +"aYa" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "o2_sensor" + }, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"aYb" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"aYc" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"aYd" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics) +"aYe" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics) +"aYf" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics) +"aYg" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics) +"aYh" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics) +"aYi" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics) +"aYj" = ( +/obj/structure/closet/wardrobe/botanist, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics) +"aYk" = ( +/obj/structure/table/glass, +/obj/item/wrench, +/obj/item/clothing/suit/apron, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics) +"aYl" = ( +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/chem_master/condimaster{ + name = "BrewMaster 3000" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics) +"aYm" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/loadingarea{ + dir = 1 + }, +/area/hallway/secondary/service) +"aYn" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"aYo" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "Kitchen" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"aYp" = ( +/obj/machinery/light_switch{ + pixel_x = -26; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"aYq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/kitchen) +"aYr" = ( +/mob/living/simple_animal/hostile/retaliate/goat{ + name = "Pete" + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/kitchen) +"aYs" = ( +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/kitchen) +"aYt" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"aYu" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchencounter"; + name = "Kitchen Counter Shutters" + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -8 + }, +/obj/item/reagent_containers/food/drinks/britcup, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"aYv" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchencounter"; + name = "Kitchen Counter Shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"aYw" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchencounter"; + name = "Kitchen Counter Shutters" + }, +/obj/item/storage/fancy/donut_box, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"aYx" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/crew_quarters/kitchen) +"aYy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aYz" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aYA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aYB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/quartermaster/office) +"aYC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + name = "Cargo Office"; + req_access_txt = "0"; + req_one_access_txt = "48;50" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aYD" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/machinery/door/window/southleft{ + dir = 1; + req_access_txt = "50" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aYE" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26 + }, +/turf/open/floor/plasteel/brown{ + dir = 9 + }, +/area/quartermaster/miningoffice) +"aYF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/purple/side{ + dir = 1 + }, +/area/quartermaster/miningoffice) +"aYG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/miningoffice) +"aYH" = ( +/obj/structure/table/reinforced, +/obj/item/storage/belt/utility, +/turf/open/floor/plasteel/purple/side{ + dir = 1 + }, +/area/quartermaster/miningoffice) +"aYI" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/stockexchange, +/turf/open/floor/plasteel/brown{ + dir = 5 + }, +/area/quartermaster/miningoffice) +"aYJ" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/clipboard, +/obj/item/toy/figure/miner, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch{ + pixel_x = -38 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"aYK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"aYL" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"aYM" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"aYN" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"aYO" = ( +/obj/machinery/mineral/equipment_vendor, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"aYP" = ( +/obj/structure/table, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -3; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"aYQ" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"aYR" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/miningoffice) +"aYS" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/mining) +"aYT" = ( +/obj/effect/spawner/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/mining) +"aYU" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/pen, +/turf/open/floor/plasteel/vault, +/area/security/prison) +"aYV" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/open/floor/plasteel/vault, +/area/security/prison) +"aYW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Prison Wing"; + req_access_txt = "1" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aYX" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/prison) +"aYY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Prison Wing"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aYZ" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = -32 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/vault, +/area/security/prison) +"aZa" = ( +/obj/structure/rack, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/device/assembly/flash/handheld, +/turf/open/floor/plasteel/vault, +/area/security/prison) +"aZb" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/bodybags{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/prisoner, +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault, +/area/security/prison) +"aZc" = ( +/obj/structure/closet/secure_closet/brig{ + name = "Prisoner Locker" + }, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/vault, +/area/security/prison) +"aZd" = ( +/obj/structure/closet/secure_closet/brig{ + name = "Prisoner Locker" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/vault, +/area/security/prison) +"aZe" = ( +/obj/structure/closet/secure_closet/brig{ + name = "Prisoner Locker" + }, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault, +/area/security/prison) +"aZf" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags, +/obj/item/pen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/prison) +"aZg" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/table, +/obj/item/restraints/handcuffs, +/obj/item/clothing/suit/armor/vest, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/red/side, +/area/security/prison) +"aZh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating{ + luminosity = 2; + initial_gas_mix = "o2=0.01;n2=0.01"; + temperature = 2.7 + }, +/area/security/prison) +"aZi" = ( +/turf/open/floor/engine/plasma, +/area/engine/atmos) +"aZj" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics - Plasma Cell"; + name = "atmospherics camera" + }, +/turf/open/floor/engine/plasma, +/area/engine/atmos) +"aZk" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 4; + frequency = 1441; + id_tag = "tox_out"; + name = "plasma vent" + }, +/turf/open/floor/engine/plasma, +/area/engine/atmos) +"aZl" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmos) +"aZm" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Plasma to Pure"; + on = 0 + }, +/turf/open/floor/plasteel/purple/side{ + dir = 9 + }, +/area/engine/atmos) +"aZn" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aZo" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aZq" = ( +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aZr" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aZs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/caution{ + dir = 8 + }, +/area/engine/atmos) +"aZt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"aZu" = ( +/obj/structure/closet/secure_closet/atmospherics, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aZv" = ( +/obj/machinery/pipedispenser, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aZw" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 1; + filter_type = "o2"; + name = "oxygen filter"; + on = 1 + }, +/turf/open/floor/plasteel/blue/side{ + dir = 6 + }, +/area/engine/atmos) +"aZx" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmos) +"aZy" = ( +/obj/machinery/meter, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"aZz" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "o2_in" + }, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"aZA" = ( +/mob/living/simple_animal/cockroach, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aZB" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port/fore) +"aZD" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/greenblue/side{ + dir = 1 + }, +/area/hydroponics) +"aZE" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/greenblue/side{ + dir = 1 + }, +/area/hydroponics) +"aZF" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/greenblue/side{ + dir = 1 + }, +/area/hydroponics) +"aZG" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/greenblue/side{ + dir = 1 + }, +/area/hydroponics) +"aZH" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/greenblue/side{ + dir = 1 + }, +/area/hydroponics) +"aZI" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/greenblue/side{ + dir = 1 + }, +/area/hydroponics) +"aZJ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hydroponics) +"aZK" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + name = "Hydroponics Backroom"; + req_access_txt = "35" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"aZL" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"aZM" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"aZN" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + name = "Kitchen Coldroom"; + req_access_txt = "28" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"aZO" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"aZP" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/kitchen) +"aZQ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/cook, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/kitchen) +"aZR" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/kitchen) +"aZS" = ( +/obj/structure/closet/chefcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"aZT" = ( +/obj/structure/rack, +/obj/item/book/manual/chef_recipes, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"aZU" = ( +/turf/open/floor/plasteel/red, +/area/crew_quarters/kitchen) +"aZV" = ( +/turf/open/floor/plasteel/white, +/area/crew_quarters/kitchen) +"aZW" = ( +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "sink"; + pixel_y = 28 + }, +/turf/open/floor/plasteel/red, +/area/crew_quarters/kitchen) +"aZX" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/red, +/area/crew_quarters/kitchen) +"aZY" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "kitchencounter"; + name = "Kitchen Counter Shutters"; + pixel_x = 26; + pixel_y = 8; + req_access_txt = "28" + }, +/obj/machinery/button/door{ + id = "kitchenside"; + name = "Kitchen Side Shutters"; + pixel_x = 26; + pixel_y = -8; + req_access_txt = "28" + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"aZZ" = ( +/turf/closed/wall, +/area/hallway/primary/fore) +"baa" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26 + }, +/turf/open/floor/plasteel/brown{ + dir = 9 + }, +/area/hallway/primary/fore) +"bab" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/hallway/primary/fore) +"bac" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/hallway/primary/fore) +"bad" = ( +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/hallway/primary/fore) +"bae" = ( +/obj/machinery/camera{ + c_tag = "Cargo - Waiting Room"; + dir = 2; + name = "cargo camera" + }, +/turf/open/floor/plasteel/loadingarea{ + dir = 4 + }, +/area/hallway/primary/fore) +"baf" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"bag" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"bah" = ( +/obj/machinery/computer/cargo/request, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"bai" = ( +/obj/machinery/computer/cargo/request, +/turf/open/floor/plasteel/purple/side{ + dir = 8 + }, +/area/quartermaster/miningoffice) +"baj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/miningoffice) +"bak" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/miningoffice) +"bal" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/miningoffice) +"bam" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/plasteel/purple/side{ + dir = 4 + }, +/area/quartermaster/miningoffice) +"ban" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/quartermaster/miningoffice) +"bao" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/miningoffice) +"bap" = ( +/turf/open/floor/plasteel/loadingarea{ + dir = 1 + }, +/area/quartermaster/miningoffice) +"baq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/loadingarea{ + dir = 1 + }, +/area/quartermaster/miningoffice) +"bar" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/miningoffice) +"bas" = ( +/turf/open/floor/plasteel/purple/side{ + dir = 1 + }, +/area/quartermaster/miningoffice) +"bat" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/brown{ + dir = 5 + }, +/area/quartermaster/miningoffice) +"bau" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/miningoffice) +"bav" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/miningoffice) +"baw" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/vacuum, +/turf/open/floor/plating, +/area/quartermaster/miningoffice) +"bax" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/miningoffice) +"bay" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/emergency, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/shuttle/mining) +"baz" = ( +/obj/machinery/computer/shuttle/mining, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/shuttle/mining) +"baA" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/shuttle/mining) +"baB" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigprison"; + name = "Prison Blast door" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/pods{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/prison) +"baC" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigprison"; + name = "Prison Blast door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/prison) +"baD" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigprison"; + name = "Prison Blast door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/prison) +"baE" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"baF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/bombcloset/security, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/prison) +"baG" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/engine/plasma, +/area/engine/atmos) +"baH" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/turf/open/floor/engine/plasma, +/area/engine/atmos) +"baI" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "tox_sensor" + }, +/turf/open/floor/engine/plasma, +/area/engine/atmos) +"baJ" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "tox_in"; + name = "Plasma Supply Control"; + output_tag = "tox_out"; + sensors = list("tox_sensor" = "Tank") + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/purple/side{ + dir = 8 + }, +/area/engine/atmos) +"baK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"baL" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"baM" = ( +/obj/structure/table/reinforced, +/obj/item/device/analyzer{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"baN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/caution{ + dir = 8 + }, +/area/engine/atmos) +"baO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/atmos) +"baP" = ( +/obj/structure/closet/wardrobe/atmospherics_yellow, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/storage/backpack/satchel/eng, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"baQ" = ( +/obj/structure/sign/atmosplaque, +/turf/closed/wall, +/area/engine/atmos) +"baR" = ( +/obj/structure/table/reinforced, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"baS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"baT" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"baU" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "N2 to Pure" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/atmos) +"baV" = ( +/obj/structure/sign/securearea{ + pixel_x = 32 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmos) +"baW" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"baX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port/fore) +"baY" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/cultivator, +/obj/item/hatchet, +/obj/item/wirecutters, +/obj/item/shovel/spade, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics) +"baZ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/greenblue/side, +/area/hydroponics) +"bba" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/greenblue/side, +/area/hydroponics) +"bbb" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hydroponics) +"bbc" = ( +/obj/machinery/camera{ + c_tag = "Hydroponics Backroom"; + dir = 1; + name = "service camera" + }, +/turf/open/floor/plasteel/greenblue/side, +/area/hydroponics) +"bbd" = ( +/obj/structure/cable/white, +/obj/machinery/power/apc{ + dir = 2; + name = "Hydroponics APC"; + areastring = "/area/hydroponics"; + pixel_y = -26 + }, +/turf/open/floor/plasteel/greenblue/side, +/area/hydroponics) +"bbe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/greenblue/side, +/area/hydroponics) +"bbf" = ( +/turf/open/floor/plasteel/greenblue/side, +/area/hydroponics) +"bbg" = ( +/obj/machinery/light_switch{ + pixel_x = 8; + pixel_y = -26 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hydroponics) +"bbh" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 8; + freq = 1400; + location = "Hydroponics" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"bbi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"bbj" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/secondary/service) +"bbk" = ( +/obj/structure/kitchenspike, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bbl" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26; + pixel_y = -26 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bbm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bbn" = ( +/obj/structure/cable/white, +/obj/machinery/power/apc{ + dir = 2; + name = "Kitchen APC"; + areastring = "/area/crew_quarters/kitchen"; + pixel_y = -26 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bbo" = ( +/obj/machinery/chem_master/condimaster, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bbp" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bbq" = ( +/obj/machinery/deepfryer, +/mob/living/carbon/monkey/punpun, +/turf/open/floor/plasteel/red, +/area/crew_quarters/kitchen) +"bbr" = ( +/obj/machinery/holopad, +/obj/effect/landmark/start/cook, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bbs" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/crew_quarters/kitchen) +"bbt" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchenside"; + name = "Kitchen Hall Shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bbu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/brown/corner{ + dir = 4 + }, +/area/hallway/primary/fore) +"bbv" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/fore) +"bbw" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/hallway/primary/fore) +"bbx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/fore) +"bby" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/fore) +"bbz" = ( +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/fore) +"bbA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/fore) +"bbB" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Mining Desk"; + req_access_txt = "48" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bbC" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/quartermaster/miningoffice) +"bbD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/miningoffice) +"bbE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/miningoffice) +"bbF" = ( +/turf/open/floor/plasteel/neutral, +/area/quartermaster/miningoffice) +"bbG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/miningoffice) +"bbH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Mining Dock"; + req_access_txt = "48" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bbI" = ( +/turf/open/floor/plasteel/purple/side{ + dir = 8 + }, +/area/quartermaster/miningoffice) +"bbJ" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/miningoffice) +"bbK" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/miningoffice) +"bbL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/shaft_miner, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/miningoffice) +"bbM" = ( +/obj/effect/landmark/start/shaft_miner, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/miningoffice) +"bbN" = ( +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/miningoffice) +"bbO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/quartermaster/miningoffice) +"bbP" = ( +/turf/open/floor/plasteel/purple/side{ + dir = 4 + }, +/area/quartermaster/miningoffice) +"bbQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/pods{ + name = "MINING POD" + }, +/turf/open/floor/plating, +/area/quartermaster/miningoffice) +"bbR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/ore_box, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bbS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bbT" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/miningoffice) +"bbU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/shuttle/mining) +"bbV" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/shuttle/mining) +"bbW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/shuttle/mining) +"bbX" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/sign/securearea{ + pixel_x = -32 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"bbY" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"bbZ" = ( +/obj/machinery/button/door{ + id = "brigprison"; + name = "Prison Lockdown"; + pixel_x = 26; + pixel_y = 26; + req_access_txt = "63" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"bca" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_security{ + name = "Storage Closet"; + req_access_txt = "63" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"bcb" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"bcc" = ( +/obj/structure/closet/l3closet/security, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/prison) +"bcd" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4; + frequency = 1441; + id = "tox_in"; + pixel_y = 1 + }, +/turf/open/floor/engine/plasma, +/area/engine/atmos) +"bce" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmos) +"bcf" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 2; + filter_type = "plasma"; + name = "waste filter"; + on = 1 + }, +/turf/open/floor/plasteel/purple/side{ + dir = 10 + }, +/area/engine/atmos) +"bcg" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Port Mix to Port Ports"; + on = 0 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bch" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Port Mix to Starboard Ports"; + on = 0 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bci" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/engine/atmos) +"bcj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_atmos{ + name = "Atmospherics Storage"; + req_access_txt = "0"; + req_one_access_txt = "24;10" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bck" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bcl" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bcm" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "N2 to Airmix"; + on = 1 + }, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/engine/atmos) +"bcn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmos) +"bco" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 8; + frequency = 1441; + id_tag = "n2_out"; + name = "n2 vent" + }, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"bcp" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics - Nitrogen Cell"; + name = "atmospherics camera" + }, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"bcq" = ( +/turf/open/floor/engine/n2, +/area/engine/atmos) +"bcr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port/fore) +"bcs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"bct" = ( +/obj/structure/sign/botany, +/turf/closed/wall, +/area/hydroponics) +"bcu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/hydroponics) +"bcv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Hydroponics Backroom"; + req_access_txt = "35" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bcw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Service Hall"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"bcx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/hallway/secondary/service) +"bcy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/kitchen) +"bcz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Kitchen Coldroom"; + req_access_txt = "28" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bcA" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Kitchen"; + dir = 4; + name = "service camera" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bcB" = ( +/obj/structure/table/reinforced, +/obj/item/storage/bag/tray, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bcC" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/bowl, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bcD" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/condiment/flour, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bcE" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j1" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/fore) +"bcF" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/brown/corner{ + dir = 4 + }, +/area/hallway/primary/fore) +"bcG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"bcH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/hallway/primary/fore) +"bcI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/fore) +"bcJ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"bcK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"bcL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/fore) +"bcM" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"bcN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/loadingarea{ + dir = 1 + }, +/area/hallway/primary/fore) +"bcO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/miningoffice) +"bcP" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/purple/side{ + dir = 8 + }, +/area/quartermaster/miningoffice) +"bcQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/miningoffice) +"bcR" = ( +/obj/machinery/holopad, +/obj/effect/landmark/lightsout, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bcS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/miningoffice) +"bcT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/purple/side{ + dir = 4 + }, +/area/quartermaster/miningoffice) +"bcU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/quartermaster/miningoffice) +"bcV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bcW" = ( +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bcX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bcZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 4; + name = "Mining Dock Airlock"; + req_access = null; + req_access_txt = "48" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bda" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bdb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bdc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 8; + name = "Mining Dock Airlock"; + req_access = null; + req_access_txt = "48" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bdd" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Mining Shuttle Airlock"; + req_access_txt = "0" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/shuttle/mining) +"bde" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/shuttle/mining) +"bdf" = ( +/turf/open/floor/plasteel/neutral, +/area/shuttle/mining) +"bdg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/shuttle/mining) +"bdh" = ( +/obj/docking_port/mobile{ + dir = 8; + dwidth = 3; + height = 5; + id = "mining"; + name = "mining shuttle"; + port_direction = 4; + width = 7 + }, +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 5; + id = "mining_home"; + name = "mining shuttle bay"; + width = 7 + }, +/obj/machinery/door/airlock/shuttle{ + name = "Mining Shuttle Airlock"; + req_access_txt = "0" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/shuttle/mining) +"bdi" = ( +/turf/closed/wall/r_wall, +/area/security/brig) +"bdj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Prison Wing"; + req_access_txt = "1" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bdk" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: BLAST DOORS" + }, +/turf/open/floor/plating, +/area/security/brig) +"bdl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Prison Wing"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bdm" = ( +/turf/closed/wall/r_wall, +/area/security/main) +"bdn" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/main) +"bdo" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/securearea{ + pixel_x = -32 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmos) +"bdp" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bdq" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/caution{ + dir = 1 + }, +/area/engine/atmos) +"bdr" = ( +/obj/machinery/power/apc/highcap/five_k{ + dir = 1; + name = "Atmospherics APC"; + areastring = "/area/engine/atmos"; + pixel_y = 24 + }, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/caution{ + dir = 1 + }, +/area/engine/atmos) +"bds" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/caution{ + dir = 1 + }, +/area/engine/atmos) +"bdt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/caution{ + dir = 1 + }, +/area/engine/atmos) +"bdu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/caution{ + dir = 1 + }, +/area/engine/atmos) +"bdv" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics - Aft"; + name = "atmospherics camera" + }, +/turf/open/floor/plasteel/caution{ + dir = 1 + }, +/area/engine/atmos) +"bdw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/caution{ + dir = 1 + }, +/area/engine/atmos) +"bdx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bdy" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bdz" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bdA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bdB" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "n2_in"; + name = "Nitrogen Supply Control"; + output_tag = "n2_out"; + sensors = list("n2_sensor" = "Tank") + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/engine/atmos) +"bdC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmos) +"bdD" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "n2_sensor" + }, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"bdE" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"bdF" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"bdG" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics) +"bdH" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics) +"bdI" = ( +/obj/machinery/disposal/bin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics) +"bdJ" = ( +/obj/machinery/light_switch{ + pixel_x = -26; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hydroponics) +"bdK" = ( +/obj/structure/table/glass, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/obj/item/storage/box/beakers{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/syringes, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics) +"bdL" = ( +/obj/machinery/reagentgrinder{ + desc = "Used to grind things up into raw materials and liquids."; + pixel_y = 5 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics) +"bdM" = ( +/obj/structure/table/glass, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/item/clipboard, +/obj/item/toy/figure/botanist, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics) +"bdN" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics) +"bdO" = ( +/obj/machinery/smartfridge, +/turf/closed/wall, +/area/hydroponics) +"bdP" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/greenblue/side{ + dir = 8 + }, +/area/hallway/secondary/service) +"bdQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/green/side{ + dir = 1 + }, +/area/hallway/secondary/service) +"bdR" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/hallway/secondary/service) +"bdS" = ( +/obj/machinery/smartfridge, +/turf/closed/wall, +/area/crew_quarters/kitchen) +"bdT" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = 32 + }, +/obj/machinery/light_switch{ + pixel_x = -7; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/crew_quarters/kitchen) +"bdU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red, +/area/crew_quarters/kitchen) +"bdV" = ( +/obj/machinery/requests_console{ + department = "Kitchen"; + departmentType = 0; + name = "Kitchen RC"; + pixel_y = 32 + }, +/turf/open/floor/plasteel/red, +/area/crew_quarters/kitchen) +"bdW" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/kitchen) +"bdX" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/snacks/dough, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bdY" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bdZ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/papersack{ + icon_state = "paperbag_NanotrasenStandard_closed" + }, +/obj/item/storage/box/papersack{ + icon_state = "paperbag_NanotrasenStandard_closed" + }, +/obj/item/storage/box/papersack{ + icon_state = "paperbag_NanotrasenStandard_closed" + }, +/obj/item/storage/box/papersack{ + icon_state = "paperbag_NanotrasenStandard_closed" + }, +/obj/item/storage/box/papersack{ + icon_state = "paperbag_NanotrasenStandard_closed" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bea" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/fore) +"beb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/fore) +"bec" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/brown/corner{ + dir = 4 + }, +/area/hallway/primary/fore) +"bed" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"bee" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/hallway/primary/fore) +"bef" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/fore) +"beg" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"beh" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"bei" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/fore) +"bej" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"bek" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"bel" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/glass_mining{ + name = "Mining Office"; + req_access_txt = "48" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bem" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/quartermaster/miningoffice) +"ben" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/miningoffice) +"beo" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/miningoffice) +"bep" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/miningoffice) +"beq" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/miningoffice) +"ber" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Mining Dock"; + req_access_txt = "48" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bes" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/purple/side{ + dir = 8 + }, +/area/quartermaster/miningoffice) +"bet" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/miningoffice) +"beu" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/miningoffice) +"bev" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/miningoffice) +"bew" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/miningoffice) +"bex" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/miningoffice) +"bey" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plasteel/purple/side{ + dir = 4 + }, +/area/quartermaster/miningoffice) +"bez" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"beA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"beB" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/miningoffice) +"beC" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/shuttle/mining) +"beD" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/shuttle/mining) +"beE" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/shuttle/mining) +"beF" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/brig) +"beH" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/whitered/side{ + dir = 1 + }, +/area/security/brig) +"beI" = ( +/obj/structure/bed, +/obj/machinery/iv_drip, +/obj/item/bedsheet/medical, +/obj/machinery/vending/wallmed{ + name = "Emergency NanoMed"; + pixel_y = 26; + req_access_txt = "0"; + use_power = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Security - Medbay"; + dir = 2; + name = "security camera" + }, +/turf/open/floor/plasteel/whitered/side{ + dir = 1 + }, +/area/security/brig) +"beJ" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/brig) +"beK" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/brig) +"beL" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/brig) +"beM" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/brig) +"beN" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/main) +"beO" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/main) +"beP" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/main) +"beQ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Security - Office Fore"; + dir = 2; + name = "security camera" + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/main) +"beR" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/newscaster/security_unit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/main) +"beS" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/main) +"beT" = ( +/obj/machinery/recharger, +/obj/structure/table/reinforced, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/main) +"beU" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26; + pixel_y = 26 + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/main) +"beV" = ( +/obj/machinery/computer/security, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/main) +"beW" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hos) +"beX" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosspace"; + name = "HoS Space Blast door" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) +"beY" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosspace"; + name = "HoS Space Blast door" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) +"beZ" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosspace"; + name = "HoS Space Blast door" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) +"bfa" = ( +/turf/open/floor/engine/n2o, +/area/engine/atmos) +"bfb" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics - n2o Cell"; + name = "atmospherics camera" + }, +/turf/open/floor/engine/n2o, +/area/engine/atmos) +"bfc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 4; + frequency = 1441; + id_tag = "n2o_out"; + name = "n2o vent" + }, +/turf/open/floor/engine/n2o, +/area/engine/atmos) +"bfd" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "N2O to Pure"; + on = 0 + }, +/turf/open/floor/plasteel/escape{ + dir = 9 + }, +/area/engine/atmos) +"bfe" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bff" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bfg" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Pure to Ports"; + on = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bfh" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Mix to Ports"; + on = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bfi" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Air to Ports"; + on = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bfj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Port Mix to Engine" + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bfk" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bfl" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bfm" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bfn" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bfo" = ( +/obj/machinery/holopad, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bfp" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bfq" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bfr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bfs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bft" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 1; + filter_type = "n2"; + name = "nitrogen filter"; + on = 1 + }, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/engine/atmos) +"bfx" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "n2_in" + }, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"bfy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/item/device/flashlight, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"bfz" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics) +"bfA" = ( +/turf/open/floor/plasteel/greenblue/side{ + dir = 9 + }, +/area/hydroponics) +"bfB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/greenblue/side{ + dir = 1 + }, +/area/hydroponics) +"bfC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/greenblue/side{ + dir = 1 + }, +/area/hydroponics) +"bfD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/greenblue/side{ + dir = 1 + }, +/area/hydroponics) +"bfE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/greenblue/side{ + dir = 5 + }, +/area/hydroponics) +"bfF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hydroponics) +"bfG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bfH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/greenblue/side{ + dir = 8 + }, +/area/hallway/secondary/service) +"bfI" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"bfJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/hallway/secondary/service) +"bfK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Kitchen"; + req_access_txt = "28" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bfL" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/crew_quarters/kitchen) +"bfM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/red, +/area/crew_quarters/kitchen) +"bfN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/kitchen) +"bfO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/red, +/area/crew_quarters/kitchen) +"bfP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/kitchen) +"bfQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/red, +/area/crew_quarters/kitchen) +"bfR" = ( +/obj/effect/landmark/start/cook, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/kitchen) +"bfS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/red, +/area/crew_quarters/kitchen) +"bfT" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/red, +/area/crew_quarters/kitchen) +"bfU" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/kitchen) +"bfV" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchenside"; + name = "Kitchen Hall Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bfW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/fore) +"bfX" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + icon_state = "pipe-j2s"; + name = "Kitchen Junction"; + sortType = 20 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/fore) +"bfY" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/hallway/primary/fore) +"bfZ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/fore) +"bga" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/fore) +"bgb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/hallway/primary/fore) +"bgc" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel/purple/side{ + dir = 8 + }, +/area/quartermaster/miningoffice) +"bgd" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/miningoffice) +"bge" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/miningoffice) +"bgf" = ( +/obj/machinery/photocopier, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/purple/side{ + dir = 4 + }, +/area/quartermaster/miningoffice) +"bgg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/quartermaster/miningoffice) +"bgh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/purple/side, +/area/quartermaster/miningoffice) +"bgi" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/brown, +/area/quartermaster/miningoffice) +"bgj" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/purple/side, +/area/quartermaster/miningoffice) +"bgk" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/requests_console{ + department = "Mining"; + departmentType = 0; + name = "Mining Dock RC"; + pixel_y = -32 + }, +/obj/machinery/camera{ + c_tag = "Cargo - Mining Dock"; + dir = 1; + name = "cargo camera" + }, +/turf/open/floor/plasteel/brown, +/area/quartermaster/miningoffice) +"bgl" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/brown, +/area/quartermaster/miningoffice) +"bgm" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/purple/side, +/area/quartermaster/miningoffice) +"bgn" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/item/folder/yellow, +/obj/item/device/gps/mining, +/turf/open/floor/plasteel/brown{ + dir = 6 + }, +/area/quartermaster/miningoffice) +"bgo" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/miningoffice) +"bgp" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/miningoffice) +"bgq" = ( +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/structure/closet/crate/internals, +/obj/effect/decal/cleanable/dirt, +/obj/item/pickaxe/emergency, +/obj/item/pickaxe/emergency, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/shuttle/mining) +"bgr" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/mining) +"bgs" = ( +/obj/structure/ore_box, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/shuttle/mining) +"bgt" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/brig) +"bgu" = ( +/obj/structure/table/glass, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/item/clothing/gloves/color/latex, +/obj/item/device/healthanalyzer, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 5; + pixel_y = -1 + }, +/turf/open/floor/plasteel/whitered/side{ + dir = 8 + }, +/area/security/brig) +"bgv" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"bgw" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"bgx" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/door/airlock/glass_medical{ + name = "Infirmary" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitered/side{ + dir = 4 + }, +/area/security/brig) +"bgy" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/brig) +"bgz" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/security/brig) +"bgA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/brig) +"bgB" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -26; + pixel_y = 32 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/main) +"bgC" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/red/corner, +/area/security/main) +"bgD" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel/red/side, +/area/security/main) +"bgE" = ( +/turf/open/floor/plasteel/red/corner{ + dir = 8 + }, +/area/security/main) +"bgF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/neutral, +/area/security/main) +"bgG" = ( +/turf/open/floor/plasteel/neutral, +/area/security/main) +"bgH" = ( +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/main) +"bgI" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/main) +"bgJ" = ( +/obj/structure/bed/dogbed/cayenne, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Security - Head of Security's Office"; + dir = 2; + name = "security camera" + }, +/turf/open/floor/plasteel/vault{ + dir = 4 + }, +/area/crew_quarters/heads/hos) +"bgK" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/crew_quarters/heads/hos) +"bgL" = ( +/obj/structure/table/wood, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/item/device/taperecorder{ + pixel_x = 3 + }, +/obj/item/storage/box/deputy, +/obj/item/device/flashlight/seclite, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/crew_quarters/heads/hos) +"bgM" = ( +/obj/structure/table/wood, +/obj/item/storage/secure/briefcase, +/obj/item/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/crew_quarters/heads/hos) +"bgN" = ( +/obj/machinery/photocopier, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Security's Desk"; + departmentType = 5; + name = "Head of Security RC"; + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/crew_quarters/heads/hos) +"bgO" = ( +/obj/structure/window/reinforced, +/turf/open/space, +/area/space) +"bgP" = ( +/obj/structure/window/reinforced, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"bgQ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/engine/n2o, +/area/engine/atmos) +"bgR" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide{ + valve_open = 1 + }, +/turf/open/floor/engine/n2o, +/area/engine/atmos) +"bgS" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "n2o_sensor" + }, +/turf/open/floor/engine/n2o, +/area/engine/atmos) +"bgT" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "n2o_in"; + name = "Nitrous Oxide Supply Control"; + output_tag = "n2o_out"; + sensors = list("n2o_sensor" = "Tank") + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel/escape{ + dir = 8 + }, +/area/engine/atmos) +"bgU" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bgV" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bgW" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bgX" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bgY" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bgZ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bhb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bhc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bhd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bhe" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bhf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bhg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bhh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4; + name = "SM Coolant Loop" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/atmos) +"bhi" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmos) +"bhj" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/engine/atmos) +"bhk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bhl" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bhm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port/fore) +"bhn" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hydroponics) +"bho" = ( +/turf/open/floor/plasteel/greenblue/side{ + dir = 8 + }, +/area/hydroponics) +"bhp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/neutral, +/area/hydroponics) +"bhq" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hydroponics) +"bhr" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hydroponics) +"bhs" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/hydroponics) +"bht" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/greenblue/side{ + dir = 4 + }, +/area/hydroponics) +"bhu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics) +"bhv" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/window/eastleft{ + dir = 8; + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/obj/item/storage/bag/plants/portaseeder, +/obj/machinery/door/window/eastright, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hydroponics) +"bhw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/greenblue/side{ + dir = 8 + }, +/area/hallway/secondary/service) +"bhx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral/side, +/area/hallway/secondary/service) +"bhy" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/hallway/secondary/service) +"bhz" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/window/eastleft{ + dir = 4; + name = "Kitchen Desk"; + req_access_txt = "28" + }, +/obj/item/storage/bag/tray, +/obj/machinery/door/window/westleft, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bhB" = ( +/obj/machinery/food_cart, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bhC" = ( +/obj/machinery/light, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/machinery/vending/dinnerware, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bhD" = ( +/obj/machinery/icecream_vat, +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bhE" = ( +/obj/structure/rack, +/obj/machinery/button/door{ + id = "kitchenwindows"; + name = "Kitchen Privacy Control"; + pixel_y = -26; + req_access_txt = "28" + }, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/item/clothing/head/chefhat, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bhF" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/snacks/mint, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_y = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bhG" = ( +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder{ + desc = "Used to grind things up into raw materials and liquids."; + pixel_y = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bhH" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/toy/figure/chef, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bhI" = ( +/obj/machinery/light, +/obj/machinery/processor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bhJ" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/suit/apron/chef, +/obj/item/kitchen/rollingpin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bhK" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -8 + }, +/obj/item/kitchen/knife, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bhL" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -3; + pixel_y = 5 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bhN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Arrivals Hallway - Aft"; + dir = 8; + name = "hallway camera" + }, +/turf/open/floor/plasteel/brown/corner{ + dir = 4 + }, +/area/hallway/primary/fore) +"bhO" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/hallway/primary/fore) +"bhP" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/clipboard, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/turf/open/floor/plasteel/brown{ + dir = 10 + }, +/area/hallway/primary/fore) +"bhQ" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/brown, +/area/hallway/primary/fore) +"bhR" = ( +/turf/open/floor/plasteel/brown, +/area/hallway/primary/fore) +"bhS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/brown, +/area/hallway/primary/fore) +"bhT" = ( +/obj/machinery/light, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/brown, +/area/hallway/primary/fore) +"bhU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/brown, +/area/hallway/primary/fore) +"bhV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/brown, +/area/hallway/primary/fore) +"bhW" = ( +/obj/structure/table, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plasteel/brown, +/area/hallway/primary/fore) +"bhX" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 6 + }, +/area/hallway/primary/fore) +"bhY" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/stockexchange, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/brown{ + dir = 10 + }, +/area/quartermaster/miningoffice) +"bhZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/loadingarea{ + dir = 4 + }, +/area/quartermaster/miningoffice) +"bia" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bib" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/loadingarea{ + dir = 8 + }, +/area/quartermaster/miningoffice) +"bic" = ( +/obj/structure/table, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/item/storage/firstaid/regular, +/obj/machinery/light, +/obj/machinery/power/apc{ + dir = 4; + name = "Mining Dock APC"; + areastring = "/area/quartermaster/miningoffice"; + pixel_x = 26 + }, +/obj/machinery/camera{ + c_tag = "Cargo - Mining Office"; + dir = 8; + name = "cargo camera" + }, +/turf/open/floor/plasteel/brown{ + dir = 6 + }, +/area/quartermaster/miningoffice) +"bid" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/toolbox/emergency{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/emergency, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/item/shovel, +/obj/item/shovel, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bie" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bif" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"big" = ( +/obj/structure/closet/wardrobe/miner, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light, +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_y = -26 + }, +/obj/item/storage/backpack/satchel/explorer, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bih" = ( +/obj/machinery/disposal/bin, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bii" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bij" = ( +/obj/machinery/computer/security/mining, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bik" = ( +/obj/machinery/computer/shuttle/mining, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bil" = ( +/obj/structure/shuttle/engine/propulsion/burst, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/mining) +"bim" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/brig) +"bin" = ( +/obj/structure/table/glass, +/obj/item/storage/firstaid/regular, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/item/reagent_containers/glass/bottle/charcoal, +/obj/item/reagent_containers/syringe, +/turf/open/floor/plasteel/whitered/side{ + dir = 10 + }, +/area/security/brig) +"bio" = ( +/obj/machinery/light/small, +/obj/machinery/holopad, +/turf/open/floor/plasteel/whitered/side, +/area/security/brig) +"bip" = ( +/obj/structure/bed/roller, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = -26 + }, +/turf/open/floor/plasteel/whitered/side, +/area/security/brig) +"biq" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/bluecross_2, +/turf/open/floor/plating, +/area/security/brig) +"bir" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/brig) +"bis" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/neutral, +/area/security/brig) +"bit" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/brig) +"biu" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/main) +"biv" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/main) +"biw" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/main) +"bix" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/clothing/mask/gas/sechailer, +/turf/open/floor/plasteel/red, +/area/security/main) +"biy" = ( +/obj/structure/table/reinforced, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plasteel/red, +/area/security/main) +"biz" = ( +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/main) +"biA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/security/main) +"biB" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/main) +"biC" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosprivacy"; + name = "HoS Privacy Blast door" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) +"biD" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -32; + pixel_y = 32 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"biE" = ( +/mob/living/simple_animal/hostile/carp/cayenne{ + color = ""; + desc = "A failed experiment of Nanotrasen to create weaponised carp technology. This less than intimidating carp now serves as an authority figure's pet."; + health = 200; + icon_dead = "magicarp_dead"; + icon_gib = "magicarp_gib"; + icon_living = "magicarp"; + icon_state = "magicarp"; + maxHealth = 200; + melee_damage_lower = 20; + melee_damage_upper = 20; + name = "Lia" + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"biF" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"biG" = ( +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"biH" = ( +/obj/machinery/ai_status_display{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26; + pixel_y = 58 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"biI" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/button/door{ + id = "hosprivacy"; + name = "Privacy Control"; + pixel_x = 26; + pixel_y = 7; + req_access_txt = "58" + }, +/obj/machinery/button/door{ + id = "hosspace"; + name = "Space Shutters Control"; + pixel_x = 26; + pixel_y = -7; + req_access_txt = "58" + }, +/obj/machinery/light_switch{ + pixel_x = 38 + }, +/obj/machinery/keycard_auth{ + pixel_x = 26; + pixel_y = 26 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/crew_quarters/heads/hos) +"biJ" = ( +/turf/closed/wall, +/area/crew_quarters/heads/hos) +"biK" = ( +/obj/structure/dresser, +/obj/machinery/newscaster/security_unit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"biL" = ( +/obj/structure/bed, +/obj/item/bedsheet/hos, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Security - Head of Security's Quarters"; + dir = 2; + name = "security camera" + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"biM" = ( +/obj/structure/table/wood, +/obj/item/storage/secure/safe/HoS{ + pixel_x = 32 + }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"biN" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space) +"biO" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"biP" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"biQ" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"biR" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space) +"biS" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4; + frequency = 1441; + id = "n2o_in"; + pixel_y = 1 + }, +/turf/open/floor/engine/n2o, +/area/engine/atmos) +"biT" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 2; + filter_type = "n2o"; + name = "n2o filter"; + on = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/escape{ + dir = 10 + }, +/area/engine/atmos) +"biU" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 5 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"biV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"biW" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 9 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"biX" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/atmos) +"biY" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"biZ" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bja" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/plasteel/caution{ + dir = 9 + }, +/area/engine/atmos) +"bjb" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible, +/turf/open/floor/plasteel/caution{ + dir = 1 + }, +/area/engine/atmos) +"bjc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/caution{ + dir = 1 + }, +/area/engine/atmos) +"bjd" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/caution{ + dir = 5 + }, +/area/engine/atmos) +"bje" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bjf" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bjg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bjh" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bji" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bjk" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/atmos) +"bjl" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 5 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmos) +"bjn" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 9 + }, +/turf/open/space, +/area/space) +"bjo" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/costume, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"bjp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bjq" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hydroponics) +"bjr" = ( +/obj/effect/landmark/start/botanist, +/turf/open/floor/plasteel/neutral, +/area/hydroponics) +"bjs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/hydroponics) +"bjt" = ( +/turf/open/floor/plasteel/neutral, +/area/hydroponics) +"bju" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/hydroponics) +"bjv" = ( +/turf/open/floor/plasteel/greenblue/side{ + dir = 4 + }, +/area/hydroponics) +"bjw" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = 8 + }, +/obj/machinery/plantgenes, +/obj/machinery/camera{ + c_tag = "Hydroponics"; + dir = 8; + name = "service camera" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hydroponics) +"bjx" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/service) +"bjy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Service Foyer" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"bjz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/hallway/secondary/service) +"bjA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "kitchenwindows"; + name = "Kitchen Privacy Shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/kitchen) +"bjB" = ( +/obj/structure/sign/directions/evac{ + pixel_y = -8 + }, +/obj/structure/sign/directions/science{ + dir = 8 + }, +/obj/structure/sign/directions/engineering{ + dir = 8; + pixel_y = 8 + }, +/turf/closed/wall, +/area/crew_quarters/kitchen) +"bjC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/glass{ + name = "Fore Primary Hallway" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"bjD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Fore Primary Hallway" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"bjE" = ( +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = 8 + }, +/obj/structure/sign/directions/engineering{ + desc = "A direction sign, pointing out which way the Supply department is."; + dir = 4; + icon_state = "direction_supply"; + name = "supply department" + }, +/obj/structure/sign/directions/medical{ + pixel_y = -8 + }, +/turf/closed/wall, +/area/hallway/primary/fore) +"bjF" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"bjG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"bjH" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/hallway/primary/fore) +"bjI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"bjJ" = ( +/obj/machinery/mineral/ore_redemption, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bjK" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"bjL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/mining{ + name = "Mining Dock"; + req_access_txt = "48" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"bjM" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/miningoffice) +"bjN" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/execution/transfer) +"bjO" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/execution/transfer) +"bjP" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/execution/transfer) +"bjQ" = ( +/turf/closed/wall/r_wall, +/area/security/execution/transfer) +"bjR" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/brig) +"bjS" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/security/brig) +"bjT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/brig) +"bjU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/security/main) +"bjV" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Security Office APC"; + areastring = "/area/security/main"; + pixel_x = -26 + }, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/main) +"bjW" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/landmark/start/security_officer, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/main) +"bjX" = ( +/obj/structure/table/reinforced, +/obj/item/restraints/handcuffs, +/obj/item/device/assembly/flash/handheld, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red, +/area/security/main) +"bjY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/main) +"bjZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/security/main) +"bka" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/folder/blue{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/lighter, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/main) +"bkb" = ( +/obj/machinery/photocopier, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/main) +"bkc" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/main) +"bkd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/main) +"bke" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosprivacy"; + name = "HoS Privacy Blast door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) +"bkf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"bkg" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"bkh" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"bki" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"bkj" = ( +/obj/machinery/computer/card/minor/hos, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/crew_quarters/heads/hos) +"bkk" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) +"bkl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"bkm" = ( +/obj/machinery/computer/prisoner, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"bkn" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosroom"; + name = "HoS Room Blast door" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) +"bko" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space) +"bkp" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"bkq" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/aisat) +"bkr" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/aisat) +"bks" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"bkt" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space) +"bku" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8 + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"bkv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"bkw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"bkx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_atmos{ + name = "Distribution Loop"; + req_access_txt = "24" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bky" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/turf/open/floor/plating, +/area/engine/atmos) +"bkz" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/obj/item/device/flashlight, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bkA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 2 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bkB" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/effect/decal/cleanable/dirt, +/obj/item/toy/figure/atmos, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 2 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bkC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bkD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bkE" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bkF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bkG" = ( +/obj/machinery/hydroponics/constructable, +/obj/structure/sign/botany{ + pixel_x = -32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hydroponics) +"bkH" = ( +/obj/machinery/biogenerator, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics) +"bkI" = ( +/obj/machinery/seed_extractor, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics) +"bkJ" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics) +"bkK" = ( +/obj/machinery/smartfridge/disks, +/turf/open/floor/plasteel, +/area/hydroponics) +"bkL" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/hydroponics) +"bkM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bkN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bkO" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bkP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bkQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Central Hallway - Fore Port"; + dir = 2; + name = "hallway camera" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bkR" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bkS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bkT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bkU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/hallway/primary/central) +"bkV" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/brown/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"bkW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/brown/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"bkX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/brown/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"bkY" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/brown/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"bkZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Central Hallway - Fore Starboard"; + dir = 2; + name = "hallway camera" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"bla" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"blb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"blc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/purple/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"bld" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Central Primary Hallway APC"; + areastring = "/area/hallway/primary/central"; + pixel_y = 24 + }, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"ble" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"blf" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"blg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/maintenance/starboard/fore) +"blh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"blj" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"blk" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/execution/transfer) +"bll" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"blm" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/execution/transfer) +"bln" = ( +/obj/machinery/computer/shuttle/labor, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/execution/transfer) +"blo" = ( +/obj/machinery/computer/security{ + name = "Labor Camp Monitoring"; + network = list("Labor") + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/turf/open/floor/plasteel/red, +/area/security/execution/transfer) +"blp" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Security - Transfer Centre"; + dir = 2; + name = "security camera" + }, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/execution/transfer) +"blq" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/execution/transfer) +"blr" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/execution/transfer) +"bls" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/lightsout, +/turf/open/floor/plasteel/neutral, +/area/security/brig) +"blt" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/security/main) +"blu" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/main) +"blv" = ( +/turf/open/floor/plasteel/red, +/area/security/main) +"blw" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/main) +"blx" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/clothing/accessory/armband/deputy, +/obj/item/clothing/accessory/armband/deputy, +/obj/item/clothing/accessory/armband/deputy, +/obj/item/clothing/accessory/armband/deputy, +/obj/item/clothing/accessory/armband/deputy, +/obj/item/reagent_containers/food/snacks/donut/jelly/cherryjelly, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/main) +"bly" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/main) +"blz" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/main) +"blA" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/main) +"blB" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/door/airlock/command{ + name = "Head of Security's Office"; + req_access = null; + req_access_txt = "58" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/crew_quarters/heads/hos) +"blC" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"blD" = ( +/obj/machinery/holopad, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"blE" = ( +/obj/structure/table/wood, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/item/folder/red, +/obj/item/stamp/hos, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"blF" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/head_of_security, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"blG" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"blH" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/crew_quarters/heads/hos) +"blI" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/door/airlock/command{ + name = "Head of Security's Quarters"; + req_access = null; + req_access_txt = "58" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/crew_quarters/heads/hos) +"blJ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"blK" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/head_of_security, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"blL" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/computer/crew, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"blM" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosroom"; + name = "HoS Room Blast door" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) +"blN" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"blO" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/southleft, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"blP" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"blQ" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"blR" = ( +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"blS" = ( +/obj/structure/window/reinforced, +/obj/machinery/camera{ + c_tag = "AI Satellite - Fore"; + dir = 1; + name = "ai camera"; + network = list("Sat"); + start_active = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"blT" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"blU" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/southright, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"blV" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"blW" = ( +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"blX" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4; + frequency = 1441; + id = "mix_in"; + pixel_y = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"blY" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plasteel/green/side{ + dir = 9 + }, +/area/engine/atmos) +"blZ" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Unfiltered & Air to Mix"; + on = 1 + }, +/turf/open/floor/plasteel/caution{ + dir = 1 + }, +/area/engine/atmos) +"bma" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/caution{ + dir = 1 + }, +/area/engine/atmos) +"bmb" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2; + name = "Pure to Mix"; + on = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/caution{ + dir = 1 + }, +/area/engine/atmos) +"bmc" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 6 + }, +/turf/open/floor/plasteel/caution{ + dir = 1 + }, +/area/engine/atmos) +"bmd" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/caution{ + dir = 1 + }, +/area/engine/atmos) +"bme" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/plasteel/caution{ + dir = 1 + }, +/area/engine/atmos) +"bmf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"bmg" = ( +/obj/item/clothing/gloves/color/black, +/obj/structure/table/reinforced, +/obj/item/clothing/glasses/meson/engine/tray, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bmh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 2 + }, +/obj/effect/landmark/start/atmospheric_technician, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bmi" = ( +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 2 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bmj" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bml" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bmm" = ( +/obj/machinery/space_heater, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bmn" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bmo" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bmp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bmq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bmr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bms" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bmt" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/hallway/primary/port) +"bmu" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 4 + }, +/area/hallway/primary/port) +"bmv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"bmw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"bmx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bmy" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port/fore) +"bmz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/side{ + dir = 10; + heat_capacity = 1e+006 + }, +/area/maintenance/port/fore) +"bmA" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"bmB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bmC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bmD" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hydroponics) +"bmE" = ( +/obj/machinery/seed_extractor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics) +"bmF" = ( +/obj/machinery/biogenerator, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics) +"bmG" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start/botanist, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics) +"bmH" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/door/window/eastleft{ + dir = 8; + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/obj/item/reagent_containers/food/snacks/grown/apple, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hydroponics) +"bmI" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bmJ" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall3"; + location = "hall2" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"bmK" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"bmL" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"bmM" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"bmN" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bmO" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/hallway/primary/central) +"bmP" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "L1" + }, +/area/hallway/primary/central) +"bmQ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "L3" + }, +/area/hallway/primary/central) +"bmR" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall2"; + location = "hall1" + }, +/turf/open/floor/plasteel{ + icon_state = "L5" + }, +/area/hallway/primary/central) +"bmS" = ( +/obj/effect/landmark/lightsout, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall15"; + location = "hall14" + }, +/turf/open/floor/plasteel{ + icon_state = "L7" + }, +/area/hallway/primary/central) +"bmT" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "L9" + }, +/area/hallway/primary/central) +"bmU" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "L11" + }, +/area/hallway/primary/central) +"bmV" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + desc = ""; + icon_state = "L13" + }, +/area/hallway/primary/central) +"bmW" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/hallway/primary/central) +"bmX" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"bmY" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"bmZ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bna" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"bnb" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"bnc" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall14"; + location = "hall13" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"bnd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"bne" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/labor) +"bnf" = ( +/obj/effect/spawner/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/labor) +"bng" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/electricshock{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bnh" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/execution/transfer) +"bni" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bnj" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bnk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bnl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/execution/transfer) +"bnm" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"bnn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/brig) +"bno" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral, +/area/security/brig) +"bnp" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/brig) +"bnq" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_security{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/main) +"bnr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/security/main) +"bns" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/security_officer, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/main) +"bnt" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/device/flashlight/seclite, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red, +/area/security/main) +"bnu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/main) +"bnv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 8 + }, +/area/security/main) +"bnw" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/device/taperecorder, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/main) +"bnx" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/main) +"bny" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/main) +"bnz" = ( +/obj/effect/landmark/secequipment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/main) +"bnA" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosprivacy"; + name = "HoS Privacy Blast door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) +"bnB" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"bnC" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"bnD" = ( +/obj/structure/table/wood, +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 6 + }, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = 2 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = 4.5 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"bnE" = ( +/obj/machinery/computer/security, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"bnF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"bnG" = ( +/obj/machinery/computer/prisoner, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/crew_quarters/heads/hos) +"bnH" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) +"bnI" = ( +/obj/machinery/light_switch{ + pixel_x = -26; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"bnJ" = ( +/obj/machinery/button/door{ + id = "hosroom"; + name = "Privacy Control"; + pixel_x = 64; + pixel_y = -26; + req_access_txt = "58" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"bnK" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"bnL" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosroom"; + name = "HoS Room Blast door" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) +"bnM" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"bnN" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space) +"bnO" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"bnP" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/space, +/area/space) +"bnQ" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/space, +/area/space) +"bnR" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/space, +/area/space) +"bnS" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/space, +/area/space) +"bnT" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/space, +/area/space) +"bnU" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space) +"bnV" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"bnW" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "mix_sensor" + }, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"bnX" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "mix_in"; + name = "Gas Mix Tank Control"; + output_tag = "mix_in"; + sensors = list("mix_sensor" = "Tank") + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plasteel/green/side{ + dir = 8 + }, +/area/engine/atmos) +"bnY" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bnZ" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"boa" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bob" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"boc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Mix to Filter"; + on = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bod" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"boe" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bof" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bog" = ( +/obj/structure/table/reinforced, +/obj/item/storage/belt/utility, +/obj/item/device/t_scanner, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 2 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"boh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"boi" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"boj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "External Waste Ports to Filter"; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bok" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/engine/atmos) +"bol" = ( +/obj/machinery/space_heater, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bom" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bon" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"boo" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bop" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"boq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/nosmoking_2, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bor" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bos" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=engi3"; + location = "engi2" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/port) +"bot" = ( +/turf/open/floor/plasteel/yellow/corner{ + dir = 4 + }, +/area/hallway/primary/port) +"bou" = ( +/turf/closed/wall, +/area/storage/tech) +"bov" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/storage/tech) +"bow" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/closed/wall, +/area/storage/tech) +"box" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/maintenance/port/fore) +"boy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/hydroponics) +"boz" = ( +/obj/machinery/hydroponics/constructable, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hydroponics) +"boA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hydroponics) +"boB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/neutral, +/area/hydroponics) +"boC" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/obj/item/seeds/lime{ + pixel_x = 6 + }, +/obj/item/seeds/watermelon, +/obj/item/seeds/grape{ + pixel_x = -6 + }, +/obj/item/reagent_containers/food/snacks/grown/wheat, +/obj/item/reagent_containers/food/snacks/grown/watermelon, +/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hydroponics) +"boD" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"boE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/central) +"boF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/central) +"boG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/central) +"boH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/central) +"boJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"boK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "L2" + }, +/area/hallway/primary/central) +"boL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "L4" + }, +/area/hallway/primary/central) +"boM" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "L6" + }, +/area/hallway/primary/central) +"boN" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/observer_start, +/turf/open/floor/plasteel{ + icon_state = "L8" + }, +/area/hallway/primary/central) +"boO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "L10" + }, +/area/hallway/primary/central) +"boP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = -26 + }, +/obj/machinery/camera{ + c_tag = "Central Hallway - Fore"; + dir = 1; + name = "hallway camera" + }, +/turf/open/floor/plasteel{ + icon_state = "L12" + }, +/area/hallway/primary/central) +"boQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "L14" + }, +/area/hallway/primary/central) +"boR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"boS" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"boU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"boV" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"boW" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"boX" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"boY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"boZ" = ( +/turf/closed/wall, +/area/hallway/primary/central) +"bpa" = ( +/obj/machinery/computer/shuttle/labor, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -31 + }, +/turf/open/floor/mineral/plastitanium/brig, +/area/shuttle/labor) +"bpb" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/brig, +/area/shuttle/labor) +"bpc" = ( +/obj/item/folder/red, +/obj/item/restraints/handcuffs, +/obj/structure/table/reinforced, +/turf/open/floor/mineral/plastitanium/brig, +/area/shuttle/labor) +"bpd" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/execution/transfer) +"bpe" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/vacuum, +/turf/open/floor/plating, +/area/security/execution/transfer) +"bpf" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/execution/transfer) +"bpg" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bph" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/execution/transfer) +"bpi" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/restraints/handcuffs, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/storage/box/prisoner, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/execution/transfer) +"bpj" = ( +/obj/machinery/gulag_teleporter, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/execution/transfer) +"bpk" = ( +/obj/machinery/computer/gulag_teleporter_computer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/execution/transfer) +"bpl" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/execution/transfer) +"bpm" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/door/airlock/glass_security{ + name = "Security Transferring Control"; + req_access_txt = "63" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/red, +/area/security/execution/transfer) +"bpn" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/brig) +"bpo" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/security/brig) +"bpp" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/brig) +"bpq" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_security{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/main) +"bpr" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"bps" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/effect/landmark/start/security_officer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/main) +"bpt" = ( +/obj/structure/table/reinforced, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/item/folder/red, +/obj/item/storage/secure/briefcase, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/red, +/area/security/main) +"bpu" = ( +/obj/structure/table/reinforced, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/red, +/area/security/main) +"bpv" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/main) +"bpw" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/security/main) +"bpx" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/security/main) +"bpy" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/main) +"bpz" = ( +/obj/effect/landmark/secequipment, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/main) +"bpA" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosprivacy"; + name = "HoS Privacy Blast door" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) +"bpB" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = -32 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"bpC" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"bpD" = ( +/obj/machinery/status_display{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"bpE" = ( +/obj/structure/table/wood, +/obj/machinery/computer/med_data/laptop, +/obj/machinery/newscaster/security_unit{ + pixel_x = 32 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26; + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/crew_quarters/heads/hos) +"bpF" = ( +/obj/structure/closet/secure_closet/hos, +/obj/item/clothing/head/HoS/beret, +/obj/item/clothing/suit/armor/hos/trenchcoat, +/obj/item/clothing/under/rank/head_of_security/grey, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hos) +"bpG" = ( +/obj/machinery/light, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26; + pixel_y = -26 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hos) +"bpH" = ( +/obj/machinery/suit_storage_unit/hos, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hos) +"bpI" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space) +"bpJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"bpK" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"bpL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"bpM" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space) +"bpN" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics - Mix Cell"; + dir = 1; + name = "atmospherics camera" + }, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"bpO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 4; + frequency = 1441; + id_tag = "mix_in"; + name = "distro vent" + }, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"bpQ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/green/side{ + dir = 10 + }, +/area/engine/atmos) +"bpR" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bpS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bpT" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 1 + }, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bpU" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bpV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bpW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Waste to Filter"; + on = 1 + }, +/turf/open/floor/plasteel/caution{ + dir = 4 + }, +/area/engine/atmos) +"bpX" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bpY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 2 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bpZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 2 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bqa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bqb" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bqc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bqd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_atmos{ + name = "Atmospherics Desk"; + req_access_txt = "24" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bqe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bqf" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bqg" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bqh" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bqi" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/camera{ + c_tag = "Atmospherics - Desk"; + dir = 8; + name = "atmospherics camera" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bqj" = ( +/obj/machinery/status_display, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bqk" = ( +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bql" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/port) +"bqm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bqn" = ( +/obj/machinery/vending/hydroseeds, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics) +"bqo" = ( +/obj/machinery/vending/hydronutrients, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics) +"bqp" = ( +/obj/structure/table/glass, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/stack/packageWrap, +/obj/item/book/manual/hydroponics_pod_people, +/obj/item/hand_labeler, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics) +"bqq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bqr" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bqs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bqt" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/central) +"bqu" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/hallway/primary/central) +"bqv" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bqw" = ( +/turf/closed/wall/r_wall, +/area/security/nuke_storage) +"bqx" = ( +/obj/structure/grille, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/labor) +"bqy" = ( +/turf/open/floor/mineral/plastitanium/brig, +/area/shuttle/labor) +"bqz" = ( +/obj/machinery/button/flasher{ + id = "gulagshuttleflasher"; + name = "Flash Control"; + pixel_y = -26; + req_access_txt = "1" + }, +/obj/machinery/light, +/turf/open/floor/mineral/plastitanium/brig, +/area/shuttle/labor) +"bqA" = ( +/obj/machinery/mineral/labor_claim_console{ + machinedir = 2; + pixel_x = 30; + pixel_y = 30 + }, +/turf/open/floor/mineral/plastitanium/brig, +/area/shuttle/labor) +"bqB" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Labor Shuttle Airlock"; + req_access_txt = "2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/shuttle/labor) +"bqC" = ( +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 4; + name = "Gulag Shuttle Airlock"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bqD" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bqE" = ( +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 8; + name = "Gulag Shuttle Airlock"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bqF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bqG" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/execution/transfer) +"bqH" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bqI" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bqJ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bqK" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/execution/transfer) +"bqL" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"bqM" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/brig) +"bqN" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/security/brig) +"bqO" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/main) +"bqP" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = -32 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 8 + }, +/area/security/main) +"bqQ" = ( +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/security/main) +"bqR" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/main) +"bqS" = ( +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/security/main) +"bqT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/security/main) +"bqU" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/main) +"bqV" = ( +/obj/effect/landmark/secequipment, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/main) +"bqW" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/power/apc{ + dir = 2; + name = "Head of Security's Office APC"; + areastring = "/area/crew_quarters/heads/hos"; + pixel_y = -26 + }, +/obj/structure/cable/white, +/turf/open/floor/plasteel/vault{ + dir = 1 + }, +/area/crew_quarters/heads/hos) +"bqX" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/toy/figure/hos, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/crew_quarters/heads/hos) +"bqY" = ( +/obj/structure/table/wood, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/crew_quarters/heads/hos) +"bqZ" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/crew_quarters/heads/hos) +"bra" = ( +/obj/machinery/disposal/bin, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light, +/obj/structure/sign/nanotrasen{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/crew_quarters/heads/hos) +"brb" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/arrival{ + dir = 9 + }, +/area/engine/atmos) +"brc" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"brd" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2; + name = "Mix to Distro"; + on = 0 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bre" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/atmos) +"brf" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + icon_state = "freezer"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/atmos) +"brg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/caution{ + dir = 4 + }, +/area/engine/atmos) +"brh" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/pump, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/arrival, +/area/engine/atmos) +"bri" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics - Pumps"; + dir = 1; + name = "atmospherics camera" + }, +/turf/open/floor/plasteel/arrival, +/area/engine/atmos) +"brj" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel/escape, +/area/engine/atmos) +"brk" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/escape, +/area/engine/atmos) +"brl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"brm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/atmos) +"brn" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/light/small, +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bro" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"brp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"brq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"brr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"brs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"brt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/loadingarea{ + dir = 1 + }, +/area/engine/atmos) +"bru" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"brv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"brw" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/port) +"brx" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel/escape{ + dir = 4 + }, +/area/hallway/primary/port) +"bry" = ( +/obj/structure/sign/electricshock, +/turf/closed/wall/r_wall, +/area/storage/tech) +"brz" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/storage/tech) +"brA" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/storage/tech) +"brB" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/storage/tech) +"brD" = ( +/turf/open/floor/plasteel/greenblue/side{ + dir = 10 + }, +/area/hydroponics) +"brE" = ( +/turf/open/floor/plasteel/greenblue/side{ + dir = 6 + }, +/area/hydroponics) +"brF" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/requests_console{ + department = "Hydroponics"; + departmentType = 2; + name = "Hydroponics RC"; + pixel_x = 32; + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics) +"brG" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hydroponics) +"brH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"brI" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"brJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/central) +"brK" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"brL" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/space) +"brM" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"brN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"brO" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"brP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"brQ" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/central) +"brR" = ( +/turf/open/floor/plasteel/vault{ + dir = 1 + }, +/area/security/nuke_storage) +"brS" = ( +/obj/structure/closet/crate{ + name = "Silver Crate" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/coin/silver{ + pixel_x = -6 + }, +/obj/item/coin/silver{ + pixel_x = 6 + }, +/obj/item/coin/silver{ + pixel_x = 6 + }, +/obj/item/coin/silver, +/obj/item/coin/silver, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/nuke_storage) +"brT" = ( +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/nuke_storage) +"brU" = ( +/obj/structure/filingcabinet, +/obj/item/folder/documents, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/nuke_storage) +"brV" = ( +/obj/machinery/computer/bank_machine, +/turf/open/floor/plasteel/vault{ + dir = 4 + }, +/area/security/nuke_storage) +"brW" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Labor Shuttle Airlock"; + req_access_txt = "2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/shuttle/labor) +"brX" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/labor) +"brY" = ( +/obj/machinery/mineral/stacking_machine/laborstacker{ + input_dir = 2; + output_dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/shuttle/labor) +"brZ" = ( +/obj/structure/closet/emcloset, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bsa" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/execution/transfer) +"bsb" = ( +/turf/open/floor/plasteel/red/side, +/area/security/execution/transfer) +"bsc" = ( +/obj/structure/cable/white, +/obj/machinery/power/apc{ + dir = 2; + name = "Security Transferring APC"; + areastring = "/area/security/execution/transfer"; + pixel_y = -26 + }, +/turf/open/floor/plasteel/red/side, +/area/security/execution/transfer) +"bsd" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/red/side, +/area/security/execution/transfer) +"bse" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/execution/transfer) +"bsf" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/main) +"bsg" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 8 + }, +/area/security/main) +"bsh" = ( +/turf/open/floor/plasteel, +/area/security/main) +"bsi" = ( +/obj/structure/sign/goldenplaque{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/red/corner, +/area/security/main) +"bsj" = ( +/obj/machinery/light, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/obj/machinery/camera{ + c_tag = "Security - Office Aft"; + dir = 1; + name = "security camera" + }, +/turf/open/floor/plasteel/red/side, +/area/security/main) +"bsk" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/red/side, +/area/security/main) +"bsl" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/security/main) +"bsm" = ( +/obj/item/storage/pod{ + pixel_x = 32 + }, +/obj/effect/landmark/secequipment, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/main) +"bsn" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosspace"; + name = "HoS Space Blast door" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) +"bso" = ( +/obj/machinery/ai_status_display, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"bsp" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/black, +/area/ai_monitored/turret_protected/ai) +"bsq" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/structure/sign/electricshock{ + pixel_y = 32 + }, +/obj/machinery/camera/motion{ + c_tag = "AI Chamber - Fore"; + name = "motion-sensitive ai camera"; + network = list("AI") + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/black, +/area/ai_monitored/turret_protected/ai) +"bsr" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/item/twohanded/required/kirbyplants/random, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/black, +/area/ai_monitored/turret_protected/ai) +"bss" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel/arrival{ + dir = 10 + }, +/area/engine/atmos) +"bst" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bsu" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Air to Distro"; + on = 1; + target_pressure = 101 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/caution, +/area/engine/atmos) +"bsv" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/visible, +/obj/machinery/camera{ + c_tag = "Atmospherics - Distro Loop"; + dir = 1; + name = "atmospherics camera" + }, +/turf/open/floor/plasteel/caution, +/area/engine/atmos) +"bsw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/meter{ + frequency = 1441; + id_tag = "distro_meter"; + name = "Distribution Loop" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/visible, +/turf/open/floor/plasteel/caution, +/area/engine/atmos) +"bsx" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Distro to Waste"; + on = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/caution, +/area/engine/atmos) +"bsy" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/meter{ + frequency = 1441; + id_tag = "waste_meter"; + name = "Waste Loop" + }, +/turf/open/floor/plasteel/caution{ + dir = 6 + }, +/area/engine/atmos) +"bsz" = ( +/obj/machinery/status_display, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bsA" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bsB" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Access"; + req_access_txt = "0"; + req_one_access_txt = "24;10" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bsC" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + pixel_x = -38; + pixel_y = -8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/engine/atmos) +"bsD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bsE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bsF" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bsG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bsH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast door" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 8; + freq = 1400; + location = "Atmospherics" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bsI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bsJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction{ + name = "Atmospherics Junction"; + sortType = 6 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/port) +"bsK" = ( +/obj/structure/rack, +/obj/item/circuitboard/computer/robotics{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/circuitboard/computer/mecha_control, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"bsL" = ( +/obj/structure/rack, +/obj/item/circuitboard/computer/communications{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/circuitboard/computer/card, +/obj/item/circuitboard/computer/crew{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/storage/tech) +"bsM" = ( +/obj/structure/rack, +/obj/item/circuitboard/aicore{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/circuitboard/computer/aiupload, +/obj/item/circuitboard/computer/borgupload{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"bsN" = ( +/obj/item/shovel/spade, +/obj/item/crowbar, +/obj/item/cultivator, +/obj/structure/table/glass, +/obj/item/seeds/wheat{ + pixel_x = 6 + }, +/obj/item/seeds/potato, +/obj/item/seeds/pumpkin{ + pixel_x = -6 + }, +/obj/item/reagent_containers/food/snacks/grown/wheat, +/obj/item/reagent_containers/food/snacks/grown/watermelon, +/obj/item/reagent_containers/food/snacks/grown/grapes, +/obj/item/reagent_containers/food/snacks/grown/tomato, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hydroponics) +"bsO" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hydroponics) +"bsP" = ( +/obj/machinery/hydroponics/constructable, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = -26 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hydroponics) +"bsQ" = ( +/obj/machinery/hydroponics/constructable, +/obj/structure/sign/nanotrasen{ + pixel_y = -32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hydroponics) +"bsS" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridgewindows"; + name = "Bridge View Blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bsT" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridgewindows"; + name = "Bridge View Blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bsU" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridgewindows"; + name = "Bridge View Blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bsV" = ( +/turf/closed/wall/r_wall, +/area/bridge) +"bsW" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridgewindows"; + name = "Bridge View Blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bsX" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridgewindows"; + name = "Bridge View Blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bsY" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridgewindows"; + name = "Bridge View Blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bsZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bta" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"btb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"btc" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/primary/central) +"btd" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/nuke_storage) +"bte" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/security/nuke_storage) +"btf" = ( +/obj/machinery/camera/motion{ + c_tag = "Vault"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/nuke_storage) +"btg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/circuit/green, +/area/security/nuke_storage) +"bth" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/circuit/green, +/area/security/nuke_storage) +"bti" = ( +/turf/open/floor/circuit/green, +/area/security/nuke_storage) +"btj" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/nuke_storage) +"btk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/shuttle/labor) +"btl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/shuttle/labor) +"btm" = ( +/obj/machinery/mineral/labor_claim_console{ + machinedir = 1; + pixel_x = 30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/shuttle/labor) +"btn" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/door/airlock/glass_security{ + name = "Security Transferring Control"; + req_access_txt = "63" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/red, +/area/security/execution/transfer) +"bto" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/execution/transfer) +"btp" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/brig) +"btq" = ( +/obj/machinery/newscaster/security_unit{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Security - Brig Fore"; + dir = 8; + name = "security camera" + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/brig) +"btr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Interrogation"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/main) +"bts" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/security/main) +"btt" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/security{ + name = "Interrogation Monitoring"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/main) +"btu" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/security/main) +"btv" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "AI Satellite - Fore Port"; + dir = 8; + name = "ai camera"; + network = list("Sat"); + start_active = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"btw" = ( +/obj/machinery/porta_turret/ai, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/ai) +"btx" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai) +"bty" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai) +"btz" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai) +"btA" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai) +"btB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai) +"btC" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "AI Satellite - Fore Starboard"; + dir = 4; + name = "ai camera"; + network = list("Sat"); + start_active = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"btD" = ( +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"btE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 2; + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"btF" = ( +/turf/closed/wall/r_wall, +/area/engine/break_room) +"btG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/engine/break_room) +"btH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/break_room) +"btI" = ( +/obj/machinery/status_display, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/break_room) +"btJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/engine/break_room) +"btK" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/break_room) +"btM" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/break_room) +"btN" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/plasteel/redyellow, +/area/engine/break_room) +"btO" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/machinery/firealarm{ + pixel_x = -32; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/break_room) +"btP" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"btQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/break_room) +"btR" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/item/device/analyzer{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/caution{ + dir = 8 + }, +/area/engine/atmos) +"btS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"btT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/caution{ + dir = 4 + }, +/area/engine/atmos) +"btU" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/engine/atmos) +"btV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"btW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/port) +"btX" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/turf/open/floor/plasteel/caution{ + dir = 4 + }, +/area/hallway/primary/port) +"btY" = ( +/turf/closed/wall/r_wall, +/area/storage/tech) +"btZ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/tech) +"bua" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/storage/tech) +"bub" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Technology Storage - Secure"; + dir = 8; + name = "engineering camera" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/tech) +"buc" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port/fore) +"bud" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bue" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridgewindows"; + name = "Bridge View Blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"buf" = ( +/obj/machinery/computer/card, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/bridge) +"bug" = ( +/obj/machinery/computer/crew, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"buh" = ( +/obj/machinery/computer/med_data, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"bui" = ( +/obj/structure/table/reinforced, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/item/restraints/handcuffs, +/obj/item/device/assembly/flash/handheld, +/turf/open/floor/plasteel/black, +/area/bridge) +"buj" = ( +/obj/machinery/computer/prisoner, +/turf/open/floor/plasteel/darkred/side{ + dir = 1 + }, +/area/bridge) +"buk" = ( +/obj/machinery/computer/security, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/darkred/side{ + dir = 1 + }, +/area/bridge) +"bul" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel/darkred/side{ + dir = 1 + }, +/area/bridge) +"bum" = ( +/obj/structure/table/reinforced, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel/black, +/area/bridge) +"bun" = ( +/obj/machinery/computer/station_alert, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/darkyellow/side{ + dir = 1 + }, +/area/bridge) +"buo" = ( +/obj/machinery/computer/atmos_alert, +/turf/open/floor/plasteel/darkyellow/side{ + dir = 1 + }, +/area/bridge) +"bup" = ( +/obj/machinery/computer/monitor, +/turf/open/floor/plasteel/darkyellow/corner{ + dir = 4 + }, +/area/bridge) +"buq" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"bur" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"bus" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/vault{ + cyclelinkeddir = 4; + locked = 1; + name = "Vault Door"; + req_access_txt = "53" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/hallway/primary/central) +"but" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/nuke_storage) +"buu" = ( +/obj/machinery/door/airlock/vault{ + cyclelinkeddir = 8; + locked = 1; + name = "Vault Door"; + req_access_txt = "53" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/sign/electricshock{ + pixel_y = -32 + }, +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/nuke_storage) +"buv" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/circuit/green, +/area/security/nuke_storage) +"buw" = ( +/obj/machinery/nuclearbomb/selfdestruct{ + layer = 2 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/nuke_storage) +"bux" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/circuit/green, +/area/security/nuke_storage) +"buy" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Vault APC"; + areastring = "/area/security/nuke_storage"; + pixel_x = 26 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/nuke_storage) +"buz" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/shuttle/labor) +"buA" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/shuttle/labor) +"buB" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/flasher{ + id = "gulagshuttleflasher"; + pixel_x = 25 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/shuttle/labor) +"buC" = ( +/obj/machinery/gulag_item_reclaimer{ + pixel_y = 28 + }, +/obj/item/twohanded/required/kirbyplants/random, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"buD" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/execution/transfer) +"buE" = ( +/obj/structure/table/reinforced, +/obj/item/storage/briefcase{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/secure/briefcase, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/execution/transfer) +"buF" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/folder/red, +/obj/item/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/execution/transfer) +"buG" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/execution/transfer) +"buH" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/execution/transfer) +"buI" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/brig) +"buJ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/brig) +"buK" = ( +/turf/closed/wall, +/area/security/main) +"buM" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/main) +"buN" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/main) +"buO" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/security/main) +"buP" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/main) +"buQ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/main) +"buR" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"buS" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue, +/obj/item/bodypart/l_leg/robot, +/obj/item/bodypart/r_leg/robot, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/ai) +"buT" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai) +"buU" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"buV" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"buW" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"buX" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"buY" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"buZ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"bva" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"bvb" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai) +"bvc" = ( +/obj/structure/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/ai) +"bvd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet/emcloset/anchored, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bve" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bvf" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bvg" = ( +/turf/closed/wall, +/area/engine/break_room) +"bvh" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/stack/sheet/metal{ + amount = 30 + }, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bvi" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/electrical, +/obj/item/wrench/power, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bvj" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/break_room) +"bvk" = ( +/obj/structure/table/reinforced, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/stack/sheet/rglass{ + amount = 30; + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/stack/cable_coil/white, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bvl" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/stack/sheet/plasteel{ + amount = 50 + }, +/obj/item/crowbar/power, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bvm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/bonfire, +/obj/item/reagent_containers/food/drinks/bottle/orangejuice{ + desc = "For the weary spacemen on their quest to rekindle the first plasma fire."; + name = "Carton of Estus" + }, +/obj/item/nullrod/claymore/glowing{ + desc = "Don't tell anyone you put any points into dex, though."; + force = 10; + name = "moonlight greatsword" + }, +/obj/effect/decal/remains/human, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/break_room) +"bvn" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/donkpockets, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/redyellow, +/area/engine/break_room) +"bvo" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bvp" = ( +/obj/machinery/vending/cola/random, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/redyellow, +/area/engine/break_room) +"bvq" = ( +/obj/structure/sign/nosmoking_2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/break_room) +"bvr" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Access"; + req_access_txt = "0"; + req_one_access_txt = "24;10" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bvs" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/engine/break_room) +"bvt" = ( +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/machinery/modular_computer/console/preset/engineering, +/turf/open/floor/plasteel/caution{ + dir = 8 + }, +/area/engine/atmos) +"bvu" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bvv" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/holopad, +/obj/effect/landmark/start/atmospheric_technician, +/obj/effect/turf_decal/bot, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bvw" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bvx" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/caution{ + dir = 4 + }, +/area/engine/atmos) +"bvy" = ( +/obj/structure/table/reinforced, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast door" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/window/westright{ + name = "Atmospherics Desk"; + req_access_txt = "24" + }, +/obj/machinery/door/window/eastright, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bvz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bvA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/port) +"bvB" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/camera{ + c_tag = "Engineering Hallway - Fore"; + dir = 8; + name = "hallway camera" + }, +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/hallway/primary/port) +"bvC" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Tech Storage"; + req_access_txt = "19;23" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"bvD" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/r_wall, +/area/storage/tech) +"bvE" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"bvF" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bvG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port/fore) +"bvH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bvI" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"bvJ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bvK" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"bvL" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26 + }, +/obj/machinery/camera{ + c_tag = "Central Hallway - Bridge Port"; + dir = 8; + name = "hallway camera" + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/central) +"bvM" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/bridge) +"bvN" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/bridge) +"bvO" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/bridge) +"bvP" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/bridge) +"bvQ" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/bridge) +"bvR" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/bridge) +"bvS" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/bridge) +"bvT" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/wrench, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/signaler, +/turf/open/floor/plasteel/darkyellow/corner{ + dir = 4 + }, +/area/bridge) +"bvU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bvV" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bvW" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/central) +"bvX" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/nuke_storage) +"bvY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/circuit/green, +/area/security/nuke_storage) +"bvZ" = ( +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/structure/closet/crate/internals, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/shuttle/labor) +"bwa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/shuttle/labor) +"bwb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/shuttle/labor) +"bwc" = ( +/obj/machinery/door/airlock/shuttle{ + id_tag = "prisonshuttle"; + name = "Labor Shuttle Airlock" + }, +/obj/docking_port/mobile{ + dir = 8; + dwidth = 2; + height = 5; + id = "laborcamp"; + name = "labor camp shuttle"; + port_direction = 4; + width = 9 + }, +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 5; + id = "laborcamp_home"; + name = "fore bay 1"; + width = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/shuttle/labor) +"bwd" = ( +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 4; + name = "Gulag Shuttle Airlock"; + req_access_txt = "0" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bwe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bwf" = ( +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 8; + name = "Gulag Shuttle Airlock"; + req_access_txt = "0" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bwg" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/execution/transfer) +"bwh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/security/execution/transfer) +"bwi" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bwj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/execution/transfer) +"bwk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Security Transferring Center"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red, +/area/security/execution/transfer) +"bwl" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/brig) +"bwm" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/security/brig) +"bwn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/brig) +"bwo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Interrogation"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/main) +"bwp" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/main) +"bwq" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/pen, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/main) +"bwr" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/main) +"bws" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/security/main) +"bwt" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/main) +"bwu" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/item/device/radio/intercom{ + anyai = 1; + broadcasting = 0; + freerange = 1; + frequency = 1424; + listening = 1; + name = "Interrogation Intercom"; + pixel_y = -58 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/main) +"bwv" = ( +/obj/structure/table/wood, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/camera{ + c_tag = "Security - Interrogation Monitoring"; + dir = 8; + name = "security camera" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/main) +"bww" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"bwx" = ( +/obj/machinery/status_display, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"bwy" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/ai) +"bwz" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai) +"bwA" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"bwB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai) +"bwC" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai) +"bwD" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai) +"bwE" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"bwF" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai) +"bwG" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue, +/obj/item/pen, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/ai) +"bwH" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/gravity_generator) +"bwI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/gravity_generator) +"bwJ" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/electricshock{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/gravity_generator) +"bwK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bwL" = ( +/obj/machinery/power/apc/highcap/five_k{ + dir = 1; + name = "Gravity Generator APC"; + areastring = "/area/engine/gravity_generator"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bwM" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bwN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bwO" = ( +/turf/closed/wall, +/area/engine/gravity_generator) +"bwP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 1; + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bwQ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bwR" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bwS" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/break_room) +"bwT" = ( +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bwU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/engine/break_room) +"bwV" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/redyellow, +/area/engine/break_room) +"bwW" = ( +/obj/machinery/vending/snack/random, +/turf/open/floor/plasteel/redyellow, +/area/engine/break_room) +"bwX" = ( +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bwY" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast door" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bwZ" = ( +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast door" + }, +/obj/machinery/button/door{ + id = "atmoslock"; + name = "Atmospherics Lockdown Control"; + pixel_x = 26; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bxa" = ( +/obj/machinery/computer/atmos_control, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/button/door{ + id = "atmoslock"; + name = "Atmospherics Lockdown Control"; + pixel_x = -38; + req_access_txt = "24" + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the Engine."; + dir = 4; + layer = 4; + name = "Engine Monitor"; + network = list("Engine"); + pixel_x = -24 + }, +/turf/open/floor/plasteel/caution{ + dir = 8 + }, +/area/engine/atmos) +"bxb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/office/dark, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bxc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"bxd" = ( +/obj/structure/table/reinforced, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 6 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = -6 + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/plasteel/caution{ + dir = 4 + }, +/area/engine/atmos) +"bxe" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"bxf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bxg" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/port) +"bxh" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/hallway/primary/port) +"bxi" = ( +/obj/structure/table/reinforced, +/obj/item/device/plant_analyzer, +/obj/item/device/plant_analyzer, +/obj/item/device/radio, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/storage/tech) +"bxj" = ( +/obj/structure/table/reinforced, +/obj/item/device/analyzer{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/device/analyzer{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/signaler, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/tech) +"bxk" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/storage/tech) +"bxl" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/storage/tech) +"bxn" = ( +/obj/structure/table/reinforced, +/obj/item/aiModule/reset, +/obj/item/device/assembly/flash/handheld, +/obj/item/device/assembly/flash/handheld, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/tech) +"bxo" = ( +/obj/structure/table/reinforced, +/obj/item/bodypart/chest/robot, +/obj/item/device/mmi, +/obj/item/device/mmi, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/storage/tech) +"bxp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/maintenance/port/fore) +"bxq" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/closed/wall, +/area/storage/primary) +"bxr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/storage/primary) +"bxs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"bxt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + dir = 2; + freq = 1400; + location = "Tool Storage" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/storage/primary) +"bxu" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bxv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/blue/corner, +/area/hallway/primary/central) +"bxw" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/bridge) +"bxx" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/nanotrasen{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: BLAST DOORS"; + pixel_y = 32 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"bxy" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridgedoors"; + name = "Bridge Access Blast door" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/bridge) +"bxz" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"bxA" = ( +/obj/machinery/vending/cola/random, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"bxB" = ( +/obj/machinery/vending/snack/random, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"bxC" = ( +/turf/closed/wall, +/area/bridge) +"bxD" = ( +/obj/machinery/computer/security/mining, +/turf/open/floor/plasteel/darkpurple/side{ + dir = 1 + }, +/area/bridge) +"bxE" = ( +/obj/machinery/computer/cargo/request, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/darkyellow/side{ + dir = 1 + }, +/area/bridge) +"bxF" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/mining_voucher, +/turf/open/floor/plasteel/black, +/area/bridge) +"bxG" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26; + pixel_y = 26 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/bridge) +"bxH" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/bridge) +"bxI" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/item/device/radio/beacon, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/bridge) +"bxJ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/bridge) +"bxK" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26; + pixel_y = 26 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/bridge) +"bxL" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the RD's goons and the AI's satellite from the safety of his office."; + name = "Research Monitor"; + network = list("RD","Sat"); + pixel_y = 2 + }, +/turf/open/floor/plasteel/black, +/area/bridge) +"bxM" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/modular_computer/console/preset/command, +/turf/open/floor/plasteel/darkpurple/side{ + dir = 1 + }, +/area/bridge) +"bxN" = ( +/obj/machinery/modular_computer/console/preset/engineering, +/turf/open/floor/plasteel/darkpurple/side{ + dir = 1 + }, +/area/bridge) +"bxO" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"bxP" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"bxQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/blue/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bxR" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/central) +"bxS" = ( +/turf/open/floor/plasteel/vault{ + dir = 4 + }, +/area/security/nuke_storage) +"bxT" = ( +/obj/structure/closet/crate{ + name = "Gold Crate" + }, +/obj/item/storage/belt/champion, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light/small, +/obj/item/stack/sheet/mineral/gold, +/obj/item/stack/sheet/mineral/gold, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/nuke_storage) +"bxU" = ( +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/nuke_storage) +"bxV" = ( +/obj/structure/safe, +/obj/item/clothing/neck/stethoscope, +/obj/item/book{ + desc = "An undeniably handy book."; + icon_state = "bookknock"; + name = "A Simpleton's Guide to Safe-cracking with Stethoscopes" + }, +/obj/item/stack/sheet/mineral/diamond, +/obj/item/stack/spacecash/c1000, +/obj/item/stack/spacecash/c1000, +/obj/item/stack/spacecash/c1000, +/obj/item/stack/spacecash/c1000, +/obj/item/stack/spacecash/c1000, +/obj/item/stack/spacecash/c500, +/obj/item/stack/spacecash/c500, +/obj/item/stack/spacecash/c500, +/obj/item/stack/spacecash/c500, +/obj/item/stack/spacecash/c500, +/obj/machinery/light/small, +/obj/item/gun/ballistic/automatic/pistol/deagle, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/nuke_storage) +"bxW" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/labor) +"bxX" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/execution/transfer) +"bxY" = ( +/turf/open/floor/plasteel/neutral, +/area/security/execution/transfer) +"bxZ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/security/execution/transfer) +"bya" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/execution/transfer) +"byb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/security/execution/transfer) +"byc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light/small, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/brig) +"byd" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/brig) +"bye" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = -26 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/brig) +"byf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/main) +"byg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/main) +"byh" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/main) +"byi" = ( +/obj/structure/table/reinforced, +/obj/item/device/flashlight/lamp, +/obj/item/device/radio/intercom{ + anyai = 1; + broadcasting = 1; + freerange = 1; + frequency = 1424; + listening = 0; + name = "Interrogation Intercom"; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Security - Interrogation"; + dir = 1; + name = "security camera" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/main) +"byk" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/main) +"byl" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/main) +"bym" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/main) +"byn" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/pen, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/main) +"byo" = ( +/turf/open/floor/plasteel/vault{ + dir = 4 + }, +/area/ai_monitored/turret_protected/ai) +"byp" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"byq" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai) +"byr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "aicorewindow"; + name = "AI Core Shutters" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"bys" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"byt" = ( +/turf/open/floor/plasteel/vault{ + dir = 1 + }, +/area/ai_monitored/turret_protected/ai) +"byu" = ( +/turf/open/floor/plasteel/vault{ + dir = 1 + }, +/area/engine/gravity_generator) +"byv" = ( +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/gravity_generator) +"byw" = ( +/turf/open/floor/plasteel/vault{ + dir = 4 + }, +/area/engine/gravity_generator) +"byx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/gravity_generator) +"byy" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/gravity_generator) +"byz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"byA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/neutral, +/area/engine/gravity_generator) +"byB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"byC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"byD" = ( +/obj/structure/sign/radiation, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"byE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Gravity Generator Foyer"; + dir = 4; + name = "engineering camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"byF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"byG" = ( +/obj/structure/closet/radiation, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"byH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/engine/break_room) +"byI" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/break_room) +"byJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + cyclelinkeddir = 0; + name = "Power Tools Storage"; + req_access_txt = "19" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"byK" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/break_room) +"byL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + cyclelinkeddir = 0; + name = "Power Tools Storage"; + req_access_txt = "19" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"byM" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/engine/break_room) +"byN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"byO" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"byP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/yellow/side{ + dir = 9 + }, +/area/engine/break_room) +"byQ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"byR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"byS" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/power/apc/highcap/five_k{ + dir = 1; + name = "Engineering Foyer APC"; + areastring = "/area/engine/break_room"; + pixel_y = 24 + }, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"byT" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/caution{ + dir = 1 + }, +/area/engine/break_room) +"byU" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/caution{ + dir = 1 + }, +/area/engine/break_room) +"byV" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/caution{ + dir = 5 + }, +/area/engine/break_room) +"byW" = ( +/obj/structure/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plasteel/caution{ + dir = 10 + }, +/area/engine/atmos) +"byX" = ( +/obj/machinery/computer/station_alert, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/caution, +/area/engine/atmos) +"byY" = ( +/obj/machinery/computer/atmos_alert, +/obj/machinery/light, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/caution, +/area/engine/atmos) +"byZ" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = -26 + }, +/turf/open/floor/plasteel/caution, +/area/engine/atmos) +"bza" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/machinery/requests_console{ + department = "Atmospherics Office"; + departmentType = 0; + name = "Atmospherics RC"; + pixel_x = 30 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26; + pixel_y = -32 + }, +/turf/open/floor/plasteel/caution{ + dir = 6 + }, +/area/engine/atmos) +"bzb" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/port) +"bzc" = ( +/obj/structure/table/reinforced, +/obj/item/device/healthanalyzer, +/obj/item/stack/cable_coil/white{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil/white, +/obj/item/device/healthanalyzer, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/storage/tech) +"bzd" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/storage/tech) +"bze" = ( +/turf/open/floor/plasteel/neutral, +/area/storage/tech) +"bzf" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/storage/tech) +"bzg" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/storage/tech) +"bzh" = ( +/obj/structure/table/reinforced, +/obj/item/device/aicard, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/storage/tech) +"bzi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/storage/primary) +"bzj" = ( +/obj/structure/table/reinforced, +/obj/item/device/analyzer{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/device/analyzer{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/signaler, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/primary) +"bzl" = ( +/obj/machinery/disposal/bin, +/obj/machinery/requests_console{ + department = "Primary Tool Storage"; + departmentType = 0; + name = "Primary Tool Storage RC"; + pixel_y = 32 + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/primary) +"bzm" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/primary) +"bzn" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/storage/primary) +"bzo" = ( +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/structure/closet/crate/internals, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/primary) +"bzp" = ( +/obj/structure/table/reinforced, +/obj/item/storage/belt/utility, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/primary) +"bzq" = ( +/obj/structure/table/reinforced, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/primary) +"bzr" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/storage/primary) +"bzs" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/lightsout, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"bzt" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/blue/corner, +/area/hallway/primary/central) +"bzu" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_command{ + cyclelinkeddir = 4; + name = "Bridge Access"; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/bridge) +"bzv" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/bridge) +"bzw" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridgedoors"; + name = "Bridge Access Blast door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/bridge) +"bzx" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_command{ + cyclelinkeddir = 8; + name = "Bridge Access"; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/bridge) +"bzy" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/bridge) +"bzz" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/bridge) +"bzA" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/bridge) +"bzB" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/bridge) +"bzC" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/bridge) +"bzD" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/darkblue/corner, +/area/bridge) +"bzE" = ( +/obj/structure/window/reinforced, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/darkblue/side, +/area/bridge) +"bzF" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/window/brigdoor/southright{ + name = "Command Chair"; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/darkblue/side, +/area/bridge) +"bzG" = ( +/obj/structure/window/reinforced, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/darkblue/side, +/area/bridge) +"bzH" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/bridge) +"bzI" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/bridge) +"bzJ" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/bridge) +"bzK" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/bridge) +"bzL" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_command{ + cyclelinkeddir = 4; + name = "Bridge Access"; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/bridge) +"bzM" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridgedoors"; + name = "Bridge Access Blast door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/bridge) +"bzN" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_command{ + cyclelinkeddir = 8; + name = "Bridge Access"; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/bridge) +"bzO" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/blue/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bzP" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"bzQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Central Hallway - Bridge Starboard"; + dir = 8; + name = "hallway camera" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"bzR" = ( +/obj/structure/shuttle/engine/propulsion, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/labor) +"bzS" = ( +/turf/closed/wall, +/area/security/execution/transfer) +"bzT" = ( +/obj/structure/closet/emcloset, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = -32; + pixel_y = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/button/door{ + desc = "A remote control switch."; + id = "gulagdoor"; + name = "Transfer Door Control"; + normaldoorcontrol = 1; + pixel_x = -24; + pixel_y = -8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bzU" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j1s"; + name = "HoS Junction"; + sortType = 8 + }, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/execution/transfer) +"bzV" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/red/side, +/area/security/execution/transfer) +"bzX" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/red/side, +/area/security/execution/transfer) +"bzY" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/execution/transfer) +"bzZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/security/brig) +"bAb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/security/brig) +"bAc" = ( +/obj/item/device/radio/intercom{ + anyai = 1; + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = -10; + pixel_y = 22 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 1; + listening = 1; + name = "Common Channel"; + pixel_x = -27 + }, +/obj/item/device/radio/intercom{ + anyai = 1; + broadcasting = 0; + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = -10; + pixel_y = -25 + }, +/obj/machinery/door/window{ + base_state = "rightsecure"; + dir = 4; + icon_state = "rightsecure"; + layer = 4.1; + name = "Secondary AI Core Access"; + pixel_x = 4; + req_access_txt = "16" + }, +/obj/effect/landmark/tripai, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"bAd" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/ai) +"bAe" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"bAf" = ( +/obj/machinery/turretid{ + icon_state = "control_stun"; + name = "AI Chamber turret control"; + pixel_x = 3; + pixel_y = -23 + }, +/obj/machinery/door/window{ + base_state = "leftsecure"; + dir = 8; + icon_state = "leftsecure"; + name = "Primary AI Core Access"; + req_access_txt = "16" + }, +/obj/machinery/newscaster/security_unit{ + pixel_x = 4; + pixel_y = 33 + }, +/turf/open/floor/plasteel/vault{ + dir = 6 + }, +/area/ai_monitored/turret_protected/ai) +"bAg" = ( +/obj/machinery/requests_console{ + department = "AI"; + departmentType = 5; + name = "AI RC"; + pixel_x = 30; + pixel_y = 30 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = 23; + pixel_y = -23 + }, +/turf/open/floor/plasteel/vault, +/area/ai_monitored/turret_protected/ai) +"bAh" = ( +/obj/machinery/door/window{ + base_state = "rightsecure"; + dir = 4; + icon_state = "rightsecure"; + name = "Primary AI Core Access"; + req_access_txt = "16" + }, +/turf/open/floor/plasteel/vault{ + dir = 10 + }, +/area/ai_monitored/turret_protected/ai) +"bAi" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"bAj" = ( +/obj/item/device/radio/intercom{ + anyai = 1; + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = 10; + pixel_y = 22 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 1; + listening = 1; + name = "Common Channel"; + pixel_x = 27 + }, +/obj/item/device/radio/intercom{ + anyai = 1; + broadcasting = 0; + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 10; + pixel_y = -25 + }, +/obj/machinery/door/window{ + base_state = "leftsecure"; + dir = 8; + icon_state = "leftsecure"; + layer = 4.1; + name = "Tertiary AI Core Access"; + pixel_x = -3; + req_access_txt = "16" + }, +/obj/effect/landmark/tripai, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"bAk" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/radiation{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/gravity_generator) +"bAl" = ( +/turf/open/floor/circuit/green, +/area/engine/gravity_generator) +"bAm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + name = "Gravity Generator Chamber"; + req_access_txt = "19; 61" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bAn" = ( +/obj/machinery/holopad, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bAo" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bAp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bAq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + name = "Gravity Generator Room"; + req_access_txt = "19;23" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bAr" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bAs" = ( +/obj/machinery/holopad, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bAt" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bAu" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/highsecurity{ + name = "Gravity Generator Foyer"; + req_access_txt = "10" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bAv" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bAw" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bAx" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bAy" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bAz" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bAA" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/highsecurity{ + name = "Engineering Heavy-Equipment Storage"; + req_access_txt = "32" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bAB" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bAC" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bAD" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/yellow/side{ + dir = 8 + }, +/area/engine/break_room) +"bAE" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/break_room) +"bAF" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/break_room) +"bAG" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/break_room) +"bAH" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/neutral, +/area/engine/break_room) +"bAI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/caution{ + dir = 4 + }, +/area/engine/break_room) +"bAJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bAK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bAL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/port) +"bAM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 4 + }, +/area/hallway/primary/port) +"bAN" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/storage/tech) +"bAO" = ( +/obj/structure/rack, +/obj/item/circuitboard/computer/scan_consolenew{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/circuitboard/computer/med_data, +/obj/item/circuitboard/computer/pandemic{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/bot, +/obj/item/circuitboard/machine/smoke_machine, +/turf/open/floor/plasteel, +/area/storage/tech) +"bAP" = ( +/obj/structure/rack, +/obj/item/circuitboard/computer/aifixer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/circuitboard/computer/rdconsole, +/obj/item/circuitboard/machine/rdserver{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/bot, +/obj/item/circuitboard/machine/autolathe, +/turf/open/floor/plasteel, +/area/storage/tech) +"bAQ" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/ai_status_display{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/storage/tech) +"bAR" = ( +/obj/structure/table/reinforced, +/obj/item/stack/rods{ + amount = 25 + }, +/obj/item/stack/cable_coil/white{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil/white, +/obj/machinery/power/apc{ + dir = 8; + name = "Primary Tool Storage APC"; + areastring = "/area/storage/primary"; + pixel_x = -26; + pixel_y = 3 + }, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/primary) +"bAS" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 9 + }, +/area/storage/primary) +"bAT" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/storage/primary) +"bAU" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/storage/primary) +"bAV" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/storage/primary) +"bAW" = ( +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/storage/primary) +"bAX" = ( +/turf/open/floor/plasteel/yellow/side{ + dir = 5 + }, +/area/storage/primary) +"bAY" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/device/gps, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/primary) +"bAZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/storage/primary) +"bBa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bBb" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/blue/corner, +/area/hallway/primary/central) +"bBc" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_command{ + cyclelinkeddir = 4; + name = "Bridge Access"; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/bridge) +"bBd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/bridge) +"bBe" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridgedoors"; + name = "Bridge Access Blast door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + icon_state = "pipe-j1s"; + name = "HoP Junction"; + sortType = 15 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/bridge) +"bBf" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_command{ + cyclelinkeddir = 8; + name = "Bridge Access"; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/bridge) +"bBg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/bridge) +"bBh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/bridge) +"bBi" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/bridge) +"bBj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/bridge) +"bBk" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/bridge) +"bBl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 9 + }, +/area/bridge) +"bBm" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"bBn" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/restraints/handcuffs, +/obj/item/device/assembly/flash/handheld, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/bridge) +"bBo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/bridge) +"bBp" = ( +/obj/machinery/computer/communications, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/bridge) +"bBq" = ( +/obj/structure/table/wood, +/obj/machinery/computer/security/wooden_tv, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/bridge) +"bBr" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/device/flashlight/lamp, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/bridge) +"bBs" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"bBt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 5 + }, +/area/bridge) +"bBu" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/bridge) +"bBv" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/bridge) +"bBw" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridgedoors"; + name = "Bridge Access Blast door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/bridge) +"bBx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/blue/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bBy" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"bBz" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"bBA" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/electricshock{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"bBB" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/door/airlock/glass_security{ + id_tag = "gulagdoor"; + name = "Security Transferring Center"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/execution/transfer) +"bBC" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/security/execution/transfer) +"bBD" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/brig) +"bBE" = ( +/obj/machinery/disposal/bin, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/brig) +"bBF" = ( +/turf/closed/wall/r_wall, +/area/security/warden) +"bBG" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/warden) +"bBH" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/warden) +"bBI" = ( +/obj/structure/closet/secure_closet/evidence, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/warden) +"bBJ" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/warden) +"bBK" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bBL" = ( +/obj/machinery/suit_storage_unit/security, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/warden) +"bBM" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai) +"bBN" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 1; + listening = 1; + name = "Common Channel"; + pixel_x = -27; + pixel_y = -7 + }, +/obj/item/device/radio/intercom{ + anyai = 1; + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_y = -27 + }, +/obj/item/device/radio/intercom{ + anyai = 1; + broadcasting = 0; + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 27; + pixel_y = -7 + }, +/obj/machinery/button/door{ + id = "aicorewindow"; + name = "AI Core Shutters"; + pixel_x = 24; + pixel_y = -22; + req_access_txt = "16" + }, +/obj/machinery/button/door{ + id = "aicoredoor"; + name = "AI Chamber Access Control"; + pixel_x = -23; + pixel_y = -23; + req_access_txt = "16" + }, +/obj/effect/landmark/start/ai, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"bBO" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai) +"bBP" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"bBQ" = ( +/obj/machinery/gravity_generator/main/station, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/gravity_generator) +"bBR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/gravity_generator) +"bBS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bBT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/gravity_generator) +"bBU" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bBV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/port_gen/pacman, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bBW" = ( +/obj/structure/sign/radiation, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"bBX" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bBY" = ( +/obj/machinery/status_display{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bBZ" = ( +/obj/structure/closet/radiation, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/machinery/light/small, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bCa" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bCb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Power Tools"; + dir = 1; + name = "engineering camera" + }, +/turf/open/floor/plasteel/caution, +/area/engine/break_room) +"bCc" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/caution, +/area/engine/break_room) +"bCd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/caution, +/area/engine/break_room) +"bCe" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bCf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bCg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 2 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 8 + }, +/area/engine/break_room) +"bCh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/break_room) +"bCi" = ( +/obj/structure/chair/stool/bar, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/break_room) +"bCj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/break_room) +"bCk" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/break_room) +"bCl" = ( +/obj/machinery/status_display{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 4 + }, +/area/engine/break_room) +"bCm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"bCn" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 5 + }, +/area/engine/break_room) +"bCo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/engine/break_room) +"bCp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bCq" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bCr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bCs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/break_room) +"bCt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bCu" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/port) +"bCv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/yellow/corner{ + dir = 4 + }, +/area/hallway/primary/port) +"bCw" = ( +/obj/structure/table/reinforced, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bCx" = ( +/obj/structure/rack, +/obj/item/circuitboard/computer/cloning{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/circuitboard/machine/clonescanner, +/obj/item/circuitboard/machine/clonepod{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/tech) +"bCy" = ( +/obj/structure/rack, +/obj/item/circuitboard/machine/destructive_analyzer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/circuitboard/machine/protolathe, +/obj/item/circuitboard/machine/mechfab, +/obj/item/circuitboard/machine/circuit_imprinter{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/tech) +"bCz" = ( +/obj/structure/table/reinforced, +/obj/item/stock_parts/matter_bin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/micro_laser, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bCA" = ( +/obj/structure/rack, +/obj/item/airlock_painter, +/obj/item/device/toner, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/primary) +"bCB" = ( +/turf/open/floor/plasteel/yellow/side{ + dir = 8 + }, +/area/storage/primary) +"bCC" = ( +/turf/open/floor/plasteel/neutral, +/area/storage/primary) +"bCD" = ( +/obj/machinery/holopad, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/primary) +"bCE" = ( +/turf/open/floor/plasteel/yellow/side{ + dir = 4 + }, +/area/storage/primary) +"bCF" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/primary) +"bCG" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"bCH" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/blue/corner, +/area/hallway/primary/central) +"bCI" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/bridge) +"bCJ" = ( +/obj/structure/sign/nanotrasen{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel/darkblue/side, +/area/bridge) +"bCK" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridgedoors"; + name = "Bridge Access Blast door" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/bridge) +"bCL" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/bridge) +"bCM" = ( +/obj/machinery/light_switch{ + pixel_x = -7; + pixel_y = -26 + }, +/turf/open/floor/plasteel/darkblue/side, +/area/bridge) +"bCN" = ( +/turf/open/floor/plasteel/darkblue/side, +/area/bridge) +"bCO" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/darkblue/side, +/area/bridge) +"bCP" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/darkblue/side, +/area/bridge) +"bCQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Bridge - Port"; + dir = 1; + name = "command camera" + }, +/turf/open/floor/plasteel/darkblue/side, +/area/bridge) +"bCR" = ( +/obj/structure/cable/white, +/obj/machinery/power/apc{ + dir = 2; + name = "Bridge APC"; + areastring = "/area/bridge"; + pixel_y = -26 + }, +/turf/open/floor/plasteel/darkblue/side, +/area/bridge) +"bCS" = ( +/obj/structure/fireaxecabinet{ + pixel_y = -28 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/darkblue/side, +/area/bridge) +"bCT" = ( +/turf/open/floor/plasteel/darkblue/side{ + dir = 8 + }, +/area/bridge) +"bCU" = ( +/obj/structure/rack, +/obj/machinery/light/small, +/obj/item/device/aicard, +/obj/item/storage/secure/briefcase, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/bridge) +"bCV" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/device/taperecorder, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/grimy, +/area/bridge) +"bCW" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bridge) +"bCX" = ( +/obj/structure/chair/comfy/brown{ + color = "#596479"; + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/bridge) +"bCY" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/bridge) +"bCZ" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/folder/blue, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/grimy, +/area/bridge) +"bDa" = ( +/obj/structure/rack, +/obj/machinery/light/small, +/obj/item/storage/toolbox/emergency, +/obj/item/wrench, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/bridge) +"bDb" = ( +/turf/open/floor/plasteel/darkblue/side{ + dir = 4 + }, +/area/bridge) +"bDc" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/darkblue/side, +/area/bridge) +"bDd" = ( +/obj/machinery/camera{ + c_tag = "Bridge - Starboard"; + dir = 1; + name = "command camera" + }, +/turf/open/floor/plasteel/darkblue/side, +/area/bridge) +"bDe" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/darkblue/side, +/area/bridge) +"bDf" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/plasteel/darkblue/side, +/area/bridge) +"bDg" = ( +/obj/machinery/light_switch{ + pixel_x = 7; + pixel_y = -26 + }, +/turf/open/floor/plasteel/darkblue/side, +/area/bridge) +"bDh" = ( +/obj/structure/sign/nanotrasen{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/machinery/light/small, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel/darkblue/side, +/area/bridge) +"bDi" = ( +/turf/closed/wall/r_wall, +/area/security/detectives_office) +"bDj" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "detectivewindows"; + name = "Detective Privacy Blast door" + }, +/turf/open/floor/plating, +/area/security/detectives_office) +"bDk" = ( +/obj/structure/disposalpipe/segment, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bDl" = ( +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/starboard) +"bDm" = ( +/obj/structure/disposalpipe/segment, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bDn" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "brigwindows"; + name = "Brig Front Blast door" + }, +/turf/open/floor/plating, +/area/security/brig) +"bDo" = ( +/obj/structure/closet/secure_closet/brig{ + id = "brig1"; + name = "Cell 1 Locker" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/brig) +"bDp" = ( +/obj/machinery/flasher{ + id = "brig1"; + pixel_y = 26 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/brig) +"bDq" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/brig) +"bDr" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/security/brig) +"bDs" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/security/brig) +"bDt" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/brig) +"bDu" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/security{ + name = "Evidence Storage"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/warden) +"bDv" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/warden) +"bDw" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/warden) +"bDx" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/warden) +"bDy" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/warden) +"bDz" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/door/airlock/glass_security{ + name = "Security E.V.A. Storage"; + req_access_txt = "3" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bDA" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bDB" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/warden) +"bDC" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/warden) +"bDD" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/device/mmi, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/ai) +"bDE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/gravity_generator) +"bDF" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/electricshock{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/gravity_generator) +"bDG" = ( +/obj/machinery/light, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Gravity Generator"; + dir = 1; + name = "engineering camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bDH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bDI" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bDJ" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + pixel_y = -26 + }, +/obj/structure/table/reinforced, +/obj/item/stack/sheet/plasteel{ + amount = 20 + }, +/obj/item/wrench, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bDK" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "transitlock"; + name = "Transit Tube Lockdown Door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bDL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor/preopen{ + id = "transitlock"; + name = "Transit Tube Lockdown Door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bDM" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/chief) +"bDN" = ( +/obj/structure/sign/directions/engineering{ + desc = "A handy sign praising the engineering department."; + icon_state = "safety"; + name = "engineering plaque" + }, +/turf/closed/wall, +/area/engine/break_room) +"bDO" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/engine/break_room) +"bDP" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Engineering - Foyer"; + dir = 4; + name = "engineering camera" + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 8 + }, +/area/engine/break_room) +"bDQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/engine/break_room) +"bDR" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bDS" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bDT" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/device/lightreplacer, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bDU" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/neutral, +/area/engine/break_room) +"bDV" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/engine/break_room) +"bDW" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral, +/area/engine/break_room) +"bDX" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 4 + }, +/area/engine/break_room) +"bDY" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Foyer"; + req_access_txt = "0"; + req_one_access_txt = "32;19" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bDZ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bEa" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/landmark/lightsout, +/turf/open/floor/plasteel/neutral, +/area/engine/break_room) +"bEb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bEc" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Foyer"; + req_access_txt = "0"; + req_one_access_txt = "32;19" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bEd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 8 + }, +/area/hallway/primary/port) +"bEe" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/port) +"bEf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 4 + }, +/area/hallway/primary/port) +"bEg" = ( +/obj/structure/table/reinforced, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/item/folder/yellow, +/obj/item/electronics/airlock, +/obj/machinery/power/apc{ + dir = 8; + name = "Technology Storage APC"; + areastring = "/area/storage/tech"; + pixel_x = -26; + pixel_y = 3 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bEh" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/storage/tech) +"bEi" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/neutral, +/area/storage/tech) +"bEj" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/storage/tech) +"bEk" = ( +/obj/machinery/holopad, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/item/circuitboard/machine/autolathe, +/turf/open/floor/plasteel, +/area/storage/tech) +"bEl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/storage/tech) +"bEm" = ( +/obj/structure/table/reinforced, +/obj/item/stack/cable_coil/white{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil/white, +/obj/item/stock_parts/scanning_module{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bEn" = ( +/obj/machinery/vending/assist, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/machinery/camera{ + c_tag = "Primary Tool Storage"; + dir = 4; + name = "engineering camera" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/storage/primary) +"bEo" = ( +/obj/effect/landmark/lightsout, +/turf/open/floor/plasteel/neutral, +/area/storage/primary) +"bEp" = ( +/obj/structure/table/reinforced, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/primary) +"bEq" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/obj/item/device/flashlight, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/primary) +"bEr" = ( +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/storage/primary) +"bEs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 4 + }, +/area/storage/primary) +"bEt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/storage/primary) +"bEu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Primary Tool Storage"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"bEv" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bEw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/central) +"bEx" = ( +/turf/closed/wall/r_wall, +/area/bridge/meeting_room/council) +"bEy" = ( +/turf/closed/wall, +/area/bridge/meeting_room/council) +"bEz" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/command{ + name = "Council Chambers"; + req_access = null; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/bridge/meeting_room/council) +"bEA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/bridge/meeting_room/council) +"bEB" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/bridge) +"bEC" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/bridge) +"bED" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/bridge) +"bEE" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/storage/fancy/donut_box, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/grimy, +/area/bridge) +"bEF" = ( +/obj/machinery/button/door{ + id = "bridgedoors"; + name = "Bridge Access Blast doors"; + pixel_x = 7; + pixel_y = -26; + req_access_txt = "19" + }, +/obj/machinery/button/door{ + id = "bridgewindows"; + name = "Bridge View Blast doors"; + pixel_x = -7; + pixel_y = -26; + req_access_txt = "19" + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_x = -32; + pixel_y = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Bridge - Command Chair"; + dir = 1; + name = "command camera" + }, +/turf/open/floor/carpet, +/area/bridge) +"bEG" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/bridge) +"bEH" = ( +/obj/machinery/button/door{ + id = "evastorage"; + name = "E.V.A. Shutters"; + pixel_x = 7; + pixel_y = -26; + req_access_txt = "19" + }, +/obj/machinery/button/door{ + id = "teleportershutters"; + name = "Teleporter Shutters"; + pixel_x = -7; + pixel_y = -26 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26; + pixel_y = -26 + }, +/obj/machinery/keycard_auth{ + pixel_x = -7; + pixel_y = -38 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/bridge) +"bEI" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/paper_bin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/grimy, +/area/bridge) +"bEJ" = ( +/obj/machinery/ai_status_display, +/turf/closed/wall, +/area/bridge) +"bEK" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/bridge) +"bEL" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/captain) +"bEM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/captain) +"bEN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Captain's Office"; + req_access = null; + req_access_txt = "20" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bEO" = ( +/obj/machinery/computer/security/telescreen/entertainment, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/captain) +"bEP" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"bEQ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bER" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/maintenance/starboard) +"bES" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bET" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"bEV" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 5 + }, +/area/maintenance/starboard) +"bEX" = ( +/obj/structure/closet/secure_closet/detective, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/item/clothing/head/fedora/det_hat{ + icon_state = "curator" + }, +/obj/item/clothing/suit/det_suit{ + icon_state = "curator" + }, +/obj/item/clothing/under/rank/det{ + icon_state = "curator" + }, +/turf/open/floor/plasteel/vault, +/area/security/detectives_office) +"bEY" = ( +/obj/structure/table/wood, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/device/camera/detective, +/turf/open/floor/plasteel/vault, +/area/security/detectives_office) +"bEZ" = ( +/obj/structure/table/wood, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Detective's Office APC"; + areastring = "/area/security/detectives_office"; + pixel_y = 24 + }, +/obj/item/device/taperecorder, +/obj/item/restraints/handcuffs, +/turf/open/floor/plasteel/vault, +/area/security/detectives_office) +"bFa" = ( +/obj/structure/filingcabinet/security, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/vault, +/area/security/detectives_office) +"bFb" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel/vault, +/area/security/detectives_office) +"bFc" = ( +/obj/machinery/photocopier, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault, +/area/security/detectives_office) +"bFd" = ( +/obj/structure/rack, +/obj/item/storage/briefcase{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/secure/briefcase, +/turf/open/floor/plasteel/vault, +/area/security/detectives_office) +"bFe" = ( +/obj/structure/dresser, +/turf/open/floor/plasteel/vault, +/area/security/detectives_office) +"bFf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Security Hallway - Fore"; + dir = 4; + name = "hallway camera" + }, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bFg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/starboard) +"bFh" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bFi" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "brigwindows"; + name = "Brig Front Blast door" + }, +/turf/open/floor/plating, +/area/security/brig) +"bFj" = ( +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/brig) +"bFk" = ( +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/brig) +"bFl" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/door/window/brigdoor/security/cell/westright{ + id = "brig1"; + name = "Cell 1" + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/brig) +"bFm" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"bFn" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/security/brig) +"bFo" = ( +/obj/machinery/newscaster/security_unit{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/red/corner, +/area/security/brig) +"bFp" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/warden) +"bFq" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/warden) +"bFr" = ( +/obj/structure/closet/secure_closet/evidence, +/obj/machinery/camera{ + c_tag = "Security - Evidence Storage"; + dir = 1; + name = "security camera" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/warden) +"bFs" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/warden) +"bFt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bFu" = ( +/obj/machinery/suit_storage_unit/security, +/obj/machinery/light/small, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/warden) +"bFv" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai) +"bFw" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"bFx" = ( +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai) +"bFy" = ( +/obj/machinery/flasher{ + id = "AI"; + pixel_y = 26 + }, +/obj/machinery/porta_turret/ai, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/ai) +"bFz" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "AI Chamber APC"; + areastring = "/area/ai_monitored/turret_protected/ai"; + pixel_y = 24 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai) +"bFA" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai) +"bFB" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"bFC" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai) +"bFD" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue, +/obj/item/device/assembly/flash/handheld, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/ai) +"bFE" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Transit Tube Access"; + req_one_access_txt = "32;19" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/transit_tube) +"bFF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/transit_tube) +"bFG" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bFH" = ( +/obj/machinery/disposal/bin, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/crew_quarters/heads/chief) +"bFI" = ( +/obj/machinery/cell_charger, +/obj/structure/table/reinforced, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/item/stock_parts/cell/high, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/twohanded/rcl/pre_loaded, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bFJ" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/device/gps/engineering{ + gpstag = "CE0" + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bFK" = ( +/obj/structure/rack, +/obj/item/crowbar, +/obj/item/storage/toolbox/mechanical, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bFL" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/button/door{ + id = "ceblast"; + name = "Lockdown Control"; + pixel_x = 26; + pixel_y = 26; + req_access_txt = "56" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bFM" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/chief) +"bFN" = ( +/obj/machinery/door/poddoor/preopen{ + id = "ceblast"; + name = "Chief's Lockdown Shutters" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bFO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bFP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/sortjunction{ + name = "CE's Junction"; + sortType = 5 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 8 + }, +/area/engine/break_room) +"bFQ" = ( +/turf/open/floor/plasteel/neutral, +/area/engine/break_room) +"bFR" = ( +/obj/structure/chair/stool/bar, +/turf/open/floor/plasteel/neutral, +/area/engine/break_room) +"bFS" = ( +/obj/structure/chair/stool/bar, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/break_room) +"bFT" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/break_room) +"bFU" = ( +/obj/machinery/holopad, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bFV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/break_room) +"bFW" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 4 + }, +/area/engine/break_room) +"bFX" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/engine/break_room) +"bFY" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bFZ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bGa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bGb" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/break_room) +"bGc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/yellow/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bGd" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/port) +"bGe" = ( +/obj/structure/table/reinforced, +/obj/item/electronics/airalarm, +/obj/item/electronics/apc, +/obj/machinery/camera{ + c_tag = "Technology Storage"; + dir = 4; + name = "engineering camera" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bGf" = ( +/obj/structure/rack, +/obj/item/circuitboard/computer/security{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/circuitboard/computer/prisoner, +/obj/item/circuitboard/computer/secure_data{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/tech) +"bGg" = ( +/obj/structure/rack, +/obj/item/circuitboard/computer/atmos_alert{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/circuitboard/computer/powermonitor, +/obj/item/circuitboard/computer/stationalert{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/tech) +"bGh" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/console_screen, +/obj/item/stock_parts/console_screen, +/obj/item/stock_parts/console_screen, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bGi" = ( +/obj/machinery/vending/tool, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/storage/primary) +"bGj" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/yellow, +/obj/item/storage/box/lights/mixed, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/primary) +"bGk" = ( +/turf/open/floor/plasteel/yellow/corner, +/area/storage/primary) +"bGl" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/storage/primary) +"bGm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Primary Tool Storage"; + req_access_txt = "0" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"bGn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/central) +"bGo" = ( +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/turf/open/floor/wood, +/area/bridge/meeting_room/council) +"bGp" = ( +/obj/structure/bookcase/random, +/turf/open/floor/wood, +/area/bridge/meeting_room/council) +"bGq" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/wood, +/area/bridge/meeting_room/council) +"bGr" = ( +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room/council) +"bGs" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/highcap/ten_k{ + dir = 1; + name = "Council Chambers APC"; + areastring = "/area/bridge/meeting_room/council"; + pixel_y = 26 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room/council) +"bGt" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/wood, +/area/bridge/meeting_room/council) +"bGu" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/wood, +/area/bridge/meeting_room/council) +"bGv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/bridge/meeting_room/council) +"bGw" = ( +/obj/structure/table/wood, +/obj/item/device/paicard, +/turf/open/floor/wood, +/area/bridge/meeting_room/council) +"bGx" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"bGy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"bGz" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Telecomms Control Room"; + req_access = null; + req_access_txt = "19; 61" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tcommsat/computer) +"bGA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"bGB" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/toy/figure/captain, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bGC" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bGD" = ( +/obj/machinery/light_switch{ + pixel_x = -26; + pixel_y = 26 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bGE" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bGF" = ( +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bGG" = ( +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 6 + }, +/area/crew_quarters/heads/captain) +"bGH" = ( +/obj/structure/fireplace, +/turf/open/floor/plasteel/vault, +/area/crew_quarters/heads/captain) +"bGI" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 10 + }, +/area/crew_quarters/heads/captain) +"bGJ" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bGK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bGL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"bGM" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Auxiliary Tool Storage Maintenance"; + req_access_txt = "12" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bGN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bGO" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Detective's Office Maintenance"; + req_access_txt = "4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"bGP" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -26; + pixel_y = 32 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/detectives_office) +"bGQ" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/detectives_office) +"bGR" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"bGS" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"bGT" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"bGU" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 64; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"bGV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"bGW" = ( +/obj/machinery/door/airlock/security{ + name = "Private Interrogation"; + req_access = null; + req_access_txt = "4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/detectives_office) +"bGX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/detectives_office) +"bGY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Detective's Interrogation"; + dir = 8; + name = "security camera" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/detectives_office) +"bGZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bHa" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "brigwindows"; + name = "Brig Front Blast door" + }, +/turf/open/floor/plating, +/area/security/brig) +"bHb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/brig) +"bHc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/bed, +/obj/item/bedsheet, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/brig) +"bHd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red/corner{ + dir = 8 + }, +/area/security/brig) +"bHe" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/security/brig) +"bHf" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/brig) +"bHg" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/warden) +"bHh" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_security{ + name = "Warden's Office"; + req_access_txt = "3" + }, +/turf/open/floor/plasteel/red, +/area/security/warden) +"bHi" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"bHj" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"bHk" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"bHl" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"bHm" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space) +"bHn" = ( +/obj/structure/table/reinforced, +/obj/item/bodypart/chest/robot, +/obj/item/bodypart/r_arm/robot{ + pixel_x = 6 + }, +/obj/item/bodypart/l_arm/robot{ + pixel_x = -6 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/ai) +"bHo" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"bHp" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"bHq" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"bHr" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"bHs" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"bHt" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"bHu" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"bHv" = ( +/turf/closed/wall/r_wall, +/area/engine/transit_tube) +"bHw" = ( +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/transit_tube) +"bHx" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/engine/transit_tube) +"bHy" = ( +/obj/machinery/power/apc/highcap/five_k{ + dir = 1; + name = "Transit Tube Access APC"; + areastring = "/area/engine/transit_tube"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/vault, +/area/engine/transit_tube) +"bHz" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault, +/area/engine/transit_tube) +"bHA" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/button/door{ + id = "transitlock"; + name = "Transit Tube Lockdown Control"; + pixel_y = 26; + req_access_txt = "39; 19" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/transit_tube) +"bHB" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "atmoslock"; + name = "Atmospherics Lockdown Control"; + pixel_x = -26; + req_access_txt = "25" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bHC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/crew_quarters/heads/chief) +"bHD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/crew_quarters/heads/chief) +"bHE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/crew_quarters/heads/chief) +"bHF" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bHG" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Chief Engineer's Office"; + req_access_txt = "56" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bHH" = ( +/obj/machinery/door/poddoor/preopen{ + id = "ceblast"; + name = "Chief's Lockdown Shutters" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bHI" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bHJ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 8 + }, +/area/engine/break_room) +"bHK" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/break_room) +"bHL" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/break_room) +"bHM" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/break_room) +"bHN" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/break_room) +"bHO" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral, +/area/engine/break_room) +"bHP" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 4 + }, +/area/engine/break_room) +"bHQ" = ( +/turf/closed/wall, +/area/security/checkpoint/engineering) +"bHR" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"bHS" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/door/airlock/glass_security{ + id_tag = "engdoor"; + name = "Engineering Cell"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red, +/area/security/checkpoint/engineering) +"bHT" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"bHU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/electricshock, +/turf/closed/wall/r_wall, +/area/security/checkpoint/engineering) +"bHV" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bHW" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/ai_status_display{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/storage/tech) +"bHX" = ( +/obj/structure/rack, +/obj/item/circuitboard/machine/teleporter_hub{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/circuitboard/machine/teleporter_station, +/obj/item/circuitboard/computer/teleporter{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/tech) +"bHY" = ( +/obj/structure/rack, +/obj/item/circuitboard/machine/telecomms/server{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/circuitboard/machine/telecomms/relay, +/obj/item/circuitboard/machine/telecomms/receiver, +/obj/item/circuitboard/machine/telecomms/processor, +/obj/item/circuitboard/machine/telecomms/hub, +/obj/item/circuitboard/machine/telecomms/bus, +/obj/item/circuitboard/machine/telecomms/broadcaster{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/tech) +"bHZ" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/storage/tech) +"bIa" = ( +/obj/structure/rack, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_guide, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/primary) +"bIb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/neutral, +/area/storage/primary) +"bId" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "councilblast"; + name = "Council Chambers Blast door" + }, +/turf/open/floor/plating, +/area/bridge/meeting_room/council) +"bIe" = ( +/obj/structure/table/wood, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 3 + }, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = -3 + }, +/obj/item/clothing/mask/cigarette/cigar, +/turf/open/floor/wood, +/area/bridge/meeting_room/council) +"bIf" = ( +/turf/open/floor/plasteel/grimy, +/area/bridge/meeting_room/council) +"bIg" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room/council) +"bIh" = ( +/obj/structure/chair/comfy/black, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room/council) +"bIi" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/chair/comfy/brown, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room/council) +"bIj" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/chair/comfy/black, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/bridge/meeting_room/council) +"bIk" = ( +/obj/structure/table/wood, +/obj/item/cigbutt/cigarbutt{ + pixel_x = 7 + }, +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -3; + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/grimy, +/area/bridge/meeting_room/council) +"bIl" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room/council) +"bIm" = ( +/obj/structure/sign/nanotrasen{ + pixel_x = 32; + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room/council) +"bIn" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/bridge/meeting_room/council) +"bIo" = ( +/obj/structure/table/wood, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/paper_bin, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tcommsat/computer) +"bIp" = ( +/obj/structure/table/wood, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/obj/item/folder/blue, +/obj/item/pen, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bIq" = ( +/obj/machinery/power/apc/highcap/ten_k{ + dir = 1; + name = "Telecomms Monitoring APC"; + areastring = "/area/tcommsat/computer"; + pixel_y = 28 + }, +/obj/item/twohanded/required/kirbyplants/random, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bIr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/camera{ + c_tag = "Telecomms - Monitoring"; + dir = 2; + name = "telecomms camera"; + network = list("SS13","tcomm") + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bIs" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/light_switch{ + pixel_x = -26; + pixel_y = 26 + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bIt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bIu" = ( +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bIv" = ( +/obj/structure/table/wood, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/obj/item/device/radio{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bIw" = ( +/obj/structure/table/wood, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tcommsat/computer) +"bIx" = ( +/obj/machinery/vending/boozeomat, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/crew_quarters/heads/captain) +"bIy" = ( +/obj/structure/sign/nanotrasen{ + pixel_x = -32; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bIz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bIA" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bIB" = ( +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bIC" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/effect/landmark/start/captain, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"bID" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"bIE" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"bIF" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bIG" = ( +/turf/closed/wall, +/area/storage/tools) +"bIH" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/yellow/side{ + dir = 9 + }, +/area/storage/tools) +"bII" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/power/apc/highcap/five_k{ + dir = 1; + name = "Auxiliary Tool Storage APC"; + areastring = "/area/storage/tools"; + pixel_y = 24 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/storage/tools) +"bIJ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"bIK" = ( +/obj/structure/closet/toolcloset, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 4 + }, +/area/storage/tools) +"bIL" = ( +/obj/structure/closet/toolcloset, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel/yellow/side{ + dir = 5 + }, +/area/storage/tools) +"bIM" = ( +/turf/closed/wall, +/area/security/detectives_office) +"bIN" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/newscaster/security_unit{ + pixel_x = -32 + }, +/obj/machinery/camera{ + c_tag = "Detective's Office"; + dir = 4; + name = "security camera" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/detectives_office) +"bIO" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/detectives_office) +"bIP" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"bIQ" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"bIR" = ( +/obj/structure/table/wood, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 3 + }, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = -3 + }, +/obj/item/clothing/mask/cigarette/cigar, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/clothing/glasses/sunglasses, +/turf/open/floor/carpet, +/area/security/detectives_office) +"bIS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/security/detectives_office) +"bIT" = ( +/obj/machinery/computer/med_data, +/obj/machinery/requests_console{ + department = "Detective's Office"; + departmentType = 0; + name = "Detective RC"; + pixel_x = 30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"bIU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/security/detectives_office) +"bIV" = ( +/obj/structure/chair/office/dark, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/detectives_office) +"bIW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/detectives_office) +"bIX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bIY" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bIZ" = ( +/turf/closed/wall, +/area/security/brig) +"bJa" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/door_timer{ + id = "brig1"; + name = "Cell 1"; + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Security - Brig Center"; + dir = 4; + name = "security camera" + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/brig) +"bJb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/brig) +"bJc" = ( +/obj/machinery/computer/crew, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 0; + name = "Security RC"; + pixel_x = -32; + pixel_y = 32 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/warden) +"bJd" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/warden) +"bJe" = ( +/obj/structure/rack, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/flashbangs{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26 + }, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/device/flashlight/seclite, +/obj/item/device/flashlight/seclite, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/warden) +"bJf" = ( +/obj/machinery/flasher/portable, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"bJg" = ( +/obj/item/grenade/barrier{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier{ + pixel_x = 3; + pixel_y = -1 + }, +/obj/item/grenade/barrier{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/structure/table/reinforced, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"bJh" = ( +/obj/item/storage/box/chemimp{ + pixel_x = 6 + }, +/obj/item/storage/box/trackimp{ + pixel_x = -3 + }, +/obj/item/storage/lockbox/loyalty, +/obj/structure/table/reinforced, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"bJi" = ( +/obj/item/storage/box/firingpins, +/obj/item/storage/box/firingpins, +/obj/item/key/security, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"bJj" = ( +/obj/item/storage/box/teargas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/flashbangs{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"bJk" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space) +"bJl" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai) +"bJm" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 6 + }, +/area/ai_monitored/turret_protected/ai) +"bJn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/camera/motion{ + c_tag = "AI Chamber - Aft"; + dir = 1; + name = "motion-sensitive ai camera"; + network = list("AI") + }, +/turf/open/floor/plasteel/vault, +/area/ai_monitored/turret_protected/ai) +"bJo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault, +/area/ai_monitored/turret_protected/ai) +"bJp" = ( +/turf/open/floor/plasteel/vault{ + dir = 10 + }, +/area/ai_monitored/turret_protected/ai) +"bJq" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai) +"bJr" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space) +"bJs" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"bJt" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"bJu" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Exterior Access"; + req_one_access_txt = "32;19" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/aisat) +"bJv" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/space, +/area/space) +"bJw" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/space, +/area/space) +"bJx" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/space, +/area/space) +"bJy" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/hatch{ + cyclelinkeddir = 4; + name = "MiniSat Exterior Access"; + req_one_access_txt = "32;19" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/transit_tube) +"bJz" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/transit_tube) +"bJA" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/transit_tube) +"bJB" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/transit_tube) +"bJC" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/transit_tube) +"bJD" = ( +/obj/machinery/computer/card/minor/ce, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bJE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/crew_quarters/heads/chief) +"bJF" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/heads/chief) +"bJG" = ( +/obj/structure/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/heads/chief) +"bJH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/crew_quarters/heads/chief) +"bJI" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bJJ" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/crew_quarters/heads/chief) +"bJK" = ( +/obj/machinery/door/poddoor/preopen{ + id = "ceblast"; + name = "Chief's Lockdown Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bJL" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = -26 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 10 + }, +/area/engine/break_room) +"bJM" = ( +/obj/structure/rack, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_guide, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plasteel/yellow/side, +/area/engine/break_room) +"bJN" = ( +/obj/structure/table/reinforced, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel/yellow/side, +/area/engine/break_room) +"bJO" = ( +/obj/machinery/light, +/obj/machinery/light_switch{ + pixel_y = -26 + }, +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/yellow/side, +/area/engine/break_room) +"bJP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/yellow/side, +/area/engine/break_room) +"bJQ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/yellow/side, +/area/engine/break_room) +"bJR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/yellow/side, +/area/engine/break_room) +"bJS" = ( +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/yellow/side, +/area/engine/break_room) +"bJT" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/yellow/side{ + dir = 6 + }, +/area/engine/break_room) +"bJU" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"bJV" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/checkpoint/engineering) +"bJW" = ( +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/checkpoint/engineering) +"bJX" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/secure_closet/brig{ + id = "engcell"; + name = "Engineering Cell Locker" + }, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/checkpoint/engineering) +"bJY" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall, +/area/security/checkpoint/engineering) +"bJZ" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/yellow, +/obj/item/storage/toolbox/electrical, +/obj/item/device/multitool, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/storage/tech) +"bKa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/storage/tech) +"bKb" = ( +/obj/structure/table/reinforced, +/obj/item/electronics/firelock, +/obj/item/electronics/firelock, +/obj/item/electronics/firealarm, +/obj/item/electronics/firealarm, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/storage/tech) +"bKc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port/fore) +"bKd" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/metal{ + amount = 30 + }, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/primary) +"bKe" = ( +/turf/open/floor/plasteel/yellow/side{ + dir = 10 + }, +/area/storage/primary) +"bKf" = ( +/turf/open/floor/plasteel/yellow/side, +/area/storage/primary) +"bKg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/yellow/corner{ + dir = 8 + }, +/area/storage/primary) +"bKh" = ( +/turf/open/floor/plasteel/yellow/side{ + dir = 6 + }, +/area/storage/primary) +"bKi" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/electrical, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/primary) +"bKj" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "councilblast"; + name = "Council Chambers Blast door" + }, +/turf/open/floor/plating, +/area/bridge/meeting_room/council) +"bKk" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/photocopier, +/turf/open/floor/wood, +/area/bridge/meeting_room/council) +"bKl" = ( +/obj/machinery/holopad, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/grimy, +/area/bridge/meeting_room/council) +"bKm" = ( +/obj/structure/chair/comfy/brown{ + color = "#c45c57"; + dir = 4; + icon_state = "comfychair" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room/council) +"bKn" = ( +/obj/structure/table/wood, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/item/folder/blue, +/obj/item/pen, +/turf/open/floor/carpet, +/area/bridge/meeting_room/council) +"bKo" = ( +/obj/structure/table/wood, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/item/folder/red, +/obj/item/lighter, +/turf/open/floor/carpet, +/area/bridge/meeting_room/council) +"bKp" = ( +/obj/structure/table/wood, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/item/folder/yellow, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/bridge/meeting_room/council) +"bKq" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/bridge/meeting_room/council) +"bKr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room/council) +"bKs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room/council) +"bKt" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/bridge/meeting_room/council) +"bKu" = ( +/obj/machinery/announcement_system, +/obj/machinery/ai_status_display{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tcommsat/computer) +"bKv" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bKw" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bKx" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bKy" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bKz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bKA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bKB" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bKC" = ( +/obj/machinery/computer/telecomms/monitor, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tcommsat/computer) +"bKD" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/crew_quarters/heads/captain) +"bKE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bKF" = ( +/obj/machinery/holopad, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bKG" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bKH" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bKI" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"bKJ" = ( +/obj/structure/table/wood, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 3 + }, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = -3 + }, +/obj/item/clothing/mask/cigarette/cigar, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"bKK" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bKL" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/clothing/suit/hazardvest, +/obj/item/device/multitool, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 8 + }, +/area/storage/tools) +"bKM" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/storage/tools) +"bKN" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/neutral, +/area/storage/tools) +"bKO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/neutral, +/area/storage/tools) +"bKP" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Auxiliary Tool Storage"; + dir = 8; + name = "engineering camera" + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 4 + }, +/area/storage/tools) +"bKQ" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags, +/obj/item/clothing/gloves/color/latex, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/detectives_office) +"bKR" = ( +/obj/machinery/door/window/eastright{ + name = "Detective's Morgue" + }, +/turf/open/floor/plasteel/black, +/area/security/detectives_office) +"bKS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/detectives_office) +"bKT" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"bKU" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"bKV" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/hand_labeler, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/security/detectives_office) +"bKW" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/detective, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/security/detectives_office) +"bKX" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"bKY" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/folder/red, +/obj/item/pen, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/detectives_office) +"bKZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/detective, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/detectives_office) +"bLa" = ( +/obj/effect/landmark/lightsout, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/starboard) +"bLb" = ( +/obj/structure/closet/secure_closet/brig{ + id = "brig2"; + name = "Cell 2 Locker" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/brig) +"bLc" = ( +/obj/machinery/flasher{ + id = "brig2"; + pixel_y = 26 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/brig) +"bLd" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/security/brig) +"bLe" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/brig) +"bLf" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/northright{ + dir = 4; + name = "Warden's Desk"; + req_access_txt = "3" + }, +/obj/machinery/door/window/westleft{ + name = "Warden's Desk" + }, +/obj/item/folder/red, +/obj/item/pen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/warden) +"bLg" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/warden, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/warden) +"bLh" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/neutral, +/area/security/warden) +"bLi" = ( +/obj/machinery/computer/secure_data, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/warden) +"bLj" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ai_monitored/security/armory) +"bLk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"bLl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"bLm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"bLn" = ( +/obj/structure/closet/secure_closet/contraband/armory, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"bLo" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "AI Satellite - Port"; + dir = 8; + name = "ai camera"; + network = list("Sat"); + start_active = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"bLp" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"bLq" = ( +/obj/machinery/ai_status_display, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"bLr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"bLs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + locked = 1; + name = "MiniSat Chamber"; + req_access_txt = "16" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "aicoredoor"; + name = "AI Core Access" + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = -26 + }, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "AI Intercom"; + pixel_x = 28 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bLt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"bLu" = ( +/obj/structure/sign/kiddieplaque, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"bLv" = ( +/obj/machinery/status_display, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"bLw" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "AI Satellite - Starboard"; + dir = 4; + name = "ai camera"; + network = list("Sat"); + start_active = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"bLx" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/space, +/area/space) +"bLy" = ( +/obj/machinery/light/small, +/obj/structure/sign/vacuum{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/transit_tube) +"bLz" = ( +/turf/closed/wall, +/area/engine/transit_tube) +"bLA" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = -26; + pixel_y = -26 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/transit_tube) +"bLB" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/transit_tube) +"bLC" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/transit_tube) +"bLD" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Engineer's Desk"; + departmentType = 5; + name = "Chief Engineer's RC"; + pixel_x = -32 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Chief Engineer's Office"; + dir = 4; + name = "engineering camera" + }, +/obj/machinery/computer/apc_control, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bLE" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/crew_quarters/heads/chief) +"bLF" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/chief_engineer, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/heads/chief) +"bLG" = ( +/obj/structure/table/reinforced, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/item/folder/blue{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder/yellow, +/obj/item/lighter, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/heads/chief) +"bLH" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/crew_quarters/heads/chief) +"bLI" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bLJ" = ( +/obj/structure/sign/electricshock, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/chief) +"bLK" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/chief) +"bLL" = ( +/obj/structure/sign/nosmoking_2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/engine/break_room) +"bLM" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Access"; + req_access_txt = "10" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bLN" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/engine/break_room) +"bLO" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bLP" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"bLQ" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/checkpoint/engineering) +"bLR" = ( +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/engineering) +"bLS" = ( +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/checkpoint/engineering) +"bLT" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/engineering) +"bLU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bLV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/port) +"bLW" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 4 + }, +/area/hallway/primary/port) +"bLX" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_y = 3 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/storage/tech) +"bLY" = ( +/obj/structure/table/reinforced, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/voice, +/obj/item/device/assembly/voice, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/tech) +"bLZ" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/storage/tech) +"bMa" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/light_switch{ + pixel_y = -26 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/storage/tech) +"bMb" = ( +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/device/paicard, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/tech) +"bMc" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/storage/tech) +"bMd" = ( +/obj/structure/table/reinforced, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/timer, +/obj/item/device/multitool, +/obj/item/device/multitool, +/obj/machinery/light, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/primary) +"bMe" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/storage/primary) +"bMf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/storage/primary) +"bMg" = ( +/obj/structure/table/reinforced, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/primary) +"bMh" = ( +/obj/structure/table/reinforced, +/obj/item/device/radio{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/device/radio{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/device/radio, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + pixel_x = 26 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/primary) +"bMi" = ( +/turf/closed/wall, +/area/storage/primary) +"bMj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Central Hallway - Port"; + dir = 4; + name = "hallway camera" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bMk" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "councilblast"; + name = "Council Chambers Blast door" + }, +/turf/open/floor/plating, +/area/bridge/meeting_room/council) +"bMl" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/book/manual/wiki/security_space_law, +/turf/open/floor/wood, +/area/bridge/meeting_room/council) +"bMm" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/bridge/meeting_room/council) +"bMn" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + dir = 1 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room/council) +"bMo" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room/council) +"bMp" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/bridge/meeting_room/council) +"bMq" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/grimy, +/area/bridge/meeting_room/council) +"bMr" = ( +/obj/machinery/newscaster{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/bridge/meeting_room/council) +"bMs" = ( +/turf/open/floor/wood, +/area/bridge/meeting_room/council) +"bMt" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/bridge/meeting_room/council) +"bMu" = ( +/obj/machinery/computer/message_monitor, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/item/paper/monitorkey, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tcommsat/computer) +"bMv" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bMw" = ( +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bMx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bMy" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bMA" = ( +/obj/structure/chair/office/dark, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bMB" = ( +/obj/machinery/computer/telecomms/server, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tcommsat/computer) +"bMC" = ( +/obj/structure/bed/dogbed/renault, +/mob/living/simple_animal/pet/fox/Renault, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/crew_quarters/heads/captain) +"bMD" = ( +/obj/machinery/newscaster{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/item/device/radio/intercom{ + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bME" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bMF" = ( +/obj/structure/chair/comfy/brown, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bMG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bMH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bMI" = ( +/obj/machinery/power/apc/highcap/ten_k{ + dir = 2; + name = "Captain's Office APC"; + areastring = "/area/crew_quarters/heads/captain"; + pixel_y = -24 + }, +/obj/structure/cable/white, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bMJ" = ( +/obj/structure/sign/goldenplaque/captain{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bMK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"bML" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/emergency{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/emergency, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/light_switch{ + pixel_x = -26 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 10 + }, +/area/storage/tools) +"bMM" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/yellow/corner{ + dir = 8 + }, +/area/storage/tools) +"bMN" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/storage/tools) +"bMO" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass/fifty, +/obj/item/storage/box/lights/mixed, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/yellow/corner, +/area/storage/tools) +"bMP" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/yellow/side{ + dir = 6 + }, +/area/storage/tools) +"bMQ" = ( +/obj/structure/bodycontainer/morgue, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/landmark/revenantspawn, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/detectives_office) +"bMR" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/black, +/area/security/detectives_office) +"bMS" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/detectives_office) +"bMT" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/detectives_office) +"bMU" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"bMV" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"bMW" = ( +/obj/structure/table/wood, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/security/detectives_office) +"bMX" = ( +/obj/structure/table/wood, +/obj/machinery/button/door{ + id = "detectivewindows"; + name = "Privacy Shutters"; + pixel_x = 26; + pixel_y = -26; + req_access_txt = "4" + }, +/obj/machinery/light_switch{ + pixel_x = 38; + pixel_y = -26 + }, +/obj/structure/disposalpipe/segment, +/obj/item/device/flashlight/lamp, +/obj/item/reagent_containers/food/drinks/flask/det, +/turf/open/floor/carpet, +/area/security/detectives_office) +"bMY" = ( +/obj/structure/table/wood, +/obj/item/storage/secure/safe{ + pixel_x = 32 + }, +/obj/machinery/computer/security/wooden_tv, +/turf/open/floor/carpet, +/area/security/detectives_office) +"bMZ" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/detectives_office) +"bNa" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/detectives_office) +"bNb" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/door/window/brigdoor/security/cell/westright{ + id = "brig2"; + name = "Cell 2" + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/brig) +"bNc" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/warden) +"bNd" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/security/warden) +"bNe" = ( +/obj/machinery/computer/security, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/red, +/area/security/warden) +"bNf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"bNg" = ( +/obj/structure/rack, +/obj/item/gun/ballistic/shotgun/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/ballistic/shotgun/riot, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/obj/item/gun/ballistic/shotgun/riot, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"bNh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"bNi" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/vest{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/suit/armor/vest{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet{ + layer = 3.00001; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet{ + layer = 3.00001 + }, +/obj/item/clothing/head/helmet{ + layer = 3.00001; + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"bNj" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space) +"bNk" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"bNl" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"bNm" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"bNn" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/sign/electricshock{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"bNo" = ( +/obj/machinery/cell_charger, +/obj/structure/table/reinforced, +/obj/item/stock_parts/cell/high, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"bNp" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"bNq" = ( +/obj/machinery/porta_turret/ai, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bNr" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/vault, +/area/ai_monitored/turret_protected/aisat_interior) +"bNs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "AI Satellite - Antechamber"; + dir = 2; + name = "ai camera"; + network = list("Sat"); + start_active = 1 + }, +/turf/open/floor/plasteel/vault, +/area/ai_monitored/turret_protected/aisat_interior) +"bNt" = ( +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bNu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault, +/area/ai_monitored/turret_protected/aisat_interior) +"bNw" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bNx" = ( +/obj/machinery/teleport/hub, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/black, +/area/ai_monitored/turret_protected/aisat_interior) +"bNy" = ( +/obj/machinery/teleport/station, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/black, +/area/ai_monitored/turret_protected/aisat_interior) +"bNz" = ( +/obj/machinery/computer/teleporter, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/black, +/area/ai_monitored/turret_protected/aisat_interior) +"bNA" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space) +"bNB" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced, +/turf/open/space, +/area/space) +"bNC" = ( +/obj/structure/sign/vacuum, +/turf/closed/wall, +/area/space) +"bND" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/curved/flipped{ + icon_state = "curved1"; + dir = 4 + }, +/turf/open/space, +/area/space) +"bNE" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/crossing/horizontal, +/turf/open/space, +/area/space) +"bNF" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/curved{ + icon_state = "curved0"; + dir = 8 + }, +/turf/open/space, +/area/space) +"bNG" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/space, +/area/space) +"bNH" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/space, +/area/space) +"bNI" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/transit_tube) +"bNJ" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Transit Tube Access"; + req_one_access_txt = "32;19" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/transit_tube) +"bNK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/engine/transit_tube) +"bNL" = ( +/obj/machinery/keycard_auth{ + pixel_x = -26 + }, +/obj/machinery/button/door{ + id = "engstorage"; + name = "Engineering Secure Storage Control"; + pixel_x = -38; + pixel_y = 8; + req_access_txt = "11" + }, +/obj/machinery/button/door{ + id = "transitlock"; + name = "Transit Tube Lockdown Control"; + pixel_x = -38; + pixel_y = -8; + req_access_txt = "39; 19" + }, +/obj/machinery/modular_computer/console/preset/engineering, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bNM" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bNN" = ( +/obj/structure/table/reinforced, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/item/clipboard, +/obj/item/toy/figure/ce, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/heads/chief) +"bNO" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/crew_quarters/heads/chief) +"bNP" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/crew_quarters/heads/chief) +"bNQ" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bNR" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/chief) +"bNS" = ( +/obj/structure/bed, +/obj/item/bedsheet/ce, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/chief) +"bNT" = ( +/obj/structure/dresser, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/chief) +"bNU" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/obj/machinery/button/door{ + id = "ceprivacy"; + name = "Privacy Control"; + pixel_x = 26; + req_access_txt = "56" + }, +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = 26 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Chief Engineer's Quarters"; + dir = 2; + name = "engineering camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bNV" = ( +/obj/structure/closet/radiation, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bNW" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bNX" = ( +/obj/structure/closet/toolcloset, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bNY" = ( +/turf/closed/wall, +/area/engine/engineering) +"bNZ" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"bOa" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/door/window/brigdoor{ + dir = 1; + id = "engcell"; + name = "Engineering Cell"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/red, +/area/security/checkpoint/engineering) +"bOb" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"bOc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Engineering Hallway - Center"; + dir = 8; + name = "hallway camera" + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 4 + }, +/area/hallway/primary/port) +"bOd" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/storage/tech) +"bOe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/storage/tech) +"bOf" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering{ + name = "Technology Storage"; + req_access_txt = "23" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"bOg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Primary Tool Storage"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"bOh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Primary Tool Storage"; + req_access_txt = "0" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"bOi" = ( +/obj/structure/sign/directions/science{ + dir = 2 + }, +/obj/structure/sign/directions/engineering{ + dir = 8; + pixel_y = 8 + }, +/obj/structure/sign/directions/engineering{ + desc = "A direction sign, pointing out which way the Command department is."; + dir = 4; + icon_state = "direction_bridge"; + name = "command department"; + pixel_y = -8 + }, +/turf/closed/wall, +/area/storage/primary) +"bOj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bOk" = ( +/obj/machinery/ai_status_display{ + pixel_x = -32 + }, +/obj/structure/table/wood, +/obj/item/storage/briefcase{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/secure/briefcase, +/turf/open/floor/wood, +/area/bridge/meeting_room/council) +"bOl" = ( +/obj/machinery/button/door{ + id = "councilblast"; + name = "Council Blast doors"; + pixel_x = -26; + pixel_y = -26 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = -26 + }, +/obj/structure/bookcase/random, +/turf/open/floor/wood, +/area/bridge/meeting_room/council) +"bOm" = ( +/obj/machinery/light, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/wood, +/area/bridge/meeting_room/council) +"bOn" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/camera{ + c_tag = "Bridge - Council Chamber"; + dir = 1; + name = "command camera" + }, +/turf/open/floor/wood, +/area/bridge/meeting_room/council) +"bOo" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = -26 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/bridge/meeting_room/council) +"bOp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/bridge/meeting_room/council) +"bOq" = ( +/obj/structure/table/wood, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tcommsat/computer) +"bOr" = ( +/obj/structure/table/wood, +/obj/item/storage/box/donkpockets, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bOs" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bOt" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bOu" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bOv" = ( +/obj/structure/filingcabinet/medical, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bOw" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/pen, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bOx" = ( +/obj/structure/table/wood, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/cigbutt/cigarbutt{ + pixel_x = 6 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tcommsat/computer) +"bOy" = ( +/obj/structure/table/wood, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/device/flashlight/lamp/green, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Bridge - Captain's Office"; + dir = 4; + name = "command camera" + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"bOz" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/pen/fourcolor, +/obj/item/stamp/captain, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/window/brigdoor/northleft{ + name = "Captain's Desk"; + req_access_txt = "20" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"bOA" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"bOB" = ( +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"bOC" = ( +/obj/structure/table/wood, +/obj/item/storage/secure/briefcase{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/storage/lockbox/medal, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"bOD" = ( +/obj/structure/table/wood, +/obj/item/storage/photo_album, +/obj/item/device/camera, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bOE" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain) +"bOF" = ( +/obj/structure/sign/directions/science{ + dir = 2; + pixel_y = -8 + }, +/obj/structure/sign/directions/engineering{ + desc = "A direction sign, pointing out which way the Command department is."; + dir = 1; + icon_state = "direction_bridge"; + name = "command department" + }, +/obj/structure/sign/directions/engineering{ + desc = "A direction sign, pointing out which way the Supply department is."; + dir = 1; + icon_state = "direction_supply"; + name = "supply department"; + pixel_y = 8 + }, +/turf/closed/wall, +/area/storage/tools) +"bOG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/storage/tools) +"bOH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Auxiliary Tool Storage"; + req_access_txt = "12" + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"bOI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/storage/tools) +"bOJ" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "detectivewindows"; + name = "Detective Privacy Blast door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/security/detectives_office) +"bOK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Detective's Office"; + req_access = null; + req_access_txt = "4" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/detectives_office) +"bOL" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "detectivewindows"; + name = "Detective Privacy Blast door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/security/detectives_office) +"bOM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "detectivewindows"; + name = "Detective Privacy Blast door" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/detectives_office) +"bON" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bOO" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/bed, +/obj/item/bedsheet, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/brig) +"bOP" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/brig) +"bOQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 8 + }, +/area/security/brig) +"bOR" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/security/brig) +"bOS" = ( +/obj/structure/table/reinforced, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/item/clipboard, +/obj/item/toy/figure/warden, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/warden) +"bOT" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/security/warden) +"bOU" = ( +/obj/machinery/computer/prisoner, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Warden's Office APC"; + areastring = "/area/security/warden"; + pixel_x = 26 + }, +/obj/machinery/camera{ + c_tag = "Security - Warden's Office"; + dir = 8; + name = "security camera" + }, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/warden) +"bOV" = ( +/obj/structure/rack, +/obj/item/storage/box/rubbershot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/rubbershot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/rubbershot, +/obj/item/storage/box/rubbershot, +/obj/item/storage/box/rubbershot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/box/rubbershot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"bOW" = ( +/obj/structure/rack, +/obj/item/gun/energy/laser{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"bOX" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/secure/safe{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"bOY" = ( +/obj/machinery/camera/motion{ + c_tag = "Armoury - Exterior"; + dir = 4; + network = list("SS13") + }, +/turf/open/space, +/area/space) +"bOZ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/northleft, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"bPa" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"bPb" = ( +/obj/structure/showcase/cyborg/old{ + dir = 4; + pixel_x = -9; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"bPc" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"bPd" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"bPe" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"bPf" = ( +/obj/machinery/camera{ + c_tag = "AI Satellite - Maintenance"; + dir = 8; + name = "ai camera"; + network = list("Sat"); + start_active = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"bPg" = ( +/obj/structure/showcase/cyborg/old{ + dir = 4; + pixel_x = -9; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bPh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"bPi" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"bPj" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"bPk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"bPl" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"bPm" = ( +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bPn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"bPo" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/aisat_interior"; + enabled = 1; + icon_state = "control_standby"; + name = "Antechamber Turret Control"; + pixel_x = -32; + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "AI Satellite - Teleporter"; + dir = 4; + name = "ai camera"; + network = list("Sat"); + start_active = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 6 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bPp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault, +/area/ai_monitored/turret_protected/aisat_interior) +"bPq" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/vault, +/area/ai_monitored/turret_protected/aisat_interior) +"bPr" = ( +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 10 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bPs" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"bPt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/window/northright, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"bPu" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"bPv" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/transit_tube/curved, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"bPw" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/diagonal{ + icon_state = "diagonal"; + dir = 4 + }, +/turf/open/space, +/area/space) +"bPx" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space) +"bPy" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "AI Satellite - Transit Tube"; + dir = 2; + name = "ai camera"; + network = list("Sat"); + start_active = 1 + }, +/obj/item/clipboard, +/obj/item/folder/blue, +/obj/item/pen, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/transit_tube) +"bPz" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = -26; + pixel_y = 26 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/transit_tube) +"bPA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/transit_tube) +"bPC" = ( +/obj/machinery/computer/station_alert, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bPD" = ( +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 6 + }, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = 2 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = 4.5 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/heads/chief) +"bPE" = ( +/obj/structure/table/reinforced, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/item/cartridge/engineering{ + pixel_x = 6 + }, +/obj/item/cartridge/engineering{ + pixel_x = -6 + }, +/obj/item/cartridge/engineering{ + pixel_y = 6 + }, +/obj/item/reagent_containers/pill/patch/silver_sulf, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/heads/chief) +"bPF" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/crew_quarters/heads/chief) +"bPG" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bPH" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Chief Engineer's Quarters"; + req_access_txt = "56" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bPI" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bPJ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/chief) +"bPK" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/chief_engineer, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/chief) +"bPL" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bPM" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "ceprivacy"; + name = "Chief's Privacy Shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/chief) +"bPN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bPO" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/item/device/radio/beacon, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/engine/engineering) +"bPP" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bPQ" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"bPR" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/checkpoint/engineering) +"bPS" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Security Post - Engineering APC"; + areastring = "/area/security/checkpoint/engineering"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/button/door{ + desc = "A remote control switch."; + id = "engdoor"; + name = "Engineering Cell Control"; + normaldoorcontrol = 1; + pixel_x = 7; + pixel_y = 36 + }, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/checkpoint/engineering) +"bPT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/checkpoint/engineering) +"bPU" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/checkpoint/engineering) +"bPV" = ( +/obj/structure/closet/secure_closet/security/engine, +/obj/machinery/door_timer{ + id = "engcell"; + name = "Engineering Cell"; + pixel_x = 32; + pixel_y = 32 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26 + }, +/obj/machinery/camera{ + c_tag = "Security Post - Engineering"; + dir = 8; + name = "security camera" + }, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/checkpoint/engineering) +"bPW" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/port) +"bPX" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 4 + }, +/area/hallway/primary/port) +"bPY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bPZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bQa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bQb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bQc" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bQd" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bQe" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bQf" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bQg" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering Hallway - Starboard"; + dir = 2; + name = "hallway camera" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bQh" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bQi" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bQj" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bQk" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Port Primary Hallway" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bQl" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"bQm" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/central) +"bQn" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hop) +"bQo" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Head of Personnel's Office"; + req_access = null; + req_access_txt = "57" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bQp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hop) +"bQq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hop) +"bQr" = ( +/turf/open/floor/plasteel/vault/telecomms{ + dir = 8 + }, +/area/tcommsat/server) +"bQs" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/server) +"bQt" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall, +/area/tcommsat/server) +"bQu" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/tcommsat/server) +"bQv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/tcommsat/server) +"bQw" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + cyclelinkeddir = 2; + name = "Telecomms Server Room"; + req_access = null; + req_access_txt = "61" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tcommsat/server) +"bQy" = ( +/obj/machinery/computer/card, +/obj/machinery/keycard_auth{ + pixel_x = -26; + pixel_y = 26 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Captain's Desk"; + departmentType = 5; + name = "Captain RC"; + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"bQz" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#c45c57"; + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/captain, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"bQA" = ( +/obj/structure/table/wood, +/obj/machinery/computer/security/wooden_tv, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"bQB" = ( +/obj/structure/table/wood, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/item/coin/adamantine{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/hand_tele, +/obj/item/melee/chainofcommand, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"bQC" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/captain/private) +"bQD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"bQE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Starboard Primary Hallway" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bQF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bQG" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j1" + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bQH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bQI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bQJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bQK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Security Hallway - Port"; + dir = 2; + name = "hallway camera" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bQL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bQM" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bQN" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bQO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bQP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bQQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bQR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bQS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bQT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bQU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/starboard) +"bQV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bQW" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/door_timer{ + id = "brig2"; + name = "Cell 2"; + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/security/brig) +"bQX" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/machinery/newscaster/security_unit{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/warden) +"bQY" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/security/warden) +"bQZ" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/electrical, +/obj/item/screwdriver{ + pixel_y = 5 + }, +/obj/item/device/multitool, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/warden) +"bRa" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ai_monitored/security/armory) +"bRb" = ( +/obj/vehicle/secway, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"bRc" = ( +/obj/structure/rack, +/obj/item/gun/energy/e_gun/advtaser{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/e_gun/advtaser, +/obj/item/gun/energy/e_gun/advtaser{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"bRd" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/shield/riot, +/obj/item/shield/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"bRe" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"bRf" = ( +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/aisat) +"bRg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance"; + req_access_txt = "16" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bRh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bRi" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bRj" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/holopad, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bRk" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bRl" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bRm" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Antechamber"; + req_access_txt = "16" + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bRn" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bRo" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"bRp" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"bRq" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/mob/living/simple_animal/bot/secbot/pingsky, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"bRr" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"bRs" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"bRt" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bRu" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Antechamber"; + req_one_access_txt = "32;19" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bRv" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bRw" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bRx" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Access"; + req_one_access_txt = "32;19" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bRy" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/aisat) +"bRz" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"bRA" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"bRB" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"bRC" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/aisat) +"bRD" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"bRE" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/transit_tube/station{ + icon_state = "closed_station0"; + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"bRF" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/space, +/area/space) +"bRG" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/space, +/area/space) +"bRH" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/transit_tube/junction{ + icon_state = "junction0"; + dir = 4 + }, +/turf/open/space, +/area/space) +"bRI" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/transit_tube/crossing/horizontal, +/turf/open/space, +/area/space) +"bRJ" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/transit_tube/horizontal, +/turf/open/space, +/area/space) +"bRK" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/transit_tube/curved{ + icon_state = "curved0"; + dir = 8 + }, +/turf/open/space, +/area/space) +"bRL" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the AI's satellite."; + dir = 4; + name = "Research Monitor"; + network = list("Sat"); + pixel_y = 2 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/transit_tube) +"bRM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/transit_tube) +"bRN" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/transit_tube) +"bRO" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/transit_tube) +"bRP" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the Engine."; + dir = 4; + layer = 4; + name = "Engine Monitor"; + network = list("Engine"); + pixel_x = -30 + }, +/mob/living/simple_animal/parrot/Poly, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bRQ" = ( +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/crew_quarters/heads/chief) +"bRR" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/crew_quarters/heads/chief) +"bRS" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/crew_quarters/heads/chief) +"bRT" = ( +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/heads/chief) +"bRU" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bRV" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/crew_quarters/heads/chief) +"bRW" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = -24; + pixel_y = -24 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bRX" = ( +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/chief) +"bRY" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/chief) +"bRZ" = ( +/obj/machinery/suit_storage_unit/ce, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bSa" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bSb" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/engine/engineering) +"bSc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bSd" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/engineering) +"bSe" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/checkpoint/engineering) +"bSf" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/holopad, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/neutral, +/area/security/checkpoint/engineering) +"bSg" = ( +/obj/structure/chair/office/dark, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral, +/area/security/checkpoint/engineering) +"bSh" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/neutral, +/area/security/checkpoint/engineering) +"bSi" = ( +/obj/structure/table/reinforced, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/device/radio, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/checkpoint/engineering) +"bSj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bSk" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=engi2"; + location = "engi1" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/port) +"bSl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall4"; + location = "engi3" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/port) +"bSm" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bSn" = ( +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/port) +"bSo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/port) +"bSp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/port) +"bSq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/port) +"bSr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Port Primary Hallway" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bSs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=engi1"; + location = "hall3" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"bSt" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall5"; + location = "hall4" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"bSu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/central) +"bSv" = ( +/obj/machinery/ai_status_display, +/turf/closed/wall, +/area/hallway/primary/central) +"bSw" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/hallway/primary/central) +"bSx" = ( +/obj/structure/table/wood, +/obj/machinery/computer/med_data/laptop, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Personnel's Desk"; + departmentType = 5; + name = "Head of Personnel RC"; + pixel_x = 32; + pixel_y = 32 + }, +/obj/machinery/light_switch{ + pixel_x = -38; + pixel_y = 7 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/obj/machinery/button/door{ + id = "hopline"; + name = "Queue Shutters Control"; + pixel_x = -26; + pixel_y = -7; + req_access_txt = "57" + }, +/obj/machinery/button/door{ + id = "hopblast"; + name = "Lockdown Blast doors"; + pixel_x = -26; + pixel_y = 7; + req_access_txt = "57" + }, +/obj/machinery/button/flasher{ + id = "hopflash"; + pixel_x = -38; + pixel_y = -7; + req_access_txt = "28" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/crew_quarters/heads/hop) +"bSy" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/stamp/hop, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bSz" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bSA" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bSB" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bSC" = ( +/obj/structure/table/wood, +/obj/item/storage/box/ids{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/silver_ids, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bSD" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 8 + }, +/area/tcommsat/server) +"bSE" = ( +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"bSF" = ( +/obj/machinery/telecomms/receiver/preset_right, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"bSG" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/tcommsat/server) +"bSH" = ( +/obj/machinery/telecomms/receiver/preset_left, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"bSI" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 8 + }, +/area/tcommsat/server) +"bSJ" = ( +/obj/machinery/computer/communications, +/obj/machinery/ai_status_display{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"bSK" = ( +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = -26 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"bSL" = ( +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"bSM" = ( +/obj/item/device/radio/intercom{ + pixel_y = -26 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"bSN" = ( +/obj/structure/displaycase/captain{ + req_access = null; + req_access_txt = "20" + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"bSO" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/start/captain, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/captain/private) +"bSP" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/curtain, +/obj/machinery/door/window/brigdoor/southleft{ + name = "Shower" + }, +/obj/item/soap/deluxe, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/captain/private) +"bSQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Central Hallway - Security Hallway"; + dir = 4; + name = "hallway camera" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bSR" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/lightsout, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall13"; + location = "hall12" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"bSS" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall11"; + location = "hall10" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"bST" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass{ + name = "Starboard Primary Hallway" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bSU" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/starboard) +"bSV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/starboard) +"bSW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/starboard) +"bSX" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bSY" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/starboard) +"bSZ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/starboard) +"bTa" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/starboard) +"bTb" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/starboard) +"bTc" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/starboard) +"bTd" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/starboard) +"bTe" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bTf" = ( +/obj/item/device/radio/beacon, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall12"; + location = "hall11" + }, +/mob/living/simple_animal/bot/secbot/beepsky{ + desc = "It's Officer Beepsky! Powered by a potato and a shot of whiskey."; + name = "Officer Beepsky" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/starboard) +"bTg" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + icon_state = "pipe-j1s"; + name = "Security Junction"; + sortType = 7 + }, +/turf/open/floor/plasteel/red/corner, +/area/hallway/primary/starboard) +"bTh" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_security{ + cyclelinkeddir = 4; + name = "Brig"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bTi" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bTj" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "brigfront"; + name = "Brig Blast door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/brig) +"bTk" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bTl" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral, +/area/security/brig) +"bTm" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 2 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/security/brig) +"bTn" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/warden) +"bTo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/security/warden) +"bTp" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/security/warden) +"bTq" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/warden) +"bTr" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/security{ + name = "Armoury"; + req_access_txt = "3" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"bTs" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"bTt" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"bTu" = ( +/obj/structure/rack, +/obj/item/gun/energy/e_gun{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/e_gun, +/obj/item/gun/energy/e_gun{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"bTv" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"bTw" = ( +/obj/structure/rack, +/obj/item/gun/energy/ionrifle, +/obj/item/clothing/suit/armor/laserproof, +/obj/item/gun/energy/temperature/security, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"bTx" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/southright, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"bTy" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"bTz" = ( +/obj/structure/sign/nosmoking_2, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"bTA" = ( +/obj/structure/showcase/cyborg/old{ + dir = 4; + pixel_x = -9; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bTB" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bTC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bTD" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bTE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"bTF" = ( +/obj/structure/showcase/cyborg/old{ + dir = 4; + pixel_x = -9; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bTG" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"bTH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"bTI" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"bTJ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"bTK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"bTL" = ( +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bTM" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bTN" = ( +/obj/structure/window/reinforced, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"bTO" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/window/southleft, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"bTP" = ( +/obj/structure/window/reinforced, +/obj/structure/cable/white, +/obj/machinery/power/apc{ + dir = 2; + name = "AI Satellite Exterior APC"; + areastring = "/area/aisat"; + pixel_y = -26 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"bTQ" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/transit_tube/curved/flipped{ + icon_state = "curved1"; + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"bTR" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/diagonal, +/turf/open/space, +/area/space) +"bTS" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/transit_tube/curved{ + icon_state = "curved0"; + dir = 4 + }, +/obj/structure/sign/securearea{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/transit_tube) +"bTT" = ( +/obj/structure/transit_tube/horizontal, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/transit_tube) +"bTU" = ( +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/obj/structure/transit_tube/station/reverse/flipped, +/obj/structure/transit_tube_pod{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/transit_tube) +"bTV" = ( +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/transit_tube) +"bTW" = ( +/obj/structure/table/reinforced, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bTX" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/cartridge/atmos, +/obj/item/cartridge/atmos, +/obj/item/cartridge/atmos, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bTY" = ( +/obj/structure/rack, +/obj/item/storage/secure/briefcase, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bTZ" = ( +/obj/structure/cable/white, +/obj/machinery/power/apc{ + dir = 2; + name = "Chief Engineer's APC"; + areastring = "/area/crew_quarters/heads/chief"; + pixel_y = -26 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bUa" = ( +/obj/machinery/photocopier, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bUb" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = -26 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bUc" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "ceprivacy"; + name = "Chief's Privacy Shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/chief) +"bUd" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "ceprivacy"; + name = "Chief's Privacy Shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/chief) +"bUe" = ( +/obj/structure/closet/toolcloset, +/obj/machinery/light/small, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Engineering - Engine Foyer"; + dir = 1; + name = "engineering camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bUf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bUg" = ( +/obj/structure/closet/radiation, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bUh" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/engineering) +"bUi" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/light_switch{ + pixel_x = -26; + pixel_y = -26 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -38; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/checkpoint/engineering) +"bUj" = ( +/obj/machinery/computer/station_alert, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/engineering) +"bUk" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/machinery/light, +/obj/machinery/computer/security, +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/engineering) +"bUl" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/engineering) +"bUm" = ( +/obj/structure/table/reinforced, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = -32 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26; + pixel_y = -32 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/recharger, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/checkpoint/engineering) +"bUn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bUo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/port) +"bUp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/yellow/corner, +/area/hallway/primary/port) +"bUq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bUr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bUs" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bUt" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bUu" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/light, +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bUv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bUw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bUx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Port Primary Hallway" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bUy" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bUz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/blue/corner, +/area/hallway/primary/central) +"bUA" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopline"; + name = "Queue Shutters" + }, +/turf/open/floor/plasteel/loadingarea{ + dir = 8 + }, +/area/hallway/primary/central) +"bUB" = ( +/obj/machinery/flasher{ + id = "hopflash"; + pixel_y = 58 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bUC" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "hopblast"; + name = "HoP Blast door" + }, +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Access Desk"; + req_access_txt = "57" + }, +/obj/machinery/door/window/westright{ + name = "Access Queue" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hop) +"bUD" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/head_of_personnel, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/hop) +"bUE" = ( +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bUF" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hop) +"bUG" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hop) +"bUH" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hop) +"bUI" = ( +/obj/machinery/vending/cart, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bUJ" = ( +/obj/machinery/telecomms/server/presets/medical, +/turf/open/floor/plasteel/whiteblue/side/telecomms{ + dir = 9 + }, +/area/tcommsat/server) +"bUK" = ( +/obj/machinery/telecomms/server/presets/science, +/turf/open/floor/plasteel/whitepurple/side/telecomms{ + dir = 5 + }, +/area/tcommsat/server) +"bUL" = ( +/turf/open/floor/plasteel/vault/telecomms, +/area/tcommsat/server) +"bUM" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/command{ + cyclelinkeddir = 1; + name = "Telecomms Server Room"; + req_access = null; + req_access_txt = "61" + }, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 5 + }, +/area/tcommsat/server) +"bUN" = ( +/obj/machinery/telecomms/server/presets/command, +/turf/open/floor/plasteel/darkblue/side/telecomms{ + dir = 9 + }, +/area/tcommsat/server) +"bUO" = ( +/obj/machinery/telecomms/server/presets/security, +/turf/open/floor/plasteel/darkred/side/telecomms{ + dir = 5 + }, +/area/tcommsat/server) +"bUP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/captain/private) +"bUQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Captain's Quarters"; + req_access = null; + req_access_txt = "20" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bUR" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/captain/private) +"bUS" = ( +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/captain/private) +"bUT" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/captain/private) +"bUU" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/central) +"bUV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Starboard Primary Hallway" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bUW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/starboard) +"bUX" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/starboard) +"bUY" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/starboard) +"bUZ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/starboard) +"bVa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bVb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/starboard) +"bVc" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/starboard) +"bVd" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/starboard) +"bVe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/starboard) +"bVf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner, +/area/hallway/primary/starboard) +"bVg" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner, +/area/hallway/primary/starboard) +"bVh" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner, +/area/hallway/primary/starboard) +"bVi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Security Hallway - Center"; + dir = 1; + name = "hallway camera" + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/starboard) +"bVj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bVl" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bVm" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/red/corner, +/area/hallway/primary/starboard) +"bVn" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "brigwindows"; + name = "Brig Front Blast door" + }, +/turf/open/floor/plating, +/area/security/brig) +"bVo" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bVp" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "brigfront"; + name = "Brig Blast door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/brig) +"bVq" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/brig) +"bVr" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/security/brig) +"bVs" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/brig) +"bVt" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/door/airlock/glass_security{ + name = "Warden's Office"; + req_access_txt = "3" + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bVu" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bVv" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/button/door{ + id = "brigwindows"; + name = "Cell Window Control"; + pixel_x = -32; + pixel_y = -26; + req_access_txt = "63" + }, +/obj/machinery/button/door{ + id = "brigfront"; + name = "Brig Access Control"; + pixel_x = -26; + pixel_y = -36; + req_access_txt = "63" + }, +/obj/machinery/button/door{ + id = "brigprison"; + name = "Prison Lockdown"; + pixel_x = -38; + pixel_y = -36; + req_access_txt = "63" + }, +/obj/effect/landmark/start/warden, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/security/warden) +"bVw" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/warden) +"bVx" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/security{ + name = "Armoury"; + req_access_txt = "3" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"bVy" = ( +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"bVz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"bVA" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"bVB" = ( +/obj/structure/closet/secure_closet/lethalshots, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"bVC" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 20 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "MiniSat APC"; + areastring = "/area/ai_monitored/turret_protected/aisat_interior"; + pixel_y = -27 + }, +/obj/structure/cable/white, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/black, +/area/ai_monitored/turret_protected/aisat_interior) +"bVD" = ( +/obj/machinery/recharge_station, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/black, +/area/ai_monitored/turret_protected/aisat_interior) +"bVE" = ( +/obj/machinery/computer/monitor, +/obj/machinery/light, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "AI Intercom"; + pixel_y = -26 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/black, +/area/ai_monitored/turret_protected/aisat_interior) +"bVF" = ( +/obj/machinery/recharge_station, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/black, +/area/ai_monitored/turret_protected/aisat_interior) +"bVG" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/electrical, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/black, +/area/ai_monitored/turret_protected/aisat_interior) +"bVH" = ( +/obj/structure/cable/white, +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/light, +/turf/open/floor/plasteel/vault, +/area/ai_monitored/turret_protected/aisat_interior) +"bVI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault, +/area/ai_monitored/turret_protected/aisat_interior) +"bVJ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bVK" = ( +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/ai_upload"; + icon_state = "control_stun"; + name = "AI Upload turret control"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault, +/area/ai_monitored/turret_protected/aisat_interior) +"bVL" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/light, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/vault, +/area/ai_monitored/turret_protected/aisat_interior) +"bVM" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/porta_turret/ai, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bVN" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/item/pen, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bVO" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/toy/figure/borg, +/obj/machinery/light, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "AI Intercom"; + pixel_y = -26 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bVP" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder/yellow, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/obj/item/device/aicard, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bVR" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/curved{ + icon_state = "curved0"; + dir = 4 + }, +/turf/open/space, +/area/space) +"bVS" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/curved/flipped{ + icon_state = "curved1"; + dir = 8 + }, +/turf/open/space, +/area/space) +"bVT" = ( +/turf/closed/wall/r_wall, +/area/engine/engineering) +"bVU" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/fire, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bVV" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bVW" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bVX" = ( +/obj/structure/table/reinforced, +/obj/item/storage/fancy/donut_box, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bVY" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/engine/engineering) +"bVZ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Access"; + req_access_txt = "10" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bWa" = ( +/obj/structure/sign/radiation, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/engine/engineering) +"bWb" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Security Post - Engineering"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bWc" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"bWd" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bWe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/yellow/side, +/area/hallway/primary/port) +"bWf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/yellow/corner, +/area/hallway/primary/port) +"bWg" = ( +/turf/closed/wall, +/area/maintenance/port) +"bWh" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"bWi" = ( +/turf/closed/wall, +/area/library) +"bWj" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/library) +"bWk" = ( +/obj/machinery/door/airlock/glass{ + name = "Library Access" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/library) +"bWl" = ( +/obj/machinery/door/airlock/glass{ + name = "Library Access" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/library) +"bWm" = ( +/obj/structure/sign/directions/evac{ + pixel_y = -8 + }, +/obj/structure/sign/directions/medical{ + dir = 2 + }, +/obj/structure/sign/directions/security{ + dir = 2; + pixel_y = 8 + }, +/turf/closed/wall, +/area/library) +"bWn" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bWo" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hopblast"; + name = "HoP Blast door" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hop) +"bWp" = ( +/obj/machinery/computer/card, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/crew_quarters/heads/hop) +"bWq" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bWr" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hop) +"bWs" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hop) +"bWt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hop) +"bWu" = ( +/obj/machinery/pdapainter, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bWv" = ( +/obj/machinery/telecomms/bus/preset_one, +/turf/open/floor/plasteel/whiteblue/side/telecomms{ + dir = 10 + }, +/area/tcommsat/server) +"bWw" = ( +/obj/machinery/telecomms/processor/preset_one, +/turf/open/floor/plasteel/whitepurple/side/telecomms{ + dir = 6 + }, +/area/tcommsat/server) +"bWx" = ( +/turf/open/floor/plasteel/vault/telecomms{ + dir = 5 + }, +/area/tcommsat/server) +"bWy" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 5 + }, +/area/tcommsat/server) +"bWz" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 5 + }, +/area/tcommsat/server) +"bWA" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 5 + }, +/area/tcommsat/server) +"bWB" = ( +/obj/machinery/telecomms/processor/preset_three, +/turf/open/floor/plasteel/darkblue/side/telecomms{ + dir = 10 + }, +/area/tcommsat/server) +"bWC" = ( +/obj/machinery/telecomms/bus/preset_three, +/turf/open/floor/plasteel/darkred/side/telecomms{ + dir = 6 + }, +/area/tcommsat/server) +"bWD" = ( +/obj/machinery/photocopier, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bWE" = ( +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = 26 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bWF" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bWG" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/suit_storage_unit/captain, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/captain/private) +"bWH" = ( +/obj/structure/closet/secure_closet/captains, +/obj/item/clothing/suit/armor/vest/capcarapace, +/obj/item/clothing/head/caphat, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/captain/private) +"bWI" = ( +/turf/closed/wall, +/area/crew_quarters/heads/captain/private) +"bWJ" = ( +/obj/machinery/door/airlock/silver{ + name = "Bathroom" + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/captain/private) +"bWK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/crew_quarters/heads/captain/private) +"bWL" = ( +/obj/structure/sign/directions/evac{ + pixel_y = -8 + }, +/obj/structure/sign/directions/medical{ + dir = 2 + }, +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = 8 + }, +/turf/closed/wall, +/area/security/courtroom) +"bWM" = ( +/turf/closed/wall, +/area/security/courtroom) +"bWN" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/security/courtroom) +"bWO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Courtroom" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"bWP" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/security/courtroom) +"bWQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Courtroom"; + req_access_txt = "42" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/courtroom) +"bWR" = ( +/turf/closed/wall, +/area/lawoffice) +"bWS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lawyerprivacy"; + name = "Lawyer's Privacy Shutter" + }, +/turf/open/floor/plating, +/area/lawoffice) +"bWT" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock{ + name = "Law Office"; + req_access_txt = "38" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/lawoffice) +"bWU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lawyerprivacy"; + name = "Lawyer's Privacy Shutter" + }, +/turf/open/floor/plating, +/area/lawoffice) +"bWV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/red/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bWW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side, +/area/hallway/primary/starboard) +"bWX" = ( +/obj/machinery/flasher{ + id = "brigflashdoor"; + pixel_x = 26; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/red/corner, +/area/hallway/primary/starboard) +"bWY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + cyclelinkeddir = 4; + name = "Brig"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bWZ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: BLAST DOORS"; + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bXa" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigfront"; + name = "Brig Blast door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/brig) +"bXb" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"bXc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/red/corner, +/area/security/brig) +"bXd" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/warden) +"bXe" = ( +/obj/structure/table/reinforced, +/obj/machinery/light_switch{ + pixel_x = -38; + pixel_y = -26 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = -26; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/red/side, +/area/security/warden) +"bXf" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side, +/area/security/warden) +"bXg" = ( +/obj/structure/closet/secure_closet/warden, +/obj/item/clothing/under/rank/warden/grey, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/warden) +"bXh" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ai_monitored/security/armory) +"bXi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"bXj" = ( +/obj/machinery/button/door{ + id = "armouryaccess"; + name = "Armoury Access"; + pixel_x = -26; + pixel_y = -26; + req_access_txt = "3" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side, +/area/ai_monitored/security/armory) +"bXk" = ( +/obj/structure/chair/office/dark, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"bXl" = ( +/obj/structure/cable/white, +/obj/machinery/power/apc{ + dir = 2; + name = "Armoury APC"; + areastring = "/area/ai_monitored/security/armory"; + pixel_y = -26 + }, +/obj/machinery/camera{ + c_tag = "Armory - Interior"; + dir = 1; + name = "security camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"bXm" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 32 + }, +/obj/structure/table/reinforced, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/device/flashlight/seclite, +/obj/item/device/flashlight/seclite, +/obj/item/device/flashlight/seclite, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"bXn" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + name = "MiniSat Upload"; + req_access_txt = "16" + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = -26 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bXo" = ( +/obj/structure/grille, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"bXp" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/grille, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"bXq" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/grille, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"bXr" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/grille, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"bXs" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/grille, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"bXt" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/grille, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"bXu" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/grille, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"bXv" = ( +/obj/structure/closet/emcloset/anchored, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bXw" = ( +/obj/structure/sign/vacuum, +/turf/closed/wall, +/area/engine/engineering) +"bXx" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bXy" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bXz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bXA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bXB" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_switch{ + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Fore"; + dir = 2; + name = "engineering camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bXC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bXD" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/sortjunction{ + name = "Engineering Junction"; + sortType = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bXE" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bXF" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bXG" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bXH" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/engineering) +"bXI" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/power/smes/engineering{ + charge = 2e+006 + }, +/turf/open/floor/circuit/green, +/area/engine/engineering) +"bXJ" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/machinery/power/smes/engineering{ + charge = 2e+006 + }, +/turf/open/floor/circuit/green, +/area/engine/engineering) +"bXK" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"bXL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/neutral/side{ + dir = 9 + }, +/area/maintenance/port) +"bXM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bXN" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Port Maintenance APC"; + areastring = "/area/maintenance/port"; + pixel_x = 26 + }, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bXO" = ( +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole, +/obj/machinery/light_switch{ + pixel_y = 26 + }, +/turf/open/floor/plasteel/black, +/area/library) +"bXP" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library) +"bXQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/grimy, +/area/library) +"bXR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/grimy, +/area/library) +"bXS" = ( +/turf/open/floor/plasteel/black, +/area/library) +"bXT" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library) +"bXU" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = -32 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/turf/open/floor/plasteel/black, +/area/library) +"bXV" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library) +"bXW" = ( +/obj/machinery/computer/libraryconsole, +/obj/structure/table/wood, +/turf/open/floor/plasteel/black, +/area/library) +"bXX" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bXY" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"bXZ" = ( +/obj/effect/landmark/lightsout, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/blue/corner, +/area/hallway/primary/central) +"bYa" = ( +/obj/machinery/status_display, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hop) +"bYb" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/crew_quarters/heads/hop) +"bYc" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hop) +"bYd" = ( +/obj/structure/table/wood, +/obj/machinery/light, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bYe" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/camera{ + c_tag = "Telecomms - Chamber Port"; + dir = 4; + name = "telecomms camera"; + network = list("SS13","tcomm") + }, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 8 + }, +/area/tcommsat/server) +"bYf" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 10 + }, +/area/tcommsat/server) +"bYg" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 2; + external_pressure_bound = 140; + name = "server vent"; + pressure_checks = 0 + }, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 5 + }, +/area/tcommsat/server) +"bYh" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 5 + }, +/area/tcommsat/server) +"bYi" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 5 + }, +/area/tcommsat/server) +"bYj" = ( +/obj/structure/table/glass, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/item/folder/yellow, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"bYl" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 2; + external_pressure_bound = 120; + name = "server vent" + }, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 5 + }, +/area/tcommsat/server) +"bYm" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 6 + }, +/area/tcommsat/server) +"bYn" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 8 + }, +/area/tcommsat/server) +"bYo" = ( +/obj/structure/table/wood, +/obj/item/pinpointer/nuke, +/obj/item/disk/nuclear, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain/private) +"bYp" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain/private) +"bYq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bYr" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bYs" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/card/id/captains_spare, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain/private) +"bYt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain/private) +"bYu" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain/private) +"bYv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/central) +"bYw" = ( +/obj/machinery/vending/snack/random, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault, +/area/security/courtroom) +"bYx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault, +/area/security/courtroom) +"bYy" = ( +/turf/open/floor/plasteel/vault, +/area/security/courtroom) +"bYz" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/vault, +/area/security/courtroom) +"bYB" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/courtroom) +"bYC" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/security/courtroom) +"bYD" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/security/courtroom) +"bYE" = ( +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/security/courtroom) +"bYF" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/security/courtroom) +"bYG" = ( +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = 26 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/security/courtroom) +"bYH" = ( +/obj/structure/closet/secure_closet/courtroom, +/turf/open/floor/plasteel/neutral/side{ + dir = 5 + }, +/area/security/courtroom) +"bYI" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/device/taperecorder{ + pixel_x = 3 + }, +/obj/item/clothing/glasses/sunglasses, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/machinery/button/door{ + id = "lawyerprivacy"; + name = "Lawyer's Privacy Control"; + pixel_y = 24; + req_access_txt = "0" + }, +/turf/open/floor/wood, +/area/lawoffice) +"bYJ" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/toy/figure/lawyer, +/turf/open/floor/wood, +/area/lawoffice) +"bYK" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/lawoffice) +"bYL" = ( +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/lawoffice) +"bYM" = ( +/obj/structure/closet/lawcloset, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/wood, +/area/lawoffice) +"bYN" = ( +/turf/closed/wall/r_wall, +/area/lawoffice) +"bYO" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "brigwindows"; + name = "Brig Front Blast door" + }, +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/door/window/brigdoor/southright{ + dir = 2; + name = "Security Desk"; + req_access_txt = "63" + }, +/obj/machinery/door/window/northright{ + name = "Security Desk" + }, +/turf/open/floor/plasteel/red, +/area/security/brig) +"bYP" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 8 + }, +/area/security/brig) +"bYQ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/security/brig) +"bYR" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26; + pixel_y = -7 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Security - Brig Aft"; + dir = 8; + name = "security camera" + }, +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/security/brig) +"bYT" = ( +/obj/machinery/door/poddoor{ + id = "armouryaccess"; + name = "Armoury Access" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"bYU" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/northright{ + name = "Armoury Desk"; + req_access_txt = "3" + }, +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/door/window/southright{ + name = "Armoury Desk" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"bYV" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload) +"bYW" = ( +/obj/machinery/ai_status_display, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload) +"bYX" = ( +/obj/machinery/porta_turret/ai, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/ai_upload) +"bYY" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/vault, +/area/ai_monitored/turret_protected/ai_upload) +"bYZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault, +/area/ai_monitored/turret_protected/ai_upload) +"bZa" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/ai_upload) +"bZb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera/motion{ + c_tag = "AI - Upload"; + name = "motion-sensitive ai camera"; + network = list("Sat") + }, +/turf/open/floor/plasteel/vault, +/area/ai_monitored/turret_protected/ai_upload) +"bZd" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/porta_turret/ai, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/ai_upload) +"bZe" = ( +/obj/structure/grille, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space) +"bZf" = ( +/turf/open/floor/plating/airless, +/area/engine/engineering) +"bZg" = ( +/obj/structure/cable/white, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"bZh" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/grille, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"bZi" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/grille, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"bZj" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"bZk" = ( +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 4; + name = "External Containment Access"; + req_access_txt = "10; 13" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/fans/tiny, +/obj/effect/turf_decal/delivery, +/obj/structure/barricade/wooden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZm" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral, +/area/engine/engineering) +"bZo" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/yellow, +/area/engine/engineering) +"bZp" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral, +/area/engine/engineering) +"bZq" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/yellow, +/area/engine/engineering) +"bZr" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/yellow, +/area/engine/engineering) +"bZs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral, +/area/engine/engineering) +"bZt" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/yellow, +/area/engine/engineering) +"bZu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/engineering) +"bZv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZw" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/door/airlock/glass_engineering{ + name = "Power Monitoring"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZx" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZy" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = 32 + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel/neutral/side{ + dir = 9 + }, +/area/maintenance/port) +"bZB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port) +"bZC" = ( +/turf/open/floor/plating, +/area/maintenance/port) +"bZD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"bZE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/maintenance/port) +"bZF" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port) +"bZG" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library) +"bZH" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/librarian, +/turf/open/floor/plasteel/black, +/area/library) +"bZI" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"bZJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library) +"bZK" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/obj/machinery/camera{ + c_tag = "Library - Fore"; + dir = 8; + name = "library camera" + }, +/turf/open/floor/plasteel/black, +/area/library) +"bZL" = ( +/obj/machinery/photocopier, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library) +"bZM" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/black, +/area/library) +"bZN" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library) +"bZO" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/blue/corner, +/area/hallway/primary/central) +"bZP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/primary/central) +"bZQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bZR" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/hop) +"bZS" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hop) +"bZT" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "HoP Office APC"; + areastring = "/area/crew_quarters/heads/hop"; + pixel_x = 26 + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Bridge - Head of Personnel's Office"; + dir = 8; + name = "command camera" + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hop) +"bZU" = ( +/turf/closed/wall, +/area/crew_quarters/heads/hop) +"bZV" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Telecomms Server Room APC"; + areastring = "/area/tcommsat/server"; + pixel_x = -26 + }, +/obj/structure/cable/white, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 8 + }, +/area/tcommsat/server) +"bZW" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 10 + }, +/area/tcommsat/server) +"bZX" = ( +/obj/machinery/telecomms/broadcaster/preset_left, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 5 + }, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"bZY" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 5 + }, +/area/tcommsat/server) +"bZZ" = ( +/obj/machinery/message_server, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/general/hidden{ + dir = 1 + }, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"caa" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 5 + }, +/area/tcommsat/server) +"cab" = ( +/obj/machinery/telecomms/hub/preset, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 4 + }, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cad" = ( +/obj/machinery/blackbox_recorder, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/general/hidden{ + dir = 1 + }, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cae" = ( +/obj/machinery/telecomms/broadcaster/preset_right, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 9 + }, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"caf" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 6 + }, +/area/tcommsat/server) +"cag" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable/white, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 8 + }, +/area/tcommsat/server) +"cah" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/pen/fourcolor, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain/private) +"cai" = ( +/obj/structure/chair/comfy/brown{ + color = "#c45c57"; + dir = 8; + icon_state = "comfychair" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/effect/landmark/start/captain, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain/private) +"caj" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"cak" = ( +/obj/machinery/holopad, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"cal" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"cam" = ( +/obj/machinery/door/window/brigdoor/westleft{ + name = "Captain's Bedroom"; + req_access_txt = "20" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain/private) +"can" = ( +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"cao" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/obj/effect/landmark/start/captain, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"cap" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"caq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"car" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"cas" = ( +/obj/structure/chair{ + dir = 2; + name = "Prosecution" + }, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/courtroom) +"cat" = ( +/obj/structure/chair{ + dir = 2; + name = "Prosecution" + }, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/courtroom) +"cau" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/security/courtroom) +"cav" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/security/courtroom) +"caw" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/security/courtroom) +"cax" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/security/courtroom) +"cay" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + name = "Law Office"; + req_access_txt = "38" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/lawoffice) +"caz" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lawoffice) +"caA" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/grimy, +/area/lawoffice) +"caB" = ( +/obj/machinery/holopad, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/grimy, +/area/lawoffice) +"caC" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/landmark/start/lawyer, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/lawoffice) +"caD" = ( +/obj/structure/filingcabinet/employment, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/wood, +/area/lawoffice) +"caE" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/brig) +"caF" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/security_officer, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/brig) +"caG" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/button/flasher{ + id = "gulagshuttleflasher"; + name = "Flash Control"; + pixel_x = 26; + pixel_y = 7; + req_access_txt = "63" + }, +/obj/machinery/button/door{ + id = "brigfront"; + name = "Brig Access Control"; + pixel_x = 26; + pixel_y = -7; + req_access_txt = "63" + }, +/obj/machinery/button/door{ + id = "brigwindows"; + name = "Cell Window Control"; + pixel_x = 38; + pixel_y = -7; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/brig) +"caH" = ( +/obj/structure/chair, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/brig) +"caI" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/brig) +"caJ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/security/brig) +"caK" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/effect/landmark/lightsout, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/security/brig) +"caL" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_security{ + name = "Gear Room"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"caM" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/brig) +"caN" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/brig) +"caO" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/brig) +"caP" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/highcap/ten_k{ + dir = 1; + name = "Brig APC"; + areastring = "/area/security/brig"; + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Security - Gear Room"; + dir = 2; + name = "security camera" + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/brig) +"caQ" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/brig) +"caR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/brig) +"caS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/brig) +"caT" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/brig) +"caU" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/red, +/area/security/brig) +"caV" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + dir = 4; + name = "Core Modules"; + req_access_txt = "20" + }, +/obj/item/aiModule/core/full/paladin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/aiModule/core/full/asimov, +/obj/item/aiModule/core/full/corp{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/ai_upload) +"caW" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai_upload) +"caX" = ( +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai_upload) +"caY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai_upload) +"caZ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai_upload) +"cba" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai_upload) +"cbb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai_upload) +"cbc" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/westright{ + name = "Core Modules"; + req_access_txt = "20" + }, +/obj/item/aiModule/core/full/antimov{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/aiModule/supplied/oxygen, +/obj/item/aiModule/supplied/protectStation{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/sign/electricshock{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/ai_upload) +"cbd" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"cbe" = ( +/obj/machinery/camera/emp_proof{ + c_tag = "Containment - Fore Starboard"; + dir = 8; + network = list("Singularity") + }, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"cbf" = ( +/obj/structure/sign/vacuum, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cbg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbh" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/engine/engineering) +"cbk" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbo" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cbp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbq" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/start/station_engineer, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbr" = ( +/obj/structure/sign/electricshock{ + pixel_x = 32 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26; + pixel_y = -26 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbs" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cbt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/maintenance/port) +"cbu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"cbv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/port) +"cbw" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cbx" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/item/twohanded/required/kirbyplants/random, +/obj/structure/sign/kiddieplaque/library{ + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/library) +"cby" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"cbz" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"cbA" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"cbB" = ( +/obj/structure/sign/nosmoking_2, +/turf/closed/wall, +/area/library) +"cbC" = ( +/obj/machinery/door/morgue{ + name = "Private Study" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library) +"cbD" = ( +/obj/structure/sign/kiddieplaque/library{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"cbE" = ( +/obj/structure/sign/electricshock, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hop) +"cbF" = ( +/obj/machinery/computer/cargo/request, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/crew_quarters/heads/hop) +"cbG" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hop) +"cbH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hop) +"cbI" = ( +/obj/structure/table/wood, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/storage/lockbox/loyalty, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"cbJ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 10 + }, +/area/tcommsat/server) +"cbK" = ( +/turf/open/floor/plasteel/vault/telecomms{ + dir = 10 + }, +/area/tcommsat/server) +"cbL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 5 + }, +/area/tcommsat/server) +"cbM" = ( +/obj/machinery/ntnet_relay, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cbN" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 6 + }, +/area/tcommsat/server) +"cbO" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 6 + }, +/area/tcommsat/server) +"cbP" = ( +/obj/machinery/camera{ + c_tag = "Telecomms - Chamber Starboard"; + dir = 8; + name = "telecomms camera"; + network = list("SS13","tcomm") + }, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 8 + }, +/area/tcommsat/server) +"cbQ" = ( +/obj/structure/table/wood, +/obj/item/device/radio/intercom{ + dir = 8; + freerange = 1; + name = "Captain's Intercom"; + pixel_x = -26 + }, +/obj/item/reagent_containers/food/drinks/flask/gold, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/item/razor, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain/private) +"cbR" = ( +/obj/structure/table/wood, +/obj/machinery/computer/security/wooden_tv, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain/private) +"cbS" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"cbT" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"cbU" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/camera{ + c_tag = "Bridge - Captain's Quarters"; + dir = 1; + name = "command camera" + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"cbV" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/power/apc/highcap/ten_k{ + dir = 2; + name = "Captain's Quarters APC"; + areastring = "/area/crew_quarters/heads/captain/private"; + pixel_y = -24 + }, +/obj/structure/cable/white, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain/private) +"cbW" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"cbX" = ( +/obj/structure/dresser, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"cbY" = ( +/obj/structure/table, +/obj/machinery/ai_status_display{ + pixel_x = -32 + }, +/obj/item/storage/box/donkpockets, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"cbZ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"cca" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"ccb" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"ccc" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/pen, +/turf/open/floor/plasteel/neutral/side{ + dir = 9 + }, +/area/security/courtroom) +"ccd" = ( +/obj/structure/table/wood, +/obj/item/device/radio/intercom{ + name = "Station Intercom" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/security/courtroom) +"cce" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/security/courtroom) +"ccf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/security/courtroom) +"ccg" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/courtroom) +"cch" = ( +/obj/structure/chair{ + dir = 8; + name = "Judge" + }, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/security/courtroom) +"cci" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/lawoffice) +"ccj" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lawoffice) +"cck" = ( +/obj/structure/table/wood, +/obj/item/folder/yellow, +/obj/item/clothing/glasses/sunglasses/big{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/glasses/sunglasses, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/lawoffice) +"ccl" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/lawoffice) +"ccm" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/grimy, +/area/lawoffice) +"ccn" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/wood, +/area/lawoffice) +"cco" = ( +/obj/machinery/newscaster/security_unit{ + pixel_x = -32 + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/computer/security, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/brig) +"ccp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral, +/area/security/brig) +"ccq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/brig) +"ccr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/security/brig) +"ccs" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"cct" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/window/brigdoor/security/holding/westright{ + name = "Holding Cell" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ccu" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/brig) +"ccv" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/neutral, +/area/security/brig) +"ccw" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/red/corner, +/area/security/brig) +"ccx" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/brig) +"ccy" = ( +/obj/structure/table/reinforced, +/obj/item/restraints/handcuffs, +/obj/item/device/assembly/flash/handheld, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/brig) +"ccz" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -32; + pixel_y = -64 + }, +/obj/effect/landmark/start/security_officer, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/security/brig) +"ccA" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/effect/landmark/start/security_officer, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/security/brig) +"ccB" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel/neutral, +/area/security/brig) +"ccC" = ( +/obj/machinery/holopad, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/brig) +"ccD" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/security_officer, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/security/brig) +"ccE" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral, +/area/security/brig) +"ccF" = ( +/obj/machinery/newscaster/security_unit{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/brig) +"ccG" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space) +"ccH" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "aiuploadwindow"; + name = "AI Upload Lockdown Door" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai_upload) +"ccI" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/westright{ + dir = 4; + name = "Core Modules"; + req_access_txt = "20" + }, +/obj/structure/window/reinforced, +/obj/item/aiModule/core/freeformcore{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/aiModule/core/full/custom, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/ai_upload) +"ccJ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai_upload) +"ccK" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai_upload) +"ccL" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai_upload) +"ccM" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai_upload) +"ccN" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai_upload) +"ccO" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai_upload) +"ccP" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + dir = 8; + name = "Core Modules"; + req_access_txt = "20" + }, +/obj/structure/window/reinforced, +/obj/item/aiModule/core/full/tyrant{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/aiModule/zeroth/oneHuman, +/obj/item/aiModule/reset/purge{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/ai_upload) +"ccQ" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "aiuploadwindow"; + name = "AI Upload Lockdown Door" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai_upload) +"ccR" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space) +"ccS" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/space, +/area/space) +"ccT" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/engine/engineering) +"ccU" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "engpa"; + name = "Engineering Chamber Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"ccV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ccW" = ( +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/engineering) +"ccX" = ( +/turf/open/floor/plasteel/yellow/side{ + dir = 5 + }, +/area/engine/engineering) +"ccY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ccZ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/yellow, +/area/engine/engineering) +"cda" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cdb" = ( +/turf/open/floor/plasteel/yellow/side{ + dir = 9 + }, +/area/engine/engineering) +"cdc" = ( +/obj/machinery/vending/engivend, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cdd" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cde" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = -32 + }, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/machinery/camera{ + c_tag = "Engineering - Power Monitoring"; + dir = 1; + name = "engineering camera" + }, +/obj/machinery/modular_computer/console/preset/engineering, +/turf/open/floor/plasteel/vault, +/area/engine/engineering) +"cdf" = ( +/obj/machinery/light, +/obj/machinery/computer/station_alert, +/turf/open/floor/plasteel/vault, +/area/engine/engineering) +"cdg" = ( +/obj/machinery/computer/atmos_alert, +/obj/structure/sign/nosmoking_1{ + pixel_x = 28; + pixel_y = -28 + }, +/turf/open/floor/plasteel/vault, +/area/engine/engineering) +"cdh" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"cdi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cdj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port) +"cdk" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/port) +"cdl" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/wood, +/area/library) +"cdm" = ( +/obj/structure/chair/office/dark, +/turf/open/floor/wood, +/area/library) +"cdn" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/wood, +/area/library) +"cdo" = ( +/obj/machinery/bookbinder, +/turf/open/floor/wood, +/area/library) +"cdp" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/bookcase/random, +/turf/open/floor/wood, +/area/library) +"cdq" = ( +/obj/structure/chair/comfy/brown, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood, +/area/library) +"cdr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/library) +"cds" = ( +/obj/machinery/photocopier, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/library) +"cdt" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/bookcase/manuals/research_and_development, +/obj/machinery/camera{ + c_tag = "Library"; + dir = 2; + name = "library camera" + }, +/turf/open/floor/wood, +/area/library) +"cdu" = ( +/obj/structure/chair/comfy/brown, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/turf/open/floor/wood, +/area/library) +"cdv" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/wood, +/area/library) +"cdw" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopline"; + name = "Queue Shutters" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/loadingarea{ + dir = 4 + }, +/area/hallway/primary/central) +"cdx" = ( +/obj/machinery/computer/security/mining, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/crew_quarters/heads/hop) +"cdy" = ( +/obj/structure/chair/office/dark, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/head_of_personnel, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"cdz" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"cdA" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cdB" = ( +/obj/machinery/telecomms/bus/preset_four, +/turf/open/floor/plasteel/brown/telecomms{ + dir = 9 + }, +/area/tcommsat/server) +"cdC" = ( +/obj/machinery/telecomms/processor/preset_four, +/turf/open/floor/plasteel/green/side/telecomms{ + dir = 5 + }, +/area/tcommsat/server) +"cdD" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 5 + }, +/area/tcommsat/server) +"cdF" = ( +/obj/machinery/light/small, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 5 + }, +/area/tcommsat/server) +"cdG" = ( +/obj/machinery/telecomms/processor/preset_two, +/turf/open/floor/plasteel/brown/telecomms{ + dir = 9 + }, +/area/tcommsat/server) +"cdH" = ( +/obj/machinery/telecomms/bus/preset_two, +/turf/open/floor/plasteel/neutral/side/telecomms{ + dir = 5 + }, +/area/tcommsat/server) +"cdI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Emergency Escape"; + req_access = null; + req_access_txt = "20" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/captain/private) +"cdJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/central) +"cdK" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"cdL" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"cdM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/courtroom) +"cdN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/security/courtroom) +"cdO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/security/courtroom) +"cdP" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/security/courtroom) +"cdQ" = ( +/obj/structure/table/wood, +/obj/item/gavelblock, +/obj/item/gavelhammer, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/blue/side{ + dir = 9 + }, +/area/security/courtroom) +"cdR" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/blue/side{ + dir = 1 + }, +/area/security/courtroom) +"cdS" = ( +/turf/open/floor/plasteel/blue/side{ + dir = 1 + }, +/area/security/courtroom) +"cdT" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/structure/cable/white, +/obj/machinery/power/apc{ + dir = 8; + name = "Law Office APC"; + areastring = "/area/lawoffice"; + pixel_x = -26; + pixel_y = 3 + }, +/obj/effect/landmark/start/lawyer, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lawoffice) +"cdU" = ( +/obj/structure/table/wood, +/obj/machinery/requests_console{ + department = "Law Office"; + departmentType = 0; + name = "'Law Office RC"; + pixel_y = -64 + }, +/obj/item/folder/blue{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder/red, +/obj/item/stamp/law, +/turf/open/floor/plasteel/grimy, +/area/lawoffice) +"cdV" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/grimy, +/area/lawoffice) +"cdW" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/grimy, +/area/lawoffice) +"cdX" = ( +/obj/machinery/photocopier, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/camera{ + c_tag = "Lawyer's Office"; + dir = 8; + name = "security camera" + }, +/turf/open/floor/wood, +/area/lawoffice) +"cdZ" = ( +/obj/structure/sign/nanotrasen{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Security - Brig Desk"; + dir = 1; + name = "security camera" + }, +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/toy/figure/secofficer, +/turf/open/floor/plasteel/red/side, +/area/security/brig) +"cea" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/brig) +"ceb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/brig) +"cec" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner, +/area/security/brig) +"ced" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side, +/area/security/brig) +"cee" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side, +/area/security/brig) +"cef" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side, +/area/security/brig) +"ceg" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/brig) +"ceh" = ( +/obj/structure/table/reinforced, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/item/device/radio{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/device/radio{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/device/radio, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/brig) +"cei" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/brig) +"cek" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/brig) +"cel" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/machinery/light, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/red/side, +/area/security/brig) +"cem" = ( +/obj/machinery/vending/security, +/obj/structure/sign/nanotrasen{ + pixel_y = -32 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/red/side, +/area/security/brig) +"cen" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/red/side, +/area/security/brig) +"ceo" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/brig) +"cep" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "aiuploadwindow"; + name = "AI Upload Lockdown Door" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai_upload) +"ceq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai_upload) +"cer" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai_upload) +"ces" = ( +/obj/machinery/computer/upload/ai, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai_upload) +"cet" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai_upload) +"ceu" = ( +/obj/machinery/computer/upload/borg, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai_upload) +"cev" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai_upload) +"cew" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai_upload) +"cex" = ( +/obj/structure/lattice, +/obj/machinery/camera/emp_proof{ + c_tag = "Containment - Fore Port"; + dir = 4; + network = list("Singularity") + }, +/turf/open/space, +/area/space) +"cey" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/space, +/area/space) +"cez" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/space, +/area/space) +"ceA" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/space, +/area/space) +"ceB" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/space, +/area/space) +"ceC" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/engineering) +"ceD" = ( +/obj/machinery/power/rad_collector/anchored, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"ceE" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "engpa"; + name = "Engineering Chamber Shutters" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/engine/engineering) +"ceF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ceG" = ( +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel/neutral, +/area/engine/engineering) +"ceH" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/engineering_guide{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/book/manual/engineering_particle_accelerator, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ceI" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/book/manual/engineering_singularity_safety, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ceJ" = ( +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel/yellow/side{ + dir = 4 + }, +/area/engine/engineering) +"ceK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/engine/engineering) +"ceL" = ( +/turf/open/floor/plasteel/yellow/side{ + dir = 8 + }, +/area/engine/engineering) +"ceM" = ( +/turf/open/floor/plasteel/neutral, +/area/engine/engineering) +"ceN" = ( +/obj/machinery/vending/tool, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ceO" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"ceP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port) +"ceQ" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/library) +"ceR" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/turf/open/floor/wood, +/area/library) +"ceS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"ceT" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/grimy, +/area/library) +"ceU" = ( +/obj/machinery/door/airlock/glass{ + name = "Library Access" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/library) +"ceV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"ceW" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Central Hallway - Head of Personnel Line"; + dir = 8; + name = "hallway camera" + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/central) +"ceY" = ( +/obj/structure/table/wood, +/obj/machinery/keycard_auth{ + pixel_x = -26 + }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/hop) +"ceZ" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/item/folder/blue, +/obj/item/pen, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"cfa" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hop) +"cfb" = ( +/obj/machinery/holopad, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hop) +"cfd" = ( +/obj/machinery/telecomms/server/presets/supply, +/turf/open/floor/plasteel/brown/telecomms{ + dir = 9 + }, +/area/tcommsat/server) +"cfe" = ( +/obj/machinery/telecomms/server/presets/service, +/turf/open/floor/plasteel/green/side/telecomms{ + dir = 6 + }, +/area/tcommsat/server) +"cff" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/command{ + cyclelinkeddir = 2; + name = "Telecomms Server Room"; + req_access = null; + req_access_txt = "61" + }, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 5 + }, +/area/tcommsat/server) +"cfg" = ( +/obj/machinery/telecomms/server/presets/engineering, +/turf/open/floor/plasteel/brown/telecomms{ + dir = 9 + }, +/area/tcommsat/server) +"cfh" = ( +/obj/machinery/telecomms/server/presets/common, +/turf/open/floor/plasteel/neutral/side/telecomms{ + dir = 5 + }, +/area/tcommsat/server) +"cfi" = ( +/turf/closed/wall/r_wall, +/area/teleporter) +"cfj" = ( +/obj/machinery/shieldwallgen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/teleporter) +"cfk" = ( +/turf/closed/wall, +/area/teleporter) +"cfl" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/camera/motion{ + c_tag = "Bridge - Captain's Emergency Escape"; + dir = 4; + name = "command camera"; + network = list("SS13") + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/blue/side{ + dir = 9 + }, +/area/teleporter) +"cfm" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/teleporter) +"cfn" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/teleporter) +"cfo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/teleporter) +"cfp" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/blue/corner{ + dir = 4 + }, +/area/teleporter) +"cfq" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/central) +"cfr" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/courtroom) +"cfs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"cft" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"cfu" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"cfv" = ( +/obj/effect/landmark/lightsout, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"cfw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Courtroom"; + req_access_txt = "42" + }, +/obj/effect/turf_decal/bot, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/courtroom) +"cfx" = ( +/obj/item/device/radio/beacon, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/security/courtroom) +"cfy" = ( +/obj/machinery/holopad, +/obj/effect/landmark/start/lawyer, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/courtroom) +"cfz" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/security/courtroom) +"cfA" = ( +/obj/structure/table/wood, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = -32 + }, +/obj/item/folder/yellow{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder/blue, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/blue/side{ + dir = 8 + }, +/area/security/courtroom) +"cfB" = ( +/obj/structure/chair{ + dir = 8; + name = "Judge" + }, +/turf/open/floor/plasteel/neutral, +/area/security/courtroom) +"cfC" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/camera{ + c_tag = "Courtroom - Center"; + dir = 8; + name = "security camera" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/security/courtroom) +"cfD" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26 + }, +/turf/open/floor/wood, +/area/lawoffice) +"cfE" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/turf/open/floor/wood, +/area/lawoffice) +"cfG" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/lawoffice) +"cfH" = ( +/obj/structure/rack, +/obj/item/storage/briefcase{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/secure/briefcase, +/turf/open/floor/wood, +/area/lawoffice) +"cfI" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/security/brig) +"cfJ" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Shooting Range"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"cfK" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/security/brig) +"cfL" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"cfM" = ( +/obj/structure/table/reinforced, +/obj/item/aiModule/reset, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/ai_upload) +"cfN" = ( +/obj/machinery/status_display{ + pixel_x = -32; + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai_upload) +"cfO" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai_upload) +"cfP" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai_upload) +"cfQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai_upload) +"cfR" = ( +/obj/machinery/status_display{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai_upload) +"cfS" = ( +/obj/structure/table/reinforced, +/obj/item/aiModule/supplied/quarantine, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "AI Intercom"; + pixel_x = 28 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/ai_upload) +"cfT" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/space, +/area/space) +"cfU" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space) +"cfV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space) +"cfW" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space) +"cfX" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space) +"cfY" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "engpa"; + name = "Engineering Chamber Shutters" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/engine/engineering) +"cfZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cga" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/neutral, +/area/engine/engineering) +"cgb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral, +/area/engine/engineering) +"cgc" = ( +/turf/open/floor/plasteel/yellow/side{ + dir = 4 + }, +/area/engine/engineering) +"cgd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cge" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 8 + }, +/area/engine/engineering) +"cgf" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel/neutral, +/area/engine/engineering) +"cgg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Engine Room APC"; + areastring = "/area/engine/engineering"; + pixel_x = 26 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cgh" = ( +/obj/machinery/shieldgen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cgi" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"cgj" = ( +/obj/structure/rack, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cgk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cgl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/maintenance/port) +"cgm" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood, +/area/library) +"cgn" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"cgo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"cgp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"cgq" = ( +/obj/effect/landmark/lightsout, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"cgr" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"cgs" = ( +/obj/machinery/door/airlock/glass{ + name = "Library Access" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/library) +"cgt" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"cgu" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hop) +"cgv" = ( +/obj/structure/bed/dogbed/ian, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/simple_animal/pet/dog/corgi/Ian, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"cgw" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 8 + }, +/area/tcommsat/server) +"cgx" = ( +/obj/structure/sign/electricshock{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 8 + }, +/area/tcommsat/server) +"cgz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/teleporter) +"cgA" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Teleporter Maintenance"; + req_access_txt = "17" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/teleporter) +"cgB" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/securearea{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"cgC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/central) +"cgD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Courtroom" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"cgE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"cgF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"cgG" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"cgH" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"cgI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/courtroom) +"cgJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/security/courtroom) +"cgK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/security/courtroom) +"cgL" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/security/courtroom) +"cgM" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/blue/side{ + dir = 10 + }, +/area/security/courtroom) +"cgN" = ( +/obj/structure/table/wood, +/obj/item/storage/briefcase{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/secure/briefcase, +/turf/open/floor/plasteel/blue/side, +/area/security/courtroom) +"cgO" = ( +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/blue/side, +/area/security/courtroom) +"cgP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/lawoffice) +"cgQ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Law Office Maintenance"; + req_access_txt = "38" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cgR" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/maintenance/starboard) +"cgS" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cgT" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cgU" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/crowbar/red, +/obj/item/book/manual/wiki/security_space_law, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cgV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cgW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/maintenance/starboard) +"cgX" = ( +/turf/closed/wall, +/area/security/range) +"cgY" = ( +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/target, +/obj/item/target/syndicate, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/structure/closet/crate/secure{ + desc = "A secure crate containing various materials for building a customised test-site."; + name = "Test Site Materials Crate"; + req_access_txt = "63" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = 32 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch{ + pixel_x = -36 + }, +/turf/open/floor/plasteel, +/area/security/range) +"cgZ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/range) +"cha" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/range) +"chb" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/range) +"chc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/security/range) +"chd" = ( +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/range) +"che" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/security/range) +"chf" = ( +/turf/open/floor/plating, +/area/security/range) +"chg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/security/range) +"chh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/security/range) +"chi" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/security/range) +"chj" = ( +/obj/structure/table/reinforced, +/obj/item/aiModule/supplied/freeform, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/ai_upload) +"chk" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/flasher{ + pixel_x = -26; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai_upload) +"chl" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai_upload) +"chm" = ( +/obj/machinery/flasher{ + pixel_x = 26; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai_upload) +"chn" = ( +/obj/structure/table/reinforced, +/obj/item/aiModule/core/full/drone{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/aiModule/core/full/reporter, +/obj/item/aiModule/core/full/liveandletlive{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/ai_upload) +"cho" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space) +"chs" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space) +"cht" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "engpa"; + name = "Engineering Chamber Shutters" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/engine/engineering) +"chu" = ( +/obj/structure/rack, +/obj/item/crowbar, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/stack/cable_coil/white, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"chv" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/engineering) +"chw" = ( +/obj/structure/rack, +/obj/machinery/button/door{ + id = "engpa"; + name = "Engineering Chamber Shutters Control"; + pixel_y = -26; + req_access_txt = "11" + }, +/obj/item/clothing/gloves/color/black, +/obj/item/wrench, +/obj/item/clothing/glasses/meson/engine, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"chx" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"chy" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"chz" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/obj/item/storage/backpack/satchel/eng, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/engineering) +"chA" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/engineering) +"chC" = ( +/obj/machinery/shieldgen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"chD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/maintenance/port) +"chE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"chF" = ( +/obj/machinery/door/airlock/maintenance_hatch/abandoned{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"chG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port) +"chH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"chI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"chJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"chK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"chL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port) +"chM" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"chN" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"chO" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/grimy, +/area/library) +"chP" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"chQ" = ( +/turf/open/floor/wood, +/area/library) +"chR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/library) +"chS" = ( +/obj/machinery/holopad, +/turf/open/floor/wood, +/area/library) +"chU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/central) +"chV" = ( +/obj/structure/dresser, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hop) +"chW" = ( +/obj/structure/filingcabinet/medical, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hop) +"chX" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"chY" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hop) +"chZ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hop) +"cia" = ( +/obj/machinery/ai_status_display{ + pixel_x = 32 + }, +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"cib" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/tcommsat/server) +"cic" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + cyclelinkeddir = 1; + name = "Telecomms Server Room"; + req_access = null; + req_access_txt = "61" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tcommsat/server) +"cid" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/loadingarea, +/area/teleporter) +"cie" = ( +/turf/open/floor/plasteel/loadingarea, +/area/teleporter) +"cif" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/teleporter) +"cig" = ( +/obj/structure/table, +/obj/item/hand_tele, +/obj/machinery/power/apc/highcap/ten_k{ + dir = 1; + name = "Teleporter APC"; + areastring = "/area/teleporter"; + pixel_y = 28 + }, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/teleporter) +"cih" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/teleporter) +"cii" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/teleporter) +"cij" = ( +/obj/machinery/button/door{ + id = "teleporterhubshutters"; + name = "Teleporter Shutters"; + pixel_y = 26 + }, +/obj/machinery/bluespace_beacon, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"cik" = ( +/obj/machinery/teleport/hub, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/teleporter) +"cil" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "teleporterhubshutters"; + name = "Teleporter Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"cim" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"cin" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/central) +"cio" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"cip" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"ciq" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/pen, +/turf/open/floor/plasteel/neutral/side{ + dir = 10; + heat_capacity = 1e+006 + }, +/area/security/courtroom) +"cir" = ( +/obj/structure/table/wood, +/obj/item/device/radio/intercom{ + name = "Station Intercom" + }, +/turf/open/floor/plasteel/neutral/side, +/area/security/courtroom) +"cis" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral/side, +/area/security/courtroom) +"cit" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side, +/area/security/courtroom) +"ciu" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/pen, +/turf/open/floor/plasteel/green/side{ + dir = 8 + }, +/area/security/courtroom) +"civ" = ( +/obj/structure/chair{ + dir = 8; + name = "Judge" + }, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/neutral, +/area/security/courtroom) +"ciw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/effect/landmark/blobstart, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 9 + }, +/area/maintenance/starboard) +"cix" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/maintenance/starboard) +"ciy" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ciz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j1" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ciA" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"ciB" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ciC" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ciD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/mob/living/simple_animal/cockroach, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ciE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/maintenance/starboard) +"ciF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ciG" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ciH" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Security Maintenance"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"ciI" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/range) +"ciJ" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/security/range) +"ciK" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/range) +"ciL" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/window/brigdoor/westright{ + name = "Shooting Range"; + req_access_txt = "63" + }, +/turf/open/floor/plating, +/area/security/range) +"ciM" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/security/range) +"ciN" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/security/range) +"ciO" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/item/target/syndicate, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/range) +"ciP" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/range) +"ciQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "AI Satellite - Aft Port"; + dir = 8; + name = "ai camera"; + network = list("Sat"); + start_active = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"ciR" = ( +/obj/structure/cable/white, +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/power/apc{ + dir = 2; + name = "AI Upload Access APC"; + areastring = "/area/ai_monitored/turret_protected/ai_upload"; + pixel_y = -27 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai_upload) +"ciS" = ( +/obj/machinery/porta_turret/ai, +/obj/structure/sign/electricshock{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/ai_upload) +"ciT" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/table/reinforced, +/obj/item/twohanded/required/kirbyplants/photosynthetic{ + pixel_y = 10 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai_upload) +"ciU" = ( +/obj/machinery/porta_turret/ai, +/obj/structure/sign/nanotrasen{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/ai_upload) +"ciV" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/light, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/ai_monitored/turret_protected/ai_upload) +"ciW" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "AI Satellite - Aft Starboard"; + dir = 4; + name = "ai camera"; + network = list("Sat"); + start_active = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"ciX" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/space, +/area/space) +"ciY" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space) +"ciZ" = ( +/obj/structure/sign/radiation, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cja" = ( +/obj/machinery/status_display, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cjb" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "engpa"; + name = "Engineering Chamber Shutters" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cjc" = ( +/obj/machinery/requests_console{ + department = "Chapel Office"; + departmentType = 0; + name = "Chapel RC"; + pixel_y = -32 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cjd" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/obj/item/device/flashlight, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cje" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/engine/engineering) +"cjf" = ( +/turf/closed/wall/r_wall, +/area/maintenance/port) +"cjg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/port) +"cjh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cji" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/library) +"cjj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/bookcase/random/fiction, +/turf/open/floor/wood, +/area/library) +"cjk" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"cjl" = ( +/obj/structure/bookcase/random/reference, +/turf/open/floor/wood, +/area/library) +"cjm" = ( +/obj/structure/bookcase/manuals/medical, +/turf/open/floor/wood, +/area/library) +"cjn" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/wood, +/area/library) +"cjo" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"cjp" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/grimy, +/area/library) +"cjq" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/turf/open/floor/plasteel/grimy, +/area/library) +"cjr" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel/grimy, +/area/library) +"cjs" = ( +/obj/structure/table/wood, +/obj/item/device/camera_film{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/device/camera_film, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"cjt" = ( +/obj/structure/bed, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/item/bedsheet/hop, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hop) +"cju" = ( +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = 26 + }, +/obj/effect/landmark/start/head_of_personnel, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hop) +"cjv" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Personnel's Quarters"; + req_access = null; + req_access_txt = "57" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"cjw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"cjx" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hop) +"cjy" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hop) +"cjz" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hop) +"cjA" = ( +/obj/structure/table/wood, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26 + }, +/obj/item/clipboard, +/obj/item/toy/figure/hop{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/toy/figure/ian, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"cjB" = ( +/turf/closed/wall, +/area/tcommsat/server) +"cjC" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1; + min_temperature = 80; + on = 1; + target_temperature = 80 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"cjD" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"cjE" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"cjF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"cjG" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1; + min_temperature = 80; + on = 1; + target_temperature = 80 + }, +/obj/machinery/camera{ + c_tag = "Telecomms - Cooling Room"; + dir = 8; + name = "telecomms camera"; + network = list("SS13","tcomm") + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"cjH" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/obj/item/wrench, +/obj/item/crowbar, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/teleporter) +"cjI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/neutral, +/area/teleporter) +"cjJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/teleporter) +"cjK" = ( +/obj/machinery/holopad, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/teleporter) +"cjL" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/plasteel/neutral, +/area/teleporter) +"cjM" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/plasteel/neutral, +/area/teleporter) +"cjN" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"cjO" = ( +/obj/machinery/teleport/station, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/teleporter) +"cjP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Central Hallway - Starboard"; + dir = 8; + name = "hallway camera" + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/central) +"cjQ" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"cjR" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"cjS" = ( +/obj/structure/chair{ + dir = 1; + name = "Defense" + }, +/turf/open/floor/plasteel/green/side{ + dir = 10 + }, +/area/security/courtroom) +"cjT" = ( +/obj/structure/chair{ + dir = 1; + name = "Defense" + }, +/turf/open/floor/plasteel/green/side{ + dir = 6 + }, +/area/security/courtroom) +"cjU" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/security/courtroom) +"cjV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/neutral, +/area/security/courtroom) +"cjW" = ( +/turf/open/floor/plasteel/neutral, +/area/security/courtroom) +"cjX" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/security/courtroom) +"cjY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cjZ" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"cka" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ckb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/starboard) +"ckc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/starboard) +"ckd" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 6 + }, +/area/maintenance/starboard) +"cke" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ckf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"ckg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/starboard) +"ckh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cki" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/range) +"ckj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc{ + dir = 8; + name = "Shooting Range APC"; + areastring = "/area/security/range"; + pixel_x = -26 + }, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/range) +"ckk" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/security/range) +"ckl" = ( +/obj/structure/table/reinforced, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/item/gun/energy/laser/practice{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/gun/energy/laser/practice, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/ears/earmuffs, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/range) +"ckm" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/range) +"ckn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/security/range) +"cko" = ( +/obj/structure/sign/securearea{ + pixel_y = -32 + }, +/obj/machinery/light, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Security - Shooting Range"; + dir = 1; + name = "security camera" + }, +/turf/open/floor/plating, +/area/security/range) +"ckp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/security/range) +"ckq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/security/range) +"ckr" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/security/range) +"cks" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/security/range) +"ckt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload) +"cku" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload) +"ckv" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/engine/engineering) +"ckw" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"ckx" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cky" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"ckz" = ( +/obj/machinery/button/door{ + id = "engpa"; + name = "Engineering Chamber Shutters Control"; + pixel_y = 26; + req_access_txt = "11" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"ckA" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/toy/figure/engineer, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ckB" = ( +/obj/structure/table/reinforced, +/obj/item/airlock_painter, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ckC" = ( +/obj/structure/sign/securearea, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"ckD" = ( +/obj/structure/closet/crate, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/crowbar/red, +/obj/item/stack/sheet/mineral/plasma{ + amount = 20 + }, +/obj/item/device/gps/engineering{ + gpstag = "ENG0" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ckE" = ( +/obj/machinery/shieldgen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ckF" = ( +/obj/machinery/shieldgen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ckG" = ( +/obj/machinery/field/generator, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ckH" = ( +/obj/machinery/shieldwallgen, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"ckI" = ( +/obj/machinery/shieldwallgen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port) +"ckJ" = ( +/obj/structure/tank_dispenser, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port) +"ckK" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port) +"ckL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port) +"ckM" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Library APC"; + areastring = "/area/library"; + pixel_x = -26; + pixel_y = 3 + }, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/turf/open/floor/wood, +/area/library) +"ckN" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/wood, +/area/library) +"ckO" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/grimy, +/area/library) +"ckP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"ckQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/library) +"ckR" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/librarian, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/carpet, +/area/library) +"ckS" = ( +/turf/open/floor/carpet, +/area/library) +"ckT" = ( +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole/bookmanagement, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"ckU" = ( +/obj/structure/table/wood, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26 + }, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hop) +"ckV" = ( +/obj/structure/closet/secure_closet/hop, +/obj/item/clothing/suit/ianshirt, +/obj/item/bedsheet/ian, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hop) +"ckW" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/crew_quarters/heads/hop) +"ckX" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"ckY" = ( +/obj/machinery/disposal/bin, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"ckZ" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"cla" = ( +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = -26 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"clb" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"clc" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"cld" = ( +/obj/machinery/light, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"cle" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"clf" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"clg" = ( +/obj/structure/table, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/wrench, +/obj/item/screwdriver{ + pixel_y = 5 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"clh" = ( +/obj/structure/rack, +/obj/item/tank/internals/oxygen, +/obj/item/device/radio, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/teleporter) +"cli" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/teleporter) +"clj" = ( +/obj/machinery/light_switch{ + pixel_x = -7; + pixel_y = -26 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Bridge - Teleporter"; + dir = 1; + name = "command camera" + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/teleporter) +"clk" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/teleporter) +"cll" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/teleporter) +"clm" = ( +/obj/machinery/light, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"cln" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"clo" = ( +/obj/machinery/computer/teleporter, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/teleporter) +"clp" = ( +/obj/structure/table, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"clq" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"clr" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/neutral/side, +/area/security/courtroom) +"cls" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel/neutral/side, +/area/security/courtroom) +"clt" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/neutral/side, +/area/security/courtroom) +"clu" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral/side, +/area/security/courtroom) +"clv" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Courtroom APC"; + areastring = "/area/security/courtroom"; + pixel_x = 26 + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/neutral/side, +/area/security/courtroom) +"clw" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"clx" = ( +/turf/closed/wall, +/area/crew_quarters/locker) +"cly" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/starboard) +"clz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"clA" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Security" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/range) +"clB" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Security Maintenance"; + req_access_txt = "63" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/range) +"clC" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/range) +"clD" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"clE" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/space, +/area/space) +"clF" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced, +/turf/open/space, +/area/space) +"clG" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/space, +/area/space) +"clH" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"clJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/space) +"clL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/space) +"clM" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/engine/engineering) +"clN" = ( +/turf/open/floor/plating, +/area/engine/engineering) +"clP" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/engine/engineering) +"clQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"clR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"clS" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "engpa"; + name = "Engineering Chamber Shutters" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"clT" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"clU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"clV" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/yellow, +/area/engine/engineering) +"clW" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"clX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"clY" = ( +/obj/machinery/door/poddoor{ + id = "engstorage"; + name = "Engineering Secure Storage Lockdown" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"clZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cma" = ( +/obj/machinery/shieldgen, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cmb" = ( +/obj/machinery/field/generator, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cmc" = ( +/obj/machinery/field/generator, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cmd" = ( +/obj/machinery/shieldwallgen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cme" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cmf" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cmg" = ( +/obj/structure/sign/securearea, +/turf/closed/wall/r_wall, +/area/maintenance/port) +"cmh" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"cmi" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/bookcase/random/fiction, +/turf/open/floor/wood, +/area/library) +"cmj" = ( +/obj/structure/bookcase/random/fiction, +/turf/open/floor/wood, +/area/library) +"cmk" = ( +/obj/structure/bookcase/random/adult, +/turf/open/floor/wood, +/area/library) +"cml" = ( +/obj/structure/table/wood, +/obj/item/storage/briefcase, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"cmm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/library) +"cmn" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/library) +"cmo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/library) +"cmp" = ( +/obj/machinery/libraryscanner, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"cmq" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hop) +"cmr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hopblast"; + name = "HoP Blast door" + }, +/obj/structure/cable/white, +/turf/open/floor/plating, +/area/crew_quarters/heads/hop) +"cms" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "hopblast"; + name = "HoP Blast door" + }, +/obj/machinery/door/airlock/command{ + name = "Head of Personnel's Office"; + req_access = null; + req_access_txt = "57" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"cmt" = ( +/turf/closed/wall/r_wall, +/area/hallway/secondary/command) +"cmu" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/command) +"cmv" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/hallway/secondary/command) +"cmw" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + cyclelinkeddir = 0; + name = "Telecomms Foyer"; + req_access = null; + req_access_txt = "61" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cmx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Teleport Access"; + req_access_txt = "17" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"cmy" = ( +/obj/machinery/button/door{ + id = "teleportershutters"; + name = "Teleporter Shutters"; + pixel_x = -26; + req_access_txt = "19" + }, +/obj/machinery/door/poddoor/shutters{ + id = "teleportershutters"; + name = "Teleporter Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"cmz" = ( +/obj/machinery/door/poddoor/shutters{ + id = "teleportershutters"; + name = "Teleporter Shutters" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"cmA" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/teleporter) +"cmB" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall, +/area/teleporter) +"cmC" = ( +/obj/structure/table, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"cmD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"cmE" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Courtroom - Aft"; + dir = 8; + name = "security camera" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"cmF" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/security/courtroom) +"cmG" = ( +/obj/structure/table/wood, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/vault, +/area/security/courtroom) +"cmH" = ( +/obj/structure/table/wood, +/obj/item/device/radio/intercom{ + name = "Station Intercom" + }, +/turf/open/floor/plasteel/vault, +/area/security/courtroom) +"cmI" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/folder, +/turf/open/floor/plasteel/vault, +/area/security/courtroom) +"cmJ" = ( +/obj/structure/table/wood, +/obj/item/folder/yellow, +/obj/item/pen, +/turf/open/floor/plasteel/vault, +/area/security/courtroom) +"cmL" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/locker) +"cmM" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/locker) +"cmN" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/crew_quarters/locker) +"cmO" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel/arrival{ + dir = 1 + }, +/area/crew_quarters/locker) +"cmP" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel/escape{ + dir = 1 + }, +/area/crew_quarters/locker) +"cmQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 9 + }, +/area/maintenance/starboard) +"cmR" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cmS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"cmT" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cmU" = ( +/turf/open/floor/plating, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/starboard) +"cmV" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cmW" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"cmX" = ( +/turf/closed/wall, +/area/maintenance/starboard) +"cmY" = ( +/obj/structure/sign/electricshock{ + pixel_x = -32; + pixel_y = 32 + }, +/turf/open/space, +/area/space) +"cmZ" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/northleft, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"cna" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"cnb" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"cnc" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/northright, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"cnd" = ( +/obj/item/wrench, +/turf/open/floor/plating/airless, +/area/space) +"cne" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space) +"cnf" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space) +"cng" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cnh" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/engine/engineering) +"cnm" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cnn" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/camera{ + c_tag = "Engineering - Central"; + dir = 4; + name = "engineering camera" + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the singularity chamber."; + dir = 4; + layer = 4; + name = "Engine Containment Telescreen"; + network = list("Singularity"); + pixel_x = -30 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cno" = ( +/obj/effect/landmark/start/station_engineer, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/yellow, +/area/engine/engineering) +"cnp" = ( +/obj/machinery/holopad, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cnq" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/yellow, +/area/engine/engineering) +"cnr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cns" = ( +/obj/machinery/door/poddoor{ + id = "engstorage"; + name = "Engineering Secure Storage Lockdown" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cnt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cnu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cnv" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cnw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/sign/fire{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cnx" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cny" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cnz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cnA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cnB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/highsecurity{ + name = "Engineering Auxiliary Storage"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cnC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"cnD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port) +"cnE" = ( +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/library) +"cnF" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen/blue{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/pen/red, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/window{ + dir = 8; + name = "Library Desk"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"cnG" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/library) +"cnH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/library) +"cnI" = ( +/obj/structure/table/wood, +/obj/item/storage/bag/books, +/obj/item/device/taperecorder, +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 32 + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"cnJ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"cnK" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"cnL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Command Hallway" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cnM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/secondary/command) +"cnN" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/secondary/command) +"cnO" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/secondary/command) +"cnP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/secondary/command) +"cnQ" = ( +/obj/structure/sign/electricshock{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/secondary/command) +"cnR" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/secondary/command) +"cnS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Command Hall APC"; + areastring = "/area/hallway/secondary/command"; + pixel_y = 24 + }, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/secondary/command) +"cnT" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/hallway/secondary/command) +"cnU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Central Hallway - Center"; + dir = 2; + name = "hallway camera" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/secondary/command) +"cnV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/secondary/command) +"cnW" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/secondary/command) +"cnX" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/secondary/command) +"cnY" = ( +/obj/structure/sign/electricshock{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/secondary/command) +"cnZ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/secondary/command) +"coa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cob" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"coc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cod" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cof" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/central) +"cog" = ( +/obj/machinery/vending/coffee, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"coh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"coj" = ( +/obj/machinery/door/airlock{ + name = "Jury"; + req_access_txt = "42" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"cok" = ( +/obj/structure/chair{ + dir = 1; + name = "Jury" + }, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"col" = ( +/obj/structure/chair{ + dir = 1; + name = "Jury" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"com" = ( +/obj/structure/chair{ + dir = 1; + name = "Jury" + }, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"con" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"coo" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/locker) +"cop" = ( +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/locker) +"coq" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Locker Room - Fore"; + dir = 2; + name = "dormitories camera" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/crew_quarters/locker) +"cor" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/crew_quarters/locker) +"cos" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/crew_quarters/locker) +"cot" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/crew_quarters/locker) +"cou" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/item/storage/pod{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/crew_quarters/locker) +"cov" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/maintenance/starboard) +"cow" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cox" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"coy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"coz" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"coA" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/maintenance/starboard) +"coB" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"coC" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/glass_security/abandoned{ + name = "Storage Closet"; + req_access_txt = "63" + }, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"coD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"coE" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/starboard) +"coF" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"coG" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/aisat) +"coH" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"coI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/space) +"coK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/space) +"coN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/engine/engineering) +"coO" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/engine/engineering) +"coP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"coQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"coR" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"coS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/yellow, +/area/engine/engineering) +"coT" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/engine/engineering) +"coU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"coV" = ( +/obj/machinery/door/poddoor{ + id = "engstorage"; + name = "Engineering Secure Storage Lockdown" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"coW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"coX" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"coY" = ( +/obj/machinery/power/tesla_coil, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"coZ" = ( +/obj/machinery/power/emitter, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cpa" = ( +/obj/machinery/power/emitter, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cpb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cpc" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cpd" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cpe" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cpf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/port) +"cpg" = ( +/obj/structure/bookcase/random/nonfiction, +/turf/open/floor/wood, +/area/library) +"cph" = ( +/obj/machinery/light, +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/camera{ + c_tag = "Library - Aft"; + dir = 1; + name = "library camera" + }, +/turf/open/floor/wood, +/area/library) +"cpi" = ( +/obj/structure/table/wood, +/obj/item/storage/pill_bottle/dice, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"cpj" = ( +/obj/machinery/light, +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/light_switch{ + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/grimy, +/area/library) +"cpk" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/grimy, +/area/library) +"cpl" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/toy/figure/curator, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = -26 + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"cpm" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"cpn" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/central) +"cpo" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Command Hallway" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cpp" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/secondary/command) +"cpq" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/secondary/command) +"cpr" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/secondary/command) +"cps" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Central Hallway - Center Port"; + dir = 1; + name = "hallway camera" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/secondary/command) +"cpt" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/secondary/command) +"cpu" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/secondary/command) +"cpv" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/secondary/command) +"cpw" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/secondary/command) +"cpx" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/sign/electricshock{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/secondary/command) +"cpy" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/blue/corner{ + dir = 1 + }, +/area/hallway/secondary/command) +"cpz" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/chair/comfy/black, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/blue/corner{ + dir = 1 + }, +/area/hallway/secondary/command) +"cpA" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/item/device/radio/beacon, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/blue/corner{ + dir = 1 + }, +/area/hallway/secondary/command) +"cpB" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/chair/comfy/black, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/blue/corner{ + dir = 1 + }, +/area/hallway/secondary/command) +"cpC" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/blue/corner{ + dir = 1 + }, +/area/hallway/secondary/command) +"cpD" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/sign/electricshock{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/secondary/command) +"cpE" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/secondary/command) +"cpF" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/secondary/command) +"cpG" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/secondary/command) +"cpH" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/secondary/command) +"cpI" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/secondary/command) +"cpJ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Central Hallway - Center Starboard"; + dir = 1; + name = "hallway camera" + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/secondary/command) +"cpK" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/secondary/command) +"cpL" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"cpM" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"cpN" = ( +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: PRESSURIZED DOORS" + }, +/turf/closed/wall, +/area/security/courtroom) +"cpO" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/security/courtroom) +"cpP" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light_switch{ + pixel_x = -26 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/locker) +"cpQ" = ( +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"cpR" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"cpS" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"cpT" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"cpU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/crew_quarters/locker) +"cpV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"cpW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"cpX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cpY" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cpZ" = ( +/obj/structure/table, +/obj/item/clothing/under/rank/security, +/obj/item/restraints/handcuffs, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small, +/obj/machinery/power/apc{ + dir = 2; + name = "Starboard Maintenance APC"; + areastring = "/area/maintenance/starboard"; + pixel_y = -26 + }, +/obj/structure/cable/white, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cqa" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/item/clothing/shoes/jackboots, +/obj/item/device/radio, +/obj/item/storage/secure/briefcase, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cqb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/red/corner, +/area/maintenance/starboard) +"cqc" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cqd" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = -32 + }, +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/flashes, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cqe" = ( +/turf/closed/wall, +/area/crew_quarters/fitness/recreation) +"cqf" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/crew_quarters/fitness/recreation) +"cqg" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"cqh" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"cqi" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/engine/engineering) +"cqj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/engine/engineering) +"cqk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/engine/engineering) +"cql" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/camera/emp_proof{ + c_tag = "Containment - Particle Accelerator"; + dir = 1; + network = list("Singularity") + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/engine/engineering) +"cqm" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/engine/engineering) +"cqn" = ( +/obj/machinery/button/door{ + id = "engpa"; + name = "Engineering Chamber Shutters Control"; + pixel_y = -26; + req_access_txt = "11" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cqo" = ( +/obj/structure/table/reinforced, +/obj/item/tank/internals/plasma, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cqp" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/engine/engineering) +"cqq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cqr" = ( +/obj/structure/table/reinforced, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cqs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/freon, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cqt" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cqu" = ( +/obj/machinery/power/tesla_coil, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Engineering - Secure Storage"; + dir = 1; + name = "engineering camera" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cqv" = ( +/obj/machinery/power/emitter, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cqw" = ( +/obj/structure/rack, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cqx" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/metal{ + amount = 30 + }, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/obj/item/electronics/apc, +/obj/item/electronics/airlock, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cqy" = ( +/obj/structure/table/reinforced, +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/obj/item/clipboard, +/obj/item/folder/blue, +/obj/item/electronics/firelock, +/obj/item/stock_parts/console_screen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cqz" = ( +/obj/structure/table/reinforced, +/obj/item/stack/cable_coil/white, +/obj/item/electronics/airalarm, +/obj/item/electronics/firealarm, +/obj/item/stock_parts/cell/high, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cqA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/port) +"cqB" = ( +/obj/machinery/door/airlock/glass{ + name = "Library Game Room" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/grimy, +/area/library) +"cqC" = ( +/obj/machinery/door/airlock/glass{ + name = "Library Game Room" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/grimy, +/area/library) +"cqD" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/library) +"cqE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/library) +"cqF" = ( +/obj/machinery/door/morgue{ + name = "Curator's Study"; + req_access_txt = "37" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library) +"cqG" = ( +/obj/structure/sign/directions/engineering{ + desc = "A direction sign, pointing out which way the Command department is."; + dir = 1; + icon_state = "direction_bridge"; + name = "command department" + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"cqH" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"cqI" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "E.V.A. Storage"; + req_access = null; + req_access_txt = "18" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"cqJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "E.V.A. Storage"; + req_access = null; + req_access_txt = "18" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"cqK" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/command) +"cqL" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/secondary/command) +"cqM" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/blue/corner{ + dir = 1 + }, +/area/hallway/secondary/command) +"cqN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/command) +"cqO" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/obj/effect/landmark/lightsout, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cqP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/command) +"cqQ" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/blue/corner, +/area/hallway/secondary/command) +"cqR" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/secondary/command) +"cqS" = ( +/turf/closed/wall/r_wall, +/area/gateway) +"cqT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/gateway) +"cqU" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Gateway Atrium"; + req_access_txt = "62" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/gateway) +"cqV" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cqW" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cqX" = ( +/obj/machinery/vending/cola/random, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cqY" = ( +/obj/structure/sign/directions/engineering{ + desc = "A direction sign, pointing out which way the Command department is."; + dir = 1; + icon_state = "direction_bridge"; + name = "command department" + }, +/turf/closed/wall/r_wall, +/area/gateway) +"cra" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"crb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Starboard Auxiliary Hallway" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"crc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"crd" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"cre" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/hallway/primary/central) +"crf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"crg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"crh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Dormitory Hallway"; + dir = 2; + name = "hallway camera" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"cri" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"crj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"crk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Lockerroom" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"crl" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/locker) +"crm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"crn" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"cro" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"crp" = ( +/obj/structure/table, +/obj/item/device/camera_film{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/device/camera_film, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"crq" = ( +/obj/structure/table, +/obj/item/device/camera, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"crr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"crs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"crt" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"cru" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"crv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/starboard) +"crw" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard) +"crx" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/recreation) +"cry" = ( +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/recreation) +"crz" = ( +/obj/structure/table, +/obj/item/stack/sheet/cloth/ten, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/recreation) +"crA" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table, +/obj/item/clipboard, +/obj/item/folder/white, +/obj/item/pen, +/obj/machinery/camera{ + c_tag = "Recreation - Fore"; + dir = 2; + name = "recreation camera" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/crew_quarters/fitness/recreation) +"crB" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/crew_quarters/fitness/recreation) +"crC" = ( +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/crew_quarters/fitness/recreation) +"crD" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/crew_quarters/fitness/recreation) +"crE" = ( +/obj/structure/closet/masks, +/obj/structure/sign/nanotrasen{ + pixel_x = 32; + pixel_y = 32 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/crew_quarters/fitness/recreation) +"crF" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/yellow, +/obj/item/storage/toolbox/electrical, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"crG" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/yellow, +/area/engine/engineering) +"crH" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"crI" = ( +/turf/closed/wall/r_wall, +/area/engine/storage) +"crJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"crK" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/black, +/area/library) +"crL" = ( +/obj/structure/easel, +/obj/item/canvas/twentythreeXnineteen, +/obj/item/canvas/twentythreeXtwentythree, +/obj/item/canvas/twentythreeXtwentythree, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library) +"crM" = ( +/obj/structure/easel, +/obj/item/canvas/nineteenXnineteen, +/obj/item/canvas/twentythreeXtwentythree, +/obj/item/canvas/twentythreeXtwentythree, +/obj/machinery/light_switch{ + pixel_y = 26 + }, +/turf/open/floor/plasteel/black, +/area/library) +"crN" = ( +/obj/structure/table/wood, +/obj/item/storage/crayons, +/obj/item/storage/crayons, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library) +"crO" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/candle_box{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/fancy/candle_box, +/turf/open/floor/plasteel/black, +/area/library) +"crP" = ( +/obj/structure/closet/wardrobe/curator, +/turf/open/floor/plasteel/black, +/area/library) +"crQ" = ( +/obj/machinery/light_switch{ + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library) +"crR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/black, +/area/library) +"crS" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library) +"crT" = ( +/obj/structure/bookcase{ + name = "Forbidden Knowledge" + }, +/turf/open/floor/plasteel/black, +/area/library) +"crU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"crV" = ( +/obj/item/stack/cable_coil, +/obj/item/device/multitool, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/storage/eva) +"crW" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"crX" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"crY" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"crZ" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "E.V.A. Storage APC"; + areastring = "/area/ai_monitored/storage/eva"; + pixel_y = 26 + }, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"csa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"csb" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"csc" = ( +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/obj/structure/table/reinforced, +/obj/machinery/camera{ + c_tag = "Bridge - E.V.A. Fore"; + dir = 2; + name = "command camera" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/storage/eva) +"csd" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/command) +"cse" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/secondary/command) +"csf" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/table/wood, +/obj/item/paper_bin, +/turf/open/floor/plasteel/blue/corner, +/area/hallway/secondary/command) +"csg" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/blue/corner, +/area/hallway/secondary/command) +"csh" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/blue/corner, +/area/hallway/secondary/command) +"csi" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/plasteel/blue/corner, +/area/hallway/secondary/command) +"csj" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/blue/corner, +/area/hallway/secondary/command) +"csk" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/secondary/command) +"csl" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/command) +"csm" = ( +/obj/structure/closet/secure_closet/exile, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/gateway) +"csn" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/highcap/ten_k{ + dir = 1; + name = "Gateway APC"; + areastring = "/area/gateway"; + pixel_y = 28 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/gateway) +"cso" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/gateway) +"csp" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/gateway) +"csq" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/rods{ + amount = 25 + }, +/obj/item/storage/toolbox/emergency, +/obj/item/device/flashlight, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/gateway) +"csr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"css" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"cst" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Starboard Auxiliary Hallway" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"csu" = ( +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"csv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"csw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"csx" = ( +/obj/effect/landmark/lightsout, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"csy" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"csz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"csA" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"csB" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/crew_quarters/locker) +"csC" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/crew_quarters/locker) +"csD" = ( +/obj/structure/table, +/obj/item/storage/crayons, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"csE" = ( +/obj/structure/table, +/obj/item/folder, +/obj/item/pen, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"csF" = ( +/obj/structure/table, +/obj/item/toy/cards/deck, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"csG" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"csH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"csI" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/closet/wardrobe/black, +/turf/open/floor/plasteel/neutral/corner, +/area/crew_quarters/locker) +"csJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/maintenance/starboard) +"csK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"csL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/starboard) +"csM" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"csN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"csO" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/recreation) +"csP" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"csQ" = ( +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"csR" = ( +/obj/structure/closet/athletic_mixed, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/crew_quarters/fitness/recreation) +"csV" = ( +/obj/machinery/power/rad_collector/anchored, +/obj/machinery/power/rad_collector/anchored, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"csW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "engpa"; + name = "Engineering Chamber Shutters" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/engine/engineering) +"csX" = ( +/obj/structure/rack, +/obj/item/crowbar, +/obj/item/wirecutters, +/obj/item/stack/cable_coil/white, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"csY" = ( +/obj/structure/rack, +/obj/machinery/button/door{ + id = "engpa"; + name = "Engineering Chamber Shutters Control"; + pixel_y = 26; + req_access_txt = "11" + }, +/obj/item/storage/belt/utility, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"csZ" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cta" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/machinery/light_switch{ + pixel_x = -26; + pixel_y = 26 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ctb" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ctc" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/electricshock{ + pixel_y = 32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/storage) +"ctd" = ( +/obj/machinery/suit_storage_unit/engine, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/storage) +"cte" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/obj/machinery/suit_storage_unit/engine, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/storage) +"ctf" = ( +/obj/machinery/suit_storage_unit/engine, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/storage) +"cth" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cti" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"ctj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/maintenance/port) +"ctk" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"ctl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port) +"ctm" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"ctn" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 6 + }, +/area/maintenance/port) +"cto" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/folder, +/obj/machinery/ai_status_display{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/black, +/area/library) +"ctp" = ( +/turf/open/floor/plasteel/grimy, +/area/library) +"ctq" = ( +/obj/structure/chair/office/dark, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"ctr" = ( +/obj/structure/chair/office/dark, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"cts" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"ctt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library) +"ctu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/black, +/area/library) +"ctv" = ( +/obj/structure/table/wood, +/obj/item/storage/briefcase{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/secure/briefcase, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library) +"ctw" = ( +/obj/structure/destructible/cult/tome, +/obj/item/book/codex_gigas, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library) +"ctx" = ( +/obj/effect/landmark/revenantspawn, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/black, +/area/library) +"cty" = ( +/obj/structure/chair/comfy/black, +/obj/effect/landmark/start/librarian, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library) +"ctz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/black, +/area/library) +"ctA" = ( +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library) +"ctB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Central Hallway - Aft Port"; + dir = 4; + name = "hallway camera" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"ctC" = ( +/obj/item/stack/sheet/plasteel/twenty, +/obj/item/stack/sheet/rglass{ + amount = 30; + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/crowbar, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/storage/eva) +"ctD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"ctE" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"ctF" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"ctG" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"ctH" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"ctI" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"ctJ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"ctK" = ( +/obj/machinery/cell_charger, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/table/reinforced, +/obj/item/stock_parts/cell/high, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/storage/eva) +"ctL" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ai_monitored/storage/eva) +"ctM" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/secondary/command) +"ctN" = ( +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/secondary/command) +"ctO" = ( +/turf/open/floor/plasteel/neutral/side, +/area/hallway/secondary/command) +"ctP" = ( +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/secondary/command) +"ctQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/secondary/command) +"ctR" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/gateway) +"ctS" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/gateway) +"ctT" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/gateway) +"ctU" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/gateway) +"ctV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/gateway) +"ctW" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/gateway) +"ctX" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/gateway) +"ctY" = ( +/obj/machinery/gateway{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 1 + }, +/area/gateway) +"ctZ" = ( +/obj/machinery/gateway{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/gateway) +"cua" = ( +/obj/machinery/gateway{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 4 + }, +/area/gateway) +"cuc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/central) +"cud" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Starboard Auxiliary Hallway" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cue" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/central) +"cuf" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/central) +"cug" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cuh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/hallway/primary/central) +"cui" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/hallway/primary/central) +"cuk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Lockerroom" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"cul" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/crew_quarters/locker) +"cum" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"cun" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"cuo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"cup" = ( +/obj/effect/landmark/lightsout, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"cuq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/junction, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"cur" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/closet/wardrobe/grey, +/turf/open/floor/plasteel/neutral/corner, +/area/crew_quarters/locker) +"cus" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cut" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/starboard) +"cuu" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cuv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cuw" = ( +/obj/structure/rack, +/obj/item/wrench, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/starboard) +"cux" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/starboard) +"cuy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 6 + }, +/area/maintenance/starboard) +"cuz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/fitness/recreation) +"cuA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/recreation) +"cuB" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cuC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/weightlifter, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cuD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/crew_quarters/fitness/recreation) +"cuE" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/stacklifter, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cuF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cuG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/crew_quarters/fitness/recreation) +"cuH" = ( +/obj/structure/closet/boxinggloves, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/crew_quarters/fitness/recreation) +"cuI" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space) +"cuJ" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/space) +"cuK" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/space) +"cuL" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating/airless, +/area/space) +"cuM" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "engpa"; + name = "Engineering Chamber Shutters" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/engine/engineering) +"cuN" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/neutral, +/area/engine/engineering) +"cuO" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/storage) +"cuP" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/black, +/obj/item/wrench, +/obj/item/clothing/glasses/meson/engine, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = 26 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/storage) +"cuQ" = ( +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/storage) +"cuR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/storage) +"cuS" = ( +/obj/structure/table/reinforced, +/obj/item/stack/cable_coil/white{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil/white, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/obj/effect/turf_decal/bot, +/obj/item/twohanded/rcl/pre_loaded, +/obj/item/twohanded/rcl/pre_loaded, +/turf/open/floor/plasteel, +/area/engine/storage) +"cuT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/port) +"cuU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"cuV" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/structure/sign/kiddieplaque/library{ + pixel_x = -32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Library Backroom"; + dir = 4; + name = "library camera" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library) +"cuW" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"cuX" = ( +/obj/structure/table/wood, +/obj/item/device/paicard, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/library) +"cuY" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/library) +"cuZ" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"cva" = ( +/obj/effect/landmark/blobstart, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/black, +/area/library) +"cvb" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library) +"cvc" = ( +/obj/machinery/photocopier, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/black, +/area/library) +"cvd" = ( +/obj/structure/filingcabinet, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/black, +/area/library) +"cve" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library) +"cvf" = ( +/obj/machinery/light, +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/device/laser_pointer{ + pixel_x = 3 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = -26 + }, +/turf/open/floor/plasteel/black, +/area/library) +"cvg" = ( +/obj/structure/table/wood, +/obj/item/device/taperecorder, +/obj/item/device/camera, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library) +"cvh" = ( +/obj/machinery/photocopier, +/turf/open/floor/plasteel/black, +/area/library) +"cvi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"cvj" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Magboot Storage"; + pixel_x = -1; + req_access_txt = "19" + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/clothing/shoes/magboots{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots{ + pixel_x = 4; + pixel_y = -3 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/storage/eva) +"cvk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"cvl" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"cvm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"cvn" = ( +/obj/item/device/radio/beacon, +/turf/open/floor/plasteel/neutral, +/area/ai_monitored/storage/eva) +"cvo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"cvp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"cvq" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/storage/eva) +"cvr" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "corporatelounge"; + name = "Corporate Lounge Shutters" + }, +/turf/open/floor/plating, +/area/bridge/showroom/corporate) +"cvs" = ( +/turf/closed/wall/r_wall, +/area/bridge/showroom/corporate) +"cvt" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Corporate Lounge"; + req_access = null; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/bridge/showroom/corporate) +"cvu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Corporate Lounge"; + req_access = null; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/bridge/showroom/corporate) +"cvv" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/gateway) +"cvw" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/gateway) +"cvx" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/gateway) +"cvy" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/gateway) +"cvz" = ( +/obj/structure/table, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/item/clipboard, +/obj/item/paper/pamphlet/gateway, +/obj/item/paper/pamphlet/gateway, +/obj/item/paper/pamphlet/gateway, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/gateway) +"cvA" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/gateway) +"cvB" = ( +/obj/machinery/gateway{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/gateway) +"cvC" = ( +/obj/machinery/gateway/centerstation, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/black, +/area/gateway) +"cvD" = ( +/obj/machinery/gateway{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/gateway) +"cvE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Central Hallway - Dormitory Hallway"; + dir = 4; + name = "hallway camera" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"cvF" = ( +/turf/closed/wall, +/area/crew_quarters/toilet/restrooms) +"cvG" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock{ + name = "Primary Restroom" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/toilet/restrooms) +"cvH" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/crew_quarters/locker) +"cvI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"cvJ" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"cvK" = ( +/obj/structure/table, +/obj/item/toy/foamblade, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"cvL" = ( +/obj/structure/table, +/obj/item/storage/briefcase, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"cvM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"cvN" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"cvO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/closet/wardrobe/green, +/turf/open/floor/plasteel/neutral/corner, +/area/crew_quarters/locker) +"cvP" = ( +/turf/closed/wall, +/area/crew_quarters/dorms) +"cvQ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/recreation) +"cvR" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cvS" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/crew_quarters/fitness/recreation) +"cvT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/fitness/recreation) +"cvU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/punching_bag, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/fitness/recreation) +"cvV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/crew_quarters/fitness/recreation) +"cvW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cvX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/crew_quarters/fitness/recreation) +"cvY" = ( +/obj/structure/lattice, +/obj/machinery/camera/emp_proof{ + c_tag = "Containment - Aft Port"; + dir = 4; + network = list("Singularity") + }, +/turf/open/space, +/area/space) +"cvZ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/space, +/area/space) +"cwa" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/space, +/area/space) +"cwb" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/space, +/area/space) +"cwc" = ( +/obj/machinery/power/rad_collector/anchored, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cwd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel/neutral, +/area/engine/engineering) +"cwe" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cwf" = ( +/obj/structure/table/reinforced, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cwg" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cwh" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/storage) +"cwi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/power/port_gen/pacman, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/storage) +"cwj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/storage) +"cwk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/yellow, +/area/engine/storage) +"cwl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral, +/area/engine/storage) +"cwm" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/shoes/magboots{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/shoes/magboots, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/storage) +"cwn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cwo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/obj/item/device/flashlight, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cwp" = ( +/obj/structure/table/reinforced, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 6 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = -6 + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"cwq" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/black, +/obj/item/wrench, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cwr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cws" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/plasteel/black, +/area/library) +"cwt" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"cwu" = ( +/obj/structure/table/wood, +/obj/item/storage/pill_bottle/dice, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/library) +"cwv" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck/cas{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/toy/cards/deck/cas/black{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/library) +"cww" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"cwx" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library) +"cwy" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/black, +/area/library) +"cwz" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library) +"cwA" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"cwB" = ( +/obj/structure/closet/crate/rcd{ + pixel_y = 4 + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "RCD Storage"; + pixel_x = 1; + req_access_txt = "19" + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/storage/eva) +"cwC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"cwD" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"cwE" = ( +/obj/machinery/camera/motion{ + c_tag = "E.V.A. Storage"; + dir = 8; + name = "motion-sensitive command camera" + }, +/obj/machinery/requests_console{ + department = "E.V.A. Storage"; + departmentType = 0; + name = "E.V.A. RC"; + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"cwF" = ( +/turf/closed/wall, +/area/ai_monitored/storage/eva) +"cwG" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/showcase/mecha/marauder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/grimy, +/area/bridge/showroom/corporate) +"cwH" = ( +/obj/structure/bookcase, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/bridge/showroom/corporate) +"cwI" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/bridge/showroom/corporate) +"cwJ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/grimy, +/area/bridge/showroom/corporate) +"cwK" = ( +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Bridge - Corporate Lounge"; + dir = 2; + name = "command camera" + }, +/turf/open/floor/plasteel/vault{ + dir = 6 + }, +/area/bridge/showroom/corporate) +"cwL" = ( +/obj/structure/fireplace, +/turf/open/floor/plasteel/vault, +/area/bridge/showroom/corporate) +"cwM" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 10 + }, +/area/bridge/showroom/corporate) +"cwN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/bridge/showroom/corporate) +"cwO" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/showcase/machinery/implanter{ + layer = 2.7; + pixel_y = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/bridge/showroom/corporate) +"cwP" = ( +/obj/structure/rack, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/ointment, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/reagent_containers/syringe/charcoal, +/obj/machinery/vending/wallmed{ + name = "Emergency NanoMed"; + req_access_txt = "0"; + use_power = 0 + }, +/obj/machinery/camera{ + c_tag = "Bridge - Gateway Atrium"; + dir = 4; + name = "command camera" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/gateway) +"cwQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/gateway) +"cwR" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/gateway) +"cwS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/gateway) +"cwT" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/gateway) +"cwU" = ( +/turf/closed/wall, +/area/gateway) +"cwV" = ( +/obj/machinery/gateway{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 4 + }, +/area/gateway) +"cwW" = ( +/obj/machinery/gateway, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/gateway) +"cwX" = ( +/obj/machinery/gateway{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Bridge - Gateway Chamber"; + dir = 8; + name = "command camera" + }, +/turf/open/floor/plasteel/vault{ + dir = 1 + }, +/area/gateway) +"cwY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"cwZ" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/item/soap/nanotrasen, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/toilet/restrooms) +"cxa" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/crew_quarters/toilet/restrooms) +"cxb" = ( +/obj/machinery/shower{ + dir = 8; + icon_state = "shower" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/crew_quarters/toilet/restrooms) +"cxc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/toilet/restrooms) +"cxd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = -10; + pixel_y = 26 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/toilet/restrooms) +"cxe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/crew_quarters/toilet/restrooms) +"cxf" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Primary Restroom APC"; + areastring = "/area/crew_quarters/toilet/restrooms"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Primary Restroom"; + dir = 2; + name = "restroom camera" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/toilet/restrooms) +"cxg" = ( +/obj/structure/urinal{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/toilet/restrooms) +"cxh" = ( +/obj/structure/urinal{ + pixel_y = 28 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/toilet/restrooms) +"cxi" = ( +/obj/structure/urinal{ + pixel_y = 28 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/toilet/restrooms) +"cxj" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/crew_quarters/toilet/restrooms) +"cxk" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/closet/wardrobe/pjs, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/crew_quarters/locker) +"cxl" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"cxm" = ( +/obj/structure/chair/stool, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"cxn" = ( +/obj/structure/table, +/obj/item/folder, +/obj/item/pen, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"cxo" = ( +/obj/structure/table, +/obj/item/device/paicard, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"cxp" = ( +/obj/structure/table, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/item/toy/gun, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"cxq" = ( +/obj/structure/chair/stool, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"cxr" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"cxs" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Lockerroom APC"; + areastring = "/area/crew_quarters/locker"; + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/closet/wardrobe/pink, +/turf/open/floor/plasteel/neutral/corner, +/area/crew_quarters/locker) +"cxt" = ( +/obj/structure/dresser, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/dorms) +"cxu" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/clothing/suit/jacket{ + desc = "All the class of a trenchcoat without the security fibers."; + icon_state = "greydet"; + name = "trenchcoat" + }, +/obj/item/clothing/suit/toggle/lawyer/black, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/item/clothing/head/fedora, +/obj/item/clothing/under/blacktango, +/obj/item/clothing/head/bowler, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/dorms) +"cxv" = ( +/obj/structure/table/wood, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26; + pixel_y = 26 + }, +/obj/item/reagent_containers/food/snacks/grown/poppy/geranium, +/obj/item/reagent_containers/food/snacks/grown/poppy/geranium, +/obj/item/reagent_containers/food/snacks/grown/poppy/geranium, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/dorms) +"cxw" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"cxx" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"cxy" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/suit/jacket/letterman_nanotrasen, +/obj/item/clothing/suit/toggle/lawyer, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26; + pixel_y = 26 + }, +/obj/item/clothing/under/kilt, +/obj/item/clothing/head/beret, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"cxz" = ( +/obj/structure/dresser, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"cxA" = ( +/obj/structure/bed, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/bedsheet/red, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"cxB" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/suit/jacket{ + desc = "All the class of a trenchcoat without the security fibers."; + icon_state = "detective"; + name = "trenchcoat" + }, +/obj/item/clothing/suit/toggle/lawyer/purple, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26; + pixel_y = 26 + }, +/obj/item/clothing/head/fedora{ + icon_state = "detective" + }, +/obj/item/clothing/under/geisha, +/obj/item/clothing/head/fedora{ + icon_state = "curator" + }, +/obj/item/clothing/suit/jacket{ + desc = "This looks awfully familiar..."; + icon_state = "curator" + }, +/obj/item/clothing/under/rank/curator/treasure_hunter, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"cxC" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/vending/coffee, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"cxD" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cxE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/crew_quarters/fitness/recreation) +"cxF" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/fitness/recreation) +"cxG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/crew_quarters/fitness/recreation) +"cxH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cxI" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/crew_quarters/fitness/recreation) +"cxJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cxK" = ( +/turf/open/floor/plasteel/yellow/side, +/area/engine/engineering) +"cxL" = ( +/turf/open/floor/plasteel/yellow/side{ + dir = 6 + }, +/area/engine/engineering) +"cxM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cxN" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cxO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering Storage"; + req_access_txt = "32" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/storage) +"cxP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/storage) +"cxQ" = ( +/turf/open/floor/plasteel/yellow, +/area/engine/storage) +"cxR" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/storage) +"cxS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/obj/structure/tank_dispenser, +/obj/machinery/camera{ + c_tag = "Engineering - Gear Storage"; + dir = 8; + name = "engineering camera" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/storage) +"cxT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/maintenance/port) +"cxU" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cxV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/maintenance/port) +"cxW" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cxX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/maintenance/port) +"cxY" = ( +/obj/structure/table/wood, +/obj/item/newspaper{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/newspaper, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library) +"cxZ" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"cya" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"cyc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/black, +/area/library) +"cyd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library) +"cyg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"cyh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"cyi" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/port) +"cyj" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Jetpack Storage"; + pixel_x = -1; + req_access_txt = "19" + }, +/obj/structure/window/reinforced, +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = 4; + pixel_y = -1 + }, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = -4; + pixel_y = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/storage/eva) +"cyk" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"cyl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"cym" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Corporate Lounge APC"; + areastring = "/area/bridge/showroom/corporate"; + pixel_x = -26 + }, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/turf/open/floor/wood, +/area/bridge/showroom/corporate) +"cyn" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bridge/showroom/corporate) +"cyo" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bridge/showroom/corporate) +"cyp" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bridge/showroom/corporate) +"cyq" = ( +/obj/structure/table/wood, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/turf/open/floor/carpet, +/area/bridge/showroom/corporate) +"cyr" = ( +/obj/structure/table/wood, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/carpet, +/area/bridge/showroom/corporate) +"cys" = ( +/obj/structure/table/wood, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/item/paper_bin, +/turf/open/floor/carpet, +/area/bridge/showroom/corporate) +"cyt" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/bridge/showroom/corporate) +"cyu" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bridge/showroom/corporate) +"cyv" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bridge/showroom/corporate) +"cyw" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/wood, +/area/bridge/showroom/corporate) +"cyx" = ( +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/structure/closet/crate/internals, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/gateway) +"cyy" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/gateway) +"cyz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/gateway) +"cyA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/gateway) +"cyB" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/gateway) +"cyC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/gateway) +"cyD" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/gateway) +"cyE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/gateway) +"cyF" = ( +/obj/machinery/shower{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/crew_quarters/toilet/restrooms) +"cyG" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/toilet/restrooms) +"cyH" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/crew_quarters/toilet/restrooms) +"cyI" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock{ + name = "Unisex Showers"; + req_access_txt = "0" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/toilet/restrooms) +"cyJ" = ( +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/toilet/restrooms) +"cyK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/crew_quarters/toilet/restrooms) +"cyL" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/crew_quarters/toilet/restrooms) +"cyM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/toilet/restrooms) +"cyN" = ( +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/toilet/restrooms) +"cyO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/toilet/restrooms) +"cyQ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/closet/wardrobe/white, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/crew_quarters/locker) +"cyR" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"cyS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/closet/wardrobe/mixed, +/turf/open/floor/plasteel/neutral/corner, +/area/crew_quarters/locker) +"cyT" = ( +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/dorms) +"cyU" = ( +/obj/structure/bed, +/obj/item/bedsheet/black, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/dorms) +"cyV" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/item/razor, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"cyW" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"cyX" = ( +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"cyY" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/pen, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"cyZ" = ( +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"cza" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/ai_status_display{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/recreation) +"czb" = ( +/obj/structure/stacklifter, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"czc" = ( +/turf/open/floor/plasteel/neutral/side, +/area/crew_quarters/fitness/recreation) +"czd" = ( +/obj/structure/weightlifter, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cze" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/crew_quarters/fitness/recreation) +"czf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/crew_quarters/fitness/recreation) +"czg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/fitness/recreation) +"czh" = ( +/obj/machinery/status_display, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/fitness/recreation) +"czi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/crew_quarters/fitness/recreation) +"czj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"czk" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"czl" = ( +/obj/machinery/camera/emp_proof{ + c_tag = "Containment - Aft Starboard"; + dir = 8; + network = list("Singularity") + }, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"czm" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"czn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"czo" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"czp" = ( +/obj/effect/landmark/lightsout, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/engine/engineering) +"czq" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"czr" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/storage) +"czs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/storage) +"czt" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/storage) +"czu" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/yellow, +/area/engine/storage) +"czv" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral, +/area/engine/storage) +"czw" = ( +/obj/structure/table/reinforced, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/tank/jetpack/carbondioxide, +/obj/machinery/power/apc{ + dir = 4; + name = "Engineering Storage APC"; + areastring = "/area/engine/storage"; + pixel_x = 26 + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/storage) +"czx" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port) +"czy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow, +/area/maintenance/port) +"czz" = ( +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/maintenance/port) +"czA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port) +"czB" = ( +/obj/machinery/door/airlock/maintenance_hatch/abandoned{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"czC" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"czD" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plasteel/black, +/area/library) +"czE" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library) +"czG" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library) +"czH" = ( +/obj/machinery/light, +/obj/structure/dresser, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/black, +/area/library) +"czI" = ( +/obj/structure/table/wood, +/obj/item/dice/d20{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/dice/d10{ + pixel_x = -3 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library) +"czJ" = ( +/obj/structure/filingcabinet, +/obj/machinery/atmospherics/pipe/manifold/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/black, +/area/library) +"czK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library) +"czL" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"czM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"czN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/turf/open/floor/plasteel/neutral, +/area/maintenance/port) +"czO" = ( +/turf/open/floor/plasteel/neutral, +/area/maintenance/port) +"czP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port) +"czQ" = ( +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/wrench, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/structure/table/reinforced, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/storage/eva) +"czR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"czS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"czT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"czU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"czV" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"czW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"czX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"czY" = ( +/obj/item/stack/rods{ + amount = 25 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/storage/eva) +"czZ" = ( +/obj/structure/table/wood, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/item/clipboard, +/obj/item/toy/figure/dsquad, +/turf/open/floor/plasteel/grimy, +/area/bridge/showroom/corporate) +"cAa" = ( +/turf/open/floor/plasteel/grimy, +/area/bridge/showroom/corporate) +"cAb" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bridge/showroom/corporate) +"cAc" = ( +/obj/structure/table/wood, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/item/folder/blue, +/obj/item/pen, +/turf/open/floor/carpet, +/area/bridge/showroom/corporate) +"cAd" = ( +/obj/structure/table/wood, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 3 + }, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = -3 + }, +/obj/item/clothing/mask/cigarette/cigar, +/turf/open/floor/carpet, +/area/bridge/showroom/corporate) +"cAe" = ( +/obj/structure/table/wood, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/item/lighter, +/turf/open/floor/carpet, +/area/bridge/showroom/corporate) +"cAf" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/bridge/showroom/corporate) +"cAg" = ( +/obj/structure/table/wood, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/item/storage/secure/briefcase, +/turf/open/floor/plasteel/grimy, +/area/bridge/showroom/corporate) +"cAh" = ( +/obj/structure/table, +/obj/item/storage/belt, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/gateway) +"cAi" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/gateway) +"cAj" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/gateway) +"cAk" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/gateway) +"cAl" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/gateway) +"cAm" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_command{ + name = "Gateway Chamber"; + req_access_txt = "62" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/gateway) +"cAn" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/gateway) +"cAo" = ( +/obj/machinery/holopad, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/gateway) +"cAp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/gateway) +"cAq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/shower{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/toilet/restrooms) +"cAr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/neutral/side, +/area/crew_quarters/toilet/restrooms) +"cAs" = ( +/obj/machinery/shower{ + dir = 8; + icon_state = "shower" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/crew_quarters/toilet/restrooms) +"cAt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/toilet/restrooms) +"cAu" = ( +/obj/structure/mirror{ + pixel_x = -26 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/toilet/restrooms) +"cAv" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/crew_quarters/toilet/restrooms) +"cAw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/crew_quarters/toilet/restrooms) +"cAx" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/crew_quarters/toilet/restrooms) +"cAy" = ( +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/crew_quarters/toilet/restrooms) +"cAz" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner, +/area/crew_quarters/toilet/restrooms) +"cAA" = ( +/obj/machinery/light, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/crew_quarters/toilet/restrooms) +"cAB" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/crew_quarters/toilet/restrooms) +"cAC" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + name = "Primary Restroom" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/toilet/restrooms) +"cAD" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/crew_quarters/locker) +"cAE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/crew_quarters/locker) +"cAF" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Locker Room - Aft"; + dir = 1; + name = "dormitories camera" + }, +/turf/open/floor/plasteel/neutral/side, +/area/crew_quarters/locker) +"cAG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/crew_quarters/locker) +"cAH" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/crew_quarters/locker) +"cAI" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral/corner, +/area/crew_quarters/locker) +"cAJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/closet/wardrobe/yellow, +/turf/open/floor/plasteel/neutral/corner, +/area/crew_quarters/locker) +"cAK" = ( +/obj/structure/chair/office/dark, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/dorms) +"cAL" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/dorms) +"cAM" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"cAN" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"cAO" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"cAP" = ( +/obj/structure/table, +/obj/item/folder, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/recreation) +"cAQ" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/crew_quarters/fitness/recreation) +"cAR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/crew_quarters/fitness/recreation) +"cAS" = ( +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/rec_center) +"cAT" = ( +/obj/machinery/camera{ + c_tag = "Holodeck - Fore"; + dir = 2; + name = "holodeck camera" + }, +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/rec_center) +"cAU" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"cAV" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/grille, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"cAW" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/grille, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"cAX" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/grille, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"cAY" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"cAZ" = ( +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 4; + name = "External Containment Access"; + req_access_txt = "10; 13" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cBa" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/fans/tiny, +/obj/effect/turf_decal/delivery, +/obj/structure/barricade/wooden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cBb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/yellow, +/area/engine/engineering) +"cBc" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral, +/area/engine/engineering) +"cBd" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/yellow, +/area/engine/engineering) +"cBe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/twohanded/required/kirbyplants/random, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cBf" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/storage) +"cBg" = ( +/obj/structure/rack, +/obj/item/storage/belt/utility, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/storage) +"cBh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/yellow/side, +/area/engine/storage) +"cBi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/yellow/side, +/area/engine/storage) +"cBj" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/plasteel{ + amount = 50 + }, +/obj/item/stack/sheet/rglass{ + amount = 50; + pixel_x = 2; + pixel_y = -2 + }, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/storage) +"cBk" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/maintenance/port) +"cBl" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"cBm" = ( +/turf/open/floor/plasteel/yellow/side, +/area/maintenance/port) +"cBn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/caution, +/area/maintenance/port) +"cBo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/port) +"cBp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral, +/area/maintenance/port) +"cBq" = ( +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/machinery/light, +/obj/structure/table/reinforced, +/obj/item/device/gps, +/obj/item/device/gps, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/storage/eva) +"cBr" = ( +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/obj/machinery/camera{ + c_tag = "Bridge - E.V.A. Aft"; + dir = 1; + name = "command camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"cBs" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = -26 + }, +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"cBt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"cBu" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"cBv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"cBw" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"cBx" = ( +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"cBy" = ( +/obj/item/storage/belt, +/obj/item/device/radio, +/obj/machinery/light, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/storage/eva) +"cBz" = ( +/obj/structure/table/wood, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/item/folder/blue, +/obj/item/clothing/under/rank/centcom_commander{ + desc = "A replica of a jumpsuit worn by the highest ranking commanders under Nanotrasen's central command."; + name = "Replica CentCom officer's jumpsuit" + }, +/obj/item/clothing/head/centhat{ + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0); + desc = "A replica hat of a Central Commander's attire. It has a small tag on it saying, 'It's good to be emperor.'"; + name = "Replica CentCom hat" + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/grimy, +/area/bridge/showroom/corporate) +"cBA" = ( +/obj/structure/table/wood, +/obj/item/storage/photo_album, +/turf/open/floor/plasteel/grimy, +/area/bridge/showroom/corporate) +"cBB" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/light, +/turf/open/floor/plasteel/grimy, +/area/bridge/showroom/corporate) +"cBC" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/bridge/showroom/corporate) +"cBD" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/grimy, +/area/bridge/showroom/corporate) +"cBE" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/bridge/showroom/corporate) +"cBF" = ( +/obj/machinery/button/door{ + id = "corporatelounge"; + name = "Corporate Lounge Shutters"; + pixel_x = -7; + pixel_y = -26 + }, +/obj/machinery/light_switch{ + pixel_x = 7; + pixel_y = -26 + }, +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/light, +/turf/open/floor/plasteel/grimy, +/area/bridge/showroom/corporate) +"cBG" = ( +/obj/structure/table/wood, +/obj/item/device/paicard, +/turf/open/floor/plasteel/grimy, +/area/bridge/showroom/corporate) +"cBH" = ( +/obj/structure/table/wood, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/item/folder/red, +/obj/item/toy/gun, +/obj/item/clothing/head/beret/sec{ + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0); + desc = "A replica beret resembling that of a special operations officer under Nanotrasen."; + name = "replica officer's beret" + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26 + }, +/turf/open/floor/plasteel/grimy, +/area/bridge/showroom/corporate) +"cBI" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/gateway) +"cBJ" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/button/door{ + id = "gatewayshutters"; + name = "Gateway Shutters"; + pixel_x = -26; + pixel_y = -26 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/gateway) +"cBK" = ( +/obj/machinery/light_switch{ + pixel_x = -26; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/gateway) +"cBL" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/gateway) +"cBM" = ( +/obj/machinery/recharge_station, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/gateway) +"cBN" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/gateway) +"cBO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/gateway) +"cBP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/gateway) +"cBQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/gateway) +"cBR" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/lightsout, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"cBS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/mirror{ + pixel_x = -26 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/toilet/restrooms) +"cBT" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner, +/area/crew_quarters/toilet/restrooms) +"cBU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock{ + name = "Toilet Unit" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/crew_quarters/toilet/restrooms) +"cBV" = ( +/obj/machinery/door/airlock{ + name = "Toilet Unit" + }, +/turf/open/floor/plating, +/area/crew_quarters/toilet/restrooms) +"cBW" = ( +/obj/machinery/vending/clothing, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/locker) +"cBX" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/locker) +"cBY" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/locker) +"cBZ" = ( +/obj/machinery/vending/autodrobe{ + req_access_txt = "0" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/locker) +"cCa" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/locker) +"cCb" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/locker) +"cCd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/locker) +"cCe" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/lighter, +/obj/machinery/button/door{ + id = "Dorm1"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + pixel_x = -26; + pixel_y = 7; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/dorms) +"cCf" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/dorms) +"cCg" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"cCh" = ( +/obj/structure/dresser, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"cCi" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/machinery/button/door{ + id = "Dorm3"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + pixel_x = -26; + pixel_y = 7; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"cCj" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"cCk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/recreation) +"cCl" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/neutral/side, +/area/crew_quarters/fitness/recreation) +"cCm" = ( +/obj/structure/grille, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"cCn" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/grille, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"cCo" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/grille, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"cCp" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/grille, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"cCq" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/grille, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"cCr" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/grille, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"cCs" = ( +/obj/structure/closet/emcloset/anchored, +/obj/machinery/light/small, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCt" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCw" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Aft"; + dir = 1; + name = "engineering camera" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCy" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/clothing/head/cone, +/obj/item/clothing/head/cone, +/obj/item/clothing/head/cone, +/obj/item/clothing/head/cone, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCz" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCA" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/electricshock{ + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/storage) +"cCB" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/storage) +"cCC" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light, +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/storage) +"cCD" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/storage) +"cCE" = ( +/obj/structure/table/reinforced, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/wrench, +/obj/item/storage/box/lights/mixed, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/storage) +"cCF" = ( +/obj/structure/table/reinforced, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/turf/open/floor/plating, +/area/maintenance/port) +"cCH" = ( +/obj/structure/rack, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_guide, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"cCI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plating, +/area/maintenance/port) +"cCJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 9 + }, +/area/maintenance/port) +"cCK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cCL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cCM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"cCN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"cCO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j2s"; + name = "Library Junction"; + sortType = 16 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cCP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/maintenance/port) +"cCQ" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cCR" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cCS" = ( +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: PRESSURIZED DOORS" + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"cCT" = ( +/obj/machinery/door/poddoor/shutters{ + id = "evashutters"; + name = "E.V.A. Storage Shutters" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"cCU" = ( +/obj/machinery/door/poddoor/shutters{ + id = "evashutters"; + name = "E.V.A. Storage Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"cCV" = ( +/obj/machinery/button/door{ + id = "evashutters"; + name = "E.V.A. Shutters"; + pixel_x = 26; + req_access_txt = "19" + }, +/obj/machinery/door/poddoor/shutters{ + id = "evashutters"; + name = "E.V.A. Storage Shutters" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"cCW" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "corporatelounge"; + name = "Corporate Lounge Shutters" + }, +/turf/open/floor/plating, +/area/bridge/showroom/corporate) +"cCX" = ( +/obj/structure/sign/electricshock, +/turf/closed/wall/r_wall, +/area/bridge/showroom/corporate) +"cCY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Corporate Lounge"; + req_access = null; + req_access_txt = "19" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/bridge/showroom/corporate) +"cCZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Gateway Atrium"; + req_access_txt = "62" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/gateway) +"cDa" = ( +/obj/machinery/door/poddoor/shutters{ + id = "gatewayshutters"; + name = "Gateway Chamber Shutters" + }, +/obj/machinery/button/door{ + id = "gatewayshutters"; + name = "Gateway Shutters"; + pixel_x = -26; + req_access_txt = "19" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/gateway) +"cDb" = ( +/obj/machinery/door/poddoor/shutters{ + id = "gatewayshutters"; + name = "Gateway Chamber Shutters" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/gateway) +"cDc" = ( +/obj/machinery/door/poddoor/shutters{ + id = "gatewayshutters"; + name = "Gateway Chamber Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/gateway) +"cDd" = ( +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: BLAST DOORS" + }, +/turf/closed/wall/r_wall, +/area/gateway) +"cDe" = ( +/turf/closed/wall, +/area/maintenance/starboard/aft) +"cDf" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cDg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cDh" = ( +/obj/structure/mopbucket, +/obj/item/mop, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cDi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/vending/cigarette, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/crew_quarters/toilet/restrooms) +"cDj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner, +/area/crew_quarters/toilet/restrooms) +"cDk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit/old, +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/crew_quarters/toilet/restrooms) +"cDl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/machinery/light/small, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/toilet/restrooms) +"cDm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/machinery/light/small, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/toilet/restrooms) +"cDn" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock{ + name = "Lockerroom" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"cDo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Lockerroom" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"cDp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + id_tag = "Dorm1"; + name = "Cabin 1" + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/dorms) +"cDq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + id_tag = "Dorm2"; + name = "Cabin 2" + }, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"cDr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + id_tag = "Dorm3"; + name = "Cabin 3" + }, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"cDs" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/recreation) +"cDt" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/black, +/area/crew_quarters/fitness/recreation) +"cDu" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel/black, +/area/crew_quarters/fitness/recreation) +"cDv" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/door/window{ + dir = 4; + name = "Fitness Ring"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel/black, +/area/crew_quarters/fitness/recreation) +"cDw" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/crew_quarters/fitness/recreation) +"cDx" = ( +/obj/structure/closet/emcloset/anchored, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cDy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Engineering" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cDA" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cDB" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port) +"cDC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"cDD" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port) +"cDE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port) +"cDF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/port) +"cDG" = ( +/obj/effect/landmark/lightsout, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"cDH" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"cDI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"cDJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Central Hallway - Science Aft"; + dir = 2; + name = "hallway camera" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cDK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cDL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cDM" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cDN" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cDO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"cDP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"cDQ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "L1" + }, +/area/hallway/primary/central) +"cDR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "L3" + }, +/area/hallway/primary/central) +"cDS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel{ + icon_state = "L5" + }, +/area/hallway/primary/central) +"cDT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "L7" + }, +/area/hallway/primary/central) +"cDU" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "L9" + }, +/area/hallway/primary/central) +"cDV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "L11" + }, +/area/hallway/primary/central) +"cDW" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "L13" + }, +/area/hallway/primary/central) +"cDX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"cDY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Central Hallway - Medbay Aft"; + dir = 2; + name = "hallway camera" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"cDZ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"cEa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cEb" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Central Hallway - Aft Starboard"; + dir = 8; + name = "hallway camera" + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/central) +"cEc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"cEd" = ( +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cEe" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cEf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/toilet/restrooms) +"cEg" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"cEh" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cEi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/reagent_containers/blood/random, +/obj/item/roller, +/turf/open/floor/plasteel/blue/corner{ + dir = 1 + }, +/area/maintenance/starboard/aft) +"cEj" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags, +/obj/item/pen, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cEk" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cEl" = ( +/obj/machinery/washing_machine, +/obj/machinery/camera{ + c_tag = "Dormitories - Port"; + dir = 4; + name = "dormitories camera" + }, +/turf/open/floor/plasteel/arrival{ + dir = 8 + }, +/area/crew_quarters/dorms) +"cEm" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light_switch{ + pixel_x = -26; + pixel_y = 26 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/dorms) +"cEn" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/crew_quarters/dorms) +"cEo" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/crew_quarters/dorms) +"cEp" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + name = "Dormitories" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"cEq" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/dorms) +"cEr" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/dorms) +"cEs" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/crew_quarters/dorms) +"cEt" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/crew_quarters/dorms) +"cEu" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Dormitories - Starboard"; + dir = 2; + name = "dormitories camera" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/crew_quarters/dorms) +"cEv" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/crew_quarters/dorms) +"cEw" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + name = "Recreational Area" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"cEx" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/recreation) +"cEy" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cEz" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/black, +/area/crew_quarters/fitness/recreation) +"cEA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/fitness/recreation) +"cEB" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/black, +/area/crew_quarters/fitness/recreation) +"cEC" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cED" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/crew_quarters/fitness/recreation) +"cEF" = ( +/obj/machinery/light, +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"cEG" = ( +/obj/machinery/door/airlock/glass{ + name = "Holodeck Access" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"cEH" = ( +/obj/machinery/door/airlock/glass{ + name = "Holodeck Access" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"cEI" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"cEJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/crew_quarters/fitness/recreation) +"cEK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Holodeck Control"; + dir = 2; + name = "holodeck camera" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/crew_quarters/fitness/recreation) +"cEL" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 5 + }, +/area/crew_quarters/fitness/recreation) +"cEM" = ( +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 4; + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cEN" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"cEO" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cEP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/item/device/flashlight, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"cEQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"cER" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"cES" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"cET" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"cEU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cEV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cEX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"cEY" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"cEZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cFa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"cFb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cFc" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cFd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cFe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"cFf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cFg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port) +"cFh" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cFi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/maintenance/port) +"cFj" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/maintenance/port) +"cFk" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cFl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cFm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port) +"cFn" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cFo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cFp" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port) +"cFq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 10; + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"cFr" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/maintenance/port) +"cFs" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cFt" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cFu" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cFv" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cFw" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"cFx" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall6"; + location = "hall5" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"cFy" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/hallway/primary/central) +"cFz" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "L2" + }, +/area/hallway/primary/central) +"cFA" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "L4" + }, +/area/hallway/primary/central) +"cFB" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "L6" + }, +/area/hallway/primary/central) +"cFC" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall7"; + location = "hall6" + }, +/turf/open/floor/plasteel{ + icon_state = "L8" + }, +/area/hallway/primary/central) +"cFD" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall9"; + location = "hall8" + }, +/turf/open/floor/plasteel{ + icon_state = "L10" + }, +/area/hallway/primary/central) +"cFE" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "L12" + }, +/area/hallway/primary/central) +"cFF" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + desc = ""; + icon_state = "L14" + }, +/area/hallway/primary/central) +"cFG" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"cFH" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall10"; + location = "hall9" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"cFI" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + icon_state = "pipe-j1s"; + name = "Medbay Junction"; + sortType = 9 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/central) +"cFJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"cFK" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cFL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cFM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cFN" = ( +/obj/structure/girder, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cFO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cFP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"cFQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cFR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"cFS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch/abandoned{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"cFT" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cFU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/maintenance/starboard/aft) +"cFV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker, +/obj/item/reagent_containers/dropper, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cFW" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/arrival{ + dir = 8 + }, +/area/crew_quarters/dorms) +"cFX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/crew_quarters/dorms) +"cFY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/dorms) +"cFZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/crew_quarters/dorms) +"cGa" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/crew_quarters/dorms) +"cGb" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/crew_quarters/dorms) +"cGc" = ( +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/dorms) +"cGd" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/dorms) +"cGe" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/dorms) +"cGf" = ( +/obj/effect/landmark/lightsout, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/dorms) +"cGg" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/dorms) +"cGh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Recreation - Center"; + dir = 4; + name = "recreation camera" + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cGi" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"cGj" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/black, +/area/crew_quarters/fitness/recreation) +"cGk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/crew_quarters/fitness/recreation) +"cGl" = ( +/obj/structure/sign/nosmoking_2, +/turf/closed/wall, +/area/crew_quarters/fitness/recreation) +"cGm" = ( +/obj/machinery/computer/holodeck, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/crew_quarters/fitness/recreation) +"cGn" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cGo" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/crew_quarters/fitness/recreation) +"cGp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/port) +"cGt" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cGu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cGx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cGy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port) +"cGz" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cGA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port) +"cGB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/clothing/gloves/color/fyellow, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port) +"cGC" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/maintenance/port) +"cGD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cGE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/maintenance/port) +"cGF" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port) +"cGG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"cGH" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"cGI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/maintenance/port) +"cGJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"cGK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"cGL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/maintenance/port) +"cGM" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cGN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/port) +"cGO" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"cGP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j1"; + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"cGQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"cGR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"cGS" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j1s"; + name = "Research Junction"; + sortType = 12 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"cGT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Central Hallway - Aft"; + dir = 1; + name = "hallway camera" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"cGU" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"cGV" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side, +/area/hallway/primary/central) +"cGW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/blue/corner, +/area/hallway/primary/central) +"cGX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/blue/corner, +/area/hallway/primary/central) +"cGY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/blue/corner, +/area/hallway/primary/central) +"cGZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/blue/corner, +/area/hallway/primary/central) +"cHa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j1s"; + name = "CMO's Junction"; + sortType = 10 + }, +/turf/open/floor/plasteel/blue/corner, +/area/hallway/primary/central) +"cHb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/central) +"cHc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/starboard/aft) +"cHd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cHe" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cHf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/maintenance/starboard/aft) +"cHg" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cHh" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cHi" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cHj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/storage) +"cHk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cHl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cHm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/blue/corner{ + dir = 4 + }, +/area/maintenance/starboard/aft) +"cHn" = ( +/obj/machinery/washing_machine, +/turf/open/floor/plasteel/arrival{ + dir = 8 + }, +/area/crew_quarters/dorms) +"cHo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/crew_quarters/dorms) +"cHp" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/neutral/side, +/area/crew_quarters/dorms) +"cHq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral/corner, +/area/crew_quarters/dorms) +"cHr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Dormitories" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"cHs" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/crew_quarters/dorms) +"cHt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/crew_quarters/dorms) +"cHu" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/crew_quarters/dorms) +"cHv" = ( +/obj/structure/cable/white, +/obj/machinery/power/apc{ + dir = 2; + name = "Dormitories APC"; + areastring = "/area/crew_quarters/dorms"; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Dormitories - Center"; + dir = 1; + name = "dormitories camera" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/crew_quarters/dorms) +"cHw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/crew_quarters/dorms) +"cHx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/crew_quarters/dorms) +"cHy" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner, +/area/crew_quarters/dorms) +"cHz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Recreational Area" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"cHA" = ( +/obj/machinery/light_switch{ + pixel_x = -26; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/crew_quarters/fitness/recreation) +"cHB" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/lightsout, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cHC" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/black, +/area/crew_quarters/fitness/recreation) +"cHD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/fitness/recreation) +"cHE" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/crew_quarters/fitness/recreation) +"cHF" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"cHG" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/folder, +/obj/item/paper/fluff/holodeck/disclaimer, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/crew_quarters/fitness/recreation) +"cHH" = ( +/obj/machinery/shieldgen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cHI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/port) +"cHJ" = ( +/turf/closed/wall, +/area/maintenance/department/electrical) +"cHK" = ( +/obj/structure/sign/securearea, +/turf/closed/wall, +/area/maintenance/department/electrical) +"cHL" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 8 + }, +/area/medical/virology) +"cHM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/department/electrical) +"cHN" = ( +/obj/structure/sign/electricshock, +/turf/closed/wall, +/area/maintenance/department/electrical) +"cHO" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering Auxiliary Power"; + req_access_txt = "10" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cHP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/mob/living/simple_animal/cockroach, +/turf/open/floor/plating, +/area/maintenance/port) +"cHQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cHR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port) +"cHS" = ( +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"cHT" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/extinguisher, +/obj/item/extinguisher, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cHU" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cHV" = ( +/obj/machinery/atmospherics/components/unary/tank/air, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cHW" = ( +/turf/closed/wall, +/area/science/xenobiology) +"cHX" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/science/xenobiology) +"cHY" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology - Cell 1"; + name = "xenobiology camera"; + network = list("SS13","xeno","RD") + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/science/xenobiology) +"cHZ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology - Cell 2"; + name = "xenobiology camera"; + network = list("SS13","xeno","RD") + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/science/xenobiology) +"cIa" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology - Cell 3"; + name = "xenobiology camera"; + network = list("SS13","xeno","RD") + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/science/xenobiology) +"cIb" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology - Killroom Chamber"; + dir = 2; + name = "xenobiology camera"; + network = list("SS13","xeno","RD") + }, +/turf/open/floor/plasteel/vault/killroom, +/area/science/xenobiology) +"cIc" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/item/device/flashlight, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"cId" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port) +"cIe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"cIf" = ( +/obj/machinery/light, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cIg" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cIh" = ( +/obj/structure/sign/science, +/turf/closed/wall, +/area/hallway/primary/central) +"cIi" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/research) +"cIj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/science/research) +"cIk" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research) +"cIl" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/science/research) +"cIm" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research) +"cIn" = ( +/obj/structure/sign/directions/evac{ + pixel_y = -8 + }, +/obj/structure/sign/directions/science{ + dir = 8 + }, +/obj/structure/sign/directions/engineering{ + dir = 8; + pixel_y = 8 + }, +/turf/closed/wall, +/area/science/research) +"cIo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/glass{ + name = "Aft Primary Hallway" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cIp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Aft Primary Hallway" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cIq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/glass{ + name = "Aft Primary Hallway" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cIr" = ( +/obj/structure/sign/directions/evac{ + pixel_y = -8 + }, +/obj/structure/sign/directions/medical{ + dir = 4 + }, +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = 8 + }, +/turf/closed/wall, +/area/medical/medbay/central) +"cIs" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/medbay/central) +"cIt" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cIu" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/medical/medbay/central) +"cIv" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cIw" = ( +/obj/structure/sign/bluecross_2, +/turf/closed/wall, +/area/medical/medbay/central) +"cIy" = ( +/obj/machinery/vending/snack/random, +/obj/machinery/light, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cIz" = ( +/obj/machinery/vending/cola/random, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cIA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"cIB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral, +/area/maintenance/starboard/aft) +"cIC" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cID" = ( +/turf/closed/wall/r_wall, +/area/medical/storage) +"cIE" = ( +/obj/machinery/vending/medical, +/turf/open/floor/plasteel/neutral/corner, +/area/medical/storage) +"cIF" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/neutral/side, +/area/medical/storage) +"cIG" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/turf/open/floor/plasteel/neutral/side, +/area/medical/storage) +"cIH" = ( +/obj/structure/closet/wardrobe/white/medical, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/item/storage/backpack/satchel/med, +/turf/open/floor/plasteel/neutral/side, +/area/medical/storage) +"cII" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/storage) +"cIJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/blue/corner{ + dir = 8 + }, +/area/maintenance/starboard/aft) +"cIK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/maintenance/starboard/aft) +"cIL" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cIM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + id_tag = "Dorm4"; + name = "Cabin 4" + }, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"cIN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + id_tag = "Dorm5"; + name = "Cabin 5" + }, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"cIO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + id_tag = "Dorm6"; + name = "Cabin 6" + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/dorms) +"cIP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/crew_quarters/fitness/recreation) +"cIQ" = ( +/obj/structure/window/reinforced, +/obj/machinery/door/window{ + dir = 8; + name = "Fitness Ring"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel/black, +/area/crew_quarters/fitness/recreation) +"cIR" = ( +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/black, +/area/crew_quarters/fitness/recreation) +"cIS" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/black, +/area/crew_quarters/fitness/recreation) +"cIT" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/crew_quarters/fitness/recreation) +"cIV" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"cIW" = ( +/obj/machinery/door/airlock/glass{ + name = "Holodeck Access" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"cIX" = ( +/obj/machinery/door/airlock/glass{ + name = "Holodeck Access" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"cIY" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"cIZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/crew_quarters/fitness/recreation) +"cJa" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/side, +/area/crew_quarters/fitness/recreation) +"cJb" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 6 + }, +/area/crew_quarters/fitness/recreation) +"cJc" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/port) +"cJd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cJe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cJf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cJg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port) +"cJi" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cJj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cJk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/light_switch{ + pixel_y = 26 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cJl" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cJm" = ( +/obj/structure/table/reinforced, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cJn" = ( +/obj/structure/table/reinforced, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/item/electronics/apc{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/electronics/apc, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cJo" = ( +/obj/machinery/power/port_gen/pacman, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cJp" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cJq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cJr" = ( +/obj/machinery/light_switch{ + pixel_y = 26 + }, +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cJt" = ( +/obj/structure/table/reinforced, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/item/stack/cable_coil/white{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil/white, +/obj/item/device/multitool, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cJu" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/lights/mixed{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/lights/mixed, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cJv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cJw" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cJx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port) +"cJy" = ( +/obj/structure/rack, +/obj/item/book/manual/wiki/engineering_guide, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port) +"cJz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port) +"cJA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cJB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cJC" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Xenobiology Maintenance"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cJD" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cJE" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cJF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cJG" = ( +/mob/living/simple_animal/slime, +/turf/open/floor/circuit/green, +/area/science/xenobiology) +"cJH" = ( +/turf/open/floor/circuit/green, +/area/science/xenobiology) +"cJI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 2; + external_pressure_bound = 140; + name = "killroom vent"; + pressure_checks = 0 + }, +/turf/open/floor/circuit/killroom, +/area/science/xenobiology) +"cJJ" = ( +/turf/open/floor/circuit/telecomms/mainframe, +/area/science/xenobiology) +"cJK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 2; + external_pressure_bound = 120; + name = "server vent" + }, +/turf/open/floor/circuit/killroom, +/area/science/xenobiology) +"cJL" = ( +/turf/closed/wall/r_wall, +/area/science/research) +"cJM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/science/research) +"cJN" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Science Maintenance"; + req_access_txt = "47" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cJO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/science/research) +"cJP" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/science/research) +"cJR" = ( +/obj/structure/chair, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"cJS" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"cJT" = ( +/obj/structure/chair, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"cJU" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/item/device/paicard, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"cJV" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 1 + }, +/area/science/research) +"cJW" = ( +/obj/structure/table, +/obj/item/stack/cable_coil/white, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/timer{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/science/research) +"cJX" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/science/research) +"cJY" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/science/research) +"cJZ" = ( +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/science/research) +"cKa" = ( +/obj/structure/chair, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/science/research) +"cKb" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/glasses/science, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/science/research) +"cKc" = ( +/obj/structure/sign/science, +/turf/closed/wall, +/area/science/research) +"cKd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"cKe" = ( +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/aft) +"cKf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/blue/corner, +/area/hallway/primary/aft) +"cKg" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags, +/obj/item/pen, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cKh" = ( +/obj/structure/chair, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cKi" = ( +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cKj" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cKk" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/bottle/charcoal{ + pixel_x = 6 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/item/reagent_containers/syringe, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cKl" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/medical/medbay/central) +"cKm" = ( +/obj/structure/table, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/ointment, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"cKn" = ( +/obj/structure/chair, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"cKo" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"cKp" = ( +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"cKq" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"cKr" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = 28 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"cKs" = ( +/turf/closed/wall, +/area/medical/medbay/central) +"cKt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel/neutral/side{ + dir = 10; + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"cKu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cKv" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cKw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/starboard/aft) +"cKx" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Medbay Storage APC"; + areastring = "/area/medical/storage"; + pixel_x = -26 + }, +/obj/machinery/camera{ + c_tag = "Medbay - Storage"; + dir = 4; + name = "medbay camera" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/medical/storage) +"cKy" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/medical/storage) +"cKz" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/medical/storage) +"cKA" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/medical/storage) +"cKB" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + name = "Medbay Auxiliary Storage"; + req_access_txt = "5" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"cKC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"cKD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cKE" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cKF" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/blue/corner, +/area/maintenance/starboard/aft) +"cKG" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"cKH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch/abandoned{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"cKI" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"cKJ" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cKK" = ( +/obj/structure/dresser, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26; + pixel_y = 26 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"cKL" = ( +/obj/machinery/button/door{ + id = "Dorm5"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + pixel_x = -26; + pixel_y = 7; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"cKM" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26; + pixel_y = 26 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"cKN" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/pen/blue, +/obj/machinery/button/door{ + id = "Dorm6"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + pixel_x = -26; + pixel_y = 7; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/dorms) +"cKO" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26; + pixel_y = 26 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/dorms) +"cKP" = ( +/obj/machinery/vending/cola/random, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"cKQ" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/crew_quarters/fitness/recreation) +"cKR" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/crew_quarters/fitness/recreation) +"cKS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner, +/area/crew_quarters/fitness/recreation) +"cKT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/crew_quarters/fitness/recreation) +"cKU" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/black, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cKV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cKW" = ( +/obj/machinery/atmospherics/components/binary/valve, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cKX" = ( +/obj/machinery/atmospherics/components/binary/valve, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cKY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/turf/open/floor/plasteel/caution{ + dir = 8 + }, +/area/maintenance/department/electrical) +"cKZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/caution{ + dir = 4 + }, +/area/maintenance/department/electrical) +"cLa" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cLb" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cLc" = ( +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_guide, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cLd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cLe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cLf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cLg" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cLh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cLi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cLj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cLk" = ( +/obj/machinery/cell_charger, +/obj/structure/table/reinforced, +/obj/item/stock_parts/cell/high, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Auxiliary Power APC"; + areastring = "/area/maintenance/department/electrical"; + pixel_x = 26 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cLl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/port) +"cLm" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cLn" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/vault{ + dir = 1 + }, +/area/science/xenobiology) +"cLo" = ( +/obj/machinery/atmospherics/pipe/manifold/general/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/vault/killroom, +/area/science/xenobiology) +"cLp" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault/killroom, +/area/science/xenobiology) +"cLq" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/vault/killroom, +/area/science/xenobiology) +"cLr" = ( +/obj/structure/closet/wardrobe/science_white, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/storage/backpack/satchel/tox, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"cLs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"cLt" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 1 + }, +/area/science/research) +"cLu" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/science/research) +"cLv" = ( +/turf/closed/wall, +/area/security/checkpoint/science/research) +"cLw" = ( +/obj/structure/closet/secure_closet/security/science, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26; + pixel_y = 32 + }, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/checkpoint/science/research) +"cLx" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/checkpoint/science/research) +"cLy" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/device/radio, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/checkpoint/science/research) +"cLz" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/item/device/assembly/infra, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"cLA" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/science/research) +"cLB" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/purple, +/area/science/research) +"cLC" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral, +/area/science/research) +"cLD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/purple, +/area/science/research) +"cLE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/science/research) +"cLF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/purple, +/area/science/research) +"cLG" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral, +/area/science/research) +"cLH" = ( +/turf/open/floor/plasteel/purple, +/area/science/research) +"cLI" = ( +/turf/open/floor/plasteel/neutral, +/area/science/research) +"cLJ" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/science/research) +"cLK" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cLL" = ( +/turf/open/floor/plasteel/blue, +/area/medical/medbay/central) +"cLM" = ( +/turf/open/floor/plasteel/neutral, +/area/medical/medbay/central) +"cLN" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/neutral, +/area/medical/medbay/central) +"cLO" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/blue, +/area/medical/medbay/central) +"cLP" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"cLQ" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer"; + name = "Medbay Doors Control"; + normaldoorcontrol = 1; + pixel_x = -24; + pixel_y = 24 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cLR" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/medical/medbay/central) +"cLS" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"cLT" = ( +/turf/closed/wall, +/area/security/checkpoint/medical) +"cLU" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/medical) +"cLV" = ( +/turf/closed/wall, +/area/medical/storage) +"cLW" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/medical/storage) +"cLX" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/cmo, +/area/medical/storage) +"cLY" = ( +/turf/open/floor/plasteel/cmo, +/area/medical/storage) +"cLZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/cmo, +/area/medical/storage) +"cMa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/storage) +"cMb" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "Medbay" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/storage) +"cMc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"cMd" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cMe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cMf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/blue/corner, +/area/maintenance/starboard/aft) +"cMg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/space_heater, +/turf/open/floor/plasteel/blue, +/area/maintenance/starboard/aft) +"cMh" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/starboard/aft) +"cMi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cMj" = ( +/obj/structure/bed, +/obj/item/bedsheet/clown, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"cMk" = ( +/obj/structure/table/wood, +/obj/item/storage/briefcase{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/briefcase, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/item/cane, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"cMl" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/dorms) +"cMm" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/structure/sign/nanotrasen{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/dorms) +"cMn" = ( +/obj/machinery/vending/snack/random, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"cMo" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner, +/area/crew_quarters/fitness/recreation) +"cMp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"cMq" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port) +"cMr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 5 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cMs" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cMt" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel/caution{ + dir = 8 + }, +/area/maintenance/department/electrical) +"cMu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cMv" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cMw" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/maintenance/department/electrical) +"cMx" = ( +/obj/machinery/computer/atmos_alert, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cMy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cMz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cMA" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/maintenance/department/electrical) +"cMB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/maintenance/department/electrical) +"cMC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/neutral, +/area/maintenance/department/electrical) +"cMD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/maintenance/department/electrical) +"cME" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cMF" = ( +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cMG" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/port) +"cMH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port) +"cMJ" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/science/xenobiology) +"cMK" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/shieldwallgen/xenobiologyaccess, +/turf/open/floor/plating, +/area/science/xenobiology) +"cML" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cMM" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/camera{ + c_tag = "Xenobiology - Port"; + dir = 2; + name = "xenobiology camera"; + network = list("SS13","xeno","RD") + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cMN" = ( +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = 26 + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cMO" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26 + }, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cMP" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xeno4"; + name = "Creature Cell #4" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cMQ" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xeno4"; + name = "Creature Cell #4" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/science/xenobiology) +"cMR" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "xeno4"; + name = "Creature Cell #4" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cMS" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xeno5"; + name = "Creature Cell #5" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cMT" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xeno5"; + name = "Creature Cell #5" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/science/xenobiology) +"cMU" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "xeno5"; + name = "Creature Cell #5" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cMV" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xeno6"; + name = "Creature Cell #6" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cMW" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xeno6"; + name = "Creature Cell #6" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/science/xenobiology) +"cMX" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "xeno6"; + name = "Creature Cell #6" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cMY" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/general/hidden, +/turf/open/floor/plating, +/area/science/xenobiology) +"cMZ" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/door/airlock/glass_research{ + name = "Xenobiology Kill Room"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cNa" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"cNb" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/purple, +/area/science/research) +"cNc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/science/research) +"cNd" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/science/research) +"cNe" = ( +/obj/machinery/light_switch{ + pixel_x = -38; + pixel_y = 26 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/checkpoint/science/research) +"cNf" = ( +/turf/open/floor/plasteel/neutral, +/area/security/checkpoint/science/research) +"cNg" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/checkpoint/science/research) +"cNh" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"cNi" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/research) +"cNj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/research) +"cNk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/research) +"cNl" = ( +/obj/effect/landmark/lightsout, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/research) +"cNm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/research) +"cNn" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/research) +"cNo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/purple, +/area/science/research) +"cNp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/science/research) +"cNq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research) +"cNr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"cNs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/aft) +"cNt" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/blue/corner, +/area/hallway/primary/aft) +"cNu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cNv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cNw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/medbay/central) +"cNx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cmo, +/area/medical/medbay/central) +"cNy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/cmo, +/area/medical/medbay/central) +"cNz" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/cmo, +/area/medical/medbay/central) +"cNA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"cNB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cNC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/blue, +/area/medical/medbay/central) +"cND" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"cNE" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -32 + }, +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/device/radio, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer"; + name = "Medbay Doors Control"; + normaldoorcontrol = 1; + pixel_x = -24; + pixel_y = 24 + }, +/obj/machinery/button/door{ + desc = "A remote control switch."; + id = "meddoor"; + name = "Medical Cell Control"; + normaldoorcontrol = 1; + pixel_x = -36; + pixel_y = 24 + }, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/checkpoint/medical) +"cNF" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/checkpoint/medical) +"cNG" = ( +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 38 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26; + pixel_y = 32 + }, +/obj/structure/closet/secure_closet/security/med, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/checkpoint/medical) +"cNH" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/masks, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cNI" = ( +/obj/structure/table, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/beakers, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/medical/medbay/central) +"cNJ" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/item/storage/pod{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"cNK" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/storage) +"cNL" = ( +/obj/structure/table/glass, +/obj/item/storage/firstaid/fire{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/fire{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/medical/storage) +"cNM" = ( +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/cmo, +/area/medical/storage) +"cNN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/cmo, +/area/medical/storage) +"cNO" = ( +/obj/structure/table/glass, +/obj/item/storage/firstaid/toxin{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/toxin{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/medical/storage) +"cNP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/medical/medbay/central) +"cNQ" = ( +/obj/machinery/door/airlock{ + name = "Medbay Auxiliary Storage"; + req_access_txt = "5" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"cNR" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cNS" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"cNT" = ( +/obj/structure/chair/office/dark, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"cNU" = ( +/obj/structure/bed, +/obj/item/bedsheet/mime, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/dorms) +"cNV" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/crew_quarters/fitness/recreation) +"cNW" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cNX" = ( +/obj/structure/table, +/obj/item/folder, +/obj/item/razor, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cNY" = ( +/obj/structure/table, +/obj/item/clothing/under/sl_suit{ + name = "referee suit" + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cNZ" = ( +/obj/structure/table, +/obj/item/storage/briefcase, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cOa" = ( +/obj/machinery/camera{ + c_tag = "Holodeck - Aft"; + dir = 1; + name = "holodeck camera" + }, +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/rec_center) +"cOb" = ( +/obj/structure/table, +/obj/item/extinguisher/mini, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/mask/breath, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cOc" = ( +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cOd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/port) +"cOe" = ( +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cOf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cOg" = ( +/obj/machinery/atmospherics/components/binary/volume_pump{ + name = "Ports to Distro" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/caution{ + dir = 8 + }, +/area/maintenance/department/electrical) +"cOh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plasteel/caution{ + dir = 4 + }, +/area/maintenance/department/electrical) +"cOi" = ( +/obj/structure/table/reinforced, +/obj/item/device/analyzer{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cOj" = ( +/obj/machinery/computer/monitor, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cOk" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cOl" = ( +/turf/open/floor/plasteel/neutral, +/area/maintenance/department/electrical) +"cOm" = ( +/obj/machinery/holopad, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cOn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral, +/area/maintenance/department/electrical) +"cOo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cOp" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering Auxiliary Power"; + req_access_txt = "10" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cOq" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cOr" = ( +/obj/effect/decal/remains/xeno, +/obj/effect/decal/cleanable/xenoblood, +/turf/open/floor/circuit/green, +/area/science/xenobiology) +"cOs" = ( +/obj/structure/sign/electricshock, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"cOt" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xenosecure"; + name = "Secure Pen Shutters" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cOu" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/security/telescreen{ + dir = 4; + network = list("xeno") + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cOv" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cOw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/science/xenobiology) +"cOx" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cOy" = ( +/obj/structure/sign/xenobio, +/turf/closed/wall, +/area/science/xenobiology) +"cOz" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "xeno4"; + name = "Containment Control"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cOA" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/window/brigdoor{ + dir = 2; + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cOB" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + icon_state = "pipe-t"; + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cOC" = ( +/obj/structure/sign/electricshock, +/turf/closed/wall, +/area/science/xenobiology) +"cOD" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "xeno5"; + name = "Containment Control"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cOE" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26; + pixel_y = 32 + }, +/obj/structure/disposalpipe/trunk{ + icon_state = "pipe-t"; + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cOF" = ( +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: BIOHAZARD CELL" + }, +/turf/closed/wall, +/area/science/xenobiology) +"cOG" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26; + pixel_y = 32 + }, +/obj/machinery/button/door{ + id = "xeno6"; + name = "Containment Control"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cOH" = ( +/obj/structure/sign/biohazard, +/turf/closed/wall, +/area/science/xenobiology) +"cOI" = ( +/obj/machinery/monkey_recycler, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cOJ" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1; + min_temperature = 80; + on = 1; + target_temperature = 80 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cOK" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cOL" = ( +/obj/machinery/chem_master, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cOM" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/chem_master, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cON" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/beakers{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/syringes, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 32 + }, +/obj/item/extinguisher/mini, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cOO" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"cOP" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/science/research) +"cOQ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/science/research) +"cOR" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/door/airlock/security{ + name = "Security Post - Science"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"cOS" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/checkpoint/science/research) +"cOT" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/security/checkpoint/science/research) +"cOU" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/computer/security, +/turf/open/floor/plasteel/red, +/area/security/checkpoint/science/research) +"cOV" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/science/research) +"cOW" = ( +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/research) +"cOX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/science/research) +"cOY" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"cOZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"cPa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"cPb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"cPc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"cPd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/science/research) +"cPe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/research) +"cPf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research) +"cPg" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"cPh" = ( +/obj/effect/landmark/lightsout, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/aft) +"cPi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + icon_state = "pipe-j1s"; + name = "Chemistry Junction"; + sortType = 11 + }, +/turf/open/floor/plasteel/blue/corner, +/area/hallway/primary/aft) +"cPj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cPk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"cPl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/blue, +/area/medical/medbay/central) +"cPm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/cmo, +/area/medical/medbay/central) +"cPn" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/cmo, +/area/medical/medbay/central) +"cPo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/cmo, +/area/medical/medbay/central) +"cPp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cmo, +/area/medical/medbay/central) +"cPq" = ( +/obj/effect/landmark/lightsout, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cmo, +/area/medical/medbay/central) +"cPr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/cmo, +/area/medical/medbay/central) +"cPs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/medbay/central) +"cPt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cPu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cPv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral, +/area/medical/medbay/central) +"cPw" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"cPx" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/medical) +"cPy" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/checkpoint/medical) +"cPz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/security/checkpoint/medical) +"cPA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/checkpoint/medical) +"cPB" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/checkpoint/medical) +"cPC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cPD" = ( +/obj/structure/table/glass, +/obj/item/storage/firstaid/brute{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/brute{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/brute{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/medical/storage) +"cPE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/cmo, +/area/medical/storage) +"cPF" = ( +/obj/structure/table/glass, +/obj/item/storage/firstaid/o2{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/o2{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/machinery/requests_console{ + department = "Medbay Storage"; + departmentType = 0; + name = "Medbay Storage RC"; + pixel_x = 32 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/medical/storage) +"cPG" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/medical/medbay/central) +"cPH" = ( +/obj/machinery/door/airlock{ + name = "Bathroom" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cPI" = ( +/obj/structure/urinal{ + pixel_y = 28 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/medbay/central) +"cPJ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/medical/medbay/central) +"cPL" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cPM" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/light, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/item/device/paicard, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"cPN" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/suit/jacket/letterman_nanotrasen, +/obj/item/clothing/suit/toggle/lawyer, +/obj/item/clothing/under/maid, +/obj/item/clothing/head/kitty, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"cPO" = ( +/obj/structure/bed, +/obj/machinery/light, +/obj/item/bedsheet/brown, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"cPP" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/suit/jacket{ + desc = "All the class of a trenchcoat without the security fibers."; + icon_state = "detective"; + name = "trenchcoat" + }, +/obj/item/clothing/suit/toggle/lawyer/purple, +/obj/item/clothing/head/fedora{ + icon_state = "detective" + }, +/obj/item/clothing/under/lawyer/female, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"cPQ" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/light, +/obj/item/clothing/suit/jacket{ + desc = "All the class of a trenchcoat without the security fibers."; + icon_state = "greydet"; + name = "trenchcoat" + }, +/obj/item/clothing/suit/toggle/lawyer/black, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/item/clothing/head/fedora, +/obj/item/clothing/under/redeveninggown, +/obj/item/clothing/head/rabbitears, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/dorms) +"cPR" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/grown/poppy/lily, +/obj/item/reagent_containers/food/snacks/grown/poppy/lily, +/obj/item/reagent_containers/food/snacks/grown/poppy/lily, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/dorms) +"cPS" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/toy/katana, +/obj/machinery/ai_status_display{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/crew_quarters/fitness/recreation) +"cPT" = ( +/obj/structure/table, +/obj/item/toy/cards/deck, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cPU" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cPV" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cPW" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/crew_quarters/fitness/recreation) +"cPX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/crew_quarters/fitness/recreation) +"cPY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/fitness/recreation) +"cPZ" = ( +/obj/machinery/status_display, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/fitness/recreation) +"cQa" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/crew_quarters/fitness/recreation) +"cQb" = ( +/obj/structure/rack, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/clothing/mask/gas, +/obj/item/clothing/head/hardhat/red, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cQc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cQd" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cQe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cQf" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cQg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel/caution{ + dir = 8 + }, +/area/maintenance/department/electrical) +"cQh" = ( +/obj/machinery/atmospherics/components/trinary/filter, +/turf/open/floor/plasteel/caution{ + dir = 4 + }, +/area/maintenance/department/electrical) +"cQi" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cQj" = ( +/obj/machinery/computer/station_alert, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cQk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cQl" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cQm" = ( +/obj/structure/cable/white, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cQn" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cQo" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cQp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cQq" = ( +/obj/machinery/light_switch{ + pixel_x = 26 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cQr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port) +"cQs" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xenosecure"; + name = "Secure Pen Shutters" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cQt" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/machinery/button/door{ + id = "xenosecure"; + name = "Containment Control"; + pixel_y = -3; + req_access_txt = "55" + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 5 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cQu" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cQv" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/science/xenobiology) +"cQw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cQx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cQy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cQz" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cQA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/science/xenobiology) +"cQB" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/science/xenobiology) +"cQC" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/science/xenobiology) +"cQD" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/science/xenobiology) +"cQE" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cQF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 9 + }, +/area/science/xenobiology) +"cQG" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 1 + }, +/area/science/xenobiology) +"cQH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 1 + }, +/area/science/xenobiology) +"cQI" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cQJ" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white, +/obj/item/stack/sheet/mineral/plasma{ + amount = 5 + }, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker, +/obj/item/reagent_containers/dropper, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cQK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/purple, +/area/science/research) +"cQL" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/science/research) +"cQM" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/checkpoint/science/research) +"cQN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/checkpoint/science/research) +"cQO" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/neutral, +/area/security/checkpoint/science/research) +"cQP" = ( +/obj/machinery/computer/mecha, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/checkpoint/science/research) +"cQQ" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/science/research) +"cQR" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/research) +"cQS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/purple, +/area/science/research) +"cQT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/purple, +/area/science/research) +"cQU" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/research) +"cQV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j1" + }, +/turf/open/floor/plasteel/blue/corner, +/area/hallway/primary/aft) +"cQW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-s"; + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/medbay/central) +"cQX" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-s"; + dir = 4 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"cQY" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-s"; + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/medbay/central) +"cQZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/blue, +/area/medical/medbay/central) +"cRa" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/medbay/central) +"cRb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cRc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"cRd" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/medical) +"cRe" = ( +/obj/machinery/computer/security, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/red, +/area/security/checkpoint/medical) +"cRf" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/neutral, +/area/security/checkpoint/medical) +"cRg" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/checkpoint/medical) +"cRh" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/door/airlock/security{ + name = "Security Post - Medical"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"cRi" = ( +/obj/machinery/newscaster, +/turf/closed/wall, +/area/medical/storage) +"cRj" = ( +/obj/structure/table/glass, +/obj/item/storage/box/beakers{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/syringes, +/obj/item/gun/syringe, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/medical/storage) +"cRk" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whiteblue/side, +/area/medical/storage) +"cRl" = ( +/turf/open/floor/plasteel/whiteblue/side, +/area/medical/storage) +"cRm" = ( +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = -38 + }, +/turf/open/floor/plasteel/whiteblue/side, +/area/medical/storage) +"cRn" = ( +/obj/structure/table/glass, +/obj/item/storage/belt/medical, +/obj/item/storage/belt/medical, +/obj/item/clothing/neck/stethoscope, +/obj/item/clothing/neck/stethoscope, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/medical/storage) +"cRo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Bathroom" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cRp" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/starboard/aft) +"cRq" = ( +/obj/structure/girder, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cRr" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/power/apc{ + dir = 8; + name = "Recreation Area APC"; + areastring = "/area/crew_quarters/fitness/recreation"; + pixel_x = -26 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/crew_quarters/fitness/recreation) +"cRs" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cRt" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cRu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cRv" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cRw" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 1 + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cRx" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cRy" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cRz" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cRA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cRB" = ( +/obj/machinery/power/terminal, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cRC" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cRD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cRE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cRF" = ( +/obj/machinery/power/terminal, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cRG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cRH" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cRI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/port) +"cRJ" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology - Secure Cell"; + dir = 4; + name = "xenobiology camera"; + network = list("SS13","xeno","RD") + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/science/xenobiology) +"cRK" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/door/window/brigdoor{ + dir = 8; + name = "Secure Creature Pen"; + req_access_txt = "47" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenosecure"; + name = "Secure Pen Shutters" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/science/xenobiology) +"cRL" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/window/brigdoor{ + dir = 4; + name = "Secure Creature Pen"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cRM" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cRN" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/science/xenobiology) +"cRO" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cRP" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cRQ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cRR" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cRS" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/landmark/lightsout, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cRT" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/shower{ + dir = 8; + name = "emergency shower" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cRU" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cRV" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/xenobiology) +"cRW" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/neutral, +/area/science/xenobiology) +"cRX" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/science/xenobiology) +"cRY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cRZ" = ( +/obj/machinery/computer/camera_advanced/xenobio, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/circuit/green, +/area/science/xenobiology) +"cSa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Science - Fore"; + dir = 8; + name = "science camera"; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/science/research) +"cSb" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/machinery/door_timer{ + id = "scicell"; + name = "Science Cell"; + pixel_x = -32; + pixel_y = -32 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Security Post - Science APC"; + areastring = "/area/security/checkpoint/science/research"; + pixel_x = -26; + pixel_y = 3 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/button/door{ + desc = "A remote control switch."; + id = "scidoor"; + name = "Science Cell Control"; + normaldoorcontrol = 1; + pixel_x = -36; + pixel_y = -7 + }, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/checkpoint/science/research) +"cSc" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/science/research) +"cSd" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/camera{ + c_tag = "Security Post - Science"; + dir = 8; + name = "security camera"; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/checkpoint/science/research) +"cSe" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/electronics/airlock, +/obj/item/stock_parts/console_screen, +/obj/item/device/assembly/signaler, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/research) +"cSf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/research) +"cSg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/research) +"cSh" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/research) +"cSi" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Science - Waiting Room"; + dir = 1; + name = "science camera"; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/research) +"cSj" = ( +/obj/structure/table, +/obj/item/device/gps, +/obj/item/device/assembly/flash/handheld, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/whitepurple/side, +/area/science/research) +"cSk" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/research) +"cSl" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/research) +"cSm" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research) +"cSn" = ( +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/research) +"cSo" = ( +/obj/machinery/autolathe, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/research) +"cSp" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/packageWrap, +/obj/machinery/light, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/research) +"cSq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/aft) +"cSr" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/light, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"cSs" = ( +/obj/structure/table, +/obj/item/folder/white, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"cSt" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cSu" = ( +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"cSv" = ( +/obj/structure/disposalpipe/segment, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"cSw" = ( +/obj/structure/bed/roller, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"cSx" = ( +/obj/structure/bed/roller, +/turf/open/floor/plasteel/whiteblue/side, +/area/medical/medbay/central) +"cSy" = ( +/obj/structure/bed/roller, +/obj/structure/sign/chemistry{ + pixel_y = -32 + }, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Medbay - Waiting Room"; + dir = 1; + name = "medbay camera" + }, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/medbay/central) +"cSz" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/medbay/central) +"cSA" = ( +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/medbay/central) +"cSB" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/medbay/central) +"cSC" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/medical/medbay/central) +"cSD" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/medical) +"cSE" = ( +/obj/machinery/computer/crew, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/checkpoint/medical) +"cSF" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/neutral, +/area/security/checkpoint/medical) +"cSG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/checkpoint/medical) +"cSH" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/checkpoint/medical) +"cSI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cSJ" = ( +/obj/structure/sign/bluecross_2{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"cSL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + name = "Medbay Storage"; + req_access_txt = "5" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/storage) +"cSM" = ( +/obj/structure/table/wood, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cSN" = ( +/obj/structure/table/wood, +/obj/item/storage/box/donkpockets, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cSO" = ( +/obj/machinery/camera{ + c_tag = "Medbay - Break Room"; + dir = 2; + name = "medbay camera" + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/medical/medbay/central) +"cSP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"cSQ" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cSR" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cSS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cST" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"cSU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"cSV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cSW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"cSX" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cSY" = ( +/obj/structure/closet/crate, +/obj/item/storage/box/donkpockets, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"cSZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"cTa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 5 + }, +/area/maintenance/starboard/aft) +"cTb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/fitness/recreation) +"cTc" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/crew_quarters/fitness/recreation) +"cTd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cTe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cTf" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cTg" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cTh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cTi" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cTj" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = -26 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cTk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cTl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cTm" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/obj/structure/closet/toolcloset, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cTn" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cTp" = ( +/obj/machinery/power/smes, +/obj/machinery/light/small, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cTq" = ( +/obj/machinery/light_switch{ + pixel_y = -26 + }, +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cTr" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cTs" = ( +/obj/machinery/power/smes, +/obj/machinery/light/small, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cTt" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cTu" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cTv" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + icon_state = "pipe-t"; + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 1 + }, +/area/science/xenobiology) +"cTw" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xenosecure"; + name = "Secure Pen Shutters" + }, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-s"; + dir = 4 + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cTx" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + icon_state = "pipe-t"; + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTy" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTz" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTC" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTD" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side, +/area/science/xenobiology) +"cTE" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/science/xenobiology) +"cTF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/science/xenobiology) +"cTG" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/science/xenobiology) +"cTH" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/xenobiology) +"cTJ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/purple, +/area/science/xenobiology) +"cTK" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTL" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTM" = ( +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder{ + pixel_y = 5 + }, +/obj/machinery/requests_console{ + department = "Xenobiology Lab"; + departmentType = 0; + name = "Xenobiology RC"; + pixel_x = 32; + receive_ore_updates = 1 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology - Starboard"; + dir = 8; + name = "xenobiology camera"; + network = list("SS13","xeno","RD") + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"cTO" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/science/research) +"cTP" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/window/brigdoor{ + id = "scicell"; + name = "Medical Cell"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/red, +/area/security/checkpoint/science/research) +"cTQ" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/security/checkpoint/science/research) +"cTR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + cyclelinkeddir = 2; + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research) +"cTS" = ( +/obj/structure/sign/science, +/turf/closed/wall/r_wall, +/area/science/research) +"cTT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + cyclelinkeddir = 2; + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research) +"cTU" = ( +/obj/structure/sign/securearea, +/turf/closed/wall/r_wall, +/area/science/research) +"cTV" = ( +/obj/structure/sign/science, +/turf/closed/wall, +/area/science/lab) +"cTW" = ( +/turf/closed/wall/r_wall, +/area/science/lab) +"cTX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rndlab1"; + name = "Research and Development Shutter" + }, +/turf/open/floor/plating, +/area/science/lab) +"cTY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rndlab1"; + name = "Research and Development Shutter" + }, +/turf/open/floor/plating, +/area/science/lab) +"cTZ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/door/window/southleft{ + name = "Research Lab Desk"; + req_access_txt = "7" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rndlab1"; + name = "Research and Development Shutter" + }, +/obj/machinery/door/window/northleft, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/lab) +"cUb" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall, +/area/science/lab) +"cUc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"cUd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/aft) +"cUe" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemisttop"; + name = "Chemistry Lobby Shutters" + }, +/turf/open/floor/plating, +/area/medical/medbay/central) +"cUf" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemisttop"; + name = "Chemistry Lobby Shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/medbay/central) +"cUg" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemisttop"; + name = "Chemistry Lobby Shutters" + }, +/obj/machinery/door/window/southleft{ + name = "Chemistry Desk"; + req_access_txt = "5; 33" + }, +/obj/item/folder/yellow, +/obj/machinery/door/window/northleft, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cUh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/smartfridge/chemistry/preloaded, +/turf/closed/wall, +/area/medical/medbay/central) +"cUi" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder/white, +/obj/item/reagent_containers/hypospray/medipen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cUj" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/reagent_containers/glass/bottle/charcoal{ + pixel_x = 6 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/item/reagent_containers/syringe, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cUk" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/reagent_containers/food/drinks/britcup, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cUl" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cUm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Medbay - Fore Port"; + dir = 8; + name = "medbay camera" + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"cUn" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/machinery/door_timer{ + id = "medcell"; + name = "Medical Cell"; + pixel_x = -32; + pixel_y = -32 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Security Post - Medical APC"; + areastring = "/area/security/checkpoint/medical"; + pixel_x = -26 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Security Post - Medbay"; + dir = 4; + name = "security camera" + }, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/checkpoint/medical) +"cUo" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/medical) +"cUp" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/checkpoint/medical) +"cUq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cUr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/blue, +/area/medical/medbay/central) +"cUs" = ( +/obj/structure/table/glass, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/ointment, +/obj/machinery/camera{ + c_tag = "Medbay - Sleepers"; + dir = 2; + name = "medbay camera" + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cUt" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cUu" = ( +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/medical/medbay/central) +"cUv" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"cUw" = ( +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cUx" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/redblue, +/area/medical/medbay/central) +"cUy" = ( +/turf/open/floor/plasteel/redblue, +/area/medical/medbay/central) +"cUz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/redblue, +/area/medical/medbay/central) +"cUA" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"cUB" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cUC" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cUD" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/starboard/aft) +"cUE" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/starboard/aft) +"cUF" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cUG" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/starboard/aft) +"cUH" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/starboard/aft) +"cUI" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cUJ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cUK" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"cUL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"cUM" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j1"; + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/crew_quarters/fitness/recreation) +"cUN" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cUO" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cUP" = ( +/obj/structure/table, +/obj/item/clothing/under/suit_jacket/really_black, +/obj/item/cane, +/obj/item/clothing/head/bowler{ + pixel_y = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cUQ" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/folder, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cUR" = ( +/obj/structure/table, +/obj/item/toy/sword, +/obj/item/gun/ballistic/shotgun/toy/crossbow, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cUS" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cUT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/crew_quarters/fitness/recreation) +"cUU" = ( +/turf/open/floor/plasteel/escape{ + dir = 8 + }, +/area/crew_quarters/fitness/recreation) +"cUV" = ( +/obj/structure/table/wood, +/obj/item/storage/crayons, +/obj/item/storage/crayons, +/turf/open/floor/plasteel/escape{ + dir = 4 + }, +/area/crew_quarters/fitness/recreation) +"cUW" = ( +/obj/structure/mopbucket, +/obj/effect/decal/cleanable/dirt, +/obj/item/mop, +/turf/open/floor/plating, +/area/maintenance/port) +"cUX" = ( +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "old sink"; + pixel_y = 28 + }, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plating, +/area/maintenance/port) +"cUY" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Auxiliary Port"; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cUZ" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/department/electrical) +"cVa" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering Auxiliary Power"; + req_access_txt = "10" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cVb" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xenosecure"; + name = "Secure Pen Shutters" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cVc" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cVd" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cVe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/neutral, +/area/science/xenobiology) +"cVf" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cVg" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cVh" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cVi" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26; + pixel_y = -32 + }, +/obj/machinery/button/door{ + id = "xeno1"; + name = "Containment Control"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cVj" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26; + pixel_y = -32 + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cVk" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "xeno2"; + name = "Containment Control"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cVl" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "xeno3"; + name = "Containment Control"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cVm" = ( +/obj/machinery/processor/slime, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cVn" = ( +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/xenobiology) +"cVo" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/scientist, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/science/xenobiology) +"cVp" = ( +/obj/structure/chair/office/light{ + icon_state = "officechair_white"; + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cVq" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/science/research) +"cVr" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/checkpoint/science/research) +"cVs" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/checkpoint/science/research) +"cVt" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/closet/secure_closet/brig{ + id = "scicell"; + name = "Science Cell Locker" + }, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/checkpoint/science/research) +"cVu" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/science/research) +"cVv" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research) +"cVw" = ( +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/research) +"cVx" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research) +"cVy" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/research) +"cVz" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research) +"cVA" = ( +/obj/structure/sign/nosmoking_2, +/turf/closed/wall/r_wall, +/area/science/lab) +"cVB" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + icon_state = "pipe-t"; + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"cVC" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/lab) +"cVD" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/lab) +"cVE" = ( +/turf/open/floor/plasteel/whitepurple/side{ + dir = 1 + }, +/area/science/lab) +"cVF" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/science/lab) +"cVG" = ( +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/science/lab) +"cVH" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/wrench, +/obj/item/clothing/glasses/welding, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/science/lab) +"cVI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/purple/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"cVJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/aft) +"cVK" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/orange/corner, +/area/hallway/primary/aft) +"cVL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistbot"; + name = "Chemistry Side Shutters" + }, +/turf/open/floor/plating, +/area/medical/chemistry) +"cVM" = ( +/obj/structure/table/glass, +/obj/item/folder/white, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -3 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 3 + }, +/obj/item/reagent_containers/dropper, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/whiteyellow/corner{ + dir = 1 + }, +/area/medical/chemistry) +"cVN" = ( +/obj/structure/table/glass, +/obj/item/clipboard, +/obj/item/toy/figure/chemist, +/turf/open/floor/plasteel/whiteyellow/corner{ + dir = 1 + }, +/area/medical/chemistry) +"cVO" = ( +/obj/machinery/chem_master, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"cVP" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start/chemist, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"cVQ" = ( +/obj/machinery/chem_dispenser, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"cVR" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Chemistry Lab APC"; + areastring = "/area/medical/chemistry"; + pixel_y = 24 + }, +/turf/open/floor/plasteel/whiteyellow/corner{ + dir = 4 + }, +/area/medical/chemistry) +"cVS" = ( +/obj/structure/closet/wardrobe/chemistry_white, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"cVT" = ( +/obj/machinery/ai_status_display, +/turf/closed/wall, +/area/medical/chemistry) +"cVU" = ( +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cVV" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cVX" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"cVY" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer"; + name = "Medbay Doors Control"; + normaldoorcontrol = 1; + pixel_x = 24; + pixel_y = 24 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"cVZ" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/medical) +"cWa" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/door/window/brigdoor{ + id = "medcell"; + name = "Medical Cell"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/red, +/area/security/checkpoint/medical) +"cWb" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/medical) +"cWd" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cWe" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/medical/medbay/central) +"cWf" = ( +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/blue, +/area/medical/medbay/central) +"cWg" = ( +/obj/structure/mirror{ + pixel_x = 26 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"cWh" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/medical/medbay/central) +"cWi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/redblue, +/area/medical/medbay/central) +"cWj" = ( +/obj/machinery/holopad, +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/redblue, +/area/medical/medbay/central) +"cWk" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/redblue, +/area/medical/medbay/central) +"cWl" = ( +/obj/machinery/vending/cola/random, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/medical/medbay/central) +"cWm" = ( +/obj/structure/girder, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cWn" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cWo" = ( +/turf/closed/wall, +/area/medical/abandoned) +"cWp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/starboard/aft) +"cWq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cWr" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"cWs" = ( +/obj/structure/table, +/obj/item/storage/photo_album, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cWt" = ( +/obj/item/lipstick/random{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/lipstick/random{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/lipstick/random, +/obj/structure/table, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cWu" = ( +/obj/structure/table, +/obj/item/device/camera_film{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/device/camera_film, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"cWv" = ( +/turf/open/floor/plasteel/neutral/corner, +/area/crew_quarters/fitness/recreation) +"cWw" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/escape{ + dir = 8 + }, +/area/crew_quarters/fitness/recreation) +"cWx" = ( +/obj/structure/easel, +/obj/item/canvas/twentythreeXtwentythree, +/obj/item/canvas/twentythreeXtwentythree, +/obj/item/canvas/twentythreeXtwentythree, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/escape{ + dir = 4 + }, +/area/crew_quarters/fitness/recreation) +"cWy" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/gloves/color/orange, +/obj/item/storage/box/mousetraps{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/lights/mixed, +/obj/item/grenade/chem_grenade/cleaner, +/turf/open/floor/plasteel/green/side{ + dir = 8 + }, +/area/maintenance/port) +"cWz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/purple/side{ + dir = 4 + }, +/area/maintenance/port) +"cWA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cWB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"cWC" = ( +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"cWD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"cWE" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cWF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"cWG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"cWH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Port Maintenance APC"; + areastring = "/area/maintenance/port"; + pixel_y = 28 + }, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cWJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"cWK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"cWL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cWM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"cWN" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cWO" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/science/xenobiology) +"cWP" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/shieldwallgen/xenobiologyaccess, +/turf/open/floor/plating, +/area/science/xenobiology) +"cWQ" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cWR" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cWS" = ( +/obj/structure/table, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/obj/machinery/light, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cWT" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "xeno1"; + name = "Creature Cell #1" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cWU" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/door/window/brigdoor{ + dir = 2; + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xeno1"; + name = "Creature Cell #1" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/science/xenobiology) +"cWV" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xeno1"; + name = "Creature Cell #1" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cWW" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "xeno2"; + name = "Creature Cell #2" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cWX" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/door/window/brigdoor{ + dir = 2; + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xeno2"; + name = "Creature Cell #2" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/science/xenobiology) +"cWY" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xeno2"; + name = "Creature Cell #2" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cWZ" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "xeno3"; + name = "Creature Cell #3" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cXa" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xeno3"; + name = "Creature Cell #3" + }, +/obj/machinery/door/window/brigdoor{ + dir = 2; + name = "Creature Pen"; + req_access_txt = "47" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/science/xenobiology) +"cXb" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xeno3"; + name = "Creature Cell #3" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cXc" = ( +/obj/machinery/smartfridge/extract/preloaded, +/obj/machinery/light_switch{ + pixel_x = -26 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cXd" = ( +/turf/open/floor/plasteel/whitepurple/side{ + dir = 10 + }, +/area/science/xenobiology) +"cXe" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/whitepurple/side, +/area/science/xenobiology) +"cXf" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/whitepurple/side, +/area/science/xenobiology) +"cXg" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cXh" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white, +/obj/item/pen, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Xenobiology Lab APC"; + areastring = "/area/science/xenobiology"; + pixel_x = 26 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cXi" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/checkpoint/science/research) +"cXj" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/science/research) +"cXk" = ( +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/checkpoint/science/research) +"cXl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + id_tag = "scidoor"; + name = "Security Post - Science"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"cXm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research) +"cXn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"cXo" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research) +"cXp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research) +"cXq" = ( +/obj/structure/closet/firecloset, +/obj/machinery/camera{ + c_tag = "Science - Research Division Access"; + dir = 8; + name = "science camera"; + network = list("SS13","RD") + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research) +"cXr" = ( +/obj/structure/table/reinforced, +/obj/item/stock_parts/matter_bin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/micro_laser, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"cXs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/neutral, +/area/science/lab) +"cXt" = ( +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/neutral, +/area/science/lab) +"cXu" = ( +/turf/open/floor/plasteel/neutral, +/area/science/lab) +"cXv" = ( +/obj/machinery/r_n_d/destructive_analyzer, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"cXw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"cXx" = ( +/obj/machinery/r_n_d/protolathe, +/obj/machinery/ai_status_display{ + pixel_x = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"cXy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Departures Hallway - Fore"; + dir = 8; + name = "hallway camera" + }, +/turf/open/floor/plasteel/orange/corner, +/area/hallway/primary/aft) +"cXz" = ( +/turf/closed/wall, +/area/medical/chemistry) +"cXA" = ( +/obj/structure/table/glass, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/timer{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/device/assembly/timer{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/device/assembly/timer{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 8 + }, +/area/medical/chemistry) +"cXB" = ( +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cXC" = ( +/obj/machinery/chem_heater, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"cXD" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"cXE" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"cXF" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/medical/chemistry) +"cXG" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"cXH" = ( +/obj/machinery/computer/crew, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/medbay/central) +"cXI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/neutral, +/area/medical/medbay/central) +"cXJ" = ( +/obj/machinery/holopad, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/neutral, +/area/medical/medbay/central) +"cXK" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/medbay/central) +"cXL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_medical{ + name = "Medbay Desk"; + req_access_txt = "5" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cXM" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cXN" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/medical) +"cXO" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/checkpoint/medical) +"cXP" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/checkpoint/medical) +"cXQ" = ( +/obj/structure/closet/secure_closet/brig{ + id = "medcell"; + name = "Medical Cell Locker" + }, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/checkpoint/medical) +"cXR" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/blue, +/area/medical/medbay/central) +"cXS" = ( +/obj/machinery/holopad{ + pixel_y = 16 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/medbay/central) +"cXT" = ( +/obj/machinery/shower{ + dir = 8; + name = "emergency shower" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/medbay/central) +"cXU" = ( +/obj/structure/table/wood, +/obj/item/folder/white, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"cXV" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/redblue, +/area/medical/medbay/central) +"cXW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/redblue, +/area/medical/medbay/central) +"cXX" = ( +/obj/machinery/vending/cigarette, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/medical/medbay/central) +"cXY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/item/retractor, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cXZ" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/medical/abandoned) +"cYa" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_y = 28 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/abandoned) +"cYb" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/medical/abandoned) +"cYc" = ( +/obj/structure/table/glass, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/ointment, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/medical/abandoned) +"cYd" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/abandoned) +"cYe" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_y = 28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/abandoned) +"cYf" = ( +/obj/structure/frame/machine, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/medical/abandoned) +"cYg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cYh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cYi" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"cYj" = ( +/turf/open/floor/plasteel/neutral/corner{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/crew_quarters/fitness/recreation) +"cYk" = ( +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Recreation - Aft"; + dir = 1; + name = "recreation camera" + }, +/turf/open/floor/plasteel/neutral/side, +/area/crew_quarters/fitness/recreation) +"cYl" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/neutral/corner, +/area/crew_quarters/fitness/recreation) +"cYm" = ( +/obj/structure/table/wood, +/obj/item/stack/packageWrap{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stack/wrapping_paper, +/turf/open/floor/plasteel/escape{ + dir = 8 + }, +/area/crew_quarters/fitness/recreation) +"cYn" = ( +/obj/structure/table/wood, +/obj/item/device/camera, +/obj/structure/sign/nanotrasen{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/plasteel/escape{ + dir = 4 + }, +/area/crew_quarters/fitness/recreation) +"cYo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/green/side{ + dir = 6 + }, +/area/maintenance/port) +"cYp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral/side{ + dir = 10 + }, +/area/maintenance/port) +"cYq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port) +"cYr" = ( +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port) +"cYs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cYt" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cYu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port) +"cYv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port) +"cYw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cYx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cYy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cYz" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cYA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port) +"cYB" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cYC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port) +"cYD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"cYE" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + icon_state = "pipe-t"; + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 1 + }, +/area/science/xenobiology) +"cYF" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/storage/bag/bio, +/obj/item/storage/bag/bio, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cYG" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cYH" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cYI" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cYJ" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/latex, +/obj/item/device/slime_scanner, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cYK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/science/research) +"cYL" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/science/research) +"cYM" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = -32 + }, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel, +/area/science/research) +"cYN" = ( +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/research) +"cYO" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/research) +"cYP" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/research) +"cYQ" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research) +"cYR" = ( +/obj/structure/table/reinforced, +/obj/item/stack/cable_coil/white{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil/white, +/obj/item/stock_parts/scanning_module{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"cYS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/science/lab) +"cYT" = ( +/turf/open/floor/plasteel/whitepurple/side{ + dir = 9 + }, +/area/science/lab) +"cYU" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 5 + }, +/area/science/lab) +"cYV" = ( +/obj/machinery/computer/rdconsole/core, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"cYW" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/lab) +"cYX" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/obj/item/reagent_containers/glass/beaker/sulphuric, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"cYY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/orange/corner, +/area/hallway/primary/aft) +"cYZ" = ( +/obj/structure/table/glass, +/obj/item/clothing/glasses/science{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/glasses/science, +/obj/item/stack/cable_coil/white{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil/white, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/screwdriver, +/turf/open/floor/plasteel/whiteyellow/corner{ + dir = 8 + }, +/area/medical/chemistry) +"cZa" = ( +/turf/open/floor/plasteel/whiteyellow/corner{ + dir = 8 + }, +/area/medical/chemistry) +"cZb" = ( +/turf/open/floor/plasteel/neutral, +/area/medical/chemistry) +"cZc" = ( +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 9 + }, +/area/medical/chemistry) +"cZd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 5 + }, +/area/medical/chemistry) +"cZe" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + pixel_y = 5 + }, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/turf/open/floor/plasteel/whiteyellow/corner{ + dir = 4 + }, +/area/medical/chemistry) +"cZf" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/medical/chemistry) +"cZh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"cZi" = ( +/obj/structure/chair/office/light, +/turf/open/floor/plasteel/whiteblue/side, +/area/medical/medbay/central) +"cZj" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/light/small, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/medbay/central) +"cZk" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cZl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/medical/medbay/central) +"cZm" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/checkpoint/medical) +"cZn" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/medical) +"cZo" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/checkpoint/medical) +"cZp" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/medical) +"cZq" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cZr" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"cZs" = ( +/turf/open/floor/plasteel/whiteblue/side, +/area/medical/medbay/central) +"cZt" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cZv" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"cZw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side, +/area/medical/medbay/central) +"cZx" = ( +/turf/open/floor/plasteel/neutral/corner, +/area/medical/medbay/central) +"cZy" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/neutral/corner, +/area/medical/medbay/central) +"cZz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/clothing/neck/stethoscope, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/starboard/aft) +"cZA" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cZB" = ( +/obj/structure/sign/examroom{ + pixel_x = -32 + }, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/abandoned) +"cZC" = ( +/turf/open/floor/plasteel/blue, +/area/medical/abandoned) +"cZD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral, +/area/medical/abandoned) +"cZE" = ( +/turf/open/floor/plasteel/neutral, +/area/medical/abandoned) +"cZF" = ( +/obj/item/crowbar/red, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/blue, +/area/medical/abandoned) +"cZG" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/medical/abandoned) +"cZH" = ( +/obj/structure/sign/bluecross_2, +/turf/closed/wall, +/area/medical/abandoned) +"cZI" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cZJ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cZK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cZL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/maintenance/port) +"cZM" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/maintenance/port) +"cZO" = ( +/obj/structure/rack, +/obj/item/crowbar/red, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cZP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/maintenance/port) +"cZQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cZR" = ( +/obj/structure/sign/xenobio, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"cZS" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "rdxeno"; + name = "Xenobiology Containment Door" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cZT" = ( +/obj/machinery/door/poddoor/preopen{ + id = "rdxeno"; + name = "Xenobiology Containment Door" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cZU" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "rdxeno"; + name = "Xenobiology Containment Door" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cZV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research) +"cZX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research) +"cZY" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/science/research) +"cZZ" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/gloves, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"daa" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research) +"dab" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/item/storage/pod{ + pixel_x = 32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"dac" = ( +/turf/closed/wall, +/area/science/research) +"dad" = ( +/obj/structure/sign/securearea, +/turf/closed/wall, +/area/science/research) +"dae" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/console_screen, +/obj/item/stock_parts/console_screen, +/obj/item/stock_parts/console_screen, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Research and Development Lab APC"; + areastring = "/area/science/lab"; + pixel_x = -26; + pixel_y = 3 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"daf" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/science/lab) +"dag" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/lab) +"dah" = ( +/obj/machinery/holopad{ + pixel_x = -16 + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 4 + }, +/area/science/lab) +"dai" = ( +/obj/machinery/requests_console{ + department = "Research Lab"; + departmentType = 0; + name = "Research RC"; + pixel_x = 32; + receive_ore_updates = 1 + }, +/obj/machinery/camera{ + c_tag = "Science - Research and Development"; + dir = 8; + name = "science camera"; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/lab) +"daj" = ( +/obj/structure/sign/chemistry, +/turf/closed/wall, +/area/medical/chemistry) +"dak" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "chemistbot"; + name = "Chemistry Shutter Control"; + pixel_x = -26; + pixel_y = -7; + req_access_txt = "33" + }, +/obj/machinery/button/door{ + id = "chemisttop"; + name = "Chemistry Shutter Control"; + pixel_x = -26; + pixel_y = 7; + req_access_txt = "33" + }, +/obj/machinery/smoke_machine, +/turf/open/floor/plasteel/whiteyellow/corner{ + dir = 8 + }, +/area/medical/chemistry) +"dal" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 8 + }, +/area/medical/chemistry) +"dam" = ( +/obj/machinery/holopad{ + pixel_x = -16 + }, +/obj/effect/landmark/start/chemist, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 4 + }, +/area/medical/chemistry) +"dan" = ( +/obj/structure/table/glass, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/reagent_containers/glass/bottle/charcoal{ + pixel_x = 6 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/item/reagent_containers/dropper, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Medbay - Chemistry"; + dir = 8; + name = "medbay camera"; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/whiteyellow/corner, +/area/medical/chemistry) +"dao" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/medical/medbay/central) +"dap" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder/white, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"daq" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whiteblue, +/area/medical/medbay/central) +"dar" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/security/checkpoint/medical) +"das" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/door/airlock/glass_security{ + id_tag = "meddoor"; + name = "Medical Cell"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"dat" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dav" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"daw" = ( +/obj/structure/sign/examroom, +/turf/closed/wall, +/area/medical/medbay/central) +"dax" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"day" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/medical/medbay/central) +"daz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Break Room"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"daA" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/medical/medbay/central) +"daB" = ( +/obj/item/firstaid_arm_assembly, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/starboard/aft) +"daC" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/starboard/aft) +"daD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch/abandoned{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/abandoned) +"daE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/abandoned) +"daF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/abandoned) +"daG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/blue, +/area/medical/abandoned) +"daH" = ( +/obj/item/wrench, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/medical/abandoned) +"daI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/abandoned) +"daJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch/abandoned{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/abandoned) +"daK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"daL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/starboard/aft) +"daM" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"daN" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"daO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"daP" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/black, +/area/crew_quarters/abandoned_gambling_den) +"daQ" = ( +/obj/structure/table/wood, +/obj/machinery/cell_charger, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"daR" = ( +/obj/structure/table/wood, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/storage/toolbox/electrical, +/obj/machinery/power/apc{ + dir = 1; + name = "Abandoned Gambling Den APC"; + areastring = "/area/crew_quarters/abandoned_gambling_den"; + pixel_y = 24 + }, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"daS" = ( +/obj/structure/table/wood, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/stack/rods{ + amount = 23 + }, +/obj/item/stack/cable_coil/white{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil/white, +/obj/structure/sign/barsign{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"daT" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"daV" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"daW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/crew_quarters/abandoned_gambling_den) +"daX" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"daY" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"dba" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port) +"dbc" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port) +"dbe" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"dbf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port) +"dbg" = ( +/obj/machinery/light/small, +/obj/machinery/camera{ + c_tag = "Xenobiology - Cell 4"; + dir = 1; + name = "xenobiology camera"; + network = list("SS13","xeno","RD") + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/science/xenobiology) +"dbh" = ( +/obj/machinery/light/small, +/obj/machinery/camera{ + c_tag = "Xenobiology - Cell 5"; + dir = 1; + name = "xenobiology camera"; + network = list("SS13","xeno","RD") + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/science/xenobiology) +"dbi" = ( +/obj/machinery/light/small, +/obj/machinery/camera{ + c_tag = "Xenobiology - Cell 6"; + dir = 1; + name = "xenobiology camera"; + network = list("SS13","xeno","RD") + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/science/xenobiology) +"dbj" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"dbk" = ( +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"dbl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"dbm" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"dbn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/obj/machinery/camera{ + c_tag = "Science - Port"; + dir = 2; + name = "science camera"; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"dbo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"dbp" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"dbq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/science/research) +"dbr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/science/research) +"dbs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dbt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 1 + }, +/area/science/research) +"dbu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Science - Center"; + dir = 2; + name = "science camera"; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"dbv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"dbw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 1 + }, +/area/science/research) +"dbx" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/science/research) +"dby" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdrnd"; + name = "Research and Development Shutters" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/window/southleft{ + dir = 4; + name = "Research Lab Desk"; + req_access_txt = "7" + }, +/obj/machinery/door/window/westleft, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/lab) +"dbz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/lab) +"dbA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/neutral, +/area/science/lab) +"dbB" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/toy/figure/scientist, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 10 + }, +/area/science/lab) +"dbC" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/table, +/obj/item/disk/tech_disk{ + pixel_x = -6 + }, +/obj/item/disk/tech_disk{ + pixel_x = 6 + }, +/obj/item/disk/tech_disk{ + pixel_y = 6 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 6 + }, +/area/science/lab) +"dbD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral, +/area/science/lab) +"dbE" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/lab) +"dbF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rndlab2"; + name = "Secondary Research and Development Shutter" + }, +/turf/open/floor/plating, +/area/science/lab) +"dbG" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/purple, +/area/hallway/primary/aft) +"dbH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j1" + }, +/turf/open/floor/plasteel/orange/corner, +/area/hallway/primary/aft) +"dbI" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/orange, +/area/hallway/primary/aft) +"dbJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistbot"; + name = "Chemistry Side Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/chemistry) +"dbK" = ( +/obj/machinery/chem_dispenser, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"dbL" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + icon_state = "pipe-t"; + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"dbM" = ( +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 10 + }, +/area/medical/chemistry) +"dbN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 6 + }, +/area/medical/chemistry) +"dbO" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/chemistry) +"dbP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteyellow/corner, +/area/medical/chemistry) +"dbQ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/southleft{ + dir = 8; + name = "Chemistry Desk"; + req_access_txt = "5; 33" + }, +/obj/machinery/door/window/eastright{ + name = "Chemistry Desk" + }, +/obj/item/folder/white, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"dbR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteyellow/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"dbS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"dbT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"dbU" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -26; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"dbV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whiteblue, +/area/medical/medbay/central) +"dbW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"dbX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dbY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"dbZ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"dca" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/medical/medbay/central) +"dcb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Medbay - Center"; + dir = 2; + name = "medbay camera" + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"dcc" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"dcd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/medbay/central) +"dce" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"dcg" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"dch" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/medbay/central) +"dci" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dcj" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/starboard/aft) +"dck" = ( +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/abandoned) +"dcl" = ( +/turf/open/floor/plating, +/area/medical/abandoned) +"dcm" = ( +/obj/machinery/iv_drip, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/medical/abandoned) +"dcn" = ( +/obj/structure/table/optable, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/item/surgical_drapes, +/turf/open/floor/plasteel/blue, +/area/medical/abandoned) +"dco" = ( +/obj/structure/frame/computer, +/obj/item/circuitboard/computer/operating, +/turf/open/floor/plasteel/neutral, +/area/medical/abandoned) +"dcp" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/vending/wallmed{ + name = "Emergency NanoMed"; + pixel_x = 26; + req_access_txt = "0"; + use_power = 0 + }, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/abandoned) +"dcq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/starboard/aft) +"dcr" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dcs" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"dct" = ( +/obj/machinery/vending/cigarette, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"dcu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/abandoned_gambling_den) +"dcv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"dcw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/abandoned_gambling_den) +"dcx" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"dcy" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/abandoned_gambling_den) +"dcz" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/abandoned_gambling_den) +"dcA" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/mob/living/simple_animal/cockroach, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/abandoned_gambling_den) +"dcB" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/abandoned_gambling_den) +"dcC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/abandoned_gambling_den) +"dcE" = ( +/turf/closed/wall, +/area/science/research/abandoned) +"dcF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/white, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/science/research/abandoned) +"dcG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/science/research/abandoned) +"dcH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"dcI" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"dcJ" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/research) +"dcK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/science/research) +"dcL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/purple, +/area/science/research) +"dcM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral, +/area/science/research) +"dcN" = ( +/obj/item/device/radio/beacon, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/purple, +/area/science/research) +"dcO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/science/research) +"dcP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dcQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/purple, +/area/science/research) +"dcR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/purple, +/area/science/research) +"dcS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/purple, +/area/science/research) +"dcT" = ( +/turf/open/floor/plasteel/whitepurple/side{ + dir = 4 + }, +/area/science/research) +"dcU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Research and Development Lab"; + req_access_txt = "0"; + req_one_access_txt = "7;29" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdrnd"; + name = "Research and Development Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"dcV" = ( +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/lab) +"dcW" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/scientist, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/neutral, +/area/science/lab) +"dcX" = ( +/obj/structure/chair/office/light{ + icon_state = "officechair_white"; + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/lab) +"dcY" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/door/window/southleft{ + dir = 8; + name = "Research Lab Desk"; + req_access_txt = "7" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rndlab2"; + name = "Secondary Research and Development Shutter" + }, +/obj/machinery/door/window/eastright, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/lab) +"dcZ" = ( +/turf/open/floor/plasteel/purple, +/area/hallway/primary/aft) +"dda" = ( +/turf/open/floor/plasteel/orange, +/area/hallway/primary/aft) +"ddb" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistbot"; + name = "Chemistry Side Shutters" + }, +/obj/machinery/door/window/southleft{ + dir = 4; + name = "Chemistry Desk"; + req_access_txt = "5; 33" + }, +/obj/item/folder/white, +/obj/item/pen, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/southleft{ + dir = 8; + name = "Chemistry Desk"; + req_access_txt = "5; 33" + }, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"ddc" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/chemist, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"ddd" = ( +/obj/machinery/requests_console{ + department = "Chemistry Lab"; + departmentType = 0; + name = "Chemistry RC"; + pixel_y = -64; + receive_ore_updates = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"dde" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/neutral, +/area/medical/chemistry) +"ddf" = ( +/turf/open/floor/plasteel/whiteyellow/corner, +/area/medical/chemistry) +"ddg" = ( +/obj/machinery/smartfridge/chemistry/preloaded, +/turf/closed/wall, +/area/medical/chemistry) +"ddh" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 8 + }, +/area/medical/medbay/central) +"ddi" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/blue, +/area/medical/medbay/central) +"ddj" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral, +/area/medical/medbay/central) +"ddk" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/blue, +/area/medical/medbay/central) +"ddl" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whiteblue, +/area/medical/medbay/central) +"ddm" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whiteblue, +/area/medical/medbay/central) +"ddn" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/item/device/radio/beacon, +/obj/effect/landmark/lightsout, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whiteblue, +/area/medical/medbay/central) +"ddo" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whiteblue, +/area/medical/medbay/central) +"ddp" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"ddq" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/blue, +/area/medical/medbay/central) +"ddr" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/medbay/central) +"dds" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/medical/medbay/central) +"ddt" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/blue, +/area/medical/medbay/central) +"ddu" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/medical/medbay/central) +"ddv" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/blue, +/area/medical/medbay/central) +"ddw" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/blue, +/area/medical/medbay/central) +"ddx" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/blue, +/area/medical/medbay/central) +"ddy" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/medbay/central) +"ddz" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"ddA" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"ddB" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/starboard/aft) +"ddC" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/medical/abandoned) +"ddD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/abandoned) +"ddE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/whiteblue/side, +/area/medical/abandoned) +"ddF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/abandoned) +"ddG" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = 26 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/abandoned) +"ddH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/starboard/aft) +"ddI" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/dresser, +/turf/open/floor/wood, +/area/maintenance/starboard/aft) +"ddJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/wood, +/obj/item/clothing/suit/toggle/owlwings, +/obj/item/clothing/under/owl, +/obj/item/clothing/mask/gas/owl_mask, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ddK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/wood, +/obj/item/storage/secure/briefcase, +/obj/item/restraints/handcuffs, +/obj/item/grenade/smokebomb, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ddL" = ( +/obj/machinery/vending/assist, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"ddM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/abandoned_gambling_den) +"ddN" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"ddO" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/abandoned_gambling_den) +"ddP" = ( +/obj/structure/chair/wood/normal, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/crew_quarters/abandoned_gambling_den) +"ddQ" = ( +/obj/structure/chair/wood/normal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"ddR" = ( +/obj/structure/chair/wood/normal, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/abandoned_gambling_den) +"ddS" = ( +/obj/structure/table/wood/poker, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/item/storage/wallet/random, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/abandoned_gambling_den) +"ddT" = ( +/obj/structure/table/wood/poker, +/obj/item/storage/briefcase, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"ddU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"ddV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/black, +/area/crew_quarters/abandoned_gambling_den) +"ddW" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plating, +/area/science/research/abandoned) +"ddX" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/research/abandoned) +"ddY" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/clipboard, +/obj/item/reagent_containers/glass/beaker/sulphuric, +/obj/item/reagent_containers/dropper, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"ddZ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/emergency{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/emergency, +/obj/item/wrench, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dea" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"deb" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dec" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/research/abandoned) +"ded" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/item/pen, +/turf/open/floor/plating, +/area/science/research/abandoned) +"dee" = ( +/obj/structure/table, +/obj/item/device/flashlight/lamp, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"def" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/port) +"deg" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"deh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"dei" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 5 + }, +/area/maintenance/port) +"dej" = ( +/turf/closed/wall/r_wall, +/area/science/explab) +"del" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"dem" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/explab) +"den" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"deo" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Experimentation Lab APC"; + areastring = "/area/science/explab"; + pixel_y = 24 + }, +/obj/machinery/camera{ + c_tag = "Science - Experimentation Lab"; + dir = 2; + name = "science camera"; + network = list("SS13","RD") + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/explab) +"dep" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/explab) +"deq" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/explab) +"der" = ( +/obj/structure/closet/bombcloset, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/explab) +"des" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/suit/radiation, +/obj/item/clothing/head/radiation, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/explab) +"det" = ( +/turf/closed/wall, +/area/science/explab) +"deu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/research) +"dev" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/side, +/area/science/research) +"dew" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/research) +"dey" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whitepurple/side, +/area/science/research) +"dez" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/research) +"deA" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/research) +"deB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research) +"deC" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/research) +"deD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/purple, +/area/science/research) +"deE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/research) +"deF" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/research) +"deG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdrnd"; + name = "Research and Development Shutters" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/lab) +"deH" = ( +/obj/structure/table/reinforced, +/obj/machinery/light, +/obj/machinery/cell_charger, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/light_switch{ + pixel_x = -26; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"deI" = ( +/obj/structure/table/reinforced, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"deJ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/stack/cable_coil/white, +/obj/item/stack/cable_coil/white, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"deK" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/lab) +"deL" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker, +/obj/item/reagent_containers/dropper, +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"deM" = ( +/obj/structure/table/reinforced, +/obj/machinery/light, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/button/door{ + id = "rndlab1"; + name = "Primary Research Shutters Control"; + pixel_x = -7; + pixel_y = -23; + req_access_txt = "7" + }, +/obj/machinery/button/door{ + id = "rndlab2"; + name = "Secondary Research Shutters Control"; + pixel_x = 7; + pixel_y = -23; + req_access_txt = "7" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"deN" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/purple, +/area/hallway/primary/aft) +"deO" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/orange, +/area/hallway/primary/aft) +"deP" = ( +/obj/machinery/chem_master, +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"deQ" = ( +/obj/machinery/chem_heater, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"deR" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteyellow/corner{ + dir = 8 + }, +/area/medical/chemistry) +"deS" = ( +/obj/structure/table/glass, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteyellow/corner, +/area/medical/chemistry) +"deT" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/plasteel/whiteyellow/corner, +/area/medical/chemistry) +"deU" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + pixel_x = 7; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteyellow/corner, +/area/medical/chemistry) +"deV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + name = "Chemistry Lab"; + req_access_txt = "5; 33" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"deW" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteyellow/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"deX" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"deY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"deZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Medbay - Port"; + dir = 1; + name = "medbay camera" + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"dfa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"dfb" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whiteblue, +/area/medical/medbay/central) +"dfc" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/medbay/central) +"dfd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dfe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/medbay/central) +"dff" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side, +/area/medical/medbay/central) +"dfg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"dfh" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"dfi" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/medbay/central) +"dfj" = ( +/obj/structure/sign/bluecross_2{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/medbay/central) +"dfl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/medbay/central) +"dfm" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/medbay/central) +"dfn" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/medbay/central) +"dfo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/medbay/central) +"dfp" = ( +/obj/structure/rack, +/obj/item/roller, +/obj/item/reagent_containers/blood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/starboard/aft) +"dfq" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dfr" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white, +/obj/machinery/power/apc{ + dir = 2; + name = "Abandoned Medical Lab APC"; + areastring = "/area/medical/abandoned"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/open/floor/plating, +/area/medical/abandoned) +"dfs" = ( +/obj/machinery/light/small, +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/medical/abandoned) +"dft" = ( +/obj/structure/table/reinforced, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/item/storage/firstaid/regular, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/suit/apron/surgical, +/obj/item/clothing/mask/surgical, +/turf/open/floor/plasteel/vault, +/area/medical/abandoned) +"dfu" = ( +/obj/structure/table/reinforced, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/item/hemostat, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/medical/abandoned) +"dfv" = ( +/obj/structure/table/reinforced, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_y = 5 + }, +/obj/item/reagent_containers/syringe, +/obj/item/clothing/neck/stethoscope, +/turf/open/floor/plasteel/vault, +/area/medical/abandoned) +"dfw" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/small, +/obj/structure/bedsheetbin, +/obj/item/gun/syringe, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault, +/area/medical/abandoned) +"dfy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/space_heater, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dfz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"dfA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch/abandoned{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"dfB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken2" + }, +/area/maintenance/starboard/aft) +"dfC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/revenantspawn, +/turf/open/floor/wood, +/area/maintenance/starboard/aft) +"dfD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/wood, +/obj/item/device/modular_computer/tablet/preset/cheap, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dfE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"dfF" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/hollow/reinforced/end{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"dfG" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/door/window/northright, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/crew_quarters/abandoned_gambling_den) +"dfH" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 9 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"dfI" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 1 + }, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"dfJ" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 5 + }, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"dfK" = ( +/obj/structure/table/wood/poker, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"dfL" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/abandoned_gambling_den) +"dfM" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/black, +/area/crew_quarters/abandoned_gambling_den) +"dfN" = ( +/obj/structure/table/reinforced, +/obj/item/disk/tech_disk{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/disk/tech_disk, +/obj/item/device/assembly/timer, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dfO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dfP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/research/abandoned) +"dfQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dfR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dfS" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/research/abandoned) +"dfT" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dfU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"dfV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port) +"dfW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port) +"dfX" = ( +/obj/structure/table/reinforced, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/explab) +"dfY" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/explab) +"dfZ" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 8 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/explab) +"dga" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/explab) +"dgb" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 1 + }, +/area/science/explab) +"dgc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/science/explab) +"dgd" = ( +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/science/explab) +"dgf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/science/research) +"dgg" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dgh" = ( +/obj/structure/sign/nosmoking_2, +/turf/closed/wall, +/area/science/research) +"dgi" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"dgj" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/door/airlock/research{ + name = "Firing Range"; + req_access_txt = "47" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"dgk" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"dgl" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hor) +"dgm" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hor) +"dgn" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "rdoffice"; + name = "Research Director's Shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"dgo" = ( +/obj/structure/sign/securearea, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hor) +"dgp" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "rdoffice"; + name = "Research Director's Shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"dgq" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "rdoffice"; + name = "Research Director's Shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"dgr" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "rdoffice"; + name = "Research Director's Shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"dgs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/research) +"dgt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/research) +"dgu" = ( +/turf/closed/wall, +/area/science/robotics/mechbay) +"dgv" = ( +/turf/closed/wall/r_wall, +/area/science/robotics/mechbay) +"dgw" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/robotics/mechbay) +"dgx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Research and Development Lab"; + req_access_txt = "0"; + req_one_access_txt = "7;29" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dgy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dgz" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dgA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dgB" = ( +/turf/closed/wall, +/area/hallway/primary/aft) +"dgC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Chemistry Maintenance"; + req_access_txt = "5; 33" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical) +"dgD" = ( +/turf/closed/wall, +/area/medical/genetics/cloning) +"dgE" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/genetics/cloning) +"dgF" = ( +/obj/structure/sign/bluecross_2, +/turf/closed/wall, +/area/medical/genetics/cloning) +"dgG" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dgH" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dgI" = ( +/turf/closed/wall, +/area/medical/surgery) +"dgJ" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/medical/surgery) +"dgK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Surgery Observation"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) +"dgL" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/medical/surgery) +"dgM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Surgery Observation"; + req_access_txt = "0" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) +"dgN" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dgO" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/starboard/aft) +"dgP" = ( +/turf/closed/wall, +/area/hallway/secondary/construction) +"dgR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/abandoned_gambling_den) +"dgS" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 8 + }, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"dgT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/abandoned_gambling_den) +"dgU" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/abandoned_gambling_den) +"dgV" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"dgW" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/crew_quarters/abandoned_gambling_den) +"dgX" = ( +/obj/structure/table/reinforced, +/obj/item/stock_parts/matter_bin, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dgY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dgZ" = ( +/obj/structure/frame/machine, +/obj/item/stack/cable_coil/white, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dha" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dhb" = ( +/obj/structure/frame/machine, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dhc" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/science/research/abandoned) +"dhd" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plasteel/neutral, +/area/science/research/abandoned) +"dhe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dhf" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical, +/obj/item/device/multitool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/research/abandoned) +"dhg" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"dhh" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch{ + pixel_x = -26 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"dhi" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/explab) +"dhj" = ( +/turf/open/floor/plasteel/neutral, +/area/science/explab) +"dhk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral, +/area/science/explab) +"dhl" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/science/explab) +"dhm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/science/explab) +"dhn" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/explab) +"dho" = ( +/turf/open/floor/plasteel/whitepurple/side{ + dir = 4 + }, +/area/science/explab) +"dhp" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/explab) +"dhq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research) +"dhr" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dhs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dht" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dhu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Science - Lab Access"; + dir = 8; + name = "science camera"; + network = list("SS13","RD") + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research) +"dhv" = ( +/obj/structure/table/reinforced, +/obj/item/gun/energy/laser/practice{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/gun/energy/laser/practice, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/ears/earmuffs, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = 32 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Firing Range APC"; + areastring = "/area/science/misc_lab/range"; + pixel_x = -26; + pixel_y = 3 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"dhw" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"dhx" = ( +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/target, +/obj/item/target/syndicate, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/structure/closet/crate/secure{ + desc = "A secure crate containing various materials for building a customised test-site."; + name = "Test Site Materials Crate"; + req_access_txt = "47" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"dhy" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white, +/obj/item/device/paicard, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hor) +"dhz" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hor) +"dhA" = ( +/obj/structure/displaycase/labcage, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hor) +"dhB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hor) +"dhC" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hor) +"dhD" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "rdoffice"; + name = "Research Director's Shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"dhE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/research) +"dhF" = ( +/obj/structure/table, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/machinery/cell_charger, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dhG" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dhH" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dhI" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dhJ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dhK" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/highcap/ten_k{ + dir = 1; + name = "Mech Bay APC"; + areastring = "/area/science/robotics/mechbay"; + pixel_y = 28 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dhL" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dhM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/wrench, +/obj/item/roller, +/turf/open/floor/plasteel/blue/corner{ + dir = 1 + }, +/area/maintenance/department/medical) +"dhN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/blue/corner{ + dir = 1 + }, +/area/maintenance/department/medical) +"dhO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc{ + dir = 1; + name = "Medical Maintenance APC"; + areastring = "/area/maintenance/department/medical"; + pixel_y = 24 + }, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"dhP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/blue/corner{ + dir = 4 + }, +/area/maintenance/department/medical) +"dhQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/department/medical) +"dhR" = ( +/obj/machinery/clonepod, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/medical/genetics/cloning) +"dhS" = ( +/obj/machinery/computer/cloning, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/medical/genetics/cloning) +"dhT" = ( +/obj/machinery/dna_scannernew, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/genetics/cloning) +"dhU" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/medical/genetics/cloning) +"dhV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/genetics/cloning) +"dhW" = ( +/obj/structure/table/glass, +/obj/item/storage/box/bodybags{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/bodybags, +/obj/item/pen, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/medical/genetics/cloning) +"dhX" = ( +/obj/structure/table/glass, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/highcap/five_k{ + dir = 1; + name = "Cloning Lab APC"; + areastring = "/area/medical/genetics/cloning"; + pixel_y = 24 + }, +/obj/item/folder/white, +/obj/item/book/manual/medical_cloning, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/genetics/cloning) +"dhY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"dhZ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/medical/medbay/central) +"dia" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/medbay/central) +"dib" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/whiteblue, +/area/medical/medbay/central) +"dic" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"did" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/pill_bottle/mannitol, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"die" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dif" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"dig" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/medbay/central) +"dih" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/medbay/central) +"dii" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/vault, +/area/medical/surgery) +"dij" = ( +/turf/open/floor/plasteel/vault, +/area/medical/surgery) +"dik" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/vault, +/area/medical/surgery) +"dil" = ( +/obj/structure/sign/bluecross_2, +/turf/closed/wall, +/area/medical/surgery) +"dim" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/medical/surgery) +"din" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/medical/surgery) +"dio" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/medical/surgery) +"dip" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/medical/surgery) +"diq" = ( +/obj/structure/chair, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/medical/surgery) +"dir" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dis" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/mob/living/simple_animal/cockroach, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/starboard/aft) +"dit" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/item/device/flashlight, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"diu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"div" = ( +/obj/machinery/pipedispenser, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"diw" = ( +/obj/machinery/pipedispenser/disposal, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"dix" = ( +/obj/machinery/pipedispenser/disposal/transit_tube, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"diy" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"diz" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"diA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/starboard/aft) +"diB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"diC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"diD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"diE" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"diG" = ( +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/abandoned_gambling_den) +"diH" = ( +/obj/structure/table/wood/poker, +/obj/item/stack/spacecash/c1000{ + pixel_y = 8 + }, +/obj/item/stack/spacecash/c500, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/abandoned_gambling_den) +"diI" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/abandoned_gambling_den) +"diJ" = ( +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"diK" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"diL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"diM" = ( +/obj/structure/table/reinforced, +/obj/item/stack/cable_coil/white, +/obj/item/stock_parts/scanning_module{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"diN" = ( +/obj/structure/frame/computer, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"diO" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"diP" = ( +/obj/structure/frame/machine, +/obj/item/stack/cable_coil/white, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"diQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/science/research/abandoned) +"diR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/neutral, +/area/science/research/abandoned) +"diS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"diT" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"diU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/button/door{ + id = "maintrobotics"; + name = "Decrepit Control"; + pixel_x = 26 + }, +/turf/open/floor/plating, +/area/science/research/abandoned) +"diV" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maintrobotics"; + name = "Decrepit Blast Door" + }, +/obj/structure/girder, +/obj/structure/grille, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"diW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"diX" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port) +"diY" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Science Maintenance"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"diZ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/explab) +"dja" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/explab) +"djb" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/explab) +"djc" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/explab) +"djd" = ( +/obj/structure/table/reinforced, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 5 + }, +/obj/item/device/taperecorder, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"dje" = ( +/obj/structure/chair/office/light, +/obj/effect/landmark/start/scientist, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"djf" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/folder/white, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"djg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/explab) +"djh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/explab) +"dji" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Experimentation Lab"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"djj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research) +"djk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"djl" = ( +/obj/machinery/holopad, +/obj/effect/landmark/lightsout, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research) +"djm" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research) +"djn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Firing Range"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research) +"djo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"djp" = ( +/obj/machinery/holopad, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"djq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"djr" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "rdoffice"; + name = "Research Director's Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"djs" = ( +/obj/structure/table/reinforced, +/obj/item/device/aicard, +/obj/item/circuitboard/aicore, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j1s"; + name = "RD's Junction"; + sortType = 13 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hor) +"djt" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hor) +"dju" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hor) +"djv" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hor) +"djw" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hor) +"djx" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "rdoffice"; + name = "Research Director's Shutters" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"djy" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/research) +"djz" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + icon_state = "pipe-j1s"; + name = "Robotics Junction"; + sortType = 14 + }, +/turf/open/floor/plasteel/neutral, +/area/science/research) +"djA" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/research) +"djB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/robotics/mechbay) +"djC" = ( +/obj/machinery/recharge_station, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"djD" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/cyborg, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"djE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"djF" = ( +/obj/machinery/computer/mech_bay_power_console, +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"djG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mech_bay_recharge_floor, +/area/science/robotics/mechbay) +"djH" = ( +/obj/machinery/mech_bay_recharge_port{ + icon_state = "recharge_port"; + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/science/robotics/mechbay) +"djI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"djJ" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"djK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Departures Hallway - Mech Bay"; + dir = 4; + name = "hallway camera" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"djL" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/aft) +"djM" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical) +"djN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"djO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/medical) +"djP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/maintenance/department/medical) +"djQ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/maintenance/department/medical) +"djR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/dropper, +/turf/open/floor/plasteel/blue/corner{ + dir = 4 + }, +/area/maintenance/department/medical) +"djS" = ( +/obj/machinery/door/window/eastleft, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/medical/genetics/cloning) +"djT" = ( +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/genetics/cloning) +"djU" = ( +/turf/open/floor/plasteel/neutral, +/area/medical/genetics/cloning) +"djV" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/genetics/cloning) +"djW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/genetics/cloning) +"djX" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/medical/genetics/cloning) +"djY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + id_tag = "cloningfoyer"; + name = "Cloning Lab"; + req_access_txt = "5" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/genetics/cloning) +"djZ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"dka" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/blue, +/area/medical/medbay/central) +"dkb" = ( +/turf/open/floor/plasteel/whiteblue, +/area/medical/medbay/central) +"dkc" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dkd" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dke" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dkf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/medbay/central) +"dkg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/medical/surgery) +"dkh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Surgery Observation"; + req_access_txt = "0" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) +"dki" = ( +/obj/structure/chair, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/medical/surgery) +"dkj" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/starboard/aft) +"dkk" = ( +/obj/structure/rack, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"dkl" = ( +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"dkm" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"dkn" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 4 + }, +/area/hallway/secondary/construction) +"dko" = ( +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dkp" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/breath, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dkq" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"dkr" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dks" = ( +/obj/structure/table/wood/poker, +/obj/item/clothing/glasses/sunglasses/big, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/abandoned_gambling_den) +"dkt" = ( +/obj/structure/table/wood/poker, +/obj/item/stack/spacecash/c10{ + pixel_x = -16; + pixel_y = 8 + }, +/obj/item/stack/spacecash/c100, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/abandoned_gambling_den) +"dku" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck/syndicate{ + icon_state = "deck_syndicate_full"; + pixel_y = 6 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/abandoned_gambling_den) +"dkv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/mob/living/simple_animal/cockroach, +/turf/open/floor/wood, +/area/crew_quarters/abandoned_gambling_den) +"dkw" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/crew_quarters/abandoned_gambling_den) +"dkx" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/abandoned_gambling_den) +"dky" = ( +/obj/effect/decal/cleanable/vomit/old, +/obj/effect/landmark/blobstart, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/abandoned_gambling_den) +"dkz" = ( +/obj/item/storage/toolbox/emergency, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/abandoned_gambling_den) +"dkA" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/abandoned_gambling_den) +"dkB" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/console_screen, +/obj/item/stock_parts/console_screen, +/obj/item/stock_parts/console_screen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/research/abandoned) +"dkC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dkD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dkE" = ( +/turf/open/floor/plating, +/area/science/research/abandoned) +"dkF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dkG" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dkH" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dkI" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dkJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/barricade/wooden, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dkK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor/preopen{ + id = "maintrobotics"; + name = "Decrepit Blast Door" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/girder, +/obj/structure/grille, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"dkL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/port) +"dkM" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port) +"dkN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/explab) +"dkO" = ( +/obj/structure/table, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/ointment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/explab) +"dkP" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/explab) +"dkQ" = ( +/obj/machinery/light, +/obj/machinery/disposal/bin, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/explab) +"dkR" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/white, +/obj/item/clothing/gloves/color/white, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"dkS" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/experimentor, +/obj/item/device/healthanalyzer, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"dkT" = ( +/obj/machinery/computer/rdconsole/experiment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/explab) +"dkU" = ( +/obj/structure/table/reinforced, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"dkV" = ( +/obj/structure/table/reinforced, +/obj/machinery/light, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"dkW" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/explab) +"dkX" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/science/explab) +"dkY" = ( +/obj/machinery/light/small, +/obj/structure/closet/firecloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research) +"dkZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dla" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/research) +"dlb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dlc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/research) +"dld" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/light_switch{ + pixel_x = -26; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"dle" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"dlf" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"dlg" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/door/airlock/command{ + name = "Research Director's Office"; + req_access = null; + req_access_txt = "30" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hor) +"dlh" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hor) +"dli" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/crew_quarters/heads/hor) +"dlj" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 1 + }, +/area/crew_quarters/heads/hor) +"dlk" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/crew_quarters/heads/hor) +"dll" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hor) +"dlm" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/door/airlock/command{ + name = "Research Director's Office"; + req_access = null; + req_access_txt = "30" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hor) +"dln" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/research) +"dlo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/purple, +/area/science/research) +"dlp" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/research) +"dlq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_switch{ + pixel_x = -26 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dlr" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dls" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dlt" = ( +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"dlu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dlv" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dlw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor/shutters{ + id = "mechbay"; + name = "Mech Bay Shutters" + }, +/obj/machinery/button/door{ + id = "mechbay"; + name = "Mech Bay Shutters Control"; + pixel_y = 26; + req_access_txt = "29" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dlx" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dly" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/aft) +"dlz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/medical) +"dlA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit/old, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"dlB" = ( +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/maintenance/department/medical) +"dlC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/maintenance/department/medical) +"dlD" = ( +/obj/structure/rack, +/obj/item/device/healthanalyzer, +/obj/item/clothing/glasses/eyepatch, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/medical) +"dlE" = ( +/obj/machinery/door/window/eastright, +/obj/machinery/ai_status_display{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/medical/genetics/cloning) +"dlF" = ( +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/medical/genetics/cloning) +"dlG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/genetics/cloning) +"dlH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/genetics/cloning) +"dlI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/medical/genetics/cloning) +"dlJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/genetics/cloning) +"dlK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/genetics/cloning) +"dlL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + id_tag = "cloningfoyer"; + name = "Cloning Lab"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/genetics/cloning) +"dlM" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"dlN" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/medical/medbay/central) +"dlO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/medbay/central) +"dlP" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dlQ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/general/visible, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dlR" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dlS" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/surgery) +"dlT" = ( +/obj/structure/rack, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/item/stack/sheet/metal{ + amount = 30 + }, +/obj/item/stack/packageWrap, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"dlU" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"dlW" = ( +/obj/structure/chair/stool/bar, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/abandoned_gambling_den) +"dlX" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"dlY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/revenantspawn, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/abandoned_gambling_den) +"dlZ" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 6 + }, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"dma" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/crew_quarters/abandoned_gambling_den) +"dmb" = ( +/obj/structure/table/wood, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/black, +/area/crew_quarters/abandoned_gambling_den) +"dmc" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/research/abandoned) +"dmd" = ( +/obj/machinery/light/small, +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dme" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dmf" = ( +/obj/structure/cable/white, +/obj/machinery/power/apc{ + dir = 2; + name = "Abandoned Research Lab APC"; + areastring = "/area/science/research/abandoned"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dmg" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/science/research/abandoned) +"dmh" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/research/abandoned) +"dmi" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_switch{ + pixel_x = 26 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dmj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor/preopen{ + id = "maintrobotics"; + name = "Decrepit Blast Door" + }, +/obj/structure/girder, +/obj/structure/grille, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"dmk" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"dml" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/science/explab) +"dmm" = ( +/obj/machinery/door/firedoor/heavy, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/button/door{ + id = "experimentor"; + name = "Experimentor Door Control"; + pixel_x = -26; + req_access_txt = "47" + }, +/obj/machinery/door/poddoor/preopen{ + id = "experimentor"; + name = "Test Chamber Blast door" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/science/explab) +"dmn" = ( +/obj/structure/sign/securearea, +/turf/closed/wall/r_wall, +/area/science/explab) +"dmo" = ( +/obj/machinery/status_display, +/turf/closed/wall/r_wall, +/area/science/explab) +"dmp" = ( +/obj/machinery/door/firedoor/heavy, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/explab) +"dmq" = ( +/obj/machinery/door/firedoor/heavy, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/science/explab) +"dmr" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall, +/area/science/explab) +"dms" = ( +/turf/closed/wall/r_wall, +/area/science/mixing) +"dmt" = ( +/obj/structure/sign/fire, +/turf/closed/wall/r_wall, +/area/science/mixing) +"dmu" = ( +/obj/machinery/door/firedoor/heavy, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdtoxins"; + name = "Toxins Lab Shutters" + }, +/turf/open/floor/plating, +/area/science/mixing) +"dmv" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Toxins Mixing Lab"; + req_access_txt = "8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdtoxins"; + name = "Toxins Lab Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dmw" = ( +/obj/structure/sign/biohazard, +/turf/closed/wall/r_wall, +/area/science/mixing) +"dmx" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"dmy" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/window/northright{ + name = "Shooting Range" + }, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"dmz" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"dmA" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Research Director's Office APC"; + areastring = "/area/crew_quarters/heads/hor"; + pixel_x = -26 + }, +/obj/structure/cable/white, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/bot, +/obj/item/twohanded/required/kirbyplants/dead, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hor) +"dmB" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/crew_quarters/heads/hor) +"dmC" = ( +/obj/structure/chair/office/light, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/hor) +"dmD" = ( +/obj/structure/chair/office/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/crew_quarters/heads/hor) +"dmE" = ( +/obj/structure/table, +/obj/item/cartridge/signal/toxins{ + pixel_x = 6 + }, +/obj/item/cartridge/signal/toxins{ + pixel_x = -6 + }, +/obj/item/cartridge/signal/toxins{ + pixel_y = 6 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/camera{ + c_tag = "Science - Research Director's Office"; + dir = 8; + name = "science camera"; + network = list("SS13","RD") + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hor) +"dmF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/research) +"dmG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/science/research) +"dmH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/research) +"dmI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Mech Bay"; + req_access_txt = "29" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dmJ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dmK" = ( +/turf/open/floor/plasteel/neutral, +/area/science/robotics/mechbay) +"dmL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/science/robotics/mechbay) +"dmM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/roboticist, +/turf/open/floor/plasteel/neutral, +/area/science/robotics/mechbay) +"dmN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dmO" = ( +/obj/machinery/door/poddoor/shutters{ + id = "mechbay"; + name = "Mech Bay Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dmP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dmQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/aft) +"dmR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/blue/corner{ + dir = 8 + }, +/area/maintenance/department/medical) +"dmS" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"dmT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/blue/corner, +/area/maintenance/department/medical) +"dmU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/blue/corner, +/area/maintenance/department/medical) +"dmV" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/medical/genetics/cloning) +"dmW" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/genetics/cloning) +"dmX" = ( +/obj/structure/closet/crate/freezer/surplus_limbs, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/medical/genetics/cloning) +"dmY" = ( +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/genetics/cloning) +"dmZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitepurple/corner, +/area/medical/genetics/cloning) +"dna" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/genetics/cloning) +"dnb" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 7; + pixel_y = -26 + }, +/obj/machinery/light, +/obj/machinery/light_switch{ + pixel_x = 7; + pixel_y = -38 + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "cloningfoyer"; + name = "Cloning Doors Control"; + normaldoorcontrol = 1; + pixel_x = -6; + pixel_y = -24 + }, +/obj/machinery/camera{ + c_tag = "Medbay - Cloning Lab"; + dir = 1; + name = "medbay camera" + }, +/turf/open/floor/plasteel/whitepurple/corner, +/area/medical/genetics/cloning) +"dnc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"dnd" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/blue, +/area/medical/medbay/central) +"dne" = ( +/obj/structure/table/glass, +/obj/item/folder/white, +/obj/item/reagent_containers/glass/beaker/cryoxadone, +/obj/item/reagent_containers/glass/beaker/cryoxadone, +/obj/item/reagent_containers/dropper, +/turf/open/floor/plasteel/whiteblue, +/area/medical/medbay/central) +"dnf" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dng" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dnh" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dni" = ( +/obj/structure/table/glass, +/obj/item/wrench/medical, +/obj/item/clothing/neck/stethoscope, +/obj/machinery/camera{ + c_tag = "Medbay - Cryogenics"; + dir = 1; + name = "medbay camera" + }, +/turf/open/floor/plasteel/whiteblue, +/area/medical/medbay/central) +"dnj" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/medbay/central) +"dnk" = ( +/obj/structure/sign/nosmoking_2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/surgery) +"dnl" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/surgery) +"dnm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/medical/surgery) +"dnn" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/iv_drip, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/surgery) +"dno" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/surgery) +"dnp" = ( +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/suit/apron/surgical, +/obj/item/clothing/mask/surgical, +/obj/item/surgical_drapes, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/surgery) +"dnq" = ( +/obj/item/retractor, +/obj/item/hemostat, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 5 + }, +/area/medical/surgery) +"dnr" = ( +/obj/item/circular_saw, +/obj/item/surgicaldrill{ + pixel_y = 5 + }, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/whiteblue, +/area/medical/surgery) +"dns" = ( +/obj/item/scalpel, +/obj/item/cautery, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 9 + }, +/area/medical/surgery) +"dnt" = ( +/obj/machinery/computer/med_data/laptop, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/surgery) +"dnu" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dnv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/secondary/construction) +"dnw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"dnx" = ( +/turf/open/floor/plasteel/yellow/corner{ + dir = 4 + }, +/area/hallway/secondary/construction) +"dny" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"dnz" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/window/eastleft, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/crew_quarters/abandoned_gambling_den) +"dnA" = ( +/obj/structure/table/wood, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/item/book/manual/wiki/engineering_hacking, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"dnB" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/research/abandoned) +"dnC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dnD" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"dnE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault, +/area/science/explab) +"dnF" = ( +/turf/open/floor/plasteel/vault, +/area/science/explab) +"dnG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault, +/area/science/explab) +"dnH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault, +/area/science/explab) +"dnI" = ( +/obj/structure/closet/bombcloset, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dnJ" = ( +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/mixing) +"dnK" = ( +/turf/open/floor/plasteel/whitepurple/side{ + dir = 1 + }, +/area/science/mixing) +"dnL" = ( +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/science/mixing) +"dnM" = ( +/obj/structure/closet/bombcloset, +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = 26 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dnN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"dnO" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"dnP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"dnQ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hor) +"dnR" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/crew_quarters/heads/hor) +"dnS" = ( +/obj/structure/table/reinforced, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/button/door{ + id = "rdxeno"; + name = "Xenobiology Containment Control"; + pixel_x = -7; + pixel_y = 7; + req_access_txt = "30" + }, +/obj/machinery/button/door{ + id = "rdtoxins"; + name = "Toxins Containment Control"; + pixel_x = -7; + pixel_y = -4; + req_access_txt = "30" + }, +/obj/machinery/button/door{ + id = "rdrnd"; + name = "Research and Development Containment Control"; + pixel_x = 7; + pixel_y = 7; + req_access_txt = "30" + }, +/obj/machinery/button/door{ + id = "rdoffice"; + name = "Privacy Control"; + pixel_x = 7; + pixel_y = -4; + req_access_txt = "30" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/hor) +"dnT" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white, +/obj/item/stamp/rd, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 4 + }, +/area/crew_quarters/heads/hor) +"dnU" = ( +/obj/machinery/computer/card/minor/rd, +/obj/machinery/ai_status_display{ + pixel_x = 32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hor) +"dnV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/purple, +/area/science/research) +"dnW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dnX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"dnY" = ( +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"dnZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/aft) +"doa" = ( +/turf/closed/wall, +/area/medical/genetics) +"dob" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Genetics Desk Maintenance"; + req_access_txt = "9" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical) +"doc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/department/medical) +"dod" = ( +/turf/closed/wall/r_wall, +/area/medical/genetics) +"doe" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/genetics) +"dof" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Genetics Lab"; + req_access_txt = "9" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/genetics) +"dog" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/medical/genetics) +"doh" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Medbay APC"; + areastring = "/area/medical/medbay/central"; + pixel_x = -26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"doi" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/medical/medbay/central) +"doj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/medbay/central) +"dok" = ( +/obj/structure/sign/bluecross_2, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/cmo) +"dol" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/cmo) +"dom" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cmoshutter"; + name = "CMO Office Shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/cmo) +"don" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"doo" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/surgery) +"dop" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/surgery) +"doq" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/iv_drip, +/obj/machinery/camera{ + c_tag = "Medbay - Recovery Room"; + dir = 8; + name = "medbay camera" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/surgery) +"dor" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/surgery) +"dos" = ( +/turf/open/floor/plasteel/blue, +/area/medical/surgery) +"dot" = ( +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/surgery) +"dou" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/blue, +/area/medical/surgery) +"dov" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/mirror{ + pixel_x = 26; + pixel_y = 32 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/surgery) +"dow" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/starboard/aft) +"dox" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"doy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch/abandoned{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"doz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"doA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"doB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"doC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"doD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"doE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch/abandoned{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"doF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"doG" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 10 + }, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"doH" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/hollow/reinforced/directional, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"doI" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/hollow/reinforced/end{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"doJ" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/abandoned_gambling_den) +"doK" = ( +/obj/structure/table/wood, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/timer{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"doL" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"doM" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/research/abandoned) +"doN" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"doO" = ( +/obj/structure/table/reinforced, +/obj/item/device/mmi, +/obj/item/device/assembly/prox_sensor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/research/abandoned) +"doP" = ( +/obj/structure/frame/machine, +/obj/item/stack/cable_coil/white, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/research/abandoned) +"doQ" = ( +/obj/structure/rack, +/obj/item/book/manual/robotics_cyborgs, +/obj/item/storage/belt/utility, +/obj/item/reagent_containers/glass/beaker/large, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"doR" = ( +/obj/machinery/mecha_part_fabricator, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"doS" = ( +/obj/structure/table/reinforced, +/obj/item/stock_parts/console_screen, +/obj/item/stock_parts/micro_laser, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"doT" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/device/assembly/flash/handheld, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"doU" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/port) +"doV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port) +"doW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/science/explab) +"doX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/science/explab) +"doY" = ( +/mob/living/simple_animal/pet/dog/pug{ + name = "Swanson" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/science/explab) +"doZ" = ( +/obj/effect/landmark/revenantspawn, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/science/explab) +"dpa" = ( +/obj/machinery/r_n_d/experimentor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/science/explab) +"dpb" = ( +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/science/explab) +"dpc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/science/explab) +"dpd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/science/explab) +"dpe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/science/explab) +"dpf" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/mixing) +"dpg" = ( +/turf/open/floor/plasteel/neutral, +/area/science/mixing) +"dph" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26; + pixel_y = 26 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/mixing) +"dpi" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/securearea{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"dpj" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"dpk" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/toy/figure/rd, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Research Director's Desk"; + departmentType = 5; + name = "Research Director's RC"; + pixel_x = -32; + receive_ore_updates = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hor) +"dpl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/crew_quarters/heads/hor) +"dpm" = ( +/obj/machinery/computer/aifixer, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/hor) +"dpn" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/research_director, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitepurple/corner, +/area/crew_quarters/heads/hor) +"dpo" = ( +/obj/machinery/computer/mecha, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hor) +"dpp" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "rdoffice"; + name = "Research Director's Shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"dpq" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/research) +"dpr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/science/research) +"dps" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/research) +"dpt" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/robotics/mechbay) +"dpu" = ( +/obj/machinery/recharge_station, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dpv" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/cyborg, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dpw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dpx" = ( +/obj/machinery/computer/mech_bay_power_console, +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"dpy" = ( +/obj/machinery/mech_bay_recharge_port{ + icon_state = "recharge_port"; + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/science/robotics/mechbay) +"dpz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24; + pixel_y = -26 + }, +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = -38 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dpA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dpB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/purple/corner, +/area/hallway/primary/aft) +"dpC" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/genetics) +"dpD" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/medical/genetics) +"dpE" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/medical/genetics) +"dpF" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/medical/genetics) +"dpG" = ( +/obj/structure/table/glass, +/obj/item/storage/box/beakers{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/masks, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/medical/genetics) +"dpH" = ( +/obj/machinery/status_display, +/turf/closed/wall/r_wall, +/area/medical/genetics) +"dpI" = ( +/obj/structure/table/reinforced, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/obj/item/clothing/gloves/color/latex, +/obj/item/storage/box/disks, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/medical/genetics) +"dpJ" = ( +/obj/machinery/computer/scan_consolenew, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/genetics) +"dpK" = ( +/obj/machinery/dna_scannernew, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/genetics) +"dpL" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/firealarm{ + pixel_x = -26; + pixel_y = 26 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/medical/genetics) +"dpM" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"dpN" = ( +/obj/machinery/button/door{ + id = "geneticslab"; + name = "Genetics Lab Shutters"; + pixel_x = 26; + pixel_y = 26; + req_access_txt = "9" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 4 + }, +/area/medical/genetics) +"dpO" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel, +/area/medical/genetics) +"dpP" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "geneticslab"; + name = "Genetics Lab Shutters" + }, +/turf/open/floor/plating, +/area/medical/genetics) +"dpR" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cmoshutter"; + name = "CMO Office Shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/cmo) +"dpS" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/crew_quarters/heads/cmo) +"dpT" = ( +/obj/structure/table/glass, +/obj/item/folder/blue, +/obj/item/cartridge/medical{ + pixel_x = -3 + }, +/obj/item/cartridge/medical{ + pixel_x = 3 + }, +/obj/item/cartridge/chemistry{ + pixel_y = 6 + }, +/turf/open/floor/plasteel/cmo, +/area/crew_quarters/heads/cmo) +"dpU" = ( +/obj/structure/table/glass, +/obj/item/folder/white, +/obj/item/device/flashlight/pen, +/obj/item/clothing/neck/stethoscope, +/turf/open/floor/plasteel/cmo, +/area/crew_quarters/heads/cmo) +"dpV" = ( +/obj/structure/table/glass, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel/cmo, +/area/crew_quarters/heads/cmo) +"dpW" = ( +/obj/structure/table/glass, +/obj/item/folder/blue, +/obj/item/clothing/glasses/hud/health, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/crew_quarters/heads/cmo) +"dpX" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/blue, +/area/medical/medbay/central) +"dpY" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/medbay/central) +"dpZ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/medical{ + name = "Recovery Room" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) +"dqa" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/surgery) +"dqb" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/blue, +/area/medical/surgery) +"dqc" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/surgery) +"dqd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Surgery Theatre"; + req_access_txt = "45" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) +"dqe" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/surgery) +"dqf" = ( +/obj/machinery/computer/operating, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/surgery) +"dqg" = ( +/obj/structure/table/optable, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/blue, +/area/medical/surgery) +"dqh" = ( +/obj/machinery/holopad, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/surgery) +"dqi" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/surgery) +"dqj" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Surgery Maintenance"; + req_access_txt = "45" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"dqk" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"dql" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/starboard/aft) +"dqm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/yellow/corner{ + dir = 8 + }, +/area/hallway/secondary/construction) +"dqn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"dqo" = ( +/obj/structure/table, +/obj/item/device/analyzer{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"dqp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/starboard/aft) +"dqq" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/weldingtool, +/obj/item/device/assembly/voice, +/obj/item/clothing/head/welding, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"dqr" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"dqs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dqt" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plasteel/black, +/area/crew_quarters/abandoned_gambling_den) +"dqu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/abandoned_gambling_den) +"dqv" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/crew_quarters/abandoned_gambling_den) +"dqw" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/black, +/area/crew_quarters/abandoned_gambling_den) +"dqx" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dqy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dqz" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dqA" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port) +"dqB" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/science/explab) +"dqC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/science/explab) +"dqD" = ( +/obj/machinery/camera{ + c_tag = "Science - Experimentor"; + dir = 1; + name = "science camera"; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/science/explab) +"dqE" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Science - Toxins Mixing Lab Fore"; + dir = 4; + name = "science camera"; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel/escape{ + dir = 8 + }, +/area/science/mixing) +"dqF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/mixing) +"dqG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump, +/turf/open/floor/plasteel/neutral, +/area/science/mixing) +"dqH" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/science/mixing) +"dqI" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 8; + on = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dqJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Science - Firing Range"; + dir = 4; + name = "science camera"; + network = list("SS13","RD") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"dqK" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/science/misc_lab/range) +"dqL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"dqM" = ( +/obj/structure/table/reinforced, +/obj/machinery/light, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/item/storage/secure/briefcase, +/obj/item/device/taperecorder, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26; + pixel_y = -26 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hor) +"dqN" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/crew_quarters/heads/hor) +"dqO" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitepurple/side, +/area/crew_quarters/heads/hor) +"dqP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitepurple/corner, +/area/crew_quarters/heads/hor) +"dqQ" = ( +/obj/machinery/computer/robotics, +/obj/machinery/light, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/keycard_auth{ + pixel_x = -5; + pixel_y = -26 + }, +/obj/machinery/light_switch{ + pixel_x = 5; + pixel_y = -26 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hor) +"dqR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/purple, +/area/science/research) +"dqS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Science - Aft Center"; + dir = 8; + name = "science camera"; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/research) +"dqT" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dqU" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dqV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dqW" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "Science - Mech Bay"; + dir = 1; + name = "science camera"; + network = list("SS13","RD") + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dqX" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dqY" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dqZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dra" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"drb" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"drc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/aft) +"drd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + icon_state = "pipe-j1s"; + name = "Genetics Junction"; + sortType = 23 + }, +/turf/open/floor/plasteel/purple/corner, +/area/hallway/primary/aft) +"dre" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Genetics Desk"; + req_access_txt = "9" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/genetics) +"drf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/genetics) +"drg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/medical/genetics) +"drh" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/neutral, +/area/medical/genetics) +"dri" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/medical/genetics) +"drj" = ( +/obj/structure/table/glass, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/item/clipboard, +/obj/item/toy/figure/geneticist, +/obj/machinery/power/apc{ + dir = 4; + name = "Genetics Lab APC"; + areastring = "/area/medical/genetics"; + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/medical/genetics) +"drk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/genetics) +"drl" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white, +/obj/item/storage/pill_bottle/mutadone, +/obj/item/storage/pill_bottle/mannitol, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Medbay - Genetics Lab"; + dir = 4; + name = "medbay camera" + }, +/obj/machinery/light_switch{ + pixel_x = -26 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/medical/genetics) +"drm" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/geneticist, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 9 + }, +/area/medical/genetics) +"drn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 1 + }, +/area/medical/genetics) +"dro" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/medical/genetics) +"drp" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/medical/genetics) +"drq" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 4 + }, +/area/medical/genetics) +"drr" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/westright{ + name = "'Monkey Pen"; + req_access_txt = "9" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel, +/area/medical/genetics) +"drs" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "geneticslab"; + name = "Genetics Lab Shutters" + }, +/turf/open/floor/plating, +/area/medical/genetics) +"drt" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"dru" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/medical/medbay/central) +"drv" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/medbay/central) +"drw" = ( +/obj/machinery/door/airlock/command{ + name = "Chief Medical Officer's Office"; + req_access_txt = "40" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/cmo) +"drx" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/crew_quarters/heads/cmo) +"dry" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/cmo, +/area/crew_quarters/heads/cmo) +"drz" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/cmo, +/area/crew_quarters/heads/cmo) +"drA" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/cmo, +/area/crew_quarters/heads/cmo) +"drB" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/crew_quarters/heads/cmo) +"drC" = ( +/obj/machinery/door/airlock/command{ + name = "Chief Medical Officer's Office"; + req_access_txt = "40" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/cmo) +"drD" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"drE" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/landmark/lightsout, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/medbay/central) +"drF" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/medbay/central) +"drG" = ( +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/surgery) +"drH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/surgery) +"drI" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/surgery) +"drJ" = ( +/obj/machinery/light_switch{ + pixel_x = -26 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/surgery) +"drK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/surgery) +"drL" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whiteblue/side, +/area/medical/surgery) +"drM" = ( +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/surgery) +"drN" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26 + }, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/surgery) +"drO" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/starboard/aft) +"drP" = ( +/obj/structure/rack, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/storage/toolbox/emergency{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/electrical, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"drQ" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"drR" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"drS" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"drT" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"drU" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/item/electronics/firealarm, +/obj/item/stock_parts/console_screen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"drV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"drW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"drX" = ( +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"drY" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"drZ" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"dsa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/abandoned_gambling_den) +"dsb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/abandoned_gambling_den) +"dsc" = ( +/obj/structure/chair/stool/bar, +/turf/open/floor/wood, +/area/crew_quarters/abandoned_gambling_den) +"dsd" = ( +/obj/structure/chair/stool/bar, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/crew_quarters/abandoned_gambling_den) +"dse" = ( +/mob/living/simple_animal/cockroach, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/abandoned_gambling_den) +"dsf" = ( +/obj/machinery/recharge_station, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dsg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dsh" = ( +/turf/open/floor/circuit/green, +/area/science/research/abandoned) +"dsi" = ( +/obj/machinery/computer/mech_bay_power_console, +/turf/open/floor/circuit/green, +/area/science/research/abandoned) +"dsj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dsk" = ( +/turf/open/floor/plasteel/neutral, +/area/science/research/abandoned) +"dsl" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dsm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_switch{ + pixel_x = 26 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dsn" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/escape{ + dir = 8 + }, +/area/science/mixing) +"dso" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/mixing) +"dsp" = ( +/obj/effect/landmark/start/scientist, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/science/mixing) +"dsq" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/science/mixing) +"dsr" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dss" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"dst" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"dsu" = ( +/turf/closed/wall, +/area/crew_quarters/heads/hor) +"dsv" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"dsw" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/door/airlock/command{ + name = "Research Director's Quarters"; + req_access = null; + req_access_txt = "30" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hor) +"dsx" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"dsy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dsz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dsA" = ( +/turf/closed/wall, +/area/science/robotics/lab) +"dsB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "roboticsprivacy"; + name = "Robotics Shutters" + }, +/turf/open/floor/plating, +/area/science/robotics/lab) +"dsC" = ( +/obj/structure/sign/science, +/turf/closed/wall, +/area/science/robotics/lab) +"dsD" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_research{ + name = "Robotics Lab"; + req_access_txt = "29" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dsE" = ( +/turf/closed/wall/r_wall, +/area/science/robotics/lab) +"dsF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dsG" = ( +/obj/structure/table/glass, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/folder/white, +/obj/item/storage/box/disks, +/obj/machinery/camera{ + c_tag = "Medbay - Genetics Desk"; + dir = 4; + name = "medbay camera" + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/medical/genetics) +"dsH" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral, +/area/medical/genetics) +"dsI" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/genetics) +"dsJ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 4 + }, +/area/medical/genetics) +"dsK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Genetics Lab"; + req_access_txt = "9" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/genetics) +"dsL" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/medical/genetics) +"dsM" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/medical/genetics) +"dsN" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/genetics) +"dsO" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/genetics) +"dsP" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/holopad, +/obj/effect/landmark/start/geneticist, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/genetics) +"dsQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 4 + }, +/area/medical/genetics) +"dsR" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/westleft{ + name = "'Monkey Pen"; + req_access_txt = "9" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/genetics) +"dsS" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "geneticslab"; + name = "Genetics Lab Shutters" + }, +/turf/open/floor/plating, +/area/medical/genetics) +"dsT" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"dsU" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/blue, +/area/medical/medbay/central) +"dsV" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cmoshutter"; + name = "CMO Office Shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/cmo) +"dsW" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/crew_quarters/heads/cmo) +"dsX" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/cmo, +/area/crew_quarters/heads/cmo) +"dsY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/cmo, +/area/crew_quarters/heads/cmo) +"dsZ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cmo, +/area/crew_quarters/heads/cmo) +"dta" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/crew_quarters/heads/cmo) +"dtb" = ( +/obj/structure/table, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/clothing/ears/earmuffs, +/obj/item/gun/syringe, +/obj/item/clothing/glasses/eyepatch, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/surgery) +"dtc" = ( +/obj/machinery/computer/med_data, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = -26 + }, +/turf/open/floor/plasteel/whiteblue/side, +/area/medical/surgery) +"dtd" = ( +/obj/machinery/computer/crew, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/surgery) +"dtf" = ( +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/vault, +/area/medical/surgery) +"dtg" = ( +/obj/structure/cable/white, +/obj/machinery/power/apc{ + dir = 2; + name = "Surgery APC"; + areastring = "/area/medical/surgery"; + pixel_y = -26 + }, +/obj/machinery/camera{ + c_tag = "Medbay - Surgery"; + dir = 1; + name = "medbay camera" + }, +/turf/open/floor/plasteel/vault, +/area/medical/surgery) +"dth" = ( +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault, +/area/medical/surgery) +"dti" = ( +/obj/structure/closet/crate/freezer/blood, +/obj/machinery/vending/wallmed{ + name = "Emergency NanoMed"; + pixel_x = 26; + req_access_txt = "0"; + use_power = 0 + }, +/turf/open/floor/plasteel/vault, +/area/medical/surgery) +"dtj" = ( +/obj/structure/table, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"dtk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"dtl" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Auxiliary Construction Zone APC"; + areastring = "/area/hallway/secondary/construction"; + pixel_y = -26 + }, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"dtm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"dtn" = ( +/obj/structure/table, +/obj/item/device/flashlight/lamp, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"dto" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"dtp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dtq" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel/black, +/area/crew_quarters/abandoned_gambling_den) +"dtr" = ( +/obj/structure/table/wood/poker, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"dts" = ( +/obj/structure/table/wood/poker, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/crew_quarters/abandoned_gambling_den) +"dtt" = ( +/obj/structure/table/wood/poker, +/obj/item/storage/box/matches{ + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/crew_quarters/abandoned_gambling_den) +"dtu" = ( +/obj/structure/table/wood/poker, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/wood, +/area/crew_quarters/abandoned_gambling_den) +"dtv" = ( +/obj/structure/table/wood/poker, +/obj/item/storage/fancy/cigarettes/dromedaryco{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/fancy/cigarettes/dromedaryco, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/black, +/area/crew_quarters/abandoned_gambling_den) +"dtw" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"dtx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dty" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dtz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mech_bay_recharge_floor, +/area/science/research/abandoned) +"dtA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral, +/area/science/research/abandoned) +"dtB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/neutral, +/area/science/research/abandoned) +"dtC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/science/research/abandoned) +"dtD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dtE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dtF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/barricade/wooden, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dtG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"dtH" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/maintenance/port) +"dtI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/maintenance/port) +"dtJ" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/maintenance/port) +"dtK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"dtL" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/arrival{ + dir = 8 + }, +/area/science/mixing) +"dtM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/mixing) +"dtN" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/science/mixing) +"dtO" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/science/mixing) +"dtP" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/structure/sign/fire{ + pixel_x = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dtQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"dtR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"dtS" = ( +/obj/structure/closet/secure_closet/RD, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hor) +"dtT" = ( +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/crew_quarters/heads/hor) +"dtU" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/crew_quarters/heads/hor) +"dtV" = ( +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/crew_quarters/heads/hor) +"dtW" = ( +/obj/structure/dresser, +/obj/item/storage/secure/safe{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/crew_quarters/heads/hor) +"dtX" = ( +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/structure/table/reinforced, +/obj/machinery/requests_console{ + department = "Robotics Lab"; + departmentType = 0; + name = "Robotics RC"; + pixel_y = 32; + receive_ore_updates = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dtY" = ( +/obj/item/paper_bin, +/obj/item/device/assembly/prox_sensor{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dtZ" = ( +/obj/machinery/mecha_part_fabricator, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dua" = ( +/obj/structure/rack, +/obj/item/book/manual/robotics_cyborgs, +/obj/item/storage/belt/utility/full, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/circuitboard/mecha/ripley/main, +/obj/item/circuitboard/mecha/ripley/peripherals, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dub" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"duc" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/toy/figure/roboticist, +/obj/machinery/button/door{ + id = "roboticsprivacy"; + name = "Robotics Privacy Control"; + pixel_x = 26; + pixel_y = 26; + req_access_txt = "29" + }, +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = 38 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dud" = ( +/obj/structure/sign/science{ + pixel_x = -32; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/purple/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"due" = ( +/obj/structure/sign/science{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/purple/corner, +/area/hallway/primary/aft) +"duf" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "geneticsdesk"; + name = "Genetics Desk Shutters" + }, +/obj/machinery/door/window/westright{ + dir = 4; + name = "Genetics Desk"; + req_access_txt = "9" + }, +/obj/machinery/door/window/westright{ + name = "Genetics Desk" + }, +/obj/item/folder/white, +/obj/item/pen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/genetics) +"dug" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/medical/genetics) +"duh" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/genetics) +"dui" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/genetics) +"duj" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/whitepurple/corner, +/area/medical/genetics) +"duk" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "geneticslab"; + name = "Genetics Lab Shutters" + }, +/turf/open/floor/plating, +/area/medical/genetics) +"dul" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/item/device/radio/headset/headset_medsci, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/medical/genetics) +"dum" = ( +/obj/structure/chair/office/light, +/obj/effect/landmark/start/geneticist, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 10 + }, +/area/medical/genetics) +"dun" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/whitepurple/side, +/area/medical/genetics) +"duo" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/medical/genetics) +"dup" = ( +/turf/open/floor/plasteel/neutral, +/area/medical/genetics) +"duq" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 4 + }, +/area/medical/genetics) +"dur" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel, +/area/medical/genetics) +"dus" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Medbay - Aft Port"; + dir = 8; + name = "medbay camera" + }, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/medbay/central) +"dut" = ( +/obj/structure/bed/dogbed/runtime, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/light{ + dir = 8 + }, +/mob/living/simple_animal/pet/cat/Runtime, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/crew_quarters/heads/cmo) +"duu" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/cmo, +/area/crew_quarters/heads/cmo) +"duv" = ( +/obj/structure/chair/office/light, +/turf/open/floor/plasteel/cmo, +/area/crew_quarters/heads/cmo) +"duw" = ( +/obj/structure/chair/office/light, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/cmo, +/area/crew_quarters/heads/cmo) +"dux" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Chief Medical Officer's Office APC"; + areastring = "/area/crew_quarters/heads/cmo"; + pixel_x = 26 + }, +/obj/machinery/camera{ + c_tag = "Medbay - Chief Medical Officer's Office"; + dir = 8; + name = "medbay camera" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/crew_quarters/heads/cmo) +"duy" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/medbay/central) +"duz" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"duA" = ( +/obj/machinery/door/airlock/maintenance_hatch/abandoned{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"duB" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"duC" = ( +/obj/machinery/power/smes, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"duD" = ( +/obj/machinery/camera{ + c_tag = "Solar - Aft Starboard"; + name = "solar camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"duE" = ( +/obj/structure/frame/machine, +/obj/item/circuitboard/machine/cyborgrecharger, +/turf/open/floor/plating, +/area/science/research/abandoned) +"duF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"duG" = ( +/obj/machinery/mech_bay_recharge_port{ + icon_state = "recharge_port"; + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/science/research/abandoned) +"duH" = ( +/obj/item/robot_suit, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"duI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/research/abandoned) +"duJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"duK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port) +"duL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port) +"duM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port) +"duN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"duO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"duP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/neutral, +/area/maintenance/port) +"duQ" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Toxins Lab APC"; + areastring = "/area/science/mixing"; + pixel_x = -26; + pixel_y = 3 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/mixing) +"duR" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/mixing) +"duS" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/science/mixing) +"duT" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/science/mixing) +"duU" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"duV" = ( +/turf/open/floor/plating, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/science/misc_lab/range) +"duW" = ( +/obj/item/target/syndicate, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"duX" = ( +/turf/open/floor/plating, +/area/science/misc_lab/range) +"duY" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/ai_status_display{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hor) +"duZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/heads/hor) +"dva" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/research_director, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/purple, +/area/crew_quarters/heads/hor) +"dvb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/heads/hor) +"dvc" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/bed, +/obj/item/bedsheet/rd, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 4 + }, +/area/crew_quarters/heads/hor) +"dvd" = ( +/obj/item/stack/sheet/plasteel{ + amount = 15 + }, +/obj/item/wrench, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/clothing/glasses/welding, +/obj/structure/table/reinforced, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dve" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dvf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dvg" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dvh" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dvi" = ( +/obj/structure/chair/office/light{ + icon_state = "officechair_white"; + dir = 4 + }, +/obj/effect/landmark/start/roboticist, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dvj" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "roboticsprivacy"; + name = "Robotics Shutters" + }, +/obj/machinery/door/window/westleft{ + name = "Robotics Desk"; + req_access_txt = "29" + }, +/obj/machinery/door/window/eastleft, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dvk" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "geneticsdesk"; + name = "Genetics Desk Shutters" + }, +/turf/open/floor/plating, +/area/medical/genetics) +"dvl" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/button/door{ + id = "geneticsdesk"; + name = "Genetics Desk Shutters"; + pixel_x = -26; + pixel_y = -26; + req_access_txt = "9" + }, +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -32 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/medical/genetics) +"dvm" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/medical/genetics) +"dvn" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = -26 + }, +/turf/open/floor/plasteel/whitepurple/corner, +/area/medical/genetics) +"dvo" = ( +/obj/structure/closet/wardrobe/genetics_white, +/turf/open/floor/plasteel/whitepurple/corner, +/area/medical/genetics) +"dvp" = ( +/obj/machinery/ai_status_display, +/turf/closed/wall/r_wall, +/area/medical/genetics) +"dvq" = ( +/obj/structure/table/reinforced, +/obj/machinery/requests_console{ + department = "Medbay Storage"; + departmentType = 0; + name = "Genetics Lab RC"; + pixel_y = -32 + }, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/bodybags, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/medical/genetics) +"dvr" = ( +/obj/machinery/computer/scan_consolenew, +/obj/machinery/light, +/obj/structure/sign/nosmoking_2{ + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/genetics) +"dvs" = ( +/obj/machinery/dna_scannernew, +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/genetics) +"dvt" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/medical/genetics) +"dvu" = ( +/obj/machinery/computer/med_data/laptop, +/obj/structure/table/glass, +/obj/structure/mirror{ + pixel_y = -28 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"dvv" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 4 + }, +/area/medical/genetics) +"dvw" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/genetics) +"dvx" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "geneticslab"; + name = "Genetics Lab Shutters" + }, +/obj/structure/sign/electricshock{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/medical/genetics) +"dvz" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/whiteblue/side, +/area/medical/medbay/central) +"dvA" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/medbay/central) +"dvB" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cmoshutter"; + name = "CMO Office Shutters" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/cmo) +"dvC" = ( +/obj/machinery/disposal/bin, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/cmo) +"dvD" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/cmo, +/area/crew_quarters/heads/cmo) +"dvE" = ( +/obj/structure/table/glass, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/item/paper_bin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cmo, +/area/crew_quarters/heads/cmo) +"dvF" = ( +/obj/structure/table/glass, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/item/folder/blue{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/folder/white, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cmo, +/area/crew_quarters/heads/cmo) +"dvG" = ( +/obj/machinery/computer/med_data/laptop, +/obj/structure/table/glass, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/crew_quarters/heads/cmo) +"dvH" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cmoshutter"; + name = "CMO Office Shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/cmo) +"dvI" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/plasteel/vault, +/area/medical/medbay/central) +"dvJ" = ( +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/vault, +/area/medical/medbay/central) +"dvK" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/plasteel/vault, +/area/medical/medbay/central) +"dvL" = ( +/obj/item/folder/white, +/obj/item/device/flashlight/pen, +/obj/item/clothing/neck/stethoscope, +/obj/structure/table, +/turf/open/floor/plasteel/vault, +/area/medical/medbay/central) +"dvM" = ( +/obj/machinery/computer/med_data/laptop, +/obj/structure/table, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/vault, +/area/medical/medbay/central) +"dvN" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dvO" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"dvP" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"dvQ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dvR" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dvS" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dvT" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dvU" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"dvV" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"dvW" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dvX" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"dvY" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dvZ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"dwa" = ( +/obj/machinery/door/airlock/engineering{ + name = "Starboard Quarter Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/solars/starboard/aft) +"dwb" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard/aft) +"dwc" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard/aft) +"dwe" = ( +/obj/structure/table/wood/poker, +/obj/item/reagent_containers/food/drinks/bottle/rum{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/crew_quarters/abandoned_gambling_den) +"dwg" = ( +/obj/structure/table/wood/poker, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/glass/beaker/cryoxadone, +/obj/item/reagent_containers/dropper, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"dwh" = ( +/obj/structure/table, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/science/research/abandoned) +"dwi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dwj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dwk" = ( +/obj/structure/chair/office/light, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dwl" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/clothing/head/welding, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/research/abandoned) +"dwm" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/port) +"dwn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port) +"dwo" = ( +/obj/structure/table/reinforced, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = -32 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter{ + pixel_x = -6; + pixel_y = -6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dwp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/mixing) +"dwq" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/mixing) +"dwr" = ( +/turf/open/floor/plasteel/whitepurple/side{ + dir = 4 + }, +/area/science/mixing) +"dws" = ( +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/mixing) +"dwt" = ( +/obj/machinery/light/small, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"dwu" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"dwv" = ( +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"dww" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/suit_storage_unit/rd, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hor) +"dwx" = ( +/obj/machinery/button/door{ + id = "idquarters"; + name = "Privacy Control"; + pixel_x = -26; + pixel_y = -26; + req_access_txt = "30" + }, +/turf/open/floor/plasteel/whitepurple/corner, +/area/crew_quarters/heads/hor) +"dwy" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/camera{ + c_tag = "Science - Research Director's Quarters"; + dir = 1; + name = "science camera"; + network = list("SS13","RD") + }, +/obj/machinery/modular_computer/console/preset/research, +/turf/open/floor/plasteel/whitepurple/corner, +/area/crew_quarters/heads/hor) +"dwz" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/whitepurple/corner, +/area/crew_quarters/heads/hor) +"dwA" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26 + }, +/turf/open/floor/plasteel/whitepurple/corner, +/area/crew_quarters/heads/hor) +"dwB" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/research) +"dwC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/robotics/lab) +"dwD" = ( +/obj/item/stack/cable_coil/white, +/obj/item/bodypart/r_arm/robot{ + pixel_x = 3 + }, +/obj/item/bodypart/l_arm/robot{ + pixel_x = -3 + }, +/obj/item/device/assembly/flash/handheld, +/obj/item/device/assembly/flash/handheld, +/obj/structure/table/reinforced, +/obj/machinery/light_switch{ + pixel_x = -38; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/device/assembly/flash/handheld, +/obj/item/device/assembly/flash/handheld, +/obj/item/device/assembly/flash/handheld, +/obj/item/device/assembly/flash/handheld, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dwE" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dwF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/science/robotics/lab) +"dwG" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dwH" = ( +/turf/open/floor/plasteel/neutral, +/area/science/robotics/lab) +"dwI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dwJ" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dwK" = ( +/turf/closed/wall, +/area/medical/morgue) +"dwL" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/centcom{ + name = "Morgue"; + req_access_txt = "9" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/morgue) +"dwM" = ( +/obj/structure/sign/nosmoking_2, +/turf/closed/wall, +/area/medical/morgue) +"dwN" = ( +/turf/closed/wall/r_wall, +/area/medical/morgue) +"dwO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/department/medical/morgue) +"dwP" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Morgue Maintenance"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/morgue) +"dwQ" = ( +/obj/structure/table/glass, +/obj/item/clipboard, +/obj/item/toy/figure/cmo, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/crew_quarters/heads/cmo) +"dwR" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/cmo, +/area/crew_quarters/heads/cmo) +"dwS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/cmo, +/area/crew_quarters/heads/cmo) +"dwT" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start/chief_medical_officer, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/cmo, +/area/crew_quarters/heads/cmo) +"dwU" = ( +/obj/machinery/computer/card/minor/cmo, +/obj/machinery/ai_status_display{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/crew_quarters/heads/cmo) +"dwV" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Medbay - Aft Starboard"; + dir = 4; + name = "medbay camera" + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"dwW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Patient Room" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dwX" = ( +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/blue, +/area/medical/medbay/central) +"dwY" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/medbay/central) +"dwZ" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/vending/wallmed{ + name = "Emergency NanoMed"; + pixel_x = 26; + req_access_txt = "0"; + use_power = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/cmo, +/area/medical/medbay/central) +"dxa" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dxb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/item/device/flashlight, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/starboard/aft) +"dxc" = ( +/obj/structure/girder, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dxd" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/starboard/aft) +"dxe" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dxf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/starboard/aft) +"dxg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/starboard/aft) +"dxh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/starboard/aft) +"dxi" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"dxj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dxk" = ( +/obj/structure/cable/white, +/obj/machinery/power/apc/highcap/ten_k{ + dir = 2; + name = "Starboard Quarter Solar APC"; + areastring = "/area/maintenance/solars/starboard/aft"; + pixel_y = -26 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"dxl" = ( +/obj/machinery/power/solar_control{ + id = "aftstarboard"; + name = "Starboard Quarter Solar Control"; + track = 0 + }, +/obj/structure/cable, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"dxm" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard/aft) +"dxn" = ( +/obj/structure/table, +/obj/item/stack/rods{ + amount = 23 + }, +/obj/item/stack/cable_coil/white, +/obj/item/device/flashlight/seclite, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/research/abandoned) +"dxp" = ( +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dxr" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/folder/white, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dxs" = ( +/obj/structure/frame/computer, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plating, +/area/science/research/abandoned) +"dxt" = ( +/obj/structure/frame/machine, +/obj/machinery/light/small, +/obj/item/stock_parts/console_screen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/research/abandoned) +"dxv" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/black, +/obj/item/storage/toolbox/electrical, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/research/abandoned) +"dxw" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/maintenance/port) +"dxx" = ( +/obj/item/device/assembly/prox_sensor{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = 9; + pixel_y = -2 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_y = 2 + }, +/obj/structure/table/reinforced, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dxy" = ( +/obj/item/device/assembly/timer{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/device/assembly/timer{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/device/assembly/timer{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/device/assembly/timer, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dxz" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/science/mixing) +"dxA" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/mixing) +"dxB" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + icon_state = "freezer"; + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dxC" = ( +/obj/structure/sign/fire, +/turf/closed/wall/r_wall, +/area/science/misc_lab/range) +"dxD" = ( +/obj/machinery/door/firedoor/heavy, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/research{ + name = "Toxins Secure Storage"; + req_access_txt = "8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdtoxins"; + name = "Toxins Lab Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"dxE" = ( +/turf/closed/wall/r_wall, +/area/science/misc_lab/range) +"dxF" = ( +/obj/machinery/door/firedoor/heavy, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "idquarters"; + name = "Director's Quarters Shutters" + }, +/obj/structure/cable/white, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"dxG" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/research) +"dxH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/research) +"dxI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_research{ + name = "Robotics Lab"; + req_access_txt = "29" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dxJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dxK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dxL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/science/robotics/lab) +"dxM" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/science/robotics/lab) +"dxN" = ( +/obj/effect/landmark/start/roboticist, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/science/robotics/lab) +"dxO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/science/robotics/lab) +"dxP" = ( +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 32 + }, +/obj/machinery/camera{ + c_tag = "Science - Robotics Lab"; + dir = 8; + name = "science camera"; + network = list("SS13","RD") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/aug_manipulator, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dxQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/aft) +"dxR" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb, +/obj/item/storage/box/bodybags{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/bodybags, +/turf/open/floor/plating, +/area/medical/morgue) +"dxS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/medical/morgue) +"dxT" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/medical/morgue) +"dxU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/medical/morgue) +"dxV" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/landmark/revenantspawn, +/turf/open/floor/plating, +/area/medical/morgue) +"dxW" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/landmark/revenantspawn, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/medical/morgue) +"dxX" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/revenantspawn, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/medical/morgue) +"dxY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/medical/morgue) +"dxZ" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/medical/morgue) +"dya" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/maintenance/department/medical/morgue) +"dyb" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/maintenance/department/medical/morgue) +"dyc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"dyd" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"dye" = ( +/obj/structure/table/glass, +/obj/item/folder/white, +/obj/item/storage/secure/briefcase, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/structure/sign/nanotrasen{ + pixel_x = -32; + pixel_y = -32 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/crew_quarters/heads/cmo) +"dyf" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/vending/wallmed{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/cmo, +/area/crew_quarters/heads/cmo) +"dyg" = ( +/turf/open/floor/plasteel/cmo, +/area/crew_quarters/heads/cmo) +"dyh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/cmo, +/area/crew_quarters/heads/cmo) +"dyi" = ( +/obj/machinery/computer/crew, +/obj/machinery/button/door{ + id = "cmoshutter"; + name = "CMO Office Shutters"; + pixel_x = 7; + pixel_y = -26; + req_access_txt = "40" + }, +/obj/machinery/keycard_auth{ + pixel_x = 7; + pixel_y = -38 + }, +/obj/machinery/light_switch{ + pixel_x = -7; + pixel_y = -26 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Medical Officer's Desk"; + departmentType = 5; + name = "Chief Medical Officer's RC"; + pixel_x = 32 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/crew_quarters/heads/cmo) +"dyj" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/medbay/central) +"dyk" = ( +/obj/structure/dresser, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cmo, +/area/medical/medbay/central) +"dyl" = ( +/obj/structure/mirror{ + pixel_y = -28 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/cmo, +/area/medical/medbay/central) +"dym" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = -26 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/cmo, +/area/medical/medbay/central) +"dyn" = ( +/obj/structure/closet/wardrobe/pjs, +/turf/open/floor/plasteel/cmo, +/area/medical/medbay/central) +"dyo" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/cmo, +/area/medical/medbay/central) +"dyp" = ( +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/starboard/aft) +"dyq" = ( +/turf/closed/wall, +/area/crew_quarters/theatre/abandoned) +"dyr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/crew_quarters/theatre/abandoned) +"dys" = ( +/turf/closed/wall, +/area/security/detectives_office/private_investigators_office) +"dyt" = ( +/obj/machinery/door/airlock/maintenance_hatch/abandoned{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/detectives_office/private_investigators_office) +"dyu" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard/aft) +"dyv" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/mixing) +"dyw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral/side{ + dir = 10; + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"dyx" = ( +/obj/structure/closet, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 6 + }, +/area/maintenance/port) +"dyy" = ( +/obj/item/device/transfer_valve{ + pixel_x = -5 + }, +/obj/item/device/transfer_valve{ + pixel_x = -5 + }, +/obj/item/device/transfer_valve, +/obj/item/device/transfer_valve, +/obj/item/device/transfer_valve{ + pixel_x = 5 + }, +/obj/item/device/transfer_valve{ + pixel_x = 5 + }, +/obj/structure/table/reinforced, +/obj/machinery/requests_console{ + department = "Toxins Lab"; + departmentType = 0; + name = "Toxins RC"; + pixel_x = -32; + receive_ore_updates = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/mixing) +"dyz" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dyA" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/scientist, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/science/mixing) +"dyB" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/mixing) +"dyD" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"dyE" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"dyF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"dyG" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"dyH" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"dyI" = ( +/turf/closed/wall/r_wall, +/area/science/server) +"dyJ" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/structure/table, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/item/clipboard, +/obj/item/wrench, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/science/server) +"dyK" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/science/server) +"dyL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + min_temperature = 80; + on = 1; + target_temperature = 80 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/science/server) +"dyM" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/server) +"dyN" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/robotics/lab) +"dyO" = ( +/obj/structure/rack, +/obj/item/storage/firstaid, +/obj/item/storage/firstaid, +/obj/item/device/paicard, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dyP" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dyQ" = ( +/obj/item/robot_suit, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dyR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral, +/area/science/robotics/lab) +"dyS" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dyT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dyU" = ( +/obj/machinery/computer/rdconsole/robotics, +/obj/structure/sign/bluecross_2{ + pixel_x = 32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dyV" = ( +/obj/effect/landmark/lightsout, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/aft) +"dyW" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Departures Hallway - Center"; + dir = 8; + name = "hallway camera" + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/aft) +"dyX" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/gloves/color/latex, +/turf/open/floor/plating, +/area/medical/morgue) +"dyY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/medical/morgue) +"dyZ" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/medical/morgue) +"dza" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/medical/morgue) +"dzb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/medical/morgue) +"dzc" = ( +/turf/open/floor/plasteel/neutral, +/area/medical/morgue) +"dzd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/neutral, +/area/medical/morgue) +"dze" = ( +/turf/open/floor/plating, +/area/medical/morgue) +"dzf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral, +/area/maintenance/department/medical/morgue) +"dzg" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"dzh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"dzi" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/backpack/duffelbag/med, +/obj/item/device/flashlight/pen, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"dzj" = ( +/turf/closed/wall, +/area/crew_quarters/heads/cmo) +"dzk" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/crew_quarters/heads/cmo) +"dzl" = ( +/obj/machinery/door/airlock/command{ + name = "Chief Medical Officer's Quarters"; + req_access_txt = "40" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/cmo, +/area/crew_quarters/heads/cmo) +"dzm" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/crew_quarters/heads/cmo) +"dzn" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"dzo" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/medbay/central) +"dzp" = ( +/obj/structure/table/wood, +/obj/item/clothing/under/maid, +/obj/item/clothing/head/kitty, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/crew_quarters/theatre/abandoned) +"dzq" = ( +/obj/machinery/vending/autodrobe{ + req_access_txt = "0" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/crew_quarters/theatre/abandoned) +"dzr" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Abandoned Theatre APC"; + areastring = "/area/crew_quarters/theatre/abandoned"; + pixel_y = 24 + }, +/turf/open/floor/plating, +/area/crew_quarters/theatre/abandoned) +"dzs" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/theatre/abandoned) +"dzt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/theatre/abandoned) +"dzu" = ( +/obj/machinery/door/window{ + dir = 8; + name = "Theatre Stage"; + req_access_txt = "0" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/crew_quarters/theatre/abandoned) +"dzv" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/crew_quarters/theatre/abandoned) +"dzw" = ( +/obj/structure/dresser, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/theatre/abandoned) +"dzx" = ( +/obj/structure/table/wood, +/obj/item/device/instrument/guitar, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/theatre/abandoned) +"dzy" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/photocopier, +/obj/item/newspaper{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/newspaper, +/turf/open/floor/plating, +/area/security/detectives_office/private_investigators_office) +"dzz" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"dzA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_switch{ + pixel_y = 26 + }, +/turf/open/floor/plating, +/area/security/detectives_office/private_investigators_office) +"dzC" = ( +/obj/structure/table/wood, +/obj/item/crowbar/red, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/book/manual/detective, +/obj/item/device/camera/detective, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/detectives_office/private_investigators_office) +"dzD" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/solar{ + id = "aftstarboard"; + name = "Aft-Starboard Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/starboard/aft) +"dzE" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26; + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dzF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dzG" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/obj/machinery/camera{ + c_tag = "Science - Toxins Launch Site"; + dir = 2; + name = "science camera"; + network = list("SS13","RD") + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/mixing) +"dzH" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dzI" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/mixing) +"dzJ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dzK" = ( +/turf/closed/wall, +/area/science/mixing) +"dzL" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"dzM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/science/mixing) +"dzN" = ( +/obj/item/device/assembly/signaler{ + pixel_y = 8 + }, +/obj/item/device/assembly/signaler{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/device/assembly/signaler{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/device/assembly/signaler{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/structure/table/reinforced, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/science/mixing) +"dzO" = ( +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dzP" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/mixing) +"dzQ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Science - Toxins Mixing Lab Aft"; + dir = 8; + name = "science camera"; + network = list("SS13","RD") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dzR" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"dzS" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"dzT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"dzU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"dzV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"dzW" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/machinery/computer/rdservercontrol, +/obj/machinery/power/apc{ + dir = 8; + name = "Research Division Server Room APC"; + areastring = "/area/science/server"; + pixel_x = -26 + }, +/obj/machinery/light_switch{ + pixel_x = -28; + pixel_y = -26 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/science/server) +"dzX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/science/server) +"dzY" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/science/server) +"dzZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/command{ + name = "Research Division Server Room"; + req_access = null; + req_access_txt = "30" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/science/server) +"dAa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/research) +"dAb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/science/research) +"dAc" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/research) +"dAd" = ( +/obj/machinery/disposal/bin, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Robotics Lab APC"; + areastring = "/area/science/robotics/lab"; + pixel_x = -26 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dAe" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dAf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dAg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dAh" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dAi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dAj" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/obj/item/reagent_containers/glass/beaker/sulphuric, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dAk" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j1" + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/aft) +"dAl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/centcom{ + name = "Morgue"; + req_access_txt = "6" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/morgue) +"dAm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/medical/morgue) +"dAn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/medical/morgue) +"dAo" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/medical/morgue) +"dAp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/medical/morgue) +"dAq" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/morgue) +"dAr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/morgue) +"dAs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/morgue) +"dAt" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/medical/morgue) +"dAu" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = 26 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/medical/morgue) +"dAv" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/centcom{ + name = "Morgue"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/morgue) +"dAw" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/maintenance/department/medical/morgue) +"dAx" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"dAy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"dAz" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/maintenance/department/medical/morgue) +"dAA" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/item/clothing/suit/apron/surgical, +/obj/item/clothing/mask/breath/medical, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"dAB" = ( +/obj/structure/closet/secure_closet/CMO, +/obj/item/clothing/under/rank/nursesuit, +/obj/item/clothing/head/nursehat, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/cmo) +"dAC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/cmo, +/area/crew_quarters/heads/cmo) +"dAD" = ( +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/cmo, +/area/crew_quarters/heads/cmo) +"dAE" = ( +/obj/structure/dresser, +/obj/structure/mirror{ + pixel_x = 26 + }, +/turf/open/floor/plasteel/cmo, +/area/crew_quarters/heads/cmo) +"dAF" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/blue, +/area/medical/medbay/central) +"dAG" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/costume, +/obj/effect/spawner/lootdrop/costume, +/obj/item/clothing/neck/tie/black, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/starboard/aft) +"dAH" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dAI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/crew_quarters/theatre/abandoned) +"dAJ" = ( +/turf/open/floor/wood, +/area/crew_quarters/theatre/abandoned) +"dAK" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/crew_quarters/theatre/abandoned) +"dAL" = ( +/turf/open/floor/plating, +/area/crew_quarters/theatre/abandoned) +"dAM" = ( +/obj/structure/table/wood, +/obj/item/newspaper, +/obj/item/clothing/head/bowler, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/theatre/abandoned) +"dAN" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/theatre/abandoned) +"dAO" = ( +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/theatre/abandoned) +"dAP" = ( +/obj/structure/table/wood, +/obj/item/clothing/suit/justice, +/obj/item/clothing/head/helmet/justice/escape{ + name = "justice helmet" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/theatre/abandoned) +"dAQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plating, +/area/security/detectives_office/private_investigators_office) +"dAR" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/security/detectives_office/private_investigators_office) +"dAS" = ( +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"dAT" = ( +/turf/open/floor/plating, +/area/security/detectives_office/private_investigators_office) +"dAU" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/suit/jacket{ + desc = "All the class of a trenchcoat without the security fibers."; + icon_state = "greydet"; + name = "trenchcoat" + }, +/obj/item/clothing/suit/jacket{ + desc = "All the class of a trenchcoat without the security fibers."; + icon_state = "detective"; + name = "trenchcoat" + }, +/obj/item/clothing/head/fedora, +/obj/item/clothing/head/fedora{ + icon_state = "detective" + }, +/turf/open/floor/plating, +/area/security/detectives_office/private_investigators_office) +"dAV" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/detectives_office/private_investigators_office) +"dAW" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard/aft) +"dAX" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard/aft) +"dAY" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard/aft) +"dAZ" = ( +/turf/closed/wall/r_wall, +/area/science/test_area) +"dBa" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/science/test_area) +"dBb" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the testing site."; + dir = 4; + layer = 4; + name = "Testing Site Telescreen"; + network = list("Toxins") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dBc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dBd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/science/mixing) +"dBe" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/science/mixing) +"dBf" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/science/mixing) +"dBg" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/science/mixing) +"dBh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dBi" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side, +/area/science/mixing) +"dBj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dBk" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/toxin, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dBl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/mixing) +"dBm" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/mixing) +"dBn" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"dBo" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/storage) +"dBp" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/storage) +"dBq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/storage) +"dBr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/light_switch{ + pixel_x = 26 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"dBs" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/server) +"dBt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 6 + }, +/obj/machinery/door/airlock/glass_command{ + name = "Server Access"; + req_access_txt = "30" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/science/server) +"dBu" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/science/server) +"dBv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/purple, +/area/science/research) +"dBw" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/electrical, +/obj/item/screwdriver{ + pixel_y = 5 + }, +/obj/item/device/multitool, +/obj/item/clothing/head/welding, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dBx" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dBy" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/bodybags, +/obj/item/borg/upgrade/rename, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dBz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dBA" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/clothing/gloves/color/latex, +/obj/item/surgical_drapes, +/obj/item/cautery, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dBB" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/robotics/lab) +"dBC" = ( +/obj/effect/landmark/start/roboticist, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/science/robotics/lab) +"dBD" = ( +/obj/structure/table/reinforced, +/obj/item/retractor, +/obj/item/hemostat, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/ai_status_display{ + pixel_x = 32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dBE" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/medical/morgue) +"dBF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/morgue) +"dBG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/morgue) +"dBH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/medical/morgue) +"dBI" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/landmark/revenantspawn, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/medical/morgue) +"dBJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/morgue) +"dBK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/morgue) +"dBL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/morgue) +"dBM" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper_bin, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/medical/morgue) +"dBN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/morgue) +"dBO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/maintenance/department/medical/morgue) +"dBP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/maintenance/department/medical/morgue) +"dBQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"dBR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/maintenance/department/medical/morgue) +"dBS" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/crowbar, +/obj/item/storage/pill_bottle, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/maintenance/department/medical/morgue) +"dBT" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/ai_status_display{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/cmo) +"dBU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/heads/cmo) +"dBV" = ( +/obj/effect/landmark/start/chief_medical_officer, +/turf/open/floor/plasteel/blue, +/area/crew_quarters/heads/cmo) +"dBW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/heads/cmo) +"dBX" = ( +/obj/structure/bed, +/obj/item/bedsheet/cmo, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/cmo, +/area/crew_quarters/heads/cmo) +"dBY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/costume, +/obj/effect/spawner/lootdrop/costume, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/starboard/aft) +"dBZ" = ( +/obj/machinery/light_switch{ + pixel_x = -26 + }, +/turf/open/floor/wood, +/area/crew_quarters/theatre/abandoned) +"dCa" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/crew_quarters/theatre/abandoned) +"dCb" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/crew_quarters/theatre/abandoned) +"dCc" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/theatre/abandoned) +"dCd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/crew_quarters/theatre/abandoned) +"dCe" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/candle_box{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/fancy/candle_box, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/crew_quarters/theatre/abandoned) +"dCf" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Private Investigator's Office APC"; + areastring = "/area/security/detectives_office/private_investigators_office"; + pixel_x = -26; + pixel_y = 3 + }, +/turf/open/floor/plating, +/area/security/detectives_office/private_investigators_office) +"dCg" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"dCh" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken2" + }, +/area/security/detectives_office/private_investigators_office) +"dCi" = ( +/obj/structure/filingcabinet/security, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/security/detectives_office/private_investigators_office) +"dCj" = ( +/obj/structure/cable, +/obj/machinery/power/solar{ + id = "aftstarboard"; + name = "Aft-Starboard Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/starboard/aft) +"dCk" = ( +/obj/structure/window/reinforced, +/obj/item/target, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dCl" = ( +/obj/machinery/button/massdriver{ + dir = 2; + id = "toxinsdriver"; + pixel_x = -24 + }, +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dCm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dCn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dCo" = ( +/obj/effect/landmark/start/scientist, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dCp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dCq" = ( +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dCr" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Site"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dCs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/science/mixing) +"dCt" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/blobstart, +/obj/item/device/radio/beacon, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/mixing) +"dCu" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/science/mixing) +"dCv" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/research{ + name = "Toxins Mixing Lab"; + req_access_txt = "8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdtoxins"; + name = "Toxins Lab Shutters" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dCw" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_switch{ + pixel_x = -26; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/mixing) +"dCx" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/mixing) +"dCy" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/whitepurple/side, +/area/science/mixing) +"dCz" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/mixing) +"dCA" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/mixing) +"dCB" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Toxins Secure Storage"; + req_access_txt = "8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdtoxins"; + name = "Toxins Lab Shutters" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dCC" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"dCD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"dCE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"dCF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"dCG" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"dCH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 2; + external_pressure_bound = 140; + name = "server vent"; + pressure_checks = 0 + }, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/science/server) +"dCI" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 8 + }, +/area/science/server) +"dCJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 2; + external_pressure_bound = 120; + name = "server vent" + }, +/obj/machinery/camera{ + c_tag = "Science - Server Room"; + dir = 8; + name = "science camera"; + network = list("SS13","RD") + }, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/science/server) +"dCK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/machinery/camera{ + c_tag = "Science - Aft"; + dir = 4; + name = "science camera"; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/research) +"dCL" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/science/research) +"dCM" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Research Division APC"; + areastring = "/area/science/research"; + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/research) +"dCN" = ( +/obj/structure/table, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/machinery/cell_charger, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = -26 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dCO" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dCP" = ( +/obj/structure/closet/wardrobe/robotics_black, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dCQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dCR" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/device/mmi, +/obj/item/device/mmi, +/obj/item/device/mmi, +/obj/structure/sign/bluecross_2{ + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dCS" = ( +/obj/machinery/computer/operating, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/robotics/lab) +"dCT" = ( +/obj/structure/table/optable, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/robotics/lab) +"dCU" = ( +/obj/structure/table/reinforced, +/obj/item/scalpel{ + pixel_y = 16 + }, +/obj/item/circular_saw, +/obj/structure/sign/nosmoking_2{ + pixel_y = -32 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dCV" = ( +/obj/machinery/disposal/bin, +/turf/open/floor/plating, +/area/medical/morgue) +"dCW" = ( +/obj/structure/cable/white, +/obj/machinery/power/apc{ + dir = 2; + name = "Morgue APC"; + areastring = "/area/medical/morgue"; + pixel_y = -26 + }, +/turf/open/floor/plating, +/area/medical/morgue) +"dCX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/medical/morgue) +"dCZ" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/medical/morgue) +"dDa" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/revenantspawn, +/turf/open/floor/plating, +/area/medical/morgue) +"dDb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/light_construct/small, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/medical/morgue) +"dDc" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/turf/open/floor/plating, +/area/medical/morgue) +"dDd" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"dDe" = ( +/obj/structure/closet/wardrobe/white/medical, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"dDf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"dDg" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/maintenance/department/medical/morgue) +"dDh" = ( +/obj/machinery/suit_storage_unit/cmo, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/cmo) +"dDi" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/cmo, +/area/crew_quarters/heads/cmo) +"dDj" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = -26 + }, +/obj/machinery/camera{ + c_tag = "Medbay - Chief Medical Officer's Quarters"; + dir = 1; + name = "medbay camera" + }, +/turf/open/floor/plasteel/cmo, +/area/crew_quarters/heads/cmo) +"dDk" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/cmo, +/area/crew_quarters/heads/cmo) +"dDl" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/cmo, +/area/crew_quarters/heads/cmo) +"dDm" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"dDn" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/side, +/area/medical/medbay/central) +"dDo" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/whitegreen/corner, +/area/medical/medbay/central) +"dDp" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/costume, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dDq" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/starboard/aft) +"dDr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch/abandoned{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/theatre/abandoned) +"dDs" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/theatre/abandoned) +"dDt" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/mob/living/simple_animal/cockroach, +/turf/open/floor/wood, +/area/crew_quarters/theatre/abandoned) +"dDu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/theatre/abandoned) +"dDv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/theatre/abandoned) +"dDw" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/theatre/abandoned) +"dDx" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/theatre/abandoned) +"dDy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/theatre/abandoned) +"dDz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plating, +/area/crew_quarters/theatre/abandoned) +"dDA" = ( +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/crew_quarters/theatre/abandoned) +"dDB" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/security/detectives_office/private_investigators_office) +"dDC" = ( +/obj/structure/chair/office/dark, +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"dDD" = ( +/obj/structure/chair/office/dark, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"dDE" = ( +/mob/living/simple_animal/cockroach, +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"dDG" = ( +/obj/structure/chair, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dDH" = ( +/turf/open/floor/plating/airless, +/area/science/test_area) +"dDI" = ( +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dDJ" = ( +/obj/machinery/doppler_array{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26; + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dDK" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dDL" = ( +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/target, +/obj/item/target/syndicate, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/structure/closet/crate/secure{ + desc = "A secure crate containing various materials for building a customised test-site."; + name = "Test Site Materials Crate"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/mixing) +"dDM" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/mixing) +"dDN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/mixing) +"dDO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/mixing) +"dDP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/mixing) +"dDQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dDR" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/science/mixing) +"dDS" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dDT" = ( +/obj/structure/tank_dispenser, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/mixing) +"dDU" = ( +/obj/structure/rack, +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/clothing/head/hardhat/red, +/obj/item/clothing/mask/gas, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/mixing) +"dDV" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/mixing) +"dDW" = ( +/obj/machinery/disposal/bin, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/mixing) +"dDY" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/mixing) +"dDZ" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Science - Toxins Secure Storage"; + dir = 4; + name = "science camera"; + network = list("SS13","RD") + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"dEa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"dEb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"dEc" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"dEd" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc{ + dir = 4; + name = "Toxins Storage APC"; + areastring = "/area/science/storage"; + pixel_x = 26 + }, +/obj/structure/cable/white, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"dEe" = ( +/obj/machinery/r_n_d/server/core, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 5 + }, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/science/server) +"dEf" = ( +/obj/machinery/atmospherics/pipe/manifold/general/hidden, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 8 + }, +/area/science/server) +"dEg" = ( +/obj/machinery/r_n_d/server/robotics, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 9 + }, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/science/server) +"dEh" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/research) +"dEi" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/purple, +/area/science/research) +"dEj" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Robotics Lab Maintenance"; + req_access_txt = "29" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dEk" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Robotics" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dEl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/aft) +"dEm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/morgue) +"dEn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/medical/medbay/central) +"dEo" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/virology{ + name = "Virology Access"; + req_access_txt = "39" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dEp" = ( +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/crew_quarters/theatre/abandoned) +"dEq" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/theatre/abandoned) +"dEr" = ( +/obj/structure/table/wood, +/obj/item/clothing/under/geisha, +/obj/item/clothing/shoes/sandal, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/theatre/abandoned) +"dEs" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office/private_investigators_office) +"dEt" = ( +/obj/structure/table/wood, +/obj/item/folder/white{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder/red, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office/private_investigators_office) +"dEu" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office/private_investigators_office) +"dEv" = ( +/obj/structure/table/wood, +/obj/item/clothing/gloves/color/black, +/obj/item/storage/box/evidence, +/obj/item/device/taperecorder, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/detectives_office/private_investigators_office) +"dEw" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dEx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dEy" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dEz" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dEA" = ( +/obj/structure/sign/vacuum, +/turf/closed/wall, +/area/science/mixing) +"dEB" = ( +/obj/structure/sign/securearea, +/turf/closed/wall, +/area/science/mixing) +"dEC" = ( +/obj/machinery/door/window/southleft{ + name = "Mass Driver Door"; + req_access_txt = "7" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/loadingarea, +/area/science/mixing) +"dED" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dEE" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Toxins Maintenance"; + req_access_txt = "8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dEF" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"dEG" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"dEH" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"dEI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Break Room"; + req_access_txt = "47" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dEJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 9 + }, +/area/maintenance/port/aft) +"dEK" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dEL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/port/aft) +"dEM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dEN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/maintenance/port/aft) +"dEO" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/port/aft) +"dEP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 5 + }, +/area/maintenance/port/aft) +"dEQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/hallway/primary/aft) +"dER" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dES" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/aft) +"dET" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/aft) +"dEU" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dEV" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"dEW" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"dEX" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"dEY" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"dEZ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/aft) +"dFa" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/aft) +"dFb" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"dFc" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"dFd" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"dFe" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/rack, +/obj/item/crowbar/red, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/aft) +"dFf" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/aft) +"dFg" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"dFh" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"dFi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 5 + }, +/area/maintenance/aft) +"dFj" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"dFk" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 1 + }, +/area/medical/medbay/central) +"dFl" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"dFm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 9 + }, +/area/maintenance/starboard/aft) +"dFn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"dFo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"dFp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"dFq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dFr" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/crew_quarters/theatre/abandoned) +"dFs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/crew_quarters/theatre/abandoned) +"dFt" = ( +/obj/structure/table/wood, +/obj/item/clothing/head/papersack/smiley, +/obj/item/pen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/theatre/abandoned) +"dFu" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/theatre/abandoned) +"dFw" = ( +/obj/structure/table/wood, +/obj/item/clothing/suit/cardborg, +/obj/item/clothing/head/cardborg, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/crew_quarters/theatre/abandoned) +"dFx" = ( +/obj/structure/frame/computer, +/obj/item/circuitboard/computer/secure_data, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office/private_investigators_office) +"dFy" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office/private_investigators_office) +"dFz" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/cigarettes/cigpack_uplift{ + pixel_x = 6 + }, +/obj/item/storage/fancy/cigarettes/cigpack_carp{ + pixel_x = -3 + }, +/obj/item/lighter, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office/private_investigators_office) +"dFA" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/security/detectives_office/private_investigators_office) +"dFB" = ( +/obj/structure/rack, +/obj/item/storage/briefcase{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/secure/briefcase, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/security/detectives_office/private_investigators_office) +"dFC" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space, +/area/solar/starboard/aft) +"dFD" = ( +/turf/closed/indestructible/opshuttle, +/area/science/test_area) +"dFE" = ( +/obj/item/target, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + active_power_usage = 0; + c_tag = "Bomb Test Site"; + desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site."; + dir = 4; + invuln = 1; + light = null; + name = "hardened testing camera"; + network = list("Toxins"); + start_active = 1; + use_power = 0 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dFF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dFG" = ( +/obj/item/device/radio/beacon, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dFH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dFI" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dFJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/science/mixing) +"dFK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/science/mixing) +"dFL" = ( +/obj/machinery/door/poddoor{ + id = "toxinsdriver"; + name = "Toxins Launcher Bay Door" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/science/mixing) +"dFM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dFN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dFO" = ( +/obj/machinery/mass_driver{ + dir = 8; + id = "toxinsdriver" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dFP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dFQ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dFR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/port/aft) +"dFS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/port/aft) +"dFT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/item/crowbar/red, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dFU" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dFV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dFW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dFX" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 5 + }, +/area/maintenance/port/aft) +"dFY" = ( +/turf/closed/wall/r_wall, +/area/maintenance/port/aft) +"dFZ" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"dGa" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"dGb" = ( +/obj/structure/urinal{ + pixel_y = 28 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/neutral, +/area/science/research) +"dGc" = ( +/obj/structure/table/wood, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -3; + pixel_y = 5 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 9 + }, +/area/science/research) +"dGe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/science/research) +"dGf" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/science/research) +"dGg" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 5 + }, +/area/science/research) +"dGh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/side{ + dir = 10; + heat_capacity = 1e+006 + }, +/area/maintenance/port/aft) +"dGi" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dGj" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dGk" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port/aft) +"dGl" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dGm" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port/aft) +"dGn" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dGo" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dGp" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dGq" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"dGr" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/aft) +"dGs" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/aft) +"dGt" = ( +/obj/structure/closet/firecloset, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dGu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/hallway/primary/aft) +"dGv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/space_heater, +/turf/open/floor/plasteel/neutral/side{ + dir = 10 + }, +/area/maintenance/aft) +"dGw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/item/storage/box/bodybags, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"dGx" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"dGy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"dGz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/aft) +"dGA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/aft) +"dGB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white, +/obj/machinery/power/apc{ + dir = 2; + name = "Aft Maintenance APC"; + areastring = "/area/maintenance/aft"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"dGC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"dGD" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/aft) +"dGE" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"dGF" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"dGG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/aft) +"dGH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/aft) +"dGI" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"dGJ" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/aft) +"dGK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/aft) +"dGL" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"dGM" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"dGN" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"dGO" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 8 + }, +/area/medical/medbay/central) +"dGP" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/lightsout, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dGQ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/medical/medbay/central) +"dGR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"dGS" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"dGT" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dGU" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/starboard/aft) +"dGV" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dGW" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/starboard/aft) +"dGX" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 6 + }, +/area/maintenance/starboard/aft) +"dGY" = ( +/obj/structure/dresser, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/crew_quarters/theatre/abandoned) +"dGZ" = ( +/obj/structure/table/wood, +/obj/item/wrench, +/obj/item/storage/secure/briefcase{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/briefcase, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/crew_quarters/theatre/abandoned) +"dHa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/vending/kink, +/turf/open/floor/wood, +/area/crew_quarters/theatre/abandoned) +"dHb" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/crew_quarters/theatre/abandoned) +"dHc" = ( +/obj/machinery/vending/cigarette, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/crew_quarters/theatre/abandoned) +"dHd" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/piano, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/crew_quarters/theatre/abandoned) +"dHe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool/bar, +/turf/open/floor/plating, +/area/crew_quarters/theatre/abandoned) +"dHf" = ( +/obj/structure/table/wood, +/obj/item/lipstick/random{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/lipstick/random{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/lipstick/random, +/turf/open/floor/plating, +/area/crew_quarters/theatre/abandoned) +"dHg" = ( +/obj/item/device/instrument/violin, +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/crew_quarters/theatre/abandoned) +"dHh" = ( +/obj/structure/frame/computer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office/private_investigators_office) +"dHi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office/private_investigators_office) +"dHj" = ( +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office/private_investigators_office) +"dHk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"dHl" = ( +/obj/structure/dresser, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/security/detectives_office/private_investigators_office) +"dHm" = ( +/obj/structure/lattice/catwalk, +/obj/effect/landmark/xeno_spawn, +/turf/open/space, +/area/solar/starboard/aft) +"dHn" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dHo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dHp" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dHq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dHr" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dHs" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dHt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/maintenance/port/aft) +"dHu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dHv" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/maintenance/port/aft) +"dHw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/maintenance/port/aft) +"dHx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dHy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port/aft) +"dHz" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port/aft) +"dHA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"dHB" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"dHC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Bathroom" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dHD" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/science/research) +"dHE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/redyellow, +/area/science/research) +"dHF" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/redyellow, +/area/science/research) +"dHG" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/redyellow, +/area/science/research) +"dHH" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/science/research) +"dHI" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dHJ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dHK" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_command{ + cyclelinkeddir = 0; + name = "Customs Desk"; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"dHL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/security/checkpoint/customs) +"dHM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Departures Lounge" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dHN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Departures Lounge" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dHO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Departures Lounge" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dHP" = ( +/turf/closed/wall, +/area/maintenance/aft) +"dHQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/aft) +"dHR" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 8 + }, +/area/medical/medbay/central) +"dHS" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dHT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/medical/medbay/central) +"dHU" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/crew_quarters/theatre/abandoned) +"dHV" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dHW" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dHX" = ( +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 4; + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dHY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dHZ" = ( +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 8; + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dIa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dIb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/maintenance/port/aft) +"dIc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dId" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dIe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 10 + }, +/area/maintenance/port/aft) +"dIf" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port/aft) +"dIg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port/aft) +"dIh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dIi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dIj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port/aft) +"dIk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port/aft) +"dIl" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"dIm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"dIn" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/science/research) +"dIo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/science/research) +"dIp" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/science/research) +"dIq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/redyellow, +/area/science/research) +"dIr" = ( +/obj/effect/landmark/start/scientist, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/redyellow, +/area/science/research) +"dIs" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/redyellow, +/area/science/research) +"dIt" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb, +/obj/machinery/camera{ + c_tag = "Science - Break Room"; + dir = 8; + name = "science camera"; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/science/research) +"dIu" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dIv" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 5 + }, +/area/maintenance/port/aft) +"dIw" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/turf/open/floor/plasteel/blue/side{ + dir = 9 + }, +/area/security/checkpoint/customs) +"dIx" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/blue/side{ + dir = 1 + }, +/area/security/checkpoint/customs) +"dIy" = ( +/obj/machinery/photocopier, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/blue/side{ + dir = 1 + }, +/area/security/checkpoint/customs) +"dIz" = ( +/obj/structure/filingcabinet/medical, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/blue/side{ + dir = 5 + }, +/area/security/checkpoint/customs) +"dIA" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Departures Hallway - Aft"; + dir = 4; + name = "hallway camera" + }, +/obj/effect/turf_decal/bot, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dIB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/escape{ + dir = 1 + }, +/area/hallway/primary/aft) +"dIC" = ( +/turf/open/floor/plasteel/escape{ + dir = 1 + }, +/area/hallway/primary/aft) +"dID" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/escape{ + dir = 1 + }, +/area/hallway/primary/aft) +"dIE" = ( +/obj/structure/table, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dIF" = ( +/obj/machinery/light/small, +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"dIG" = ( +/obj/machinery/light/small, +/obj/machinery/iv_drip, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitegreen/corner, +/area/medical/medbay/central) +"dIH" = ( +/obj/item/stack/cable_coil, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard/aft) +"dII" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/item/target, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dIJ" = ( +/turf/closed/wall, +/area/maintenance/port/aft) +"dIK" = ( +/turf/closed/wall, +/area/library/abandoned) +"dIL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/library/abandoned) +"dIM" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/library/abandoned) +"dIN" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/library/abandoned) +"dIO" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/maintenance/port/aft) +"dIP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dIQ" = ( +/turf/closed/wall/r_wall, +/area/science/storage) +"dIR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock{ + name = "Bathroom" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dIS" = ( +/obj/machinery/vending/coffee, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/science/research) +"dIT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/redyellow, +/area/science/research) +"dIU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/redyellow, +/area/science/research) +"dIV" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/redyellow, +/area/science/research) +"dIW" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/obj/item/clipboard, +/obj/item/folder, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/science/research) +"dIX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/port/aft) +"dIY" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port/aft) +"dIZ" = ( +/obj/machinery/computer/med_data, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/blue/side{ + dir = 10 + }, +/area/security/checkpoint/customs) +"dJa" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/security/checkpoint/customs) +"dJb" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"dJc" = ( +/obj/structure/table/reinforced, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/turf/open/floor/plasteel/blue/side{ + dir = 6 + }, +/area/security/checkpoint/customs) +"dJe" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dJf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/aft) +"dJg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/aft) +"dJh" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dJi" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"dJj" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/shuttle/escape) +"dJk" = ( +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/escape) +"dJl" = ( +/turf/closed/wall/r_wall, +/area/medical/medbay/central) +"dJm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/medical/medbay/central) +"dJn" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + icon_state = "door_locked"; + id_tag = "virology_airlock_exterior"; + locked = 1; + name = "Virology Exterior Airlock"; + req_access_txt = "39" + }, +/obj/machinery/doorButtons/access_button{ + dir = 1; + idDoor = "virology_airlock_exterior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = -24; + pixel_y = -2; + req_access_txt = "39" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dJo" = ( +/obj/structure/sign/biohazard, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/medical/medbay/central) +"dJp" = ( +/turf/closed/wall/r_wall, +/area/medical/virology) +"dJq" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/virology) +"dJr" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/virology) +"dJs" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/virology) +"dJt" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plating, +/area/library/abandoned) +"dJu" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/item/folder, +/obj/item/pen, +/turf/open/floor/plating, +/area/library/abandoned) +"dJv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library/abandoned) +"dJw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/grimy, +/area/library/abandoned) +"dJx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/grimy, +/area/library/abandoned) +"dJy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/black, +/area/library/abandoned) +"dJz" = ( +/obj/structure/table/wood, +/obj/item/dice/d20, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library/abandoned) +"dJA" = ( +/turf/open/floor/plasteel/grimy, +/area/library/abandoned) +"dJB" = ( +/obj/structure/chair/office/dark, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/grimy, +/area/library/abandoned) +"dJC" = ( +/obj/structure/chair/office/dark, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/library/abandoned) +"dJD" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/grimy, +/area/library/abandoned) +"dJE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/maintenance/port/aft) +"dJF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dJG" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dJH" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dJI" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dJJ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dJK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc{ + dir = 1; + name = "Port Quarter Maintenance APC"; + areastring = "/area/maintenance/port/aft"; + pixel_y = 24 + }, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/maintenance/port/aft) +"dJL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/obj/effect/landmark/blobstart, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/maintenance/port/aft) +"dJM" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/neutral, +/area/science/research) +"dJN" = ( +/obj/machinery/disposal/bin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research) +"dJO" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral/side, +/area/science/research) +"dJP" = ( +/obj/machinery/vending/cola/random, +/obj/machinery/light, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side, +/area/science/research) +"dJQ" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/neutral/side, +/area/science/research) +"dJR" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/neutral/side{ + dir = 6 + }, +/area/science/research) +"dJS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/port/aft) +"dJT" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port/aft) +"dJU" = ( +/obj/machinery/computer/card, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Departures Customs APC"; + areastring = "/area/security/checkpoint/customs"; + pixel_x = -26; + pixel_y = 3 + }, +/obj/machinery/camera{ + c_tag = "Departures Customs"; + dir = 4; + name = "customs camera" + }, +/turf/open/floor/plasteel/blue, +/area/security/checkpoint/customs) +"dJV" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/neutral, +/area/security/checkpoint/customs) +"dJW" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/security/checkpoint/customs) +"dJX" = ( +/obj/structure/table/reinforced, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/item/folder/blue, +/obj/item/pen, +/turf/open/floor/plasteel/blue, +/area/security/checkpoint/customs) +"dJY" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/door/window/brigdoor/southright{ + dir = 8; + name = "Customs Desk"; + req_access_txt = "19" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"dJZ" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dKa" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dKb" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/aft) +"dKc" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dKd" = ( +/obj/structure/window/reinforced, +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/shuttle/escape) +"dKe" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/machinery/shower{ + dir = 8; + name = "emergency shower" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/virology) +"dKf" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dKg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Virology - Containment Lock"; + dir = 8; + name = "virology camera" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/virology) +"dKh" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/vacuum, +/turf/open/floor/plating, +/area/medical/virology) +"dKi" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 1 + }, +/area/medical/virology) +"dKj" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 1 + }, +/area/medical/virology) +"dKk" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 4 + }, +/area/medical/virology) +"dKl" = ( +/turf/closed/wall, +/area/medical/virology) +"dKm" = ( +/obj/structure/table/glass, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/item/paper_bin, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = -32; + pixel_y = 32 + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 1 + }, +/area/medical/virology) +"dKn" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 1 + }, +/area/medical/virology) +"dKo" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 4 + }, +/area/medical/virology) +"dKp" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/sign/nanotrasen{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 4 + }, +/area/medical/virology) +"dKr" = ( +/obj/structure/table_frame/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/library/abandoned) +"dKs" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library/abandoned) +"dKt" = ( +/turf/open/floor/plasteel/black, +/area/library/abandoned) +"dKu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/grimy, +/area/library/abandoned) +"dKv" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library/abandoned) +"dKw" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/grimy, +/area/library/abandoned) +"dKx" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/paicard, +/turf/open/floor/carpet, +/area/library/abandoned) +"dKy" = ( +/obj/structure/table/wood, +/obj/item/storage/pill_bottle/dice, +/turf/open/floor/carpet, +/area/library/abandoned) +"dKz" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/library/abandoned) +"dKA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dKB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/maintenance/port/aft) +"dKC" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dKD" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral, +/area/maintenance/port/aft) +"dKE" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral, +/area/maintenance/port/aft) +"dKF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dKG" = ( +/obj/machinery/droneDispenser, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dKH" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal{ + amount = 30 + }, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port/aft) +"dKI" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Science Maintenance"; + req_access_txt = "47" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dKJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dKK" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port/aft) +"dKL" = ( +/obj/machinery/computer/crew, +/obj/machinery/ai_status_display{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/blue/side{ + dir = 9 + }, +/area/security/checkpoint/customs) +"dKM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/security/checkpoint/customs) +"dKN" = ( +/obj/structure/table/reinforced, +/obj/machinery/newscaster{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/blue/side{ + dir = 5 + }, +/area/security/checkpoint/customs) +"dKO" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/customs) +"dKP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dKQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/aft) +"dKR" = ( +/obj/item/device/radio/beacon, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/aft) +"dKS" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/escape) +"dKT" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/escape) +"dKU" = ( +/obj/structure/window/shuttle, +/obj/structure/grille, +/turf/open/floor/plating, +/area/shuttle/escape) +"dKV" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/machinery/shower{ + dir = 8; + name = "emergency shower" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/virology) +"dKW" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dKX" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dKY" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + icon_state = "door_locked"; + id_tag = "virology_airlock_interior"; + locked = 1; + name = "Virology Interior Airlock"; + req_access_txt = "39" + }, +/obj/machinery/doorButtons/access_button{ + idDoor = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_y = 22; + req_access_txt = "39" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dKZ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dLa" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dLb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology{ + name = "Virology Access"; + req_access_txt = "39" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dLc" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + pixel_x = -26; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 1 + }, +/area/medical/virology) +"dLd" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/virology) +"dLe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 4 + }, +/area/medical/virology) +"dLf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/virology) +"dLg" = ( +/obj/structure/table/glass, +/obj/item/clipboard, +/obj/item/toy/figure/virologist, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 1 + }, +/area/medical/virology) +"dLh" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/virologist, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/virology) +"dLi" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/green, +/area/medical/virology) +"dLk" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/table/glass, +/obj/item/device/flashlight/lamp, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault, +/area/medical/virology) +"dLl" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/vault, +/area/medical/virology) +"dLm" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/vault, +/area/medical/virology) +"dLo" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/library/abandoned) +"dLp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/library/abandoned) +"dLq" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken2" + }, +/area/library/abandoned) +"dLr" = ( +/obj/structure/bookcase, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/wood, +/area/library/abandoned) +"dLs" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/library/abandoned) +"dLt" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/library/abandoned) +"dLu" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck/cas{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/toy/cards/deck/cas/black{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/carpet, +/area/library/abandoned) +"dLv" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/folder/red, +/turf/open/floor/carpet, +/area/library/abandoned) +"dLw" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plating, +/area/library/abandoned) +"dLx" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 10 + }, +/area/maintenance/port/aft) +"dLy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/maintenance/port/aft) +"dLz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dLA" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dLB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dLC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dLD" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dLE" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port/aft) +"dLF" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 9 + }, +/area/maintenance/port/aft) +"dLG" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/mob/living/simple_animal/cockroach, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dLH" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dLI" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/port/aft) +"dLJ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/port/aft) +"dLK" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dLL" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 5 + }, +/area/maintenance/port/aft) +"dLM" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dLN" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 10 + }, +/area/maintenance/port/aft) +"dLO" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dLQ" = ( +/obj/structure/table/reinforced, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/item/storage/box/ids, +/turf/open/floor/plasteel/blue/side, +/area/security/checkpoint/customs) +"dLR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/blue/side, +/area/security/checkpoint/customs) +"dLS" = ( +/obj/structure/closet/secure_closet/contraband/heads, +/obj/item/storage/secure/briefcase, +/turf/open/floor/plasteel/blue/side{ + dir = 6 + }, +/area/security/checkpoint/customs) +"dLT" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dLU" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 2 + }, +/turf/open/floor/plasteel/escape, +/area/hallway/primary/aft) +"dLV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/escape, +/area/hallway/primary/aft) +"dLW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/escape, +/area/hallway/primary/aft) +"dLY" = ( +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/structure/closet/crate/internals, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"dLZ" = ( +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/shuttle/escape) +"dMa" = ( +/obj/item/defibrillator/loaded, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/cmo, +/area/shuttle/escape) +"dMb" = ( +/obj/machinery/computer/operating, +/turf/open/floor/plasteel/cmo, +/area/shuttle/escape) +"dMc" = ( +/obj/structure/table/optable, +/obj/item/surgical_drapes, +/turf/open/floor/plasteel/cmo, +/area/shuttle/escape) +"dMd" = ( +/obj/item/scalpel{ + pixel_y = 12 + }, +/obj/item/circular_saw, +/obj/item/retractor{ + pixel_x = 4 + }, +/obj/item/hemostat{ + pixel_x = -4 + }, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/cmo, +/area/shuttle/escape) +"dMe" = ( +/obj/structure/closet/l3closet/virology, +/obj/structure/sign/biohazard{ + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/virology) +"dMf" = ( +/obj/structure/closet/l3closet/virology, +/obj/machinery/light/small, +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/virology) +"dMg" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/securearea{ + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/virology) +"dMh" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/virology) +"dMi" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 1 + }, +/area/medical/virology) +"dMj" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/green, +/area/medical/virology) +"dMk" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 4 + }, +/area/medical/virology) +"dMl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology{ + name = "Virology Break Room"; + req_access_txt = "39" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dMm" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 8 + }, +/area/medical/virology) +"dMn" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/green, +/area/medical/virology) +"dMo" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/virology) +"dMp" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitegreen/corner, +/area/medical/virology) +"dMq" = ( +/obj/machinery/door/airlock/virology{ + name = "Virology Cabin"; + req_access_txt = "39" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dMr" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + pixel_x = -26; + pixel_y = -26 + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 1 + }, +/area/medical/virology) +"dMs" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/landmark/start/virologist, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/green, +/area/medical/virology) +"dMt" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 4 + }, +/area/medical/virology) +"dMu" = ( +/obj/structure/bookcase, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/wood, +/area/library/abandoned) +"dMv" = ( +/obj/structure/bookcase, +/turf/open/floor/wood, +/area/library/abandoned) +"dMw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/library/abandoned) +"dMx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/library/abandoned) +"dMy" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plasteel/grimy, +/area/library/abandoned) +"dMz" = ( +/turf/open/floor/wood, +/area/library/abandoned) +"dMA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/library/abandoned) +"dMB" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/library/abandoned) +"dMC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/maintenance/port/aft) +"dMD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dME" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/chapel/office) +"dMF" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Chapel Maintenance"; + req_access_txt = "27" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dMG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/chapel/office) +"dMH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/port/aft) +"dMI" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dMJ" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/costume, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dMK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port/aft) +"dML" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dMM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port/aft) +"dMN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dMO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"dMP" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dMQ" = ( +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"dMR" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"dMS" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"dMT" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"dMU" = ( +/obj/structure/sign/directions/evac{ + pixel_y = -8 + }, +/obj/structure/sign/directions/science{ + dir = 1 + }, +/obj/structure/sign/directions/engineering{ + dir = 1; + pixel_y = 8 + }, +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"dMV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Departures Lounge" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dMW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Departures Lounge" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dMX" = ( +/obj/structure/sign/directions/evac{ + pixel_y = -8 + }, +/obj/structure/sign/directions/medical{ + dir = 1 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 8 + }, +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"dMY" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"dMZ" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/shuttle/escape) +"dNa" = ( +/turf/open/floor/plasteel/neutral, +/area/shuttle/escape) +"dNb" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/shuttle/escape) +"dNc" = ( +/obj/machinery/status_display, +/turf/closed/wall/mineral/titanium, +/area/shuttle/escape) +"dNd" = ( +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = 6 + }, +/obj/item/reagent_containers/glass/bottle/charcoal{ + pixel_x = -3 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/reagent_containers/glass/bottle/charcoal{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = 4; + pixel_y = 1 + }, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = 2; + pixel_y = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/cmo, +/area/shuttle/escape) +"dNe" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/plasteel/cmo, +/area/shuttle/escape) +"dNf" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26; + pixel_y = 58 + }, +/turf/open/floor/plasteel/cmo, +/area/shuttle/escape) +"dNg" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/plasteel/cmo, +/area/shuttle/escape) +"dNh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 1 + }, +/area/medical/virology) +"dNi" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/virology) +"dNj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 4 + }, +/area/medical/virology) +"dNk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/virology) +"dNl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 8 + }, +/area/medical/virology) +"dNm" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 8 + }, +/area/medical/virology) +"dNn" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitegreen/corner, +/area/medical/virology) +"dNo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitegreen/corner, +/area/medical/virology) +"dNp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/virology) +"dNq" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/virology) +"dNr" = ( +/obj/machinery/ai_status_display{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/whitegreen/corner, +/area/medical/virology) +"dNs" = ( +/obj/structure/cable, +/obj/machinery/power/tracker, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/starboard/aft) +"dNt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Abandoned Library APC"; + areastring = "/area/library/abandoned"; + pixel_x = -26; + pixel_y = 3 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/library/abandoned) +"dNu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/library/abandoned) +"dNv" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/wood, +/area/library/abandoned) +"dNw" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/grimy, +/area/library/abandoned) +"dNx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/grimy, +/area/library/abandoned) +"dNy" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/library/abandoned) +"dNz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/library/abandoned) +"dNA" = ( +/obj/machinery/photocopier, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/library/abandoned) +"dNB" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/wood{ + icon_state = "wood-broken2" + }, +/area/library/abandoned) +"dNC" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plating, +/area/library/abandoned) +"dND" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dNE" = ( +/turf/closed/wall, +/area/chapel/office) +"dNF" = ( +/obj/structure/bodycontainer/morgue, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/chapel/office) +"dNG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/chapel/office) +"dNH" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/chapel/office) +"dNI" = ( +/turf/closed/wall, +/area/chapel/main) +"dNK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/chapel/main) +"dNN" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dNO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dNR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dNT" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"dNU" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"dNV" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/window/shuttle, +/turf/open/floor/grass, +/area/shuttle/escape) +"dNW" = ( +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/shuttle/escape) +"dNX" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/shuttle/escape) +"dNY" = ( +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/shuttle/escape) +"dNZ" = ( +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 5 + }, +/area/shuttle/escape) +"dOa" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 1 + }, +/area/medical/virology) +"dOb" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/green, +/area/medical/virology) +"dOc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 4 + }, +/area/medical/virology) +"dOe" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plasteel/vault, +/area/medical/virology) +"dOf" = ( +/obj/item/clothing/neck/stethoscope, +/obj/structure/table, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/turf/open/floor/plasteel/vault, +/area/medical/virology) +"dOg" = ( +/obj/structure/table, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/plasteel/vault, +/area/medical/virology) +"dOh" = ( +/obj/structure/sign/nosmoking_2, +/turf/closed/wall, +/area/medical/virology) +"dOi" = ( +/obj/structure/dresser, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/medical/virology) +"dOj" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/medical/virology) +"dOk" = ( +/obj/structure/closet/wardrobe/virology_white, +/obj/item/storage/backpack/satchel/vir, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/medical/virology) +"dOl" = ( +/mob/living/simple_animal/cockroach, +/turf/open/floor/wood, +/area/library/abandoned) +"dOm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/grimy, +/area/library/abandoned) +"dOn" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/library/abandoned) +"dOo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/library/abandoned) +"dOp" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dOq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port/aft) +"dOr" = ( +/obj/structure/table, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/bodybags, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/chapel/office) +"dOs" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/chapel/office) +"dOt" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/chapel/office) +"dOu" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/candle_box{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/fancy/candle_box, +/turf/open/floor/plasteel/black, +/area/chapel/main) +"dOv" = ( +/obj/structure/bookcase, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque/badger{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/chapel/main) +"dOw" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/grown/poppy{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/snacks/grown/poppy{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/snacks/grown/poppy, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/black, +/area/chapel/main) +"dOx" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/chapel/main) +"dOy" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/black, +/area/chapel/main) +"dOz" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/chapel/main) +"dOA" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/grown/harebell{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/snacks/grown/harebell{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/snacks/grown/harebell, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/black, +/area/chapel/main) +"dOB" = ( +/obj/structure/bookcase, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/chapel/main) +"dOC" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/black, +/area/chapel/main) +"dOD" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/chapel/main) +"dOF" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dOG" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/exit/departure_lounge) +"dOH" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/exit/departure_lounge) +"dOI" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/exit/departure_lounge) +"dOJ" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/exit/departure_lounge) +"dOK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/exit/departure_lounge) +"dOL" = ( +/obj/structure/disposalpipe/sortjunction{ + name = "Chapel Junction"; + sortType = 17 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/exit/departure_lounge) +"dOM" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall8"; + location = "hall7" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/exit/departure_lounge) +"dON" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/exit/departure_lounge) +"dOO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dOQ" = ( +/obj/machinery/ai_status_display, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/escape) +"dOR" = ( +/obj/machinery/status_display, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/escape) +"dOS" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"dOT" = ( +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Escape Shuttle Infirmary"; + req_access_txt = "0" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"dOU" = ( +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/shuttle/escape) +"dOV" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/virology) +"dOW" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/virology) +"dOX" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/virology) +"dOY" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/virology) +"dOZ" = ( +/obj/machinery/vending/wallmed{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 1 + }, +/area/medical/virology) +"dPa" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/neutral, +/area/medical/virology) +"dPb" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Virology Satellite APC"; + areastring = "/area/medical/virology"; + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 4 + }, +/area/medical/virology) +"dPc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/library/abandoned) +"dPd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/library/abandoned) +"dPe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/library/abandoned) +"dPf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/library/abandoned) +"dPg" = ( +/obj/structure/destructible/cult/tome, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/library/abandoned) +"dPh" = ( +/obj/structure/bookcase{ + name = "Forbidden Knowledge" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/black, +/area/library/abandoned) +"dPi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/item/device/flashlight, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dPj" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port/aft) +"dPk" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/chapel/office) +"dPl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/chapel/office) +"dPm" = ( +/obj/machinery/door/airlock/centcom{ + name = "Chapel Morgue"; + req_access_txt = "27" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/chapel/main) +"dPn" = ( +/turf/open/floor/plasteel/grimy, +/area/chapel/main) +"dPo" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/grimy, +/area/chapel/main) +"dPp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/grimy, +/area/chapel/main) +"dPq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/main) +"dPr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/main) +"dPs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/centcom{ + name = "Chapel Hall" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/chapel/main) +"dPt" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dPu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dPv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/exit/departure_lounge) +"dPw" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/exit/departure_lounge) +"dPx" = ( +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/exit/departure_lounge) +"dPy" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/exit/departure_lounge) +"dPz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/exit/departure_lounge) +"dPA" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dPB" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"dPC" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/window/shuttle, +/turf/open/floor/grass, +/area/shuttle/escape) +"dPD" = ( +/obj/machinery/shower{ + dir = 8; + name = "emergency shower" + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/shuttle/escape) +"dPE" = ( +/obj/structure/table/glass, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/item/clothing/gloves/color/latex, +/obj/item/device/healthanalyzer, +/obj/item/clothing/glasses/hud/health, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/medical/virology) +"dPF" = ( +/obj/structure/table/glass, +/obj/machinery/requests_console{ + department = "Virology Lab"; + departmentType = 0; + name = "Virology RC"; + pixel_y = 32; + receive_ore_updates = 1 + }, +/obj/item/folder/white, +/obj/item/pen/red, +/obj/item/stack/sheet/mineral/plasma{ + amount = 5 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/medical/virology) +"dPG" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/computer/pandemic, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dPH" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/virology) +"dPI" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/virology) +"dPJ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/virology) +"dPK" = ( +/obj/structure/closet/crate/freezer/blood, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/obj/machinery/camera{ + c_tag = "Virology - Lab"; + name = "virology camera" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/virology) +"dPL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 8 + }, +/area/medical/virology) +"dPM" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/lightsout, +/turf/open/floor/plasteel/green, +/area/medical/virology) +"dPN" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Virology - Hallway"; + dir = 8; + name = "virology camera" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/medical/virology) +"dPO" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 9 + }, +/area/medical/virology) +"dPP" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 1 + }, +/area/medical/virology) +"dPQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 1 + }, +/area/medical/virology) +"dPR" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 1 + }, +/area/medical/virology) +"dPS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 5 + }, +/area/medical/virology) +"dPT" = ( +/obj/structure/bookcase, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/library/abandoned) +"dPU" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/library/abandoned) +"dPV" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/landmark/revenantspawn, +/turf/open/floor/plasteel/black, +/area/library/abandoned) +"dPW" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/maintenance/port/aft) +"dPX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dPY" = ( +/obj/structure/table, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26 + }, +/obj/item/clothing/under/burial, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/chapel/office) +"dPZ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/chaplain, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/chapel/office) +"dQa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/chapel/office) +"dQb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/main) +"dQc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/main) +"dQd" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/lightsout, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/main) +"dQe" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/main) +"dQf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/main) +"dQg" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/grimy, +/area/chapel/main) +"dQh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/centcom{ + name = "Chapel Hall" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/chapel/main) +"dQi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dQj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dQk" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dQl" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dQm" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dQn" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dQo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/exit/departure_lounge) +"dQp" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/escape) +"dQq" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/whiteblue/side, +/area/shuttle/escape) +"dQr" = ( +/turf/open/floor/plasteel/whiteblue/side, +/area/shuttle/escape) +"dQs" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 6 + }, +/area/shuttle/escape) +"dQt" = ( +/obj/structure/reagent_dispensers/virusfood{ + pixel_x = -32 + }, +/obj/structure/table/glass, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/reagentgrinder{ + desc = "Used to grind things up into raw materials and liquids."; + pixel_y = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dQu" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 1 + }, +/area/medical/virology) +"dQv" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 1 + }, +/area/medical/virology) +"dQw" = ( +/turf/open/floor/plasteel/whitegreen/side{ + dir = 1 + }, +/area/medical/virology) +"dQx" = ( +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 4 + }, +/area/medical/virology) +"dQy" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 4 + }, +/area/medical/virology) +"dQz" = ( +/obj/machinery/iv_drip, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/virology) +"dQA" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/virology) +"dQB" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 8 + }, +/area/medical/virology) +"dQC" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/neutral, +/area/medical/virology) +"dQD" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitegreen/corner, +/area/medical/virology) +"dQE" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel, +/area/medical/virology) +"dQF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 8 + }, +/area/medical/virology) +"dQG" = ( +/obj/effect/landmark/revenantspawn, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/virology) +"dQH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitegreen/corner, +/area/medical/virology) +"dQI" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/virology) +"dQJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/wood, +/area/library/abandoned) +"dQK" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/library/abandoned) +"dQL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plating, +/area/library/abandoned) +"dQM" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plating, +/area/library/abandoned) +"dQN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library/abandoned) +"dQO" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/item/organ/tongue/bone{ + origin_tech = "biotech=0" + }, +/turf/open/floor/plating, +/area/library/abandoned) +"dQP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/maintenance/port/aft) +"dQQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port/aft) +"dQR" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/chapel/office) +"dQS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Chapel Morgue"; + dir = 8; + name = "chapel camera" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/chapel/office) +"dQT" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/camera{ + c_tag = "Chapel - Port"; + dir = 4; + name = "chapel camera" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"dQU" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"dQV" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"dQW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"dQX" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"dQY" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"dQZ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dRa" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"dRb" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"dRc" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/fernybush, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"dRd" = ( +/obj/machinery/ai_status_display, +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"dRe" = ( +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 4; + name = "External Docking Port" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dRg" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Emergency Shuttle Airlock"; + req_access_txt = "0" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/shuttle/escape) +"dRh" = ( +/obj/structure/sign/bluecross_2, +/turf/closed/wall/mineral/titanium, +/area/shuttle/escape) +"dRi" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/open/floor/plasteel/cmo, +/area/shuttle/escape) +"dRj" = ( +/turf/open/floor/plasteel/cmo, +/area/shuttle/escape) +"dRk" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/open/floor/plasteel/cmo, +/area/shuttle/escape) +"dRl" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/smartfridge/chemistry/virology/preloaded, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dRm" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 8 + }, +/area/medical/virology) +"dRn" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/green, +/area/medical/virology) +"dRo" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/virology) +"dRp" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/green, +/area/medical/virology) +"dRq" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/medical/virology) +"dRr" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/virology) +"dRs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_virology{ + name = "Virology Lab"; + req_access_txt = "39" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dRt" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 8 + }, +/area/medical/virology) +"dRu" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel/green, +/area/medical/virology) +"dRv" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitegreen/corner, +/area/medical/virology) +"dRw" = ( +/obj/structure/sign/biohazard, +/turf/closed/wall, +/area/medical/virology) +"dRx" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/medical/virology) +"dRy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_virology{ + name = "Virology Containment Cell"; + req_access_txt = "39" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dRz" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/medical/virology) +"dRA" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/wood, +/area/library/abandoned) +"dRB" = ( +/obj/structure/chair/office/dark, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/library/abandoned) +"dRC" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/library/abandoned) +"dRD" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/wood, +/area/library/abandoned) +"dRE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library/abandoned) +"dRF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/library/abandoned) +"dRG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library/abandoned) +"dRH" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/library/abandoned) +"dRI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/morgue{ + name = "Occult Study" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/library/abandoned) +"dRJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/black, +/area/library/abandoned) +"dRK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/library/abandoned) +"dRL" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dRM" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/structure/sign/nosmoking_2{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/chapel/office) +"dRN" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/chapel/office) +"dRO" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/chapel/office) +"dRP" = ( +/obj/structure/chair/wood, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"dRQ" = ( +/obj/structure/chair/wood, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"dRR" = ( +/obj/structure/chair/wood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"dRS" = ( +/obj/structure/chair/wood, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"dRT" = ( +/obj/structure/chair/wood, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/camera{ + c_tag = "Chapel - Starboard"; + dir = 8; + name = "chapel camera" + }, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"dRU" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dRV" = ( +/obj/structure/chair, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dRW" = ( +/obj/structure/table, +/obj/item/folder, +/obj/item/pen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dRX" = ( +/obj/structure/chair, +/obj/effect/landmark/start/assistant, +/obj/machinery/camera{ + c_tag = "Departures - Center"; + dir = 2; + name = "departures camera" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dRY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/vacuum, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"dRZ" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/mineral/titanium, +/area/shuttle/escape) +"dSa" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"dSb" = ( +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Escape Shuttle Infirmary"; + req_access_txt = "0" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"dSc" = ( +/obj/structure/table/glass, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/item/book/manual/wiki/infections, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dSd" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/virologist, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 8 + }, +/area/medical/virology) +"dSe" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 8 + }, +/area/medical/virology) +"dSf" = ( +/turf/open/floor/plasteel/whitegreen/side, +/area/medical/virology) +"dSg" = ( +/turf/open/floor/plasteel/whitegreen/corner, +/area/medical/virology) +"dSh" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitegreen/corner, +/area/medical/virology) +"dSi" = ( +/obj/structure/closet/l3closet/virology, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/virology) +"dSj" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 8 + }, +/area/medical/virology) +"dSk" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/medical/virology) +"dSl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitegreen/corner, +/area/medical/virology) +"dSm" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 1 + }, +/area/medical/virology) +"dSn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 1 + }, +/area/medical/virology) +"dSo" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 1 + }, +/area/medical/virology) +"dSp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 4 + }, +/area/medical/virology) +"dSq" = ( +/obj/structure/table/glass, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 4 + }, +/area/medical/virology) +"dSr" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plating, +/area/library/abandoned) +"dSs" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/item/folder, +/obj/item/pen, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/library/abandoned) +"dSt" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/light/small, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/library/abandoned) +"dSu" = ( +/obj/structure/table/wood, +/obj/item/clothing/under/rank/curator, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/wood, +/area/library/abandoned) +"dSv" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/wood, +/area/library/abandoned) +"dSw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/wood, +/area/library/abandoned) +"dSx" = ( +/obj/structure/easel, +/obj/effect/decal/cleanable/dirt, +/obj/item/canvas/twentythreeXtwentythree, +/obj/item/canvas/twentythreeXtwentythree, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/library/abandoned) +"dSy" = ( +/obj/structure/table/wood, +/obj/item/storage/crayons, +/obj/item/storage/crayons, +/turf/open/floor/wood, +/area/library/abandoned) +"dSz" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper_bin, +/turf/open/floor/plating, +/area/library/abandoned) +"dSA" = ( +/obj/structure/dresser, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/library/abandoned) +"dSB" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/taperecorder, +/turf/open/floor/plasteel/black, +/area/library/abandoned) +"dSC" = ( +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dSE" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/chapel/office) +"dSF" = ( +/obj/machinery/light_switch{ + pixel_x = -26; + pixel_y = -26 + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/chapel/office) +"dSG" = ( +/obj/structure/chair/wood/normal, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"dSH" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"dSI" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"dSJ" = ( +/obj/structure/chair/wood/normal, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"dSK" = ( +/obj/structure/chair/wood/normal, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"dSL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dSM" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dSN" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/exit/departure_lounge) +"dSO" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/exit/departure_lounge) +"dSP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/exit/departure_lounge) +"dSQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/exit/departure_lounge) +"dSR" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Emergency Shuttle Airlock" + }, +/obj/docking_port/mobile/emergency{ + dheight = 0; + dwidth = 11; + height = 18; + name = "Delta emergency shuttle"; + width = 30; + preferred_direction = 2; + port_direction = 4 + }, +/obj/docking_port/stationary{ + dheight = 0; + dir = 4; + dwidth = 11; + height = 18; + id = "emergency_home"; + name = "DeltaStation emergency evac bay"; + turf_type = /turf/open/space; + width = 30 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/shuttle/escape) +"dSS" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window/shuttle, +/turf/open/floor/grass, +/area/shuttle/escape) +"dST" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/machinery/shieldgen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"dSU" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = -1 + }, +/obj/item/storage/toolbox/emergency{ + pixel_x = 3; + pixel_y = -5 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"dSV" = ( +/obj/structure/table/glass, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/item/storage/box/beakers{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/syringes, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dSW" = ( +/obj/structure/table/glass, +/obj/structure/sign/deathsposal{ + pixel_y = -32 + }, +/obj/item/paper_bin, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dSX" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dSY" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/virology) +"dSZ" = ( +/obj/machinery/light, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/virology) +"dTa" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/virology) +"dTb" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/closet/secure_closet/medical1, +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = -26 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/virology) +"dTc" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 8 + }, +/area/medical/virology) +"dTd" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/green, +/area/medical/virology) +"dTe" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/whitegreen/corner, +/area/medical/virology) +"dTf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_virology{ + name = "Virology Access"; + req_access_txt = "39" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dTg" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 8 + }, +/area/medical/virology) +"dTh" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/green, +/area/medical/virology) +"dTi" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/holopad, +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/virology) +"dTj" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/green, +/area/medical/virology) +"dTk" = ( +/obj/structure/table/glass, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/item/folder/white, +/obj/item/pen/red, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/medical/virology) +"dTl" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/maintenance/port/aft) +"dTm" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dTn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/chapel/office) +"dTo" = ( +/obj/machinery/door/airlock/centcom{ + name = "Crematorium"; + req_access_txt = "27" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/chapel/office) +"dTp" = ( +/obj/structure/chair/wood, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"dTq" = ( +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"dTr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"dTs" = ( +/obj/structure/chair/wood, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"dTt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/vending/cola/random, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dTu" = ( +/obj/effect/landmark/lightsout, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/exit/departure_lounge) +"dTv" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"dTw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"dTx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"dTy" = ( +/obj/structure/closet/crate/medical{ + name = "medical crate" + }, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/device/healthanalyzer{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/lazarus_injector, +/obj/effect/turf_decal/bot, +/mob/living/simple_animal/bot/medbot{ + name = "\improper emergency medibot"; + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"dTz" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/virology) +"dTA" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/virology) +"dTB" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/virology) +"dTC" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/medical/virology) +"dTD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitegreen/corner, +/area/medical/virology) +"dTE" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/virology) +"dTF" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 8 + }, +/area/medical/virology) +"dTG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 8 + }, +/area/medical/virology) +"dTH" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/iv_drip, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitegreen/side, +/area/medical/virology) +"dTI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/corner, +/area/medical/virology) +"dTJ" = ( +/obj/structure/table/glass, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/obj/item/paper_bin, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Virology - Cells"; + dir = 8; + name = "virology camera" + }, +/turf/open/floor/plasteel/whitegreen/corner, +/area/medical/virology) +"dTK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dTL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/port/aft) +"dTM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/port/aft) +"dTN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/port/aft) +"dTO" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dTP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dTQ" = ( +/turf/closed/wall/r_wall, +/area/chapel/office) +"dTR" = ( +/obj/structure/bodycontainer/crematorium{ + id = "cremawheat" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/chapel/office) +"dTS" = ( +/obj/machinery/light_switch{ + pixel_x = -26; + pixel_y = 26 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/chapel/office) +"dTT" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Chapel APC"; + areastring = "/area/chapel/main"; + pixel_x = -26; + pixel_y = 3 + }, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"dTU" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"dTV" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"dTW" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/grimy, +/area/chapel/main) +"dTX" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"dTY" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/vending/snack/random, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dTZ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dUa" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dUb" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/fernybush, +/obj/structure/window/shuttle, +/turf/open/floor/grass, +/area/shuttle/escape) +"dUc" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"dUd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"dUe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"dUf" = ( +/obj/structure/closet/crate{ + name = "emergency supplies crate" + }, +/obj/item/storage/toolbox/emergency, +/obj/item/storage/toolbox/emergency, +/obj/item/device/flashlight/flare{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/device/flashlight/flare{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/device/radio, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"dUg" = ( +/obj/structure/sign/nanotrasen{ + pixel_y = -32 + }, +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 8 + }, +/area/medical/virology) +"dUh" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/table, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/restraints/handcuffs, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whitegreen/side, +/area/medical/virology) +"dUi" = ( +/obj/structure/table, +/obj/item/storage/box/masks{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/gloves, +/turf/open/floor/plasteel/whitegreen/corner, +/area/medical/virology) +"dUj" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/medical/virology) +"dUk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_virology{ + name = "Virology Containment Cell"; + req_access_txt = "39" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dUl" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"dUm" = ( +/turf/closed/wall/r_wall, +/area/maintenance/solars/port/aft) +"dUn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/port/aft) +"dUo" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dUp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port/aft) +"dUq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/blue/side, +/area/maintenance/port/aft) +"dUr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/blue/side, +/area/maintenance/port/aft) +"dUs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dUt" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/blue/side, +/area/maintenance/port/aft) +"dUu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port/aft) +"dUv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/button/crematorium{ + id = "cremawheat"; + pixel_x = -26; + req_access_txt = "27" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/chapel/office) +"dUw" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/chapel/office) +"dUx" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"dUy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"dUz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"dUA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"dUB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/main) +"dUC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"dUD" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"dUE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dUF" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dUG" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dUH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: EXTERNAL AIRLOCK" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"dUI" = ( +/obj/machinery/vending/wallmed{ + name = "Emergency NanoMed"; + req_access_txt = "0"; + use_power = 0 + }, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/escape) +"dUJ" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Emergency Shuttle Cargo" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"dUK" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/medical/virology) +"dUL" = ( +/obj/structure/sign/vacuum, +/turf/closed/wall/r_wall, +/area/medical/virology) +"dUM" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 9 + }, +/area/medical/virology) +"dUN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 5 + }, +/area/medical/virology) +"dUO" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/medical/virology) +"dUP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 9 + }, +/area/medical/virology) +"dUQ" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 5 + }, +/area/medical/virology) +"dUR" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 26 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"dUS" = ( +/obj/machinery/power/smes, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"dUT" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/camera{ + c_tag = "Solar - Aft Port"; + name = "solar camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"dUU" = ( +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: EXTERNAL AIRLOCK" + }, +/turf/closed/wall/r_wall, +/area/maintenance/solars/port/aft) +"dUV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/port/aft) +"dUW" = ( +/obj/structure/sign/electricshock, +/turf/closed/wall/r_wall, +/area/maintenance/port/aft) +"dUX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/white, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dUY" = ( +/obj/machinery/door/poddoor/shutters{ + id = "evashutters2"; + name = "E.V.A. Storage Shutters" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dUZ" = ( +/obj/machinery/button/door{ + id = "evashutters2"; + name = "E.V.A. Shutters"; + pixel_x = 26; + req_access_txt = "19" + }, +/obj/machinery/door/poddoor/shutters{ + id = "evashutters2"; + name = "E.V.A. Storage Shutters" + }, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dVa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/command{ + name = "Auxiliary E.V.A. Storage"; + req_access = null; + req_access_txt = "18" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dVb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/command{ + name = "Auxiliary E.V.A. Storage"; + req_access = null; + req_access_txt = "18" + }, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dVc" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall, +/area/maintenance/port/aft) +"dVd" = ( +/obj/structure/bodycontainer/morgue, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/chapel/office) +"dVe" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Chapel Crematorium"; + dir = 8; + name = "chapel camera" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/chapel/office) +"dVf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"dVg" = ( +/obj/structure/table/wood/fancy, +/turf/open/floor/plasteel/grimy, +/area/chapel/main) +"dVh" = ( +/obj/structure/table/wood/fancy, +/obj/item/storage/book/bible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/grimy, +/area/chapel/main) +"dVi" = ( +/obj/structure/table/wood/fancy, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/grimy, +/area/chapel/main) +"dVj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Departures - Port"; + dir = 4; + name = "departures camera" + }, +/obj/effect/turf_decal/delivery, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dVk" = ( +/obj/structure/chair, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dVl" = ( +/obj/structure/table, +/obj/item/storage/pill_bottle/dice, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dVm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/medical/virology) +"dVn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/airless, +/area/medical/virology) +"dVo" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/medical/virology) +"dVp" = ( +/obj/machinery/iv_drip, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 10 + }, +/area/medical/virology) +"dVq" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/chair/office/light, +/obj/effect/decal/cleanable/greenglow, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 6 + }, +/area/medical/virology) +"dVr" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/medical/virology) +"dVs" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/chair/office/light, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 10 + }, +/area/medical/virology) +"dVt" = ( +/obj/machinery/iv_drip, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 6 + }, +/area/medical/virology) +"dVu" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"dVv" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/space, +/area/solar/port/aft) +"dVw" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/space, +/area/solar/port/aft) +"dVx" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 4; + name = "External Solar Access"; + req_access_txt = "10; 13" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/solars/port/aft) +"dVy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/solars/port/aft) +"dVz" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"dVA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"dVB" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"dVC" = ( +/obj/machinery/door/airlock/engineering{ + name = "Port Quarter Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/solars/port/aft) +"dVD" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dVE" = ( +/obj/structure/table/reinforced, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dVF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dVG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dVH" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dVI" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dVJ" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/machinery/light_switch{ + pixel_x = 26 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dVK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/port/aft) +"dVL" = ( +/obj/structure/table, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/bodybags, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/chapel/office) +"dVM" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/chapel/office) +"dVN" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"dVO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"dVP" = ( +/obj/structure/table/wood/fancy, +/obj/item/device/flashlight/lantern, +/turf/open/floor/plasteel/grimy, +/area/chapel/main) +"dVQ" = ( +/obj/effect/landmark/start/chaplain, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/grimy, +/area/chapel/main) +"dVR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"dVS" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"dVT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dVU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dVV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/exit/departure_lounge) +"dVW" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/exit/departure_lounge) +"dVX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/exit/departure_lounge) +"dVY" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/exit/departure_lounge) +"dVZ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/exit/departure_lounge) +"dWa" = ( +/obj/structure/rack, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/tank/internals/oxygen/red, +/obj/item/clothing/mask/gas, +/obj/item/clothing/head/hardhat/red, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"dWb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"dWc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"dWd" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + icon_state = "inje_map"; + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/medical/virology) +"dWe" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/disposaloutlet, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/medical/virology) +"dWf" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/reagent_containers/dropper, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/virology) +"dWg" = ( +/obj/structure/table/glass, +/obj/item/folder/white, +/obj/item/pen/red, +/obj/effect/turf_decal/delivery, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dWh" = ( +/obj/machinery/power/solar_control{ + id = "aftport"; + name = "Port Quarter Solar Control"; + track = 0 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"dWi" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"dWj" = ( +/obj/structure/cable/white, +/obj/machinery/power/apc/highcap/ten_k{ + dir = 2; + name = "Port Quarter Solar APC"; + areastring = "/area/maintenance/solars/port/aft"; + pixel_y = -26 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"dWk" = ( +/obj/structure/sign/electricshock, +/turf/closed/wall/r_wall, +/area/maintenance/solars/port/aft) +"dWl" = ( +/obj/structure/table/reinforced, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/item/stack/cable_coil/white, +/obj/item/stack/cable_coil/white, +/obj/item/device/multitool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/maintenance/port/aft) +"dWm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dWn" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dWo" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dWp" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dWq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dWr" = ( +/obj/structure/table/reinforced, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/maintenance/port/aft) +"dWs" = ( +/obj/structure/bodycontainer/morgue, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/chapel/office) +"dWt" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/chapel/office) +"dWu" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/chapel/main) +"dWv" = ( +/turf/open/floor/plasteel/black, +/area/chapel/main) +"dWw" = ( +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/main) +"dWx" = ( +/obj/structure/noticeboard{ + desc = "A board for remembering the fallen of the station."; + dir = 1; + name = "memorial board"; + pixel_y = -32 + }, +/obj/machinery/holopad, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/camera{ + c_tag = "Chapel - Aft"; + dir = 1; + name = "chapel camera" + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/main) +"dWy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/grimy, +/area/chapel/main) +"dWz" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/black, +/area/chapel/main) +"dWA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dWB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dWC" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dWD" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dWE" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Departures - Aft"; + dir = 1; + name = "departures camera" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dWF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dWG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dWH" = ( +/turf/open/floor/plasteel/neutral/side, +/area/shuttle/escape) +"dWI" = ( +/obj/machinery/flasher{ + id = "shuttleflash"; + pixel_y = -26 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/neutral/side, +/area/shuttle/escape) +"dWJ" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/item/hand_labeler_refill, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"dWK" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"dWL" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"dWM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/white, +/turf/open/floor/plating, +/area/medical/virology) +"dWN" = ( +/obj/machinery/shieldwallgen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dWO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dWP" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dWQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dWR" = ( +/obj/structure/rack, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/tank/internals/oxygen, +/obj/item/device/radio, +/obj/item/clothing/mask/breath, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dWS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dWT" = ( +/obj/machinery/shieldwallgen, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/maintenance/port/aft) +"dWU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dWV" = ( +/obj/machinery/door/morgue{ + name = "Relic Closet"; + req_access_txt = "27" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/chapel/office) +"dWW" = ( +/obj/machinery/door/morgue{ + name = "Confession Booth"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/chapel/main) +"dWX" = ( +/obj/machinery/status_display, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/chapel/main) +"dWY" = ( +/obj/machinery/door/airlock/centcom{ + name = "Chapel Office"; + req_access_txt = "27" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/chapel/main) +"dWZ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dXa" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_security{ + name = "Security Checkpoint"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/checkpoint2) +"dXb" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/checkpoint2) +"dXc" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/checkpoint2) +"dXd" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/security/checkpoint/checkpoint2) +"dXe" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/security/checkpoint/checkpoint2) +"dXf" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/security/checkpoint/checkpoint2) +"dXg" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/door/airlock/glass_security{ + name = "Holding Area"; + req_access_txt = "2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/checkpoint2) +"dXh" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/security/checkpoint/checkpoint2) +"dXi" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/checkpoint2) +"dXj" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/vacuum, +/turf/open/floor/plating, +/area/security/checkpoint/checkpoint2) +"dXk" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/checkpoint2) +"dXl" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Holding Area"; + req_access_txt = "2" + }, +/turf/open/floor/mineral/plastitanium/brig, +/area/shuttle/escape) +"dXm" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Cockpit"; + req_access_txt = "19" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"dXn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dXo" = ( +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/structure/closet/crate/internals, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/maintenance/port/aft) +"dXp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dXq" = ( +/obj/structure/rack, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/tank/internals/oxygen, +/obj/item/device/radio, +/obj/item/clothing/mask/breath, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dXr" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dXs" = ( +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/structure/closet/crate/internals, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dXt" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dXu" = ( +/obj/structure/table/wood/fancy, +/obj/item/spellbook/oneuse/smoke/lesser, +/obj/item/nullrod, +/obj/item/organ/heart, +/obj/item/reagent_containers/food/drinks/bottle/holywater, +/turf/open/floor/plasteel/grimy, +/area/chapel/office) +"dXv" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/office) +"dXw" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/chapel/main) +"dXx" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/machinery/light/small, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/chapel/office) +"dXy" = ( +/obj/machinery/door/morgue{ + name = "Confession Booth"; + req_access_txt = "27" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/chapel/office) +"dXz" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/chapel/office) +"dXA" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/black, +/area/chapel/office) +"dXB" = ( +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/chapel/office) +"dXC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/black, +/area/chapel/office) +"dXD" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = 26 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/chapel/office) +"dXE" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Chapel Maintenance"; + req_access_txt = "27" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/chapel/office) +"dXF" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dXG" = ( +/obj/structure/filingcabinet/security, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + pixel_x = -26; + pixel_y = 26 + }, +/obj/machinery/camera{ + c_tag = "Security - Departures Port"; + dir = 2; + name = "security camera" + }, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/checkpoint/checkpoint2) +"dXH" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/checkpoint/checkpoint2) +"dXI" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/checkpoint/checkpoint2) +"dXJ" = ( +/obj/structure/table/reinforced, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/door/window/brigdoor/southright{ + dir = 1; + name = "Security Desk"; + pixel_y = 8; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/red, +/area/security/checkpoint/checkpoint2) +"dXK" = ( +/obj/structure/table/reinforced, +/obj/item/storage/fancy/donut_box, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/checkpoint/checkpoint2) +"dXL" = ( +/obj/structure/closet/wardrobe/red, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/checkpoint/checkpoint2) +"dXN" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/checkpoint/checkpoint2) +"dXO" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/checkpoint/checkpoint2) +"dXP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/checkpoint/checkpoint2) +"dXQ" = ( +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/checkpoint/checkpoint2) +"dXR" = ( +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 4; + name = "External Docking Port"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/checkpoint2) +"dXS" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/checkpoint/checkpoint2) +"dXT" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Emergency Shuttle Airlock"; + req_access_txt = "2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/shuttle/escape) +"dXU" = ( +/turf/open/floor/mineral/plastitanium/brig, +/area/shuttle/escape) +"dXV" = ( +/obj/structure/chair, +/turf/open/floor/mineral/plastitanium/brig, +/area/shuttle/escape) +"dXW" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/open/floor/mineral/plastitanium/brig, +/area/shuttle/escape) +"dXX" = ( +/obj/machinery/button/flasher{ + id = "shuttleflash"; + pixel_x = -26; + pixel_y = 24 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/shuttle/escape) +"dXY" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/shuttle/escape) +"dXZ" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/toy/figure/ninja, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"dYa" = ( +/obj/structure/chair, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"dYb" = ( +/obj/structure/chair, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"dYd" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/metal{ + amount = 30 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/crowbar/red, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/maintenance/port/aft) +"dYe" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dYf" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dYg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dYh" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dYi" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dYj" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dYk" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dYl" = ( +/obj/structure/table/reinforced, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/device/flashlight, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dYm" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26 + }, +/turf/open/floor/plasteel/black, +/area/chapel/office) +"dYn" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/grimy, +/area/chapel/office) +"dYo" = ( +/obj/structure/chair/office/dark, +/turf/open/floor/plasteel/grimy, +/area/chapel/office) +"dYp" = ( +/obj/structure/chair/office/dark, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/grimy, +/area/chapel/office) +"dYq" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/office) +"dYr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 2; + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dYs" = ( +/obj/structure/table/reinforced, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Departures Checkpoint APC"; + areastring = "/area/security/checkpoint/checkpoint2"; + pixel_x = -26; + pixel_y = 3 + }, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/device/radio, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/checkpoint/checkpoint2) +"dYt" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/security/checkpoint/checkpoint2) +"dYu" = ( +/obj/machinery/holopad, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/checkpoint/checkpoint2) +"dYv" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/neutral, +/area/security/checkpoint/checkpoint2) +"dYw" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/security/checkpoint/checkpoint2) +"dYx" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/checkpoint/checkpoint2) +"dYy" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_security{ + name = "Holding Area"; + req_access_txt = "2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/checkpoint2) +"dYz" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/checkpoint/checkpoint2) +"dYA" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/neutral, +/area/security/checkpoint/checkpoint2) +"dYB" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/neutral, +/area/security/checkpoint/checkpoint2) +"dYC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/security/checkpoint/checkpoint2) +"dYD" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/checkpoint/checkpoint2) +"dYF" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium/brig, +/area/shuttle/escape) +"dYG" = ( +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/shuttle/escape) +"dYH" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/shuttle/escape) +"dYI" = ( +/turf/open/floor/plasteel, +/area/shuttle/escape) +"dYJ" = ( +/turf/open/floor/plasteel/neutral/corner, +/area/shuttle/escape) +"dYK" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = 58 + }, +/turf/open/floor/plasteel/neutral/side, +/area/shuttle/escape) +"dYL" = ( +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/shuttle/escape) +"dYM" = ( +/obj/machinery/door/airlock/external{ + name = "Emergency Recovery Airlock" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"dYN" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/emergency, +/obj/item/wrench, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/maintenance/port/aft) +"dYO" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dYP" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dYQ" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dYR" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dYS" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dYT" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dYU" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/rglass{ + amount = 20; + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dYV" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/chapel/office) +"dYW" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/office) +"dYX" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Chapel Quarters APC"; + areastring = "/area/chapel/office"; + pixel_y = 24 + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/office) +"dYY" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/camera{ + c_tag = "Chapel Quarters"; + dir = 2; + name = "chapel camera" + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/office) +"dYZ" = ( +/obj/structure/table/wood, +/obj/item/device/camera_film{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/device/camera_film, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/chapel/office) +"dZa" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/chapel/office) +"dZb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/chapel/office) +"dZc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/office) +"dZd" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/office) +"dZe" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen/fourcolor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/carpet, +/area/chapel/office) +"dZf" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/obj/machinery/ai_status_display{ + pixel_x = 32 + }, +/turf/open/floor/carpet, +/area/chapel/office) +"dZg" = ( +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: EXTERNAL AIRLOCK"; + pixel_x = 32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dZh" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/checkpoint/checkpoint2) +"dZi" = ( +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/checkpoint2) +"dZj" = ( +/obj/machinery/computer/prisoner, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/checkpoint/checkpoint2) +"dZk" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel/red, +/area/security/checkpoint/checkpoint2) +"dZl" = ( +/obj/machinery/computer/security, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/checkpoint/checkpoint2) +"dZm" = ( +/obj/structure/closet/secure_closet/security, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/checkpoint/checkpoint2) +"dZn" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light, +/obj/structure/sign/poster{ + icon_state = "poster22_legit"; + pixel_y = -32 + }, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/checkpoint/checkpoint2) +"dZo" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/checkpoint2) +"dZp" = ( +/obj/structure/table, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/device/assembly/flash/handheld, +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/checkpoint2) +"dZq" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/checkpoint2) +"dZr" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Security - Departures Starboard"; + dir = 1; + name = "security camera" + }, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/checkpoint/checkpoint2) +"dZs" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/checkpoint2) +"dZt" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/mineral/plastitanium/brig, +/area/shuttle/escape) +"dZu" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium/brig, +/area/shuttle/escape) +"dZv" = ( +/obj/structure/table/reinforced, +/obj/item/storage/lockbox/loyalty, +/turf/open/floor/mineral/plastitanium/brig, +/area/shuttle/escape) +"dZw" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/open/floor/plasteel/red/corner{ + dir = 8 + }, +/area/shuttle/escape) +"dZx" = ( +/obj/structure/fireaxecabinet{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/shuttle/escape) +"dZy" = ( +/obj/machinery/door/airlock/external{ + name = "Emergency Recovery Airlock" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"dZz" = ( +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/shuttle/escape) +"dZA" = ( +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/shuttle/escape) +"dZB" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/solar{ + id = "aftport"; + name = "Aft-Port Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/port/aft) +"dZC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/white, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dZD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chapelprivacy"; + name = "Chapel Privacy Shutters" + }, +/turf/open/floor/plating, +/area/chapel/office) +"dZE" = ( +/obj/structure/bed, +/obj/item/bedsheet/black, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/chapel/office) +"dZF" = ( +/turf/open/floor/plasteel/grimy, +/area/chapel/office) +"dZG" = ( +/obj/effect/landmark/start/chaplain, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/office) +"dZH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/office) +"dZI" = ( +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/chapel/office) +"dZJ" = ( +/obj/machinery/door/airlock/centcom{ + name = "Chapel Quarters"; + req_access_txt = "27" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/chapel/office) +"dZK" = ( +/obj/machinery/light_switch{ + pixel_x = -26; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/chapel/office) +"dZL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/black, +/area/chapel/office) +"dZM" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/office) +"dZN" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/office) +"dZO" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/chaplain, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/carpet, +/area/chapel/office) +"dZP" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/candle_box{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/fancy/candle_box, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/turf/open/floor/carpet, +/area/chapel/office) +"dZQ" = ( +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 1; + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dZR" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/checkpoint2) +"dZS" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/checkpoint2) +"dZT" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/checkpoint2) +"dZU" = ( +/obj/structure/cable/white, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/checkpoint2) +"dZV" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/brig, +/area/shuttle/escape) +"dZW" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/zipties, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = -26 + }, +/turf/open/floor/mineral/plastitanium/brig, +/area/shuttle/escape) +"dZX" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/red/corner{ + dir = 8 + }, +/area/shuttle/escape) +"dZY" = ( +/turf/open/floor/plasteel/blue/side, +/area/shuttle/escape) +"dZZ" = ( +/obj/machinery/door/airlock/command{ + name = "Emergency Recovery Airlock"; + req_access = null; + req_access_txt = "19" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"eaa" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"eab" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"eac" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"ead" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"eae" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"eaf" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"eag" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"eah" = ( +/obj/structure/dresser, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/structure/sign/nanotrasen{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/chapel/office) +"eai" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/grown/poppy/geranium{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/snacks/grown/poppy/lily, +/turf/open/floor/plasteel/grimy, +/area/chapel/office) +"eaj" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/candle_box{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/fancy/candle_box, +/turf/open/floor/plasteel/grimy, +/area/chapel/office) +"eak" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/pen, +/turf/open/floor/plasteel/grimy, +/area/chapel/office) +"eal" = ( +/obj/structure/closet/wardrobe/chaplain_black, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/chapel/office) +"ean" = ( +/obj/machinery/photocopier, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/chapel/office) +"eao" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/office) +"eap" = ( +/turf/open/floor/carpet, +/area/chapel/office) +"eaq" = ( +/obj/structure/table/wood, +/obj/item/storage/crayons, +/obj/item/storage/crayons, +/obj/machinery/requests_console{ + department = "Chapel Office"; + departmentType = 0; + name = "Chapel RC"; + pixel_y = -32 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/camera{ + c_tag = "Chapel Office"; + dir = 1; + name = "chapel camera" + }, +/turf/open/floor/carpet, +/area/chapel/office) +"ear" = ( +/obj/structure/cable, +/obj/machinery/power/solar{ + id = "aftport"; + name = "Aft-Port Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/port/aft) +"eas" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/chapel/office) +"eat" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/open/floor/plasteel/vault{ + dir = 4 + }, +/area/shuttle/escape) +"eau" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/escape) +"eav" = ( +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/escape) +"eaw" = ( +/obj/structure/table/reinforced, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plasteel/vault{ + dir = 4 + }, +/area/shuttle/escape) +"eax" = ( +/obj/machinery/computer/security, +/turf/open/floor/plasteel/darkred/side{ + dir = 9 + }, +/area/shuttle/escape) +"eay" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/escape) +"eaz" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_x = 26; + pixel_y = 58 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/escape) +"eaA" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/shuttle/escape) +"eaB" = ( +/obj/machinery/computer/station_alert, +/turf/open/floor/plasteel/darkyellow/side{ + dir = 5 + }, +/area/shuttle/escape) +"eaC" = ( +/obj/item/stack/cable_coil, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"eaD" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel/darkred/side{ + dir = 10 + }, +/area/shuttle/escape) +"eaE" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel/vault, +/area/shuttle/escape) +"eaF" = ( +/obj/structure/chair/office/dark, +/turf/open/floor/plasteel/vault, +/area/shuttle/escape) +"eaG" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel/vault, +/area/shuttle/escape) +"eaH" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue, +/obj/item/pen, +/turf/open/floor/plasteel/vault, +/area/shuttle/escape) +"eaI" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/vault, +/area/shuttle/escape) +"eaJ" = ( +/obj/machinery/computer/atmos_alert, +/turf/open/floor/plasteel/darkyellow/side{ + dir = 6 + }, +/area/shuttle/escape) +"eaK" = ( +/obj/structure/lattice/catwalk, +/obj/effect/landmark/xeno_spawn, +/turf/open/space, +/area/solar/port/aft) +"eaL" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/vault{ + dir = 4 + }, +/area/shuttle/escape) +"eaM" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/restraints/handcuffs, +/obj/item/device/assembly/flash/handheld, +/turf/open/floor/plasteel/vault, +/area/shuttle/escape) +"eaN" = ( +/obj/machinery/computer/crew, +/turf/open/floor/plasteel/darkblue/side, +/area/shuttle/escape) +"eaO" = ( +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel/darkblue/side{ + dir = 6 + }, +/area/shuttle/escape) +"eaP" = ( +/obj/machinery/computer/emergency_shuttle, +/turf/open/floor/plasteel/darkblue/side{ + dir = 10 + }, +/area/shuttle/escape) +"eaQ" = ( +/obj/machinery/computer/communications, +/turf/open/floor/plasteel/darkblue/side, +/area/shuttle/escape) +"eaR" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel/vault, +/area/shuttle/escape) +"eaS" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/turf/open/floor/plasteel/vault{ + dir = 4 + }, +/area/shuttle/escape) +"eaT" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 24; + id = "syndicate_sw"; + name = "southwest of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"eaU" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 24; + id = "syndicate_se"; + name = "southeast of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"eaV" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"eaW" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"eaX" = ( +/obj/structure/cable, +/obj/machinery/power/tracker, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/port/aft) +"eaY" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 24; + id = "syndicate_s"; + name = "south of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"eaZ" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/light_switch{ + pixel_x = 24; + pixel_y = -24 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/chapel/main) +"eba" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard/fore) +"ebb" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard/fore) +"ebg" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"ebB" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/fore) +"ebC" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/fore) +"ebD" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard/aft) +"ebE" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard/aft) +"ebF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"ebG" = ( +/turf/open/floor/engine, +/area/engine/supermatter) +"ebJ" = ( +/obj/machinery/door/window/brigdoor/northleft{ + name = "Captain's Desk"; + req_access_txt = "20" + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"ebK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/window{ + dir = 8; + name = "Library Desk"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel/grimy, +/area/library) +"ebP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow, +/area/engine/atmospherics_engine) +"ebQ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/trinary/filter/critical{ + dir = 4; + filter_type = "freon"; + name = "gas filter (freon)" + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmospherics_engine) +"ebR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmospherics_engine) +"ebS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"ebT" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"ebU" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j1"; + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/central) +"ebV" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/item/device/radio/beacon, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/aisat) +"ebW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ebX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red, +/area/maintenance/starboard/fore) +"ebY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"ebZ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"ecb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/crew_quarters/electronic_marketing_den) +"ecc" = ( +/obj/structure/closet/wardrobe/grey, +/turf/open/floor/plasteel/neutral, +/area/shuttle/arrival) +"ecd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/port/fore) +"ece" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ecf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/hydroponics/garden/abandoned) +"ecg" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hydroponics/garden/abandoned) +"ech" = ( +/obj/machinery/button/door{ + id = "Dorm2"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + pixel_x = -26; + pixel_y = 7; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"eci" = ( +/obj/machinery/button/door{ + id = "Dorm4"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + pixel_x = -26; + pixel_y = 7; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"ecj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/hydrofloor, +/area/hydroponics/garden/abandoned) +"eck" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/hydrofloor, +/area/hydroponics/garden/abandoned) +"ecl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/barricade/wooden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/hydroponics/garden/abandoned) +"ecm" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ecn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port/fore) +"eco" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"ecp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/abandoned_gambling_den) +"ecq" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"ecr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"ecs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/crew_quarters/abandoned_gambling_den) +"ecu" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ecv" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"ecw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/port) +"ecx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"ecy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/heads/hop) +"ecz" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 10 + }, +/area/tcommsat/server) +"ecA" = ( +/turf/open/floor/plasteel/vault/telecomms{ + dir = 6 + }, +/area/tcommsat/server) +"ecE" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden, +/turf/open/floor/plasteel/vault/telecomms{ + dir = 8 + }, +/area/tcommsat/server) +"ecG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/general/hidden, +/turf/open/floor/plating, +/area/tcommsat/server) +"ecI" = ( +/turf/open/floor/plasteel/vault/killroom, +/area/science/xenobiology) +"ecQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"ecR" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/abandoned_gambling_den) +"ecS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/abandoned_gambling_den) +"ecT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/abandoned_gambling_den) +"ecU" = ( +/obj/structure/chair/wood/normal, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"ecV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/science/research) +"ecW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Surgery Observation"; + req_access_txt = "0" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) +"ecX" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"ecY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/crew_quarters/abandoned_gambling_den) +"ecZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/abandoned_gambling_den) +"eda" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/abandoned_gambling_den) +"edb" = ( +/obj/machinery/deepfryer, +/turf/open/floor/plasteel/red, +/area/crew_quarters/kitchen) +"edc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/electronic_marketing_den) +"edd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/hydrofloor, +/area/hydroponics/garden/abandoned) +"ede" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/hydrofloor, +/area/hydroponics/garden/abandoned) +"edf" = ( +/obj/structure/table/wood, +/obj/item/clothing/head/hardhat/cakehat, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"edg" = ( +/obj/machinery/doorButtons/airlock_controller{ + idExterior = "virology_airlock_exterior"; + idInterior = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Console"; + pixel_x = -10; + pixel_y = 24; + req_access_txt = "39" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/medical/virology) +"edh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/maintenance/starboard/fore) +"edi" = ( +/obj/structure/mining_shuttle_beacon, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"edj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/docking_port/stationary/public_mining_dock{ + dir = 4 + }, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"edl" = ( +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/shuttle/transport) +"edo" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/transport) +"edp" = ( +/turf/open/floor/pod/light, +/area/shuttle/transport) +"edz" = ( +/obj/machinery/door/airlock/titanium, +/turf/open/floor/pod/light, +/area/shuttle/transport) +"edC" = ( +/obj/effect/spawner/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/transport) +"edD" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/pod/dark, +/area/shuttle/transport) +"edF" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/pod/dark, +/area/shuttle/transport) +"edT" = ( +/obj/machinery/computer/shuttle/ferry/request, +/turf/open/floor/pod/dark, +/area/shuttle/transport) +"een" = ( +/obj/docking_port/mobile{ + dir = 1; + dwidth = 2; + height = 13; + id = "ferry"; + name = "ferry shuttle"; + port_direction = 1; + preferred_direction = 4; + roundstart_move = "ferry_away"; + width = 5 + }, +/obj/docking_port/stationary{ + dir = 1; + dwidth = 2; + height = 13; + id = "ferry_home"; + name = "port bay 2"; + turf_type = /turf/open/space; + width = 5 + }, +/obj/machinery/door/airlock/titanium, +/turf/open/floor/pod/dark, +/area/shuttle/transport) +"eeq" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/shuttle/transport) +"ees" = ( +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/shuttle/transport) +"eet" = ( +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/shuttle/transport) +"eev" = ( +/obj/machinery/door/airlock/external, +/turf/open/floor/pod/light, +/area/shuttle/transport) +"eex" = ( +/obj/structure/window/shuttle, +/obj/structure/grille, +/turf/open/floor/plating, +/area/shuttle/transport) +"eez" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/twohanded/required/kirbyplants/random, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 6 + }, +/area/maintenance/starboard/fore) +"eeA" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/sign/poster/official/report_crimes{ + pixel_y = 32 + }, +/turf/open/floor/carpet, +/area/security/vacantoffice) +"eeB" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/sign/poster/official/do_not_question{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/grimy, +/area/security/vacantoffice) +"eeC" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/maintenance/starboard/fore) +"eeE" = ( +/obj/structure/table/wood, +/obj/structure/sign/barsign{ + pixel_y = 32 + }, +/obj/item/wirerod, +/obj/item/wrench, +/obj/item/clothing/under/waiter, +/obj/item/clothing/accessory/waistcoat, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/black, +/area/crew_quarters/electronic_marketing_den) +"eeF" = ( +/obj/structure/table/wood, +/obj/item/poster/random_contraband{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/poster/random_contraband{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/poster/random_contraband, +/turf/open/floor/wood, +/area/crew_quarters/electronic_marketing_den) +"eeG" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/light/small, +/obj/structure/sign/poster/official/work_for_a_future{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/grimy, +/area/security/vacantoffice) +"eeH" = ( +/obj/structure/table/wood, +/obj/item/poster/random_contraband{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/poster/random_contraband{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/poster/random_contraband, +/turf/open/floor/plasteel/black, +/area/crew_quarters/electronic_marketing_den) +"eeI" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/crew_quarters/electronic_marketing_den) +"eeL" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/maintenance/port/fore) +"eeO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/port/fore) +"eeP" = ( +/obj/structure/janitorialcart, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/official/work_for_a_future{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/janitor) +"eeQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/redblue, +/area/maintenance/port/fore) +"eeR" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/shoes/jackboots, +/obj/effect/spawner/lootdrop/costume, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/port/fore) +"eeS" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/decal/cleanable/dirt, +/obj/item/mop, +/obj/item/mop, +/obj/item/device/radio/intercom{ + name = "Station Intercom"; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light/small, +/obj/effect/turf_decal/bot, +/obj/structure/sign/poster/official/cleanliness{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/neutral, +/area/janitor) +"eeT" = ( +/obj/structure/sign/poster/random, +/turf/closed/wall, +/area/crew_quarters/bar) +"eeU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/random, +/turf/closed/wall, +/area/crew_quarters/bar) +"eeV" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/crew_quarters/bar) +"eeW" = ( +/obj/structure/closet/radiation, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Atmospherics - Engine Access"; + name = "atmospherics camera" + }, +/obj/effect/turf_decal/bot, +/obj/structure/sign/poster/official/cleanliness{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"eeX" = ( +/obj/structure/table/wood, +/obj/item/soap/nanotrasen, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/bar/atrium) +"eeY" = ( +/obj/structure/easel, +/obj/item/canvas/twentythreeXtwentythree, +/obj/item/canvas/twentythreeXtwentythree, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar/atrium) +"eeZ" = ( +/obj/machinery/door/airlock{ + name = "Bathroom" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/official/cleanliness{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/prison) +"efa" = ( +/obj/machinery/computer/slot_machine, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken2" + }, +/area/crew_quarters/abandoned_gambling_den) +"efb" = ( +/obj/structure/table/wood, +/obj/item/device/instrument/eguitar, +/obj/item/toy/crayon/spraycan/lubecan{ + charges = 5 + }, +/obj/structure/sign/poster/contraband/clown{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/redblue, +/area/crew_quarters/theatre) +"efc" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/obj/structure/closet/crate/wooden/toy, +/turf/open/floor/plasteel/redblue, +/area/crew_quarters/theatre) +"efd" = ( +/obj/structure/sign/poster/random, +/turf/closed/wall, +/area/crew_quarters/bar/atrium) +"efe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/poster/official/help_others{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/vault, +/area/security/execution/education) +"eff" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/abandoned_gambling_den) +"efg" = ( +/obj/machinery/computer/slot_machine, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/crew_quarters/abandoned_gambling_den) +"efh" = ( +/obj/machinery/computer/slot_machine, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/crew_quarters/abandoned_gambling_den) +"efi" = ( +/obj/machinery/computer/slot_machine, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"efj" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/baguette, +/obj/item/toy/crayon/spraycan/mimecan{ + charges = 5 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/theatre) +"efk" = ( +/obj/structure/dresser, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/theatre) +"efm" = ( +/obj/structure/table/wood, +/obj/item/clothing/mask/fakemoustache, +/obj/item/cane, +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/bar/atrium) +"efn" = ( +/obj/structure/chair/stool/bar, +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar/atrium) +"efo" = ( +/obj/structure/sign/poster/random, +/turf/closed/wall, +/area/maintenance/port/fore) +"efp" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/window/reinforced, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/turf_decal/bot, +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"efr" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop, +/obj/structure/sign/poster/official/cleanliness{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/whitered/side{ + dir = 9 + }, +/area/security/brig) +"eft" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/sign/poster/official/do_not_question{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"efu" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -3; + pixel_y = 5 + }, +/obj/effect/turf_decal/bot, +/obj/structure/sign/poster/official/cleanliness{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"efv" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/effect/turf_decal/bot, +/obj/structure/sign/poster/official/do_not_question{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"efx" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Air to External Air Ports"; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/sign/poster/official/work_for_a_future{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"efy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/official/do_not_question{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/central) +"efz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/official/report_crimes{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"efA" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/effect/turf_decal/bot, +/obj/structure/sign/poster/official/cleanliness{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"efB" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 16 + }, +/obj/item/watertank, +/obj/item/grenade/chem_grenade/antiweed, +/obj/effect/turf_decal/bot, +/obj/structure/sign/poster/official/ian{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"efC" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave{ + desc = "It looks really dirty."; + name = "maintenance microwave"; + pixel_y = 5 + }, +/obj/structure/sign/poster/official/help_others{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/redyellow, +/area/engine/break_room) +"efD" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/sign/poster/official/do_not_question{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/main) +"efE" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/delivery, +/obj/structure/sign/poster/official/report_crimes{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"efF" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Security - Transfer Centre Aft"; + dir = 1; + name = "security camera" + }, +/obj/structure/sign/poster/official/work_for_a_future{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/red/side, +/area/security/execution/transfer) +"efG" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/security{ + name = "Brig"; + req_access_txt = "63" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"efH" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/toy/figure/detective, +/obj/structure/sign/poster/official/report_crimes{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault, +/area/security/detectives_office) +"efI" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/sign/poster/official/help_others{ + pixel_x = -32; + pixel_y = -32 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"efJ" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/obj/structure/sign/poster/official/ian{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"efK" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Courtroom - Fore"; + dir = 2; + name = "security camera" + }, +/obj/structure/sign/poster/official/report_crimes{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault, +/area/security/courtroom) +"efL" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/door/window/brigdoor/northright{ + name = "Warden's Desk"; + req_access_txt = "3" + }, +/obj/machinery/door/window/southright{ + name = "Warden's Desk" + }, +/obj/item/folder/red, +/obj/item/pen, +/obj/item/poster/random_official{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/poster/random_official, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/warden) +"efM" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/pen, +/obj/structure/sign/poster/official/enlist{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/brig) +"efN" = ( +/obj/structure/closet/wardrobe/red, +/obj/item/clothing/under/rank/security/grey, +/obj/item/clothing/under/rank/security/grey, +/obj/item/clothing/under/rank/security/grey, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/item/storage/backpack/satchel/sec, +/obj/structure/sign/poster/official/do_not_question{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/red, +/area/security/brig) +"efO" = ( +/obj/machinery/vending/cola/random, +/obj/structure/sign/poster/official/ian{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/hallway/primary/central) +"efP" = ( +/obj/machinery/photocopier, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/sign/poster/official/work_for_a_future{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"efQ" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/sign/poster/official/report_crimes{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/lawoffice) +"efR" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/requests_console{ + department = "Engineering"; + departmentType = 0; + name = "Engineering RC"; + pixel_y = -32 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/sign/poster/official/do_not_question{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"efS" = ( +/obj/structure/table/wood, +/obj/item/storage/briefcase, +/obj/structure/sign/poster/official/help_others{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/vault, +/area/security/courtroom) +"efT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/official/work_for_a_future{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/courtroom) +"efU" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/crowbar, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/obj/effect/turf_decal/bot, +/obj/structure/sign/poster/official/report_crimes{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/engine/storage) +"efV" = ( +/obj/structure/table/reinforced, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/wrench, +/obj/item/storage/box/lights/mixed, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"efW" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/sign/poster/official/help_others{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"efX" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/electrical, +/obj/effect/turf_decal/delivery, +/obj/structure/sign/poster/official/report_crimes{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"efY" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/sign/poster/official/science{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"efZ" = ( +/obj/structure/mirror{ + pixel_x = 26 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit/old, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/landmark/blobstart, +/obj/structure/sign/poster/official/cleanliness{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/neutral, +/area/medical/medbay/central) +"ega" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + name = "Medbay Storage"; + req_access_txt = "5" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/structure/sign/poster/official/cleanliness{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/storage) +"egb" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/yellow, +/obj/item/storage/toolbox/electrical, +/obj/structure/sign/poster/official/do_not_question{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"egc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/sign/poster/official/help_others{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"egd" = ( +/obj/structure/table/glass, +/obj/item/clipboard, +/obj/item/toy/figure/md, +/obj/machinery/light/small, +/obj/structure/sign/poster/official/ian{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"ege" = ( +/obj/structure/table/wood, +/obj/item/storage/pill_bottle/dice, +/obj/structure/sign/poster/official/help_others{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"egf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/black, +/area/crew_quarters/abandoned_gambling_den) +"egg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/official/report_crimes{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"egh" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"egi" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/obj/item/device/flashlight, +/obj/effect/turf_decal/bot, +/obj/structure/sign/poster/official/science{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"egj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Medbay - Starboard"; + dir = 1; + name = "medbay camera" + }, +/obj/structure/sign/poster/official/work_for_a_future{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/whiteblue/corner, +/area/medical/medbay/central) +"egk" = ( +/obj/structure/table/reinforced, +/obj/item/stack/cable_coil/white{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil/white, +/obj/item/device/geiger_counter, +/obj/effect/turf_decal/bot, +/obj/structure/sign/poster/official/cleanliness{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"egl" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/abandoned_gambling_den) +"egm" = ( +/obj/structure/chair/stool/bar, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/abandoned_gambling_den) +"egn" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/structure/sign/poster/official/cleanliness{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/vault, +/area/medical/surgery) +"ego" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/sign/poster/official/do_not_question{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"egp" = ( +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/chem_dispenser/drinks/beer, +/obj/structure/table/wood/poker, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"egq" = ( +/obj/machinery/vending/boozeomat{ + req_access_txt = "0" + }, +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"egr" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/sign/poster/official/science{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"egs" = ( +/obj/structure/sign/poster/official/report_crimes{ + pixel_y = 32 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/security/detectives_office/private_investigators_office) +"egt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Medbay - Morgue"; + dir = 1; + name = "medbay camera" + }, +/obj/structure/sign/poster/official/bless_this_spess{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/medical/morgue) +"egu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/twohanded/required/kirbyplants/random, +/obj/structure/sign/poster/official/do_not_question{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/detectives_office/private_investigators_office) +"egv" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/electrical, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/sign/poster/official/report_crimes{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"egw" = ( +/obj/structure/table/wood, +/obj/item/storage/box/donkpockets, +/obj/structure/sign/poster/official/report_crimes{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/science/research) +"egx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/official/cleanliness, +/turf/closed/wall, +/area/medical/virology) +"egy" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/crowbar, +/obj/item/device/radio, +/obj/structure/sign/poster/official/do_not_question{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/blue/side{ + dir = 10 + }, +/area/security/checkpoint/customs) +"egz" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/sign/poster/official/help_others{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"egA" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"egB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"egC" = ( +/obj/machinery/power/apc/highcap/five_k{ + dir = 1; + name = "Departure Lounge APC"; + areastring = "/area/hallway/secondary/exit/departure_lounge"; + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = "Departures - Fore"; + dir = 2; + name = "departures camera" + }, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"egD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"egF" = ( +/obj/effect/turf_decal/delivery, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"egG" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/sign/poster/official/work_for_a_future{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault, +/area/medical/virology) +"egH" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"egI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"egJ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/exit/departure_lounge) +"egL" = ( +/obj/effect/turf_decal/delivery, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"egM" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"egP" = ( +/obj/structure/bodycontainer/morgue, +/obj/structure/sign/poster/official/ian{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/chapel/office) +"egQ" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/checkpoint/checkpoint2) +"egR" = ( +/obj/structure/table/wood, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/clipboard, +/obj/item/toy/figure/chaplain, +/obj/structure/sign/poster/official/bless_this_spess{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/chapel/office) +"egS" = ( +/obj/docking_port/mobile/arrivals{ + dir = 2; + dwidth = 4; + height = 17; + name = "delta arrivals shuttle"; + width = 9 + }, +/obj/docking_port/stationary{ + dir = 2; + dwidth = 4; + height = 17; + id = "arrivals_stationary"; + name = "delta arrivals"; + width = 9 + }, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/arrival) +"egT" = ( +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 4; + name = "External Docking Port" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"egU" = ( +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 8; + name = "External Docking Port" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"egV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 4; + name = "External Docking Port" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"egW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 8; + name = "External Docking Port" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ehi" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/pod/light, +/area/shuttle/transport) +"ehj" = ( +/obj/machinery/requests_console{ + department = "Arrival shuttle"; + name = "Arrivals Shuttle console" + }, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/arrival) +"ehk" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/pod/light, +/area/shuttle/transport) +"ehl" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/shuttle/arrival) +"ehm" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/pod/light, +/area/shuttle/transport) +"ehn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/shuttle/supply) +"eho" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/shuttle/supply) +"ehp" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/shuttle/escape) +"ehr" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/shuttle/escape) +"ehs" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"eht" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"ehv" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"ehw" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/mineral/plastitanium/brig, +/area/shuttle/escape) +"ehx" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/shuttle/escape) +"ehy" = ( +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"ehB" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engine/supermatter) +"ehF" = ( +/obj/machinery/power/rad_collector/anchored, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/circuit/green, +/area/engine/supermatter) +"ehJ" = ( +/obj/structure/sign/radiation, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"ehN" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"ehO" = ( +/obj/structure/displaycase/trophy, +/turf/open/floor/wood, +/area/library) +"ehS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + icon_state = "freezer"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"ehT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"ehV" = ( +/turf/closed/wall, +/area/quartermaster/office) +"ehW" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/office) +"eib" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/quartermaster/office) +"eig" = ( +/turf/closed/wall/r_wall, +/area/maintenance/solars/starboard/aft) +"eik" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"eil" = ( +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: EXTERNAL AIRLOCK" + }, +/turf/closed/wall/r_wall, +/area/maintenance/solars/starboard/aft) +"eip" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"eiq" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"eir" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"eis" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 4; + name = "External Solar Access"; + req_access_txt = "10; 13" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/solars/starboard/aft) +"eit" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/solars/starboard/aft) +"eiv" = ( +/obj/structure/sign/electricshock, +/turf/closed/wall/r_wall, +/area/maintenance/solars/starboard/aft) +"eiE" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Port Primary Hallway APC"; + areastring = "/area/hallway/primary/port"; + pixel_x = 26 + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 4 + }, +/area/hallway/primary/port) +"eiF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "Starboard Primary Hallway APC"; + areastring = "/area/hallway/primary/starboard"; + pixel_y = -26 + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/starboard) +"eiG" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/starboard/aft) +"eiH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Starboard Quarter Maintenance APC"; + areastring = "/area/hallway/primary/aft"; + pixel_x = 26 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"eiI" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/aft) +"eiJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/power/apc{ + dir = 4; + name = "Aft Primary Hallway APC"; + areastring = "/area/hallway/primary/aft"; + pixel_x = 26 + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/primary/aft) +"eiK" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/aft) +"eiP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/secondary/command) +"eiQ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/secondary/command) +"eiR" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/secondary/command) +"eiS" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/secondary/command) +"eiT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/crew_quarters/dorms) +"eiU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/dorms) +"eiZ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/dorms) +"eja" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/dorms) +"ejc" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/crew_quarters/dorms) +"eje" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/dorms) +"ejf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/dorms) +"ejg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/dorms) +"ejh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/dorms) +"eji" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/dorms) +"ejj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8; + heat_capacity = 1e+006 + }, +/area/crew_quarters/dorms) +"ejl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner, +/area/crew_quarters/dorms) +"ejs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"ejt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral, +/area/science/research) +"eju" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/research) +"ejv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_switch{ + pixel_x = -26 + }, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"ejw" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light_switch{ + pixel_x = 22; + pixel_y = -10 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/transit_tube) +"ejx" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/machinery/light_switch{ + pixel_x = -26 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"ejy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/brown, +/area/maintenance/disposal) +"ejz" = ( +/obj/item/twohanded/required/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) +"ejA" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"ejB" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/arrival{ + dir = 1 + }, +/area/crew_quarters/locker) +"epc" = ( +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 2; + name = "External Docking Port" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"eph" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"epi" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"epj" = ( +/obj/machinery/door/airlock/glass{ + name = "Holodeck Access" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"epk" = ( +/obj/machinery/door/airlock/glass{ + name = "Holodeck Access" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"epl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"epm" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"epn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"epo" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmospherics_engine) +"eps" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/engine/atmospherics_engine) +"ept" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"epu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"epv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"epw" = ( +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"epx" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel/neutral, +/area/engine/atmospherics_engine) +"epy" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plasteel/yellow, +/area/engine/atmospherics_engine) +"epA" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"epB" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 8; + name = "External Solar Access"; + req_access_txt = "10; 13" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/solars/starboard/fore) +"epC" = ( +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 1; + name = "External Docking Port" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"epD" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 8; + name = "External Solar Access"; + req_access_txt = "10"; + req_one_access = null; + req_one_access_txt = "13; 24" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/solars/port/fore) +"epE" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_command{ + cyclelinkeddir = 8; + name = "Bridge Access"; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/bridge) +"epF" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/hatch{ + cyclelinkeddir = 8; + name = "MiniSat Exterior Access"; + req_one_access_txt = "32;19" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/transit_tube) +"epG" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_security{ + cyclelinkeddir = 8; + name = "Brig"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"epH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + cyclelinkeddir = 8; + name = "Brig"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"epI" = ( +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 8; + name = "External Containment Access"; + req_access_txt = "10; 13" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"epJ" = ( +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 8; + name = "External Containment Access"; + req_access_txt = "10; 13" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"epK" = ( +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 8; + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"epL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + cyclelinkeddir = 1; + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research) +"epM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + cyclelinkeddir = 1; + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research) +"epN" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 8; + name = "External Solar Access"; + req_access_txt = "10; 13" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/solars/starboard/aft) +"epO" = ( +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 8; + name = "External Docking Port" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"epQ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 8; + name = "External Solar Access"; + req_access_txt = "10; 13" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/solars/port/aft) +"epS" = ( +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 8; + name = "External Docking Port"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/checkpoint2) +"epT" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plasteel/yellow/side{ + dir = 4 + }, +/area/construction/mining/aux_base) +"epU" = ( +/obj/machinery/atmospherics/pipe/manifold4w/general/visible, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"epV" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"epW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"epX" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"epY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"epZ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"eqa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"eqb" = ( +/obj/structure/sign/electricshock, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/engine/atmospherics_engine) +"eqc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"eqd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"eqe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"eqf" = ( +/obj/machinery/door/airlock/maintenance_hatch/abandoned{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"eqg" = ( +/turf/closed/wall, +/area/maintenance/department/medical) +"eqo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"eqt" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/construction/mining/aux_base) +"equ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/arrival, +/area/hallway/secondary/entry) +"eqw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"eqx" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"eqy" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"eqz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) +"eqA" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/maintenance/port/fore) +"eqB" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/fore) +"eqC" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port/fore) +"eqD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"eqE" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/secondary/service) +"eqF" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/redyellow, +/area/crew_quarters/bar/atrium) +"eqG" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/storage) +"eqH" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar/atrium) +"eqI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/office) +"eqJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/qm) +"eqL" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"eqM" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/greenblue/side, +/area/hydroponics) +"eqO" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/quartermaster/miningoffice) +"eqP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"eqQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/fore) +"eqR" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/red, +/area/crew_quarters/kitchen) +"eqT" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/hydroponics) +"eqU" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"eqV" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"eqW" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/security/brig) +"eqX" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/engine/atmos) +"eqY" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"eqZ" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/bridge) +"era" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/security/execution/transfer) +"erb" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/storage/tech) +"erc" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/engine/break_room) +"erd" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/storage/primary) +"ere" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/darkblue/side, +/area/bridge) +"erf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port/fore) +"erg" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/brig) +"eri" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"erj" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/security/detectives_office) +"erk" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/port) +"erl" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"erm" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/port) +"ern" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/starboard) +"erp" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/engineering) +"erq" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hop) +"err" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port) +"ers" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/grimy, +/area/library) +"eru" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard) +"erv" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/engine/engineering) +"erw" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/library) +"erx" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/secondary/command) +"ery" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/corner, +/area/hallway/secondary/command) +"erz" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/central) +"erA" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/locker) +"erB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/starboard) +"erD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"erE" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/yellow, +/area/engine/storage) +"erF" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/toilet/restrooms) +"erH" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/side, +/area/crew_quarters/fitness/recreation) +"erI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/engineering) +"erJ" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port) +"erO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port) +"erP" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"erQ" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/medical/medbay/central) +"erR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/cmo, +/area/medical/medbay/central) +"erS" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/science/research) +"erT" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/crew_quarters/fitness/recreation) +"erU" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"erV" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/aft) +"erW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/side{ + dir = 1; + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"erX" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/purple, +/area/science/research) +"erY" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port) +"erZ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/blue, +/area/medical/medbay/central) +"esa" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port) +"esb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/science/research) +"esc" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/medical/medbay/central) +"esf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"esh" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/maintenance/port) +"esj" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/science/robotics/lab) +"esk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/starboard/aft) +"esl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/purple, +/area/science/research) +"esm" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/science/mixing) +"esn" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/hallway/primary/aft) +"eso" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/aft) +"esp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"esq" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral, +/area/hallway/secondary/exit/departure_lounge) +"esr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/maintenance/port/aft) +"ess" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"est" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"esv" = ( +/obj/structure/closet/secure_closet/miner/unlocked, +/turf/open/floor/plasteel/yellow/side{ + dir = 4 + }, +/area/construction/mining/aux_base) +"esw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"esx" = ( +/obj/machinery/computer/shuttle/mining, +/turf/open/floor/plasteel/yellow/side{ + dir = 4 + }, +/area/construction/mining/aux_base) +"esy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/ore_box, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"esz" = ( +/turf/closed/wall/r_wall, +/area/maintenance/department/medical/morgue) +"esB" = ( +/turf/closed/wall, +/area/maintenance/department/medical/morgue) +"esC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/maintenance/department/medical/morgue) +"esD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"esE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc{ + dir = 2; + name = "Morgue Maintenance APC"; + areastring = "/area/maintenance/department/medical/morgue"; + pixel_y = -26 + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/maintenance/department/medical/morgue) +"YGI" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 24; + id = "syndicate_nw"; + name = "northwest of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space/basic, +/area/space) +"YGJ" = ( +/obj/structure/reflector/double/anchored{ + dir = 5 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/engine/atmospherics_engine) +"YGK" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/machinery/power/rad_collector/anchored, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/window/plasma/reinforced{ + dir = 4 + }, +/turf/open/floor/circuit/green, +/area/engine/supermatter) +"YGL" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4 + }, +/obj/machinery/power/rad_collector/anchored, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/window/plasma/reinforced{ + dir = 8 + }, +/turf/open/floor/circuit/green, +/area/engine/supermatter) +"YGM" = ( +/obj/machinery/vending/kink, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"YGN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Security Desk"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/brig) +"YGO" = ( +/obj/machinery/vending/kink, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den) + +(1,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(2,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(3,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(4,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(5,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(6,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(7,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(8,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(9,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(10,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(11,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(12,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(13,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(14,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(15,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(16,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(17,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(18,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(19,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +agg +agg +agg +aaf +agg +agg +agg +aaf +agg +agg +agg +aaf +agg +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(20,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaa +biN +blN +biN +blN +biN +blN +biN +blN +biN +blN +biN +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(21,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +bgO +bHj +bww +bLo +bww +bOZ +bRe +bTx +bww +bww +bww +bHt +bnP +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(22,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +agg +agg +agg +agg +agg +aaf +agg +agg +aaf +agg +agg +agg +agg +bgP +bHk +bJk +biR +bNj +bPa +bRf +bTy +bnN +biR +bkt +bHk +bnO +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(23,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +blN +biN +biN +blN +biN +biN +blN +biN +biN +blN +biN +blN +bko +bHk +bnQ +bLp +bLp +bLp +bRg +bTz +bLp +bLp +bNB +bHk +bnP +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(24,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +bgP +blO +bnM +bnM +bnM +bnM +btv +buR +bww +bww +bww +bww +bww +bww +bHl +bnP +bLp +bNk +bPb +bRh +bTA +bVC +bLp +bgO +bHk +bnO +agg +agg +agg +agg +agg +agg +aaf +agg +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(25,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +bgO +blP +bnN +bpI +biR +biR +biR +bpI +biR +biR +bpI +biR +biR +bpI +bHm +aaa +bLp +bNl +bPc +bRi +bTB +bVD +bLp +bgO +bHk +ccG +biN +blN +biN +biN +blN +biN +blN +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(26,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +bgO +blP +bnO +aaf +aaf +aaf +bpK +bpK +bpK +bpK +bpK +bpK +bpK +bpK +bpK +bpK +bLp +bNm +bPd +bRj +bTC +bVE +bLp +bNB +bHu +bww +bww +cfL +bnM +ciQ +bnM +bnM +cmZ +bnP +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(27,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +bgP +blP +bnP +aaf +aaf +bpK +bpK +bpK +bwx +bpK +bpK +bpK +bso +bpK +bwx +bpK +bLp +bNn +bPe +bRk +bTC +bVF +bLp +aaa +bpI +biR +biR +bpI +biR +biR +blV +clD +blP +bnO +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(28,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +bgO +blP +bnP +aaa +bpK +bpK +bpK +buS +bwy +bpK +bAc +bpK +bwy +bwG +bHn +bpK +bLp +bNo +bPf +bRl +bTD +bVG +bLp +bYV +bYV +ccH +cep +bYV +bYV +aaf +aaf +bgP +blP +bnP +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(29,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +agg +agg +bgP +blP +bnQ +aaf +bpK +bpK +btw +buT +bwz +byo +bAd +byt +byq +bFv +byq +btw +bLp +bNp +bLp +bRm +bTE +bLp +bLp +bYW +caV +ccI +bYX +cfM +bYV +bYV +aaf +bgO +blP +bnO +agg +agg +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(30,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaa +biN +bko +blP +bnP +aaa +bpK +bso +btx +buU +bwA +byp +bAe +byp +byp +bFw +bHo +bJl +bLq +bNq +bPg +bRn +bTF +bNq +bNp +bYX +caW +ccJ +ceq +cfN +chj +bYV +bYV +bgO +blP +bJr +blN +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(31,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +bgO +biO +bkp +blQ +bnR +bpJ +bpJ +bpJ +bty +buV +bwB +byq +byq +bBM +byq +byq +bHp +bJm +bLp +bNr +bPh +bRo +bTG +bVH +bLp +bYY +caX +ccK +cer +cfO +chk +ciR +ckt +clE +cna +coF +cqg +bnO +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(32,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +bgP +biP +bkq +blR +bnP +bpK +bpK +bsp +btz +buW +bwB +bpK +bAf +bpK +bpK +bFx +bHp +bJn +bLr +bNs +bPi +bRp +bTH +bVI +bLr +bYZ +caY +ccL +ces +caX +caW +ciS +bYV +bgO +biP +coG +blR +bnP +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(33,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +bgO +biP +bkr +blS +bnS +bpK +bpK +bsq +btA +buX +bwC +byr +bAg +bBN +bpK +bFy +bHq +bAd +bLs +bNt +bPj +bRq +bTI +bVJ +bXn +bZa +caZ +ccM +cet +cfP +chl +ciT +cep +clF +biP +bkr +blR +bnO +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(34,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +bgP +biP +bkq +blR +bnP +bpK +bpK +bsr +btz +buY +bwB +bpK +bAh +bpK +bpK +bFz +bHr +bJo +bLt +bNu +bPk +bRr +bTJ +bVK +bLt +bZb +cba +ccN +ceu +caX +caW +ciU +bYV +bgO +biP +coG +blR +bnP +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(35,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +bgO +biQ +bks +blT +bnT +bpL +bpL +bpL +btB +buZ +bwD +btB +btB +bBO +btB +bFA +bHp +bJp +bLu +bNr +bPl +bRs +bTK +bVL +bLp +bYY +cbb +ccO +cev +cfQ +chm +ciV +cku +clG +cnb +coH +cqh +bnO +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(36,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaa +biR +bkt +blP +bnP +aaa +bpK +bso +btx +bva +bwE +bys +bAi +bys +bys +bFB +bHs +bJq +bLv +bNq +bPm +bRt +bTL +bVM +bLp +bZd +caW +ccJ +cew +cfR +chn +bYV +bYV +bgO +blP +bJk +blV +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(37,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +agg +agg +bgP +blP +bnQ +aaf +bpK +bpK +btw +bvb +bwF +byt +bAd +byo +byq +bFC +byq +btw +bLp +bNp +bPn +bRu +bTE +bLp +bLp +bYW +cbc +ccP +bYX +cfS +bYV +bYV +aaf +bgO +blP +bnO +agg +agg +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(38,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +bgO +blP +bnP +aaa +bpK +bpK +bpK +bvc +bwG +bpK +bAj +bpK +bDD +bFD +bwy +bpK +bLp +bNw +bPo +ebZ +bTM +ejx +bLp +bYV +bYV +ccQ +cep +bYV +bYV +aaf +aaf +bgP +blP +bnP +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(39,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +bgO +blP +bnP +aaf +aaf +bpK +bpK +bpK +bwx +bpK +bpK +bpK +bso +bpK +bwx +bpK +bLp +bNx +bPp +bRv +bTB +bVN +bLp +aaa +bpM +biN +biN +bpM +biN +biN +blN +clH +blP +bnO +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(40,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +bgO +blP +bnO +aaf +aaf +aaf +bpK +bpK +bpK +bpK +bpK +bpK +bpK +bpK +bpK +bpK +bLp +bNy +bPp +bRj +bTC +bVO +bLp +bNB +bHj +bww +bww +cfL +bnM +ciW +bnM +bnM +cnc +bnP +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(41,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +bgO +blP +bnU +bpM +biN +biN +biN +bpM +biN +biN +bpM +biN +biN +bpM +biN +aaa +bLp +bNz +bPq +bRw +bTC +bVP +bLp +bgO +bHk +ccR +biR +blV +biR +biR +blV +biR +biR +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(42,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +bgP +blU +bnM +bnM +bnM +bnM +btC +buR +bww +bww +bww +bBP +bww +bww +bHt +bnP +bLp +bNw +bPr +bRt +bTL +efJ +bLp +bgO +bHk +bnO +agg +agg +aaf +agg +agg +agg +aaf +agg +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(43,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaa +blV +biR +biR +blV +biR +biR +blV +biR +biR +blV +biR +blV +bkt +bHk +bnQ +bLp +bLp +bPn +bRx +bTE +bLp +bLp +bNB +bHk +bnP +agg +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(44,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +agg +agg +agg +aaf +agg +agg +agg +aaf +agg +agg +agg +agg +agg +bgP +bHk +bJr +biN +bNA +bPs +bRy +bTN +bnU +biN +bko +bHk +bnO +agg +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(45,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +agg +bgO +bHu +bJs +bLw +bww +bPt +bRz +bTO +bww +bww +bww +bHl +ccS +aaf +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(46,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaf +aaa +bkt +bJt +bJk +bNj +bPu +bRA +blR +bnN +biR +blV +biR +aaa +agg +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aaa +aaH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(47,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +agg +agg +bgP +bJu +bnO +bNB +bPu +ebV +blR +bnQ +agg +agg +agg +aaf +agg +aaf +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(48,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaa +aaf +aaa +aaf +aaa +bJv +aaa +bNB +bPu +bRC +blR +bnQ +aaa +aaf +aaa +aaa +aaa +aaf +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaa +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(49,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +agg +aaa +aaf +aaa +bJv +aaa +bNB +bPu +bRB +blR +bnQ +aaa +aaf +aaa +aaa +aaa +agg +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +dBa +dAZ +dBa +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(50,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaa +agg +aaf +aaf +aaf +bJv +aaf +bNC +bPu +bRD +bTP +aGe +aaf +aaf +aaf +aaf +aaf +agg +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +dAZ +dBa +dFD +dBa +dAZ +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(51,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +agg +aaa +aaf +aaa +bJv +aaa +bgP +bPv +bRE +bTQ +bnO +aaa +aaf +aaa +aaa +aaa +agg +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +dBa +dBa +dEw +dFE +dHn +dBa +dBa +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(52,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +agg +aaa +aaf +aaa +bJv +aaa +bND +biR +bRF +biR +bVR +aaa +aaf +aaa +aaa +aaa +aaf +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aaf +aaf +dAZ +dAZ +dDG +dEx +dFF +dHo +dHV +dAZ +dAZ +aaf +aaf +aaH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(53,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaa +agg +aaf +aaf +aaf +bJv +aaf +bNE +aaf +bRG +aaf +bNE +aaf +aaf +aaf +aaf +aaf +agg +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dBa +dCk +dDH +dDH +dFG +dHp +dFF +dII +dBa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(54,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaa +aaf +aaa +aaf +aaa +bJv +aaa +bNF +aaa +bRG +aaa +bVS +aaa +aaf +aaa +aaa +aaa +agg +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aaf +aaf +dAZ +dAZ +dDI +dEy +dDH +dHq +dHW +dAZ +dAZ +aaf +aaf +aaH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(55,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +agg +aaa +aaf +aaa +bJv +aaa +aaf +bPw +bRG +bTR +aaf +aaa +aaf +aaa +aaa +aaa +agg +aaa +agg +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +dBa +dBa +dEz +dFF +dHr +dBa +dBa +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(56,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +agg +aaa +aaf +aaa +bJv +aaa +aaf +aaa +bRH +aaa +aaf +aaa +aaf +aaa +aaa +aaa +agg +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +dAZ +dBa +dFH +dBa +dAZ +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(57,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaa +agg +aaf +aaf +aaf +bJw +bLx +bNG +aaf +bRI +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +dBa +dFI +dBa +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(58,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaa +aaf +aaa +aaf +aaa +aaf +aaa +bJv +aaa +bRJ +aaa +aaf +aaa +aaf +aaa +aaa +aaa +agg +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaa +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(59,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +agg +aaa +aaf +aaa +aaf +aaa +bJv +aaa +bRJ +aaa +aaf +aaa +aaf +aaa +aaa +aaa +agg +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(60,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +agg +aaf +aaf +aaf +aaf +aaf +bJv +aaf +bRJ +aaf +aaf +aaf +aaf +aaf +aaf +aaf +agg +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aaa +aaH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(61,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaa +aaf +aaa +aaa +aaa +aaf +aaa +bJv +aaa +bRJ +aaa +aaf +aaa +aaf +aaa +aaa +aaa +agg +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +eaT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(62,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +agg +aaa +aaa +aaa +aaf +aaa +bJv +aaa +bRJ +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaf +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(63,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaa +agg +aaf +aaf +aaf +aaf +aaf +bJv +aaf +bRI +aaf +aaf +aaf +aaf +aaf +aaf +aaf +agg +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(64,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +agg +aaa +aaa +aaa +aaf +aaa +bJv +aaa +bRJ +aaa +aaf +aaa +aaf +aaa +aaa +aaa +agg +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(65,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +YGI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaa +aaf +aaa +aaa +aaa +aaf +aaa +bJv +aaa +bRJ +aaa +aaf +aaa +aaf +aaa +aaa +aaa +agg +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(66,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaf +aae +aaf +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +agg +aaf +aaf +aaf +aaf +aaf +bJv +aaf +bRJ +aaf +aaf +aaf +aaf +aaf +aaf +aaf +agg +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(67,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaf +aae +aae +aaa +aaf +aaa +aaf +aaa +aae +aae +aaf +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaf +aaa +bJv +aaa +bRJ +aaa +aaf +aaa +aaf +aaa +aaa +aaa +agg +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(68,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaf +aaa +aaf +aaa +alO +ebB +anZ +aaa +aaf +aaa +aaf +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +agg +aaf +agg +agg +agg +aaf +agg +agg +agg +aaf +agg +aaf +aaf +bJv +aaa +bRJ +aaa +aaf +aaa +aaf +aaa +aaa +aaa +agg +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(69,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +alO +ebB +anZ +aaa +alO +amW +anZ +aaa +alO +ebB +anZ +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaa +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaa +bJv +aaf +bRI +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(70,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +alO +amW +anZ +aaa +alO +amW +anZ +aaa +alO +amW +anZ +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +agg +agg +aaf +agg +agg +agg +agg +aaf +agg +agg +agg +aaf +bJv +aaa +bRJ +aaa +aaf +aaa +aaf +aaa +aaf +agg +agg +agg +agg +aaf +agg +agg +aaf +agg +agg +agg +agg +agg +agg +aaf +aaf +aaf +aaf +aaH +aaf +aaf +agg +agg +agg +aaf +agg +agg +agg +aaf +agg +agg +aaf +agg +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(71,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaf +alO +amW +anZ +aaf +alO +amW +anZ +aaf +alO +amW +anZ +aaf +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaa +agg +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +agg +aaa +bJv +aaa +bRJ +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaH +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaf +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(72,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +alO +amW +anZ +aaa +apD +amW +anZ +aaa +alO +amW +anZ +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +agg +aaf +btD +btD +btD +btD +btD +btD +btD +aaf +aaf +aaf +bJv +aaf +bRJ +aaf +aaf +aaf +agg +agg +agg +aaf +agg +agg +agg +aaf +agg +agg +agg +aaf +agg +agg +agg +aaf +agg +agg +agg +aaf +aaf +aaH +aaf +agg +agg +agg +aaf +agg +agg +agg +aaf +agg +aaf +agg +agg +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(73,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaf +aae +aae +aaa +alO +amW +anZ +aaa +aaf +amX +aaf +aaa +alO +amW +anZ +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +agg +aaf +btD +bwH +bwH +bAk +bwH +bwH +btD +aaf +agg +aaa +bJv +aaa +bRJ +aaa +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaH +aaa +aaf +aaa +aaf +aaf +aaf +aaa +aaf +aaf +aaf +aaa +aaf +aaf +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(74,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaf +aaf +aaf +aaf +amX +aaf +aaf +aaf +apE +aaf +aaf +aaf +amX +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaa +aaf +aaf +btD +bwH +byu +byv +byw +bwH +btD +aaf +agg +aaa +bJv +aaa +bRJ +aaa +aaf +bVT +bZe +bZe +bZe +bVT +bZe +bZe +bZe +bVT +bZe +bZe +bZe +bVT +bZe +bZe +bZe +bVT +bZe +bZe +bZe +bVT +aaf +aaH +bWg +bWg +cJc +bWg +bWg +bWg +cJc +bWg +bWg +bWg +cJc +bWg +bWg +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(75,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaf +aiV +ajJ +ajJ +ajJ +ajJ +ajJ +aoG +apE +aqX +ajJ +ate +auu +apE +awP +axK +axK +axK +axK +ate +apE +apE +aaf +aaH +aaH +aaH +aaH +aaH +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +agg +aaf +btD +bwH +byv +bAl +bBQ +bwH +btD +aaf +aaf +aaf +bJv +aaf +bRI +aaf +aaf +bVT +bVT +bVT +bVT +bVT +bVT +bVT +bVT +bVT +bVT +bVT +bVT +bVT +bVT +bVT +bVT +bVT +bVT +bVT +bVT +bVT +bWg +cEM +bWg +chC +cJd +cKU +bWg +cOb +cQb +cRv +bWg +cUW +cWy +cBl +bWg +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(76,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaf +aaf +aaf +aaf +amY +aaf +aaf +aaf +apE +aaf +aaf +aaf +amY +aaf +aaf +aaf +aaf +aaf +aaf +aaf +apE +aaf +aHA +aaf +aaa +aaf +aaH +aaa +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +agg +aaf +btD +bwH +byw +byv +byu +bwH +btD +aaf +agg +aaa +bJv +aaa +bRJ +aaa +aaf +bVT +bZe +bZe +bZe +bVT +bZe +bZe +bZe +bVT +bZe +bZe +bZe +bVT +bZe +bZe +bZe +bVT +bZe +bZe +bZe +bVT +cDx +cme +bWg +cHH +cJe +cKV +bWg +cOc +cQc +cbu +bWg +cUX +cWz +cYo +bWg +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(77,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaf +aaf +aaa +alO +amZ +anZ +aaa +aaf +amY +aaf +aaa +alO +amZ +anZ +aaa +aaf +aaa +aaa +aaf +aBX +aEN +aBX +aaH +aIN +aKf +aIN +aNC +aaf +agg +aaf +aaf +agg +agg +agg +agg +agg +aaf +agg +agg +agg +agg +agg +aaf +agg +aaf +agg +aaf +btD +bwI +byx +bwH +bBR +bDE +btD +aaf +aaf +aaa +bJv +aaa +bRJ +aaa +bVT +bVT +bVT +aaf +aaa +cex +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +cvY +aaa +aaf +bVT +bVT +bVT +epK +bWg +bWg +chF +bWg +bWg +bWg +chF +bWg +bWg +bWg +chF +bWg +bWg +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(78,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +alO +amZ +anZ +aaa +alO +amZ +anZ +aaa +alO +amZ +anZ +aaa +agg +aaa +aaf +aaf +aBX +aEO +aBX +aaH +aBZ +aKg +aBZ +aND +aPf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaa +aaf +btD +bwJ +byy +bAm +byy +bDF +btD +aaf +bJx +bLx +bNH +aaf +bRJ +aaf +bVT +bXo +bZf +bZf +aaa +cey +cfT +cfT +ciX +cfT +cfT +ciX +cfT +cfT +ciX +cfT +cfT +cvZ +aaa +bZf +bZf +cCm +bVT +bZD +cGp +cHI +cJf +cHI +cMp +cOd +cQd +cHI +cHI +cMp +cWA +cYp +bWg +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(79,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaf +alO +amZ +anZ +aaf +alO +amZ +anZ +aaf +alO +amZ +anZ +aaf +agg +aaf +aaf +aBX +aBX +epD +aBX +aBZ +aBZ +aKh +aBZ +aBZ +aPg +agg +agg +agg +agg +agg +aaf +agg +agg +agg +agg +agg +aaf +agg +agg +agg +agg +agg +aaf +aaf +btD +bwK +byz +eqe +bBS +bDG +btD +aaf +bJv +aaf +aaf +aaf +bRJ +aaf +bVT +bXo +bZf +cbd +aaf +cez +cfU +cho +ciY +cho +cho +ciY +cho +cho +ciY +cho +cuI +cez +aaf +czj +bZf +cCm +bVT +cyh +duO +ceO +cJg +cdj +cMq +cMq +bZC +bZD +cdj +erY +duO +bZC +cJc +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(80,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +alO +amZ +anZ +aaa +alO +amZ +anZ +aaa +alO +amZ +anZ +aaa +agg +aaa +aaf +aBY +aDs +aEP +aGf +aBZ +aIO +aKi +aLN +aNE +aPh +aaf +aaf +aaa +aaf +aaf +aaf +aaa +aaf +aaf +aaf +aaa +aaf +aaf +aaf +aaa +aaf +aaf +aaf +aaf +btD +bwL +byA +bAn +bBT +bDH +btD +bHv +bJy +bHv +bHv +aaf +bRJ +aaf +bVT +bXp +bZg +cbd +aaa +cez +cfV +clJ +aaf +aaf +cho +aaa +aaH +aaf +aaf +coI +cuJ +cez +aaa +czj +cAU +cCn +bVT +bZD +duO +cHJ +cHJ +cHJ +cHJ +cHJ +cHJ +cHJ +cHJ +cHJ +cWB +cbu +bWg +aaf +aaf +aaa +dcs +dcs +aHW +dcs +aHW +dcs +dcs +aaa +aaa +agg +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(81,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +alO +ebC +anZ +aaa +alO +amZ +anZ +aaa +alO +ebC +anZ +aaa +aaf +aaa +aaf +aBY +aDt +aEQ +aGg +aBZ +aIP +aKj +aLO +aBZ +aPg +aNV +aNV +aNV +aNV +aNV +aNV +aNV +aNV +aNV +aNV +aNV +aNV +aNV +aNV +aNV +aNV +aNV +aaf +aaf +btD +bwM +byB +bAo +bBU +bDI +btD +bHw +bJz +bLy +bHv +bPx +bRK +bPx +bVT +bXq +bZf +cbd +aaf +ceA +cfW +aaf +aaa +aaa +aaH +aaf +aaH +aaa +aaa +aaf +cuK +cwa +aaf +czj +bZf +cAW +bVT +erJ +duK +cHJ +efW +cKW +cMr +cOe +cQe +cRw +cTi +cHJ +cWC +cYq +bWg +aaf +aaf +aaf +dcs +aJm +egl +dks +egm +diJ +dcs +aaf +aaf +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(82,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaa +aaf +aaa +aaf +aaa +alO +ebC +anZ +aaa +aaf +aaa +aaf +aaa +agg +aaf +aaf +aBY +aDu +aER +aGh +aBZ +aIQ +aKk +aLP +aBZ +aPh +aNV +aSH +aUh +aSH +aNV +aZi +baG +aZi +aNV +bfa +bgQ +bfa +aNV +blW +bnV +blW +aNV +aaf +aaf +btD +bwN +byC +bAp +bBV +bDJ +btD +bHx +epF +bLz +bHv +bPy +bRL +bTS +bVT +bXr +bZh +cbd +aaa +cez +cfV +aaf +aaa +aaH +aaH +aaH +aaH +aaH +aaa +aaf +cuJ +cez +aaa +czj +cAV +cCo +bVT +cEN +duM +cHK +cJi +cKX +cMs +cOf +cQf +cRx +cTj +cHJ +cWD +cYr +bWg +aHW +dcs +aHW +dcs +aPD +diG +dkt +dlW +aNZ +dcs +aHW +dcs +aHW +aHW +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(83,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +agg +agg +aaf +agg +aaf +aaa +aaf +aaa +aaf +aaa +aaf +agg +aaf +agg +agg +aaf +aaf +aBY +aBY +aES +aGi +eco +ecq +aKl +aLO +aBZ +aPg +aNV +aSI +aUi +aSH +aNV +aZj +baH +aZi +aNV +bfb +bgR +bfa +aNV +blW +blW +bpN +aNV +aaf +btD +btD +btD +byD +bAq +bBW +btD +btD +bHy +bJA +bLA +bNI +bPz +bRM +bTT +bVT +bVT +bXq +cbd +aaH +cez +cfV +cfV +aaH +aaH +clJ +cho +coI +aaH +aaH +aaH +cuJ +cez +aaH +czj +cAW +bVT +bVT +bZD +cGt +cUY +cJj +cKY +cMt +cOg +cQg +cKY +cTk +cUY +cWE +cYq +bWg +daN +dct +ddL +daP +aMr +diH +dku +dlW +aNZ +ddQ +dqt +drZ +daT +aHW +aaf +agg +agg +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(84,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +agg +agg +agg +agg +agg +agg +agg +agg +agg +aaf +aaf +aaf +aaf +aaf +aBZ +aDv +aET +aGj +aHB +aIR +aKm +aLQ +aBZ +aPh +aNV +aSJ +aUj +aWb +aNV +aZk +baI +bcd +aNV +bfc +bgS +biS +aNV +blX +bnW +bpO +aNV +aaH +btD +bvd +bwO +byE +bAr +bBX +bDK +bFE +bHz +bJB +bLB +bNJ +bPA +bRN +bTU +bVT +bVT +bXq +bZf +aaf +ceA +cfW +aaa +aaf +aaH +cfV +cnd +cuJ +aaH +aaf +aaa +cuK +cwa +aaf +bZf +cAW +bVT +bVT +cEO +cGu +cHM +cJk +cKZ +cMu +cOh +cQh +cOh +cTl +cUZ +cWF +cYs +bWg +daO +dcu +ddM +dfE +dgR +dgR +dkv +dgR +dny +ddM +dqu +dsa +dlX +dcs +aaf +aaf +aaf +aaf +agg +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(85,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaa +aaf +aaa +aaa +agg +aaa +aaH +aCa +aDw +aEU +aGk +aHC +aIS +aKn +aLR +aNF +aPi +aNV +aSK +aIU +aWc +aNV +aSK +aIU +aWc +aNV +aSK +aIU +aWc +aNV +aWc +aIU +aSK +aNV +aaH +btE +bve +bwP +byF +bAs +bBY +bDL +bFF +bHA +bJC +ejw +bNK +bLC +bRO +bTV +bVT +bVT +bXq +cbd +aaH +cez +cfV +aaH +aaH +aaH +clL +cne +coK +aaH +aaH +cuJ +cuJ +cez +aaH +czj +cAW +bVT +bVT +cEP +duO +cHJ +cJl +cLa +cMv +cOi +cQi +cRy +cTm +cHJ +cWG +cYt +bWg +daP +dcv +ecS +aKI +aPD +diI +dkw +dlX +diJ +aNZ +aMr +dfL +dtq +aHW +aaf +aaa +aaa +aaf +agg +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(86,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +agg +agg +agg +agg +agg +agg +agg +aaf +aaf +aBZ +aDx +aEV +aGl +aHD +aIT +aKo +aLS +aBZ +aaf +aNU +aSL +aNU +aWd +aNU +aSL +aNU +aWd +aNU +aSL +aNU +aWd +aNU +aWd +aNU +aSL +aNU +aaH +btD +bvf +bwO +byG +bAt +bBZ +bDM +bDM +bDM +bDM +bDM +bDM +bDM +bDM +bDM +bVT +bXs +bZi +cbd +aaa +cez +cfV +aaf +aaa +aaH +aaH +aaH +aaH +aaH +aaa +aaf +cuJ +cez +aaa +czj +cAX +cCp +bVT +cEQ +duM +cHJ +cHJ +cLb +cMw +cLb +cMw +cLb +cHJ +cHJ +cWH +cJw +bWg +daQ +dcw +ddN +dfF +dgS +dgS +dgS +dgS +dgS +doG +aMr +dsb +diK +dcs +dcs +dcs +aaa +aaf +agg +aaf +aaf +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(87,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaa +agg +aaa +aaf +aaa +aaf +aaa +aaf +aaf +aaf +aaf +aaf +aBZ +aDy +aEW +aGm +aHE +aIU +ecr +aIU +aIZ +aIZ +aIZ +aSM +aIU +aWe +aIZ +aSM +aIU +aWe +aIZ +aSM +aIU +aWe +aIZ +aWe +aIU +aSM +aIZ +aIZ +btF +bvg +bvg +byH +bAu +bvg +bDM +bFG +bHB +bJD +bLD +bNL +bPC +bRP +bTW +bVT +bXq +bZf +cbd +aaf +ceA +cfW +aaf +aaa +aaa +aaH +aaf +aaH +aaa +aaa +aaf +cuK +cwa +aaf +czk +bZf +cAW +bVT +cJA +duL +cHJ +cJm +cLc +cMx +cOj +cQj +cRz +cTn +cHJ +chI +cYu +bWg +daR +dcx +ddO +dfG +dfL +dfL +dkx +dkx +diJ +doH +dqv +aNZ +aNZ +aPD +diJ +dcs +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(88,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +agg +aaf +asa +atf +asa +atf +asa +atf +asa +atf +aaH +aBZ +aDz +aEW +aGn +aHF +aIV +aKp +aLT +aNG +aPj +aQZ +aSN +aUk +aWf +aXM +aZl +aPj +bce +bdo +aZl +aPj +aWf +bku +blY +bnX +bpQ +brb +bss +btF +bvh +bwQ +byI +bAv +bCa +bDM +bFH +bHC +bJE +bLE +bLE +bLE +bRQ +bTX +bVT +bXt +bZg +cbd +aaa +cez +cfV +clL +aaf +aaf +aaH +aaa +cne +aaf +aaf +coK +cuJ +cez +aaa +czj +cAU +cCq +bVT +cER +duM +cHJ +cJn +cLd +cMy +cOk +cMy +cRA +egb +cHJ +cWJ +cYu +bWg +daS +dcy +ecT +dfH +dgT +dgT +diJ +dlY +dfL +doH +diJ +dsc +dtr +dma +egp +aHW +aaf +aaH +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(89,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +agg +aaa +asb +atg +auv +atg +asb +atg +auv +ath +atf +aCa +aDA +aEX +aGo +aHG +aIW +aKq +aLU +aNH +aPk +aRa +aSO +aUl +aWg +aXN +aZm +baJ +bcf +aXN +bfd +bgT +biT +bkv +blZ +bnY +bpR +brc +bst +btF +bvi +bwR +byJ +bAw +bCb +bDM +bFI +bHD +bJF +bLF +bNM +bPD +bRR +bTY +bVT +bXq +bZf +cbd +aaf +ceB +cfX +chs +chs +chs +chs +cnf +chs +chs +chs +chs +cuL +cwb +aaf +czj +bZf +cAW +bVT +cES +duO +cHJ +cJo +cLe +cMz +cOl +cQk +cRB +cTp +cHJ +cWJ +cYv +bWg +daT +dcz +ddP +dfI +dgU +dgT +dky +dgU +aPD +doH +aPD +dsc +dts +diJ +dwe +dcs +aaa +aaH +aaf +aaf +aaf +aaH +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(90,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +agg +agg +agg +agg +agg +aaf +agg +agg +aaf +agg +aaf +asb +asb +asb +asb +asb +asb +asb +asa +awQ +aCa +aDB +aEY +aGp +aHH +aIU +aKq +aLV +aNI +aPl +aRb +aSP +aUm +aUm +aUm +aZn +aUm +aUm +aUm +bfe +bgU +biU +aPw +bma +bnZ +bpS +baK +bsu +btG +bvj +bwS +byK +bAx +bCc +bDM +bFJ +bHD +bJG +bLG +bNN +bPE +bRS +bTZ +bVT +bXu +bZj +cbe +aaa +aaf +aaa +aaf +ceC +ceC +ceC +cng +ceC +ceC +ceC +aaf +aaa +aaf +aaa +czl +cAY +cCr +bVT +cER +duN +cHN +cJp +cLf +cMA +cOl +cQl +cRC +cTq +cHJ +cWK +cJA +bWg +egf +dcz +ecU +dfI +dgU +aPD +dkz +dfL +dgT +doH +aNZ +dsc +dtt +aNZ +egq +aHW +aaf +aaH +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(91,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +aaa +aaa +aaf +aaa +aaf +aaa +aaf +aaf +aaf +aaf +aaf +asb +ath +auw +ath +awQ +ath +auw +ath +atf +aBZ +aDC +aEZ +aGq +aHI +aIU +aKq +aLW +aNJ +aPm +aRc +aSQ +aUn +aWh +aWh +aZo +baK +aWq +aWq +bff +bgV +biV +bkw +bmb +boa +bpT +brd +bsv +btH +bvk +bwR +byL +bAy +bCd +bDM +bFK +bHE +bJH +bLH +bNO +bPF +bRT +bUa +bVT +bVT +bZk +bVT +bVT +ceC +ceC +ceC +ceC +ckv +clM +cnh +clM +cqi +ceC +ceC +ceC +ceC +bVT +bVT +cAZ +bVT +bVT +cET +cGx +cHO +cJq +cLg +cMB +cOm +cQm +cRD +cTr +cVa +cWL +cYw +cuT +ecQ +ecR +ddR +dfI +aPD +diJ +diJ +dfL +dkx +doH +aMr +dsd +dtu +aPD +dwg +dcs +aaa +aaH +aaf +aaf +aaf +aaH +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(92,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +aaf +agg +agg +agg +agg +aaf +agg +aaf +aiW +aoK +aoK +asc +aoK +aoK +aoK +aiW +aoK +aoK +aoK +asc +aiW +aBZ +aFa +aGr +aHJ +aIX +aKr +aLX +aNK +aPn +aRd +aSR +aUo +aWi +aXO +aUo +baL +bcg +aSR +bfg +bgW +biW +aPw +bmc +bob +bpU +bre +bsw +btI +bvl +bwT +byM +bAz +bCe +bDM +bFL +bHF +bJI +bLI +bJI +bPG +bRU +bUb +bVT +bXv +bZl +cbf +ccT +ceD +ceD +ceD +ceC +ckw +clN +clN +clN +cqj +ceC +csV +ceD +cwc +cxJ +cbf +cBa +cCs +bVT +cEU +cGy +cHM +cJr +cLh +cMC +cOl +cQn +cRE +cRy +cHN +cWM +cYx +cZI +daV +dcA +ddS +dfJ +dgV +dgV +dgV +dlZ +dnz +doI +aNY +dse +dtv +dcs +dcs +dcs +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aae +aaf +aBW +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(93,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaa +aaf +aaa +aaf +aaf +aaf +aaf +aaf +aaf +aiW +apF +aqY +asd +axL +aux +aux +awR +ehS +axL +axL +asd +aCb +aBZ +aFb +aGs +aHK +aIY +aKs +aLY +aNL +aPm +aRc +aSS +aUp +aWj +aXP +aZq +aZq +eqP +bdp +bfh +bgW +biX +bkx +bmd +boc +bpV +brf +bsx +btJ +bvg +bvg +byH +bAA +bvg +bDM +bFM +bHG +bJJ +bLJ +bNP +bPH +bRV +bDM +bVT +bXw +epI +bVT +ccU +ceE +cfY +cht +ciZ +ckw +clN +clN +coN +cqk +ciZ +csW +cuM +cht +ccU +bVT +epJ +bXw +bVT +cEV +cGz +cHJ +efX +cLi +cMD +cOn +cQo +cRF +cTs +cHJ +cWN +cYy +cZJ +daW +dcB +ddT +dfK +dgW +ecX +dkA +ecY +ecZ +doJ +eda +dfL +dtw +aHW +aaf +aaa +aaa +aaf +agg +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaf +aBW +aae +aae +aaa +aaa +aaf +aaa +aaa +aae +aae +aaf +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(94,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +agg +aaf +aiW +aiW +aiW +aiW +aiW +aiW +aiW +ept +epv +ase +aqZ +auy +avN +awS +axM +ehT +azZ +aAV +aCc +aBZ +aBZ +aGt +aBZ +aIZ +aKt +aLZ +aNM +aPo +aRd +aST +aUq +aWk +aXQ +aZr +baL +bch +epU +bfi +bgX +biY +bky +bme +bod +bpW +brg +bsy +btK +bvm +bwU +byN +bAB +bCf +bDN +bFN +bHH +bJK +bDM +bNQ +bPI +bRW +bLJ +bVU +bXx +bZm +cbg +ccV +ceF +cfZ +chu +cja +ckx +clP +clN +coO +cql +cja +csX +cfZ +ccV +ccV +czm +bZm +cCt +bVT +cYz +cGA +cHJ +cJt +cLj +cME +cME +cQp +cRG +cTt +cHJ +cWD +cYz +bWg +daX +dcC +ddU +dfL +dfL +dfL +dfL +dgT +diL +dfL +dfL +dgT +ddV +dcs +aaf +aaf +aaf +aaf +agg +aaf +aaf +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaf +aaa +aaa +dZB +eab +ear +aaa +aaa +aaf +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(95,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +agg +aaf +aiW +ajK +akP +akP +akP +akP +aoH +apH +ara +asf +atj +auz +epx +awT +axN +aza +epx +aAW +aCd +aDD +azd +aGu +aHL +aIZ +aKu +aMa +aNL +aPm +aRe +aSU +aUr +aWl +aWl +aWl +baM +aSY +bdq +bfj +epV +biZ +aPw +bmf +aIU +aIZ +aIZ +aIZ +btF +bvg +bvg +byO +bAC +bwR +bDO +bFO +bHI +bwR +bDM +bNR +bPJ +bRX +bUc +bVV +bXy +bZn +cbh +ccW +ceG +cga +chv +cjb +cky +clQ +clN +coP +cqm +cjb +chv +cuN +cwd +cxK +czn +bZp +cbh +bVT +cEX +cGB +cHJ +cJu +cLk +cMF +cOo +cQq +cRH +cTu +cHJ +cWD +cYA +bWg +daT +egh +ddV +dfM +ddV +diL +aJm +dmb +dnA +doK +dqw +YGO +aJm +aHW +aaf +aaa +aaa +aaf +agg +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +dZB +eab +ear +aaa +dZB +eac +ear +aaa +dZB +eab +ear +aaa +aBW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(96,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +agg +aaa +aiW +ajL +akQ +ajL +ajL +ajL +aoH +apI +arb +asg +arm +ebT +avO +auA +axO +atk +atk +aAX +aCe +aDE +aFc +aGv +aHM +aJa +aKv +aMb +aNL +aPm +aRf +aSV +aUs +aIU +aSV +aIU +aSV +aSV +bdr +bfk +bgY +bja +bkz +bmg +boe +bpX +brh +aIZ +efC +bvn +bwV +byP +bAD +bCg +bDP +bFP +bHJ +bJL +bDM +bNS +bPK +bRY +bUd +bVW +bXz +bZo +cbh +ccW +ceH +cgb +chw +bVT +ckz +clR +cnm +clR +cqn +bVT +csY +ceM +cwe +cxK +czn +cBb +cCu +bVT +cEY +duO +cHJ +cHJ +cHJ +cHN +cOp +cHJ +cHJ +cHJ +cHJ +duO +cYz +bWg +bWg +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +dcE +aaf +agg +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +dZB +eac +ear +aaa +dZB +eac +ear +aaa +dZB +eac +ear +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(97,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaa +agg +aaf +aiW +ajM +ajL +ajL +ajL +ajL +aoH +apJ +arc +ash +atl +auB +auB +awU +atm +azc +aAb +aAY +aCf +aDF +aFd +aGw +aHN +aIZ +aKw +aMa +aNL +aPm +aRg +aIU +aUt +aWm +aXR +aZs +baN +bci +bds +bfl +bgZ +bjb +epX +epZ +bof +aUz +bri +aIZ +btM +bvo +bwR +byQ +bAE +bCh +bDQ +bDQ +bHK +bJM +bDM +bNT +bPJ +bRX +bPM +bVW +bXA +bZp +erp +ccW +ceI +ceM +chx +cjc +bVT +clS +bVT +clS +bVT +bVT +csZ +ceM +cwf +cxK +erI +bZp +cCv +cDy +cEZ +cGC +crJ +cmh +cLl +cMG +cOq +cLl +cRI +cMG +cmh +czC +cYB +cLl +daY +dcE +ddW +dfN +dgX +diM +dkB +dmc +dcE +doL +dqx +dsf +dtx +duE +dwh +dxn +dcE +aaf +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +dZB +eac +ear +aaf +dZB +eac +ear +aaf +dZB +eac +ear +aaf +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(98,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +aaf +aaa +aiW +ajL +ajL +akQ +ajL +YGJ +eqb +eqc +ard +asi +ehy +auC +auC +auC +ehy +azc +aAc +aAZ +aCg +aDG +aiW +aiW +aiW +aIZ +aKx +aMd +aNN +aPp +aRh +aSW +aUu +aWn +aXS +aZt +baO +bcj +bdt +bfm +bgY +bjc +bkA +bmh +bkA +bpY +brj +bsz +btN +bvp +bwW +byR +erc +bCi +bDR +bFQ +bHL +bJN +bLK +bNU +bPL +bRZ +bLJ +bVX +bXA +bZq +cbh +ccX +ceJ +cgc +chy +cjd +ckA +clT +cnn +coQ +cqo +crF +cta +cgc +ceJ +cxL +czn +bZq +cCw +cDz +cFa +cGD +bXM +cJv +bXM +cMH +bXM +cQr +cQr +cQr +cMH +cMH +cYC +cZK +cFn +dcE +ddX +dfO +dgY +dgY +dkC +dfP +dnB +deb +dfO +dsg +dgY +dkE +dwi +ddX +dcE +aaf +aaf +aaH +aaa +aaH +aaf +aaH +aaf +aaH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +dZB +eac +ear +aaa +dZB +eac +ear +aaa +dZB +eac +ear +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(99,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +agg +aaf +aiW +ajN +ajL +alQ +ana +ana +aoJ +apL +are +asj +ehy +auD +YGK +avP +axP +ehJ +ehy +aAY +ark +aDH +aiW +eeW +aHO +aIZ +aKy +aMe +aNL +aPm +aRg +aIU +aUv +aWo +aXT +aZu +baP +aIU +bdu +bfn +bgY +bjd +bkB +bmi +bog +bpZ +brk +aIZ +btF +btF +btF +byS +bAF +bCi +bDS +bFR +bHM +bJO +bDM +bDM +bPM +bDM +bDM +bNY +bXB +bZp +cbi +ccY +ccY +ccY +ccY +ccY +ccY +clU +cno +coR +ccY +ccY +ccY +ccY +ccY +cxM +czo +cBc +cCx +cDA +cFb +cGE +cHP +cJw +cHS +cHS +cHS +cHS +cHS +cHS +cHS +cHS +cHS +cJA +dba +dcF +ddY +dfP +dgZ +diN +dkD +dmd +dcE +doM +dfR +dkE +dty +duF +dkD +dxp +dcE +aaf +aaa +aaH +aaf +aaf +aaa +aaf +aaa +aaH +aaf +aaf +aaf +aaH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +agg +aaa +agg +agg +aaa +aae +aaa +dZB +eac +ear +aaa +aaf +ead +aaf +aaa +dZB +eac +ear +aaa +aaf +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(100,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +agg +aaa +aiW +ajL +ajL +ajL +ajL +ajL +epo +apM +arf +ask +ehy +auE +auE +auE +axQ +aze +aAd +aBa +aCh +aDI +aFe +aGy +aHP +aJb +aKz +aMf +aNO +aPm +aRg +aSX +aSV +aIU +aIU +aIU +baQ +aSV +bdv +bfn +bhb +bje +bkC +eqa +boh +bqa +brl +bsA +btO +bvq +bwX +byT +bAG +bCj +bDT +bFS +bHN +bJP +bLL +bNV +bPN +bSa +bUe +bVY +bXC +bZr +cbj +ccZ +ceK +ccZ +ceK +ccZ +erv +clV +cnp +coS +cqp +crG +cqp +crG +cqp +crG +czp +cBd +cCy +bVT +cFc +bZC +duO +cJx +cHS +cHX +cHX +cHX +cRJ +cHX +cHX +cHX +cHS +cJA +cFm +dcE +ddZ +dfQ +dha +diO +diO +dme +dnC +dkE +dfR +dsh +dsh +dsh +dwj +dfP +dcE +aaf +aaf +aaH +aaa +aaH +aaf +aaH +aaf +aaH +aaa +aaa +aaa +aaH +aaf +aaf +aaf +aaH +aaa +aaa +aaf +aaf +aaf +agg +aaf +aaf +aaf +aaf +aaf +aaf +aaa +aaa +ead +aaf +aaf +aaf +dVu +aaf +aaf +aaf +ead +aaf +aaa +aaa +aaf +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(101,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaa +agg +aaf +aiW +ajO +ajL +akR +anb +ajL +epo +apN +arg +asl +ehB +ebG +avQ +ebG +axR +ebG +axR +aBb +aCi +aDJ +aFf +aGz +aHQ +aJc +aKA +aMg +aNP +aPq +aRg +aSY +aUw +aWp +aXU +aZv +baR +aSU +bdw +bfo +bhc +bjf +bkD +bmj +boi +bqb +brm +bsB +btP +bvr +bwY +byU +bAH +bCk +bDU +bFT +bHO +bJQ +bLM +bNW +bPO +bSb +bUf +bVZ +bXD +bZs +cbk +cda +cda +cgd +cda +cda +cda +clW +cnq +coT +cqq +crH +ctb +cda +cwg +cxN +czq +cBe +cCz +bVT +cFd +bZC +cHQ +cJy +cHS +cMJ +cOr +cJH +cJH +cJH +cJH +cWO +cHS +cZL +esa +dcG +dea +dfR +dhb +diP +dkE +diT +dcE +doN +dfR +dsi +dtz +duG +diO +diT +dcE +aaf +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaH +aaf +aaf +aaf +aaH +aaa +aaa +aaa +aaH +aaf +aaf +aaH +aaa +aaa +agg +aaf +dVu +dVu +dVu +dVu +dVu +dVu +dVu +dVu +dVu +dVu +eaC +eaK +dVu +dVu +dVu +eaV +eaW +eaW +eaW +eaX +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(102,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaa +aaf +aaa +aiW +ajL +ajL +ajL +ajL +ajL +epo +apO +arh +asm +ehy +auF +auF +auF +axS +azf +epA +aBc +arj +aDK +aFg +aGA +aHR +aJd +aKB +aMh +aNQ +aPr +aRi +aSZ +aUx +aWq +aWq +aWq +aWq +aSZ +bdx +bfp +bhd +bjg +bkE +efx +boj +bqc +brn +aJd +btQ +bvs +bwZ +byV +bAI +bCl +bDV +bFU +bDQ +bJR +bLN +bNX +bPP +bSc +bUg +bWa +bXE +bZt +cbl +cdb +ceL +cge +chz +cje +ckB +clX +cnr +coU +cqr +crI +crI +cuO +cwh +cxO +czr +cBf +crI +crI +cFe +cBp +erO +cJz +cHS +cHX +cHX +cHX +cHX +cHX +cHX +cHX +cHS +cZL +dbc +dcE +deb +dfR +dhc +diQ +dkF +dmf +dcE +doO +dha +dfP +dtA +dsk +diO +doN +dcE +aaf +agg +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaH +aaf +aaf +aaf +aaH +aaa +aaa +aaH +aaf +aaf +aaf +aaf +dVu +aaf +aaf +aaf +aaf +aaa +aaa +eae +aaf +aaf +aaf +dVu +aaf +aaf +aaf +eae +aaf +aaa +aaa +aaf +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(103,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +agg +aaf +aiW +ajN +ajL +alR +anc +anc +aoL +apG +ari +asn +ehy +auG +YGL +avR +axT +ehJ +ehy +aBd +ark +aDL +aiW +aGB +aHS +aIZ +aKC +aMi +aNR +aPs +aRj +aTa +aUy +aWr +aXV +aWr +aWr +aWr +bdy +bfq +bhe +bjh +bkF +bml +bok +bqd +bro +aIZ +aIZ +aIZ +aIZ +aIZ +aIZ +bCm +bDW +bFV +bFQ +bJS +bvg +bNY +bPQ +bSd +bUh +bNY +bXF +bZu +cbm +ccW +ceM +cgf +chA +bVT +ckC +clY +cns +coV +ckC +crI +ctc +cuP +cwi +cxP +czs +cBg +cCA +crI +cFe +bZC +bZD +cJA +cHS +cHS +cOs +cHX +cHX +cTv +cOs +cHS +cHS +cZM +cFo +dcE +dec +dfQ +dhd +diR +dkG +dmg +dnB +doP +dfP +dsj +dtA +duH +dkD +dxr +dcE +aaf +agg +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaH +aaf +aaf +aaH +aaa +aaa +agg +aaf +dVv +aaf +aaa +aaa +aae +aaa +dZB +eaf +ear +aaa +aaf +eae +aaf +aaa +dZB +eaf +ear +aaa +aBW +aae +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(104,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +agg +aaa +aiW +ajL +ajL +ajL +ajL +ajL +aoI +apK +ebP +aso +ehy +auH +auC +auC +ehy +azg +aAe +aBe +aCj +aDM +aiW +aiW +aiW +aIZ +aKD +aMj +aNL +aPm +aRc +aTb +aUz +aWs +aUz +aUz +baS +bck +bdz +bfr +bhf +bji +epY +bmm +bol +bqe +brp +bsC +btR +bvt +bxa +byW +aIZ +bCn +bDX +bFW +bHP +bJT +bLO +bJU +bPR +bSe +bUi +bWb +bXG +bZv +cbn +cdc +ceN +cgg +efR +bVT +ckD +clZ +cnt +coW +cqs +crI +ctd +cuQ +cwj +erE +czt +cBh +cCB +crI +cFf +cGF +cHR +cJB +cHS +cMK +cOt +cQs +cRK +cTw +cVb +cWP +cHS +cJw +cFm +dcE +ded +dfS +dhe +diS +dkH +dme +dnB +doQ +dfQ +dsk +dtB +dtA +dwk +dxs +dcE +aaf +agg +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaf +aaf +aaf +agg +aaf +dVw +aaf +aaa +aaa +aae +aaa +dZB +eaf +ear +aaa +dZB +eaf +ear +aaa +dZB +eaf +ear +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(105,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +agg +aaf +aiW +ajL +ajL +ajL +ajL +ajL +epo +apQ +ebQ +epw +atm +auI +avS +auI +atl +azh +aAf +aBf +aCk +aDN +aFh +aGC +aHT +aIZ +aKD +aMk +aNL +aPt +aRk +aTc +aUA +aTc +aXX +aXX +baT +bcl +bdA +bfs +bhg +efv +aIZ +bmn +bom +bqf +brq +bsD +eqX +ehN +bvu +byX +aIZ +bCo +bDY +bFX +bHQ +bJU +bLP +bHQ +bPS +bSf +bUj +bLT +bXH +bZw +cbo +cdd +bVT +bVT +bVT +bVT +ckE +cma +cnu +coX +cqt +crI +cte +cuR +cwk +cxR +czu +cBi +cCC +crI +cFc +cGG +cHS +cJC +cHW +cML +cOu +cQt +cRL +cTx +cVc +cML +cHS +cZO +dbc +dcE +dee +dfT +dhf +diT +dkI +dmh +dnB +doR +dha +dsl +dtC +diT +diO +dxt +dcE +aaf +agg +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +agg +agg +agg +aaf +aaf +aaf +aaf +dVw +aaf +aaf +aaa +aae +aaf +dZB +eaf +ear +aaf +dZB +eaf +ear +aaf +dZB +eaf +ear +aaf +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(106,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +aaf +aaf +aiW +ajL +akR +ajL +akQ +ajL +eps +epu +arl +asp +atn +auJ +avT +awV +axU +azi +azi +aBg +aCl +aDO +aFi +aGD +aHU +aIZ +aKD +aMl +aNS +aPu +aRl +aTd +aUB +aWt +aXY +aZw +baU +bcm +bdB +bft +bhh +bjk +aIZ +bmo +bon +bqg +brr +bsE +btS +bvv +bxb +byY +bAJ +bCp +bDZ +bFY +bHR +bJV +bLQ +bNZ +bPT +bSg +bUk +bLT +bXI +bZx +cbp +cde +bVT +cgh +chC +bVT +ckF +cma +cnu +coY +cqu +crI +ctf +cuQ +cwl +cxQ +czv +cBh +cCD +crI +cFc +cGG +cHT +cJD +cHW +cMM +cOv +cQu +cRM +cQu +cVd +cWQ +cHS +cZL +dbc +dcE +dcE +dcE +dcE +diU +dkI +dmi +dcE +doS +dqy +diS +dtD +dhe +duI +deb +dcE +aaf +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +dUl +dVx +dUl +aaf +aaa +aae +aaa +dZB +eaf +ear +aaa +dZB +eaf +ear +aaa +dZB +eaf +ear +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(107,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaa +agg +aaf +aiW +ajP +akP +akP +akP +aoa +aiW +apR +ebR +asq +ato +auK +avU +epy +axV +azj +aAg +aBh +aCm +aDP +aFj +aGE +aHV +aIZ +aKE +aMm +aNT +aPv +aMm +aTe +aUC +aWu +aXZ +aZx +baV +bcn +bdC +aZx +bhi +bjl +aIZ +bmp +boo +bqh +brs +bsF +aWq +bvw +bxc +byZ +bAK +bCq +bEa +bFZ +bHS +bJW +bLR +bOa +bPU +bSh +bUl +bWc +bXI +bZy +cbq +cdf +bVT +cgi +chD +bVT +ckG +cmb +cnv +coZ +cqv +crI +efU +cuS +cwm +cxS +czw +cBj +cCE +crI +cFd +cGG +cHU +cJE +cLm +cMN +cOw +cQv +cRN +cTy +cVe +cWR +cHS +cZP +dbe +cDC +def +dfU +dcE +dcE +dkJ +dcE +dcE +doT +dqz +dsm +dtE +duI +dwl +dxv +dcE +aaf +aaf +aaf +aaf +aaH +aaa +aaH +aaf +aaf +aaf +agg +agg +aaf +agg +agg +agg +agg +agg +aaf +agg +agg +aaf +aaf +dUl +dVy +dUl +aaf +aaf +aBW +aaa +dZB +eag +ear +aaa +dZB +eaf +ear +aaa +dZB +eag +ear +aaa +aBW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(108,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +agg +aaf +aiW +aiW +aiW +aiW +aiW +aiW +aiW +apS +ebS +asr +atp +auL +avV +eqz +axW +azk +aAh +aBi +aCn +aiW +aiW +aiW +aiW +aJe +aIZ +aIZ +aIZ +aPw +aIU +aPw +aIZ +aSM +aIU +aWe +aIZ +aSM +aIU +aWe +aIZ +epW +aIZ +bmq +bop +bqi +brt +bsG +btT +bvx +bxd +bza +bAK +bCr +bEb +bGa +bHT +bJX +bLS +bOb +bPV +bSi +bUm +bLT +bXJ +bZz +cbr +cdg +bVT +cgj +chE +bVT +ckG +cmc +cnw +cpa +cqv +crI +crI +crI +crI +crI +crI +crI +crI +crI +cFg +cGG +cHV +cJF +cHW +cMO +cOx +cQw +cRO +cTz +cVf +cWS +cYD +cZQ +dbf +dcH +deg +dfV +bWg +diV +dkK +dmj +dcE +dcE +dcG +dcE +dtF +dcE +dcE +dcE +dcE +aaf +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaf +dUl +dUl +epQ +dUl +dUl +aaf +aae +aaa +aaa +aaf +aaa +aaa +dZB +eag +ear +aaa +aaa +aaf +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(109,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +aaf +aaa +aaf +aaa +aaf +aaa +aiW +apT +arn +ass +atq +auM +atq +awW +axX +azl +aAi +aBj +aCo +aiW +aaf +aaf +aaf +aaf +aaf +aaf +aNU +aPx +aNU +aPx +aNU +aSL +aNU +aWd +aNU +aSL +aNU +aWd +bhj +aJg +aIZ +bmr +boq +bqj +bru +bsH +btU +bvy +bxe +aIZ +bAK +bCs +bEc +bGb +bHU +bJY +bLT +bLT +bLT +bLT +bLT +bLT +bVT +bVT +bVT +bVT +bVT +bWg +chF +cjf +cjf +cjf +cjf +cjf +cjf +cjf +cth +cbw +cwn +cxT +cbw +cBk +cbw +cwn +cFh +cGG +cHW +cHW +cHW +cHW +cOy +epl +epm +epn +cOy +cHW +cHS +cHS +cHS +cHS +deh +dbe +dhg +diW +dkL +cHI +dnD +doU +def +def +cJf +duJ +bWg +aaa +aaf +aaf +aaf +aaf +aaf +aaH +aaa +aaH +aaH +aaH +aaf +aaa +agg +agg +agg +agg +agg +aaf +agg +agg +agg +aaa +aaf +dUm +dUR +dVz +dWh +dUm +aaf +aae +aae +aae +aBW +aae +aaa +aaa +aaf +aaa +aaa +aBW +aae +aae +aaf +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(110,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aiW +aiW +aiW +aiW +atr +aoK +atr +aiW +axY +aoK +aoK +aiW +aiW +aiW +aaa +aaf +aaa +aaf +aaa +aaf +aNV +aPy +aIU +aTf +aNV +aWv +aIU +aZy +aNV +aWv +aIU +aZy +aNV +aJg +aib +bms +bor +bqk +brv +bsI +btV +bvz +bxf +bvz +bxf +bCt +bEd +bGc +bHV +bGc +bLU +bGc +bGc +bSj +bUn +bWd +bWg +bZA +cbs +cdh +bZD +cbv +chG +cjf +ckH +cmd +cnx +cpb +cqw +cjf +cti +bWg +bWg +bWg +bWg +bWg +bWg +bWg +cFc +cGG +cHX +cHX +cHX +cMP +cOz +cQy +cML +cTB +cVg +cWT +cYE +cHX +cHX +cHS +dei +dfW +dcH +diX +dkM +dmk +dcH +doV +dqA +dmk +dtG +duK +bWg +aaf +dms +dyv +dyv +dms +dyv +dms +dFJ +dms +dHX +dIJ +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +dUm +dUS +dVA +dWi +dUm +aaf +aaa +aaa +aaa +aaf +aae +aae +aae +aaf +aae +aae +aBW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(111,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaa +aaf +aaa +aaf +ats +aaf +ats +aaf +axZ +azm +aAj +azm +aAj +azm +aAj +azm +aAj +aJf +aaf +aaf +aNV +aPz +aRn +aTg +aNV +aWw +aYa +aZz +aNV +bco +bdD +bfx +aNV +aJh +aib +bmt +bos +bql +brw +bsJ +btW +bvA +bxg +bzb +bAL +bCu +bEe +bGd +bGd +erk +bLV +bGd +bPW +bSk +bUo +bWe +bXK +bZB +cbt +cdi +cbt +cgk +chH +cjf +ckI +ckI +cny +cpc +cqx +cjf +ctj +bWg +cwo +cxU +czx +ejA +cCF +bWg +cFi +cGG +cHY +cJG +cHX +cMQ +cOA +cQz +cRM +cTC +cVh +cWU +cHX +cJH +dbg +cHS +dej +dej +dej +diY +dkN +dej +dej +dej +dej +dej +cYz +duL +cJc +aaa +dyv +dzE +dBb +dCl +dDJ +dyv +dFK +dms +dHY +dIK +dIK +dIK +dIK +dIK +dIK +dIK +dIK +dIK +dIK +dIK +dIK +dIK +aaf +dUm +dUT +dVB +dWj +dUm +aaf +aaf +aaf +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(112,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiX +aiX +aiY +aiY +aiY +aiX +aiX +aib +aib +aib +aok +aok +aok +aib +aok +aok +aok +aib +aib +aib +aib +aib +aib +aJg +aaa +aaf +aNV +aPA +aRo +aPB +aNV +aWx +aYb +aWy +aNV +bcp +bdE +bcq +aNV +aJg +aib +bmu +bot +eiE +brx +brx +btX +bvB +bxh +bot +bAM +bCv +bEf +bCv +bCv +bCv +bLW +bOc +bPX +bSl +bUp +bWf +bWg +bZC +cbu +err +bZC +cdj +chI +cjf +ckJ +cme +cnz +cpd +cqy +cjf +ctk +bWg +cwp +bZD +czy +cBm +efV +bWg +cFd +cGG +cHX +cHX +cLn +cMR +cOB +cQA +cRQ +cTD +cVi +cWV +cHX +cHX +cHX +cHS +egi +dfX +dhh +diZ +dkO +dml +dnE +doW +dqB +dej +cEV +duM +cJc +aaf +dyv +dzF +dBc +dCm +dDK +dEA +dFL +dms +dHZ +dIK +dJt +dKr +dLo +dMu +dNt +dMv +dPc +dPT +dQJ +dRA +dSr +dIK +dIJ +dUm +dUU +dVC +dWk +dUm +dIJ +dIJ +aaf +agg +aaf +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(113,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiX +eeE +akS +alS +and +aob +aiX +aic +aic +ast +aic +aoT +avW +ast +aic +aoT +aoT +ars +aic +aic +awY +aGF +aib +aJh +aaf +aaf +aNV +aPB +aRp +aPB +aNV +aWy +aYc +aWy +aNV +bcq +bdF +bcq +aNV +aJh +aib +bmv +bou +bou +bou +bov +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bOd +bPY +epi +bUq +bWg +bWg +bZD +bZC +bWg +ceO +bZC +chI +cjf +ckK +cmf +cnA +cpe +cqz +cjf +cti +bWg +cwq +cxV +czz +cBn +cCH +bWg +cFc +cGG +cHW +cHW +cHW +cHW +cOC +cQA +cRR +cTE +cOF +cHW +cHW +cHW +cHW +cHS +del +dfY +dhi +dja +dkP +dmm +dnF +doX +dqC +dej +dtH +duK +bWg +aaa +dms +dzG +dBd +dCn +dDL +dyv +ebF +dms +dIa +dIK +dJu +dKs +dLp +dMv +dNu +dLr +dMz +dMu +dQK +dRB +dSs +dIK +dTK +dUn +dUV +dVD +dVK +dFW +dWU +dXt +aaf +agg +agg +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(114,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiX +ajR +akT +alT +akT +aoc +aiX +aic +eeL +asu +aic +auN +aoQ +awX +awX +awX +awX +awX +awX +awX +aoT +aGG +aib +aJg +aaa +aaf +aNV +aNV +aNV +aNV +aNV +aNV +aNV +aNV +aNV +aNV +aNV +aNV +aNV +aJg +aib +bmw +bou +aaa +aaf +aaa +aaf +btY +bxi +bzc +bAN +bCw +bEg +bGe +bHW +bJZ +bLX +bou +bPZ +bSn +bUr +bWg +bXL +bZC +cbv +cdk +bZD +bZC +chJ +cjf +cjf +cmg +cnB +cjf +cjf +cjf +ctl +bWg +cwr +cxW +czA +bZD +cCI +bWg +cFj +cGG +cHX +cHX +cHX +cMS +cOD +cQA +cRR +cTF +cVj +cWW +cYE +cHX +cHX +cHS +dem +dfZ +dhj +djb +dkQ +dmn +dnF +doY +dqB +dej +dtI +duN +cJc +aaf +dyv +dzH +dBe +dCo +dDM +dEB +dFM +dms +dIb +dIL +dJv +dKt +dLq +dMw +dNv +dOl +dPd +dOo +dMz +dPe +dSt +dIK +dIi +dUo +dFW +dTm +dFW +dQQ +dXn +dXt +aaf +aaf +aaf +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(115,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiY +ajS +akU +alU +ane +eeH +aiX +apU +aoQ +asv +att +aic +avX +awX +aya +azn +aAk +azo +aCp +awX +axa +ame +aib +axZ +aAj +azm +aAj +azm +aAj +azm +aAj +azm +aAj +azm +aAj +azm +aAj +azm +aAj +bjn +aib +bmx +bou +aaf +bry +brz +btY +btY +bxj +bzd +bzd +bzd +bEh +bzd +bzd +bzd +bLY +bou +bQa +bSn +bUs +bWh +bXM +bZE +bXM +bXM +bXM +cgl +chK +cjg +bXM +bXM +cnC +cpf +cqA +bXM +ctm +cuT +cuT +cuT +czB +cuT +cuT +cuT +cFk +cGH +cHZ +cJH +cHX +cMT +cOA +cQB +cRS +cTG +cVh +cWX +cHX +cJG +dbh +cHS +den +dga +dhk +djc +dkR +dmo +dnF +doZ +dqB +dej +esh +duK +cJc +aaa +dyv +dzI +dBf +dCp +dDN +dyv +dFN +dms +dFW +dIM +dJw +dJA +dJA +dMx +dNw +dJA +dJA +dJw +dJw +dRC +dSu +dIK +dTL +dUo +dFY +dFY +dFY +dFY +dFY +dFY +dFY +dFY +aaf +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(116,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiX +ajT +akV +alV +anf +anf +aiX +apV +arp +eqy +atu +auO +avY +awX +ayb +azo +azo +azn +aCq +aDQ +axa +aoQ +aib +aib +aib +aib +aib +aok +aok +aok +aib +aok +aok +aok +aib +aok +aok +aok +aib +aib +aib +bmy +bou +aaa +brz +bsK +btZ +brz +bxk +bze +bAO +bCx +bEi +bGf +bHX +bKa +bLZ +bOe +bQb +bSo +bUt +bWg +bXN +bZF +cbw +bZF +ceP +cbw +chL +cjh +ckL +cmh +cnD +ckL +cmh +crJ +ctn +cuU +crJ +cxX +czC +crJ +cCJ +cDB +cFl +cGG +cHX +cHX +cLn +cMU +cOE +cQA +cRR +cTF +cVk +cWY +cHX +cHX +cHX +cHS +deo +dgb +dhl +djd +dkS +dmp +dnF +dpa +dqD +dej +cEV +duM +bWg +aaf +dms +dzJ +dBg +dCq +dDO +dEC +dFO +dms +dIc +dIN +dJx +dKu +dJx +dMy +dNx +dOm +dOm +dOm +dOm +dRD +dSv +dIK +dIi +dUp +dUW +dVE +dWl +dWN +dXo +dYd +dYN +dUW +aaf +agg +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(117,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiY +ajU +akW +alV +ala +akW +eeI +apW +aic +asw +atv +auP +ame +awX +ayc +azo +azo +aBk +aCr +awX +aoT +aic +ast +aoT +aoT +aMn +ast +aic +aoT +aoT +aoT +ars +ars +ast +aic +aic +ast +ars +bhk +aoQ +ars +bmz +bov +aaf +brA +bsL +bua +bvC +bxl +bzf +bzf +bzf +bEj +bzf +bzf +bzf +bxl +bOf +bQc +bSp +bUu +bWi +bWi +bWi +bWi +bWi +bWi +bWi +chM +cji +bWi +bWi +bWi +bWi +bWi +bWi +bWi +bWi +bWi +bWi +bWi +bWi +cCK +bZD +cFm +cGG +cHW +cHW +cHW +cHW +cOF +cQC +erU +cTF +cOC +cHW +cHW +cHW +cHW +cHS +dep +dgc +dhm +dje +dkT +dmp +dnF +dpb +dqB +dej +dtI +duO +bWg +bWg +dms +dms +dms +dCr +dDP +dms +dms +dms +dId +dIL +dJy +dKv +dLr +dMz +dMv +dOn +dMu +dPU +dOo +dRE +dSw +dIK +dTM +dUq +dUX +dFW +dWm +dWO +dSC +dYe +dYO +dZC +aaf +agg +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(118,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiY +ajV +akX +alW +ang +aoe +aoN +apX +aib +aib +aib +aib +aib +awX +ayd +azn +azo +aBl +aCs +awX +aic +aoQ +aHW +aHW +aHW +aHW +aNW +aPC +aHW +aHW +avX +aWz +aoT +aZA +aoT +bcr +bcr +aic +bhl +aic +aoT +aUG +bou +aaa +brB +bsM +bub +brB +bxk +erb +bAP +bCy +bEk +bGg +bHY +bze +bMa +bou +bQd +bSn +bUr +bWi +bXO +bZG +cbx +cdl +ceQ +ceR +chN +cjj +ckM +cmi +cnE +cpg +bWi +bXT +cto +cuV +cws +cxY +czD +bWi +cCL +ceO +cFn +cGG +cHX +cHX +cHX +cMV +cOG +cQD +cRT +cTF +cVg +cWZ +cYE +cHX +cHX +cHS +deq +dgd +dhn +djf +dkU +dmq +dnG +dpc +dqB +dej +cYz +duN +dwm +bZC +dyw +dzK +dBh +dCs +dDQ +dzK +dFP +dHs +dIe +dIK +dJz +dKt +dLs +dMz +dMz +dOo +dPe +dOo +dOl +dRF +dSx +dIK +dMI +dUo +dUY +dVF +dWn +dWP +dWP +dYf +dYP +dZC +aaf +agg +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(119,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiY +ajW +eeF +alX +anh +aof +eeI +apY +aib +asx +atw +auQ +YGM +awX +aye +azn +azo +aBl +aCt +awX +aoS +aGH +aHW +aJj +aKF +eff +aNX +aPD +aJm +aHW +aoQ +aGI +efo +aic +baW +bcs +aib +efo +aoQ +aib +aib +bmA +bou +aaf +bry +brB +btY +btY +bxn +bzg +bzg +bzg +bEl +bzg +bzg +bzg +bMb +bou +bQd +bSn +bUr +bWj +bXP +bZH +cby +cdm +ceR +cgm +chN +cjj +ckN +cmj +chQ +cpg +bWj +crK +ctp +cuW +cwt +ctp +czE +bWi +cCM +bZC +cFn +cGG +cIa +cJG +cHX +cMW +cOA +cQE +cRU +cTH +cVh +cXa +cHX +cJH +dbi +cHS +der +dgd +dho +djg +dkV +dmo +dnH +dpd +dqC +dej +dtJ +duP +cmh +dxw +cOq +dzL +dBi +dCt +dDR +dED +dFQ +dHt +dIf +dIK +dJA +dKw +dLt +dMA +dNy +dMv +dMz +dMv +dQL +dRG +dSy +dIK +dTN +dUr +dUZ +dVG +dSC +dWQ +dXp +dYg +dYQ +dFY +aaf +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(120,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiY +ajX +akZ +alY +ani +aog +aoO +apZ +aib +aoT +aoT +auR +eeQ +awX +ayf +azo +aAl +aBm +aCu +aDR +aFk +aGI +aHW +aJk +aKG +aMp +aNY +aNZ +aRr +aHW +aUD +eqL +aib +aoQ +efo +aib +aib +bfy +aic +bjo +efo +aUG +bou +aaa +aaf +aaa +aaf +bvD +bxo +bzh +bAQ +bCz +bEm +bGh +bHZ +bKb +bMc +bou +bQe +bSn +bUs +bWk +bXQ +bXQ +cbz +bXQ +bXQ +cgn +chO +cjk +ckO +bXQ +bXQ +bXQ +cqB +bXQ +ctq +cuX +cwu +cxZ +crK +bWi +cCK +bZD +cFn +cGG +cHX +cHX +cLn +cMX +cOB +cQy +cML +cTB +cVl +cXb +cHX +cHX +cHX +cHS +des +egk +dhp +djh +dkW +dmr +dnH +dpe +dqB +dej +dtK +cMH +dwn +cMH +dyx +dzM +dBj +dCu +dDS +dzM +dFR +dHu +dIg +dIK +dJB +dKx +dLu +dJA +dNz +dMv +dPf +dLr +dQM +dRH +dSz +dIK +dIi +dUr +dFY +dVH +dWo +dWR +dXq +dYh +dIJ +dFY +aaf +agg +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(121,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiY +ajU +akW +alZ +anj +akV +eeI +aqa +arq +asy +atx +auS +awa +awX +ayg +azo +azo +aBn +aCv +aDS +aFl +aGI +aHW +aJl +aKH +aMq +aNZ +aPE +efh +aHW +awZ +aic +aic +aic +ast +ars +aic +ast +aic +ars +ars +bmB +bow +bou +bou +bov +bou +btY +btY +btY +btY +btY +btY +btY +btY +btY +btY +btY +ecv +ecw +ecx +bWl +bXR +bZI +bXR +ers +bZI +cgo +chP +bXR +bZI +bXR +bXR +bXR +cqC +bXR +ctr +cuY +cwv +cya +czG +bWi +cCK +erJ +cFo +cGG +cHW +cHW +cHW +cHW +cOH +epl +epm +epn +cOH +cHW +cHW +cHS +cHS +dcI +det +det +det +dji +dkX +dms +dms +dms +dms +dms +dms +dms +dms +dms +dms +dms +dms +dCv +dms +dms +dFS +dHv +dIh +dIK +dJC +dKy +dLv +dMB +dNA +dIK +dIK +dIK +dIK +dRI +dIK +dIK +dTO +dUs +dVa +dVI +dWp +dSC +dXr +dYi +dYR +dFY +aaf +agg +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(122,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiX +ajZ +ecb +ama +ank +aoi +aiX +aqb +aib +aic +aty +aic +eeR +awX +ayh +edd +azo +azo +aCw +awX +aqg +aoT +aHW +ejz +ecs +aMr +aOa +aPF +efi +aHW +aUE +aWA +aWA +aZB +baX +aWA +aZB +aZB +bhm +bjp +aZB +bmC +box +bqm +aBo +aCy +buc +bvE +bxp +akm +ajl +ajl +erf +akm +ajl +bKc +aip +eph +bQf +bSn +bUr +bWj +bXS +bZJ +cbA +cdn +ceS +cgp +ehO +cjl +ckP +cjl +chQ +cpg +bWj +crL +cts +cuZ +cww +cgp +czH +bWi +cCK +ceO +cFo +cGG +ecI +ecI +ecI +cHW +cOI +cQy +cML +cTB +cVm +cXc +cYF +cZR +dbj +dcJ +eju +dad +dhq +djj +dkY +dmt +dnI +dpf +dqE +dsn +dtL +duQ +dwo +dxx +dyy +dzN +dBk +dCw +dDT +dms +dFT +dHw +dIh +dIK +dJD +dKz +dLw +dJw +dNB +dIK +dPg +dPV +dQN +dRJ +dSA +dIK +dTM +dUt +dVb +dVF +dWn +dWP +dWP +dYj +dYS +dZC +aaf +aaf +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(123,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiY +aka +alb +amb +anl +aoj +edc +aUJ +ecd +asz +ece +auT +awc +ecf +ecg +ede +ecj +eck +aCx +ecl +ecm +ecn +ecp +aJn +aKJ +aMs +aOb +aPG +aRu +ecp +aUF +boy +boy +boy +boy +boy +boy +boy +boy +boy +boy +boy +boy +boy +boy +boy +boy +bvF +bxq +bzi +bzi +bzi +bzi +bzi +bzi +bzi +bzi +bzi +bQg +bSo +bUt +bWi +bXT +bZK +cbB +cdo +ceS +cgq +ehO +cjl +ckP +cjl +chQ +cpg +bWi +crM +ctt +cva +cwx +cyc +czI +bWi +cCL +ceO +cFm +cGG +ecI +cJI +cLo +cMY +cOJ +cQF +cRV +cTI +cVn +cXd +cYG +cZS +dbk +cLI +deu +dgf +dhr +djk +dkZ +dmu +dnJ +dnJ +dqF +dso +dtM +duR +dwp +dxy +dyz +dzO +dBl +dCx +dDU +dms +dFU +dHw +dIi +dIK +dIK +dIK +dIK +dIK +dNC +dIK +dPh +dMA +dQO +dRK +dSB +dIK +dIi +dUq +dUX +dSC +dWq +dWS +dSC +dYk +dYT +dZC +aaf +agg +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(124,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aax +egV +aax +aaf +aaa +aaa +aaf +aax +egV +aax +aaf +aaf +aaf +aaf +aaf +aax +aax +aax +aax +aaa +aiY +aiY +aiY +aiY +aiX +aiX +aiX +aqc +aib +aib +eeL +aib +aib +awX +ayi +azo +aAm +azn +aCp +awX +aFm +aGJ +aHW +aJo +efa +efg +aNZ +aPH +aJm +aHW +ecu +aWB +aYd +efp +baY +aWB +bdG +bfz +bhn +bjq +bkG +bmD +boz +bjq +efA +bsN +aWB +aqu +bxr +bzj +bAR +bCA +bEn +bGi +bIa +bKd +bMd +bzr +bQh +bSm +bUv +bWi +bWi +bWi +bWi +cdp +ceS +cgp +chQ +chQ +ckP +erw +chQ +cph +cqD +crN +ctu +cvb +cwy +cyd +czJ +bWi +cCN +bWg +cFp +cGG +cIb +cJJ +cLp +cMZ +cOK +cQG +cRW +cTJ +cVo +cXe +cOK +cZT +dbk +cLH +dev +dgg +dhs +djl +dla +dmv +dnK +dpg +dqG +dsp +dtN +duS +dwq +dxz +dyA +dxz +esm +dCy +dDV +dEE +dFV +dHx +dIi +dIO +dJE +dFW +dLx +dIK +dIK +dIK +dIK +dIK +dIK +dIK +dIK +dIK +dTM +dUo +dVc +dVJ +dWr +dWT +dXs +dYl +dYU +dUW +aaf +agg +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(125,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aax +ack +aax +aax +aax +aax +aax +aax +ack +aax +aaa +aaf +aaa +aaa +aaa +aax +agh +agJ +aax +aaf +aaf +aaf +aaf +aaf +aaf +aok +aoP +aqd +aib +asA +atz +auU +awd +awX +awX +awX +awX +awX +awX +awX +aFm +aoT +aHW +aHW +aHW +aHW +aNW +aPI +aHW +aHW +aUH +aWC +aYe +aZD +baZ +bct +bdH +bfA +bho +bho +bho +bho +bho +bho +brD +bsO +aWB +bvG +bxr +efE +bAS +bCB +bCB +bCB +bCB +bKe +bMe +bAZ +bQd +erm +bUr +bWi +bXU +bZL +bWi +cdq +ceS +cgp +ehO +cjm +ckP +cmk +chQ +cmk +bWi +crO +ctv +cvc +cwz +cyc +czK +bWi +cCL +ceO +cFn +cGG +ecI +cJK +cLq +cNa +cYG +cQH +cRX +cTK +cRX +cXf +cYH +cZU +dbl +dcK +dew +ecV +dht +djm +dlb +dmu +dnL +dnL +dqH +dsq +dtO +duT +dwr +dxA +dyB +dzP +dBm +dCz +dDW +dms +dFW +dHy +dIj +dIP +dJF +dKA +dLy +dMC +dIP +dOp +dPi +dPW +dQP +dRL +dQP +dTl +dTP +dUu +dFY +dFY +dFY +dFY +dFY +dFY +dFY +dFY +aaf +agg +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(126,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aax +aax +aaD +aax +aax +aaD +aax +aax +aaD +abP +aax +egU +aax +acC +acT +ack +adq +aax +egW +aax +abR +aaD +aax +aax +aaD +aaD +agi +agK +aaD +aib +aib +aib +aib +aib +aib +aib +aoQ +aqc +eeL +asB +atA +auV +aib +aib +ayj +azp +aAn +aBo +aCy +aDT +aFn +aBo +aHX +aCy +aBo +aMu +aOc +aPJ +aBo +aMu +aUI +aWD +aYf +aZE +bba +bcu +bdI +bfB +bhp +bjr +bjt +eqT +boA +bjt +bbf +bsO +aWB +aqu +bxr +bzl +bAT +bCC +bEo +bCC +erd +bKf +bCF +bAZ +bQd +bSn +bUr +bWi +bXV +bZM +cbC +cdr +ceT +cgp +ehO +cjn +ckP +cmk +cby +cmk +bWi +bWi +bWi +bWi +bWi +cji +czL +bWi +cCK +bZD +cFn +cGG +ecI +ecI +ecI +cHW +cOM +cQI +cRY +cTL +cVp +cXg +cYI +cHS +dbm +dcL +cPe +dgh +dhu +djj +dkY +dmw +dnM +dph +dqI +dsr +dtP +duU +dws +dxB +egr +dzQ +duU +dCA +egv +dms +dFX +dHz +dIk +dIk +dJG +dKB +dLz +dMD +dND +dOq +dPj +dPX +esr +dFW +dSC +dTm +dSC +dSC +dTm +dVK +dFW +dWU +dXt +aaf +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(127,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aax +aaC +aaI +aaP +aaP +aba +aaP +aaP +abB +aaP +aaP +aaP +aaP +aaP +aaP +aaP +aaP +adH +adZ +adZ +adZ +aeJ +adZ +adZ +afx +afO +agj +agL +aaD +aic +aiZ +akb +aic +amc +aic +aib +aoR +aqe +arr +aoT +atB +auW +aib +awY +ayk +azq +aAo +aAo +aAo +aAo +aAo +aAo +aAo +aJp +aJp +aJp +aOd +aPK +aJp +aJp +aUJ +aWE +aYg +aZF +bbb +bcv +bdJ +bfC +bhq +bjs +bkH +bmE +boB +bqn +bbf +bsP +aWB +aqu +bxs +bzm +bAU +bCD +bEp +bEq +bIb +bKg +bMf +bOg +bQi +bSn +bUr +bWi +bXW +bZN +bWi +cds +ceS +cgp +chQ +cjo +ebK +cml +cnF +cpi +bWi +crP +ctw +cvd +bWi +cJA +czM +cBo +cCO +cDC +cFq +cGI +cjf +cHS +cHS +cHS +cON +cQJ +cRZ +cTM +cRZ +cXh +cYJ +cHS +dbn +cLI +cPe +cJL +cJL +djn +dlc +dms +dms +dms +dms +dms +dms +dms +dms +dms +dms +dms +dmt +dCB +dDY +dms +dFY +dFY +dFY +dFY +dJH +dKC +dLA +dME +dNE +dNE +dNE +dNE +dNE +dNE +dNE +dNE +dFX +dFW +dFW +dFW +dQQ +dHs +dXt +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(128,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aax +aaC +aaJ +aaQ +aaQ +aba +aaQ +aaQ +abC +abQ +abQ +abQ +abQ +abQ +abQ +abQ +abQ +adI +abQ +abQ +abQ +aeK +abQ +afl +afy +afP +agk +agM +aht +aid +aja +akc +alc +amd +anm +eph +aip +aqf +aib +asC +atC +eeO +aib +awZ +ayl +azr +aAp +aBp +aCz +aAu +aFo +aGK +aHY +aJq +aKL +aMv +aOe +aPL +aRv +aJq +aUK +aWF +aYh +aZG +bbc +aWB +bdK +bfD +bhr +bjt +bkI +bmF +bjt +bqo +bbf +bsQ +aWB +bvH +bxt +bzn +bAV +bCC +bEq +bGj +bCC +bGk +bGl +bOh +bQd +bSn +bUw +bWi +bWi +bWi +bWi +cdt +ceS +cgr +chR +cjp +ckQ +cmm +cnG +cpj +cqE +crQ +ctx +cve +bWi +cyg +bXM +bXM +cCP +bXM +cFr +cGJ +cIc +cJL +cLr +cHS +cHS +cHS +cHS +cHS +cHS +cHS +cHS +cHS +dbo +cLH +cPe +dgi +dhv +djo +dld +dmx +dnN +dpi +dqJ +dss +dtQ +duV +dwt +dxC +dyD +dzR +dBn +dCC +dDZ +dEF +dFZ +dFZ +dIl +dIQ +dJI +dKD +dLB +dME +dNF +dOr +dNF +dPY +dNF +dRM +egP +dNE +dTQ +dTQ +dTQ +dTQ +dTQ +dNE +dNE +dNE +dNE +dZD +dNE +dNE +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(129,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aax +aax +aaD +aax +aax +aaD +aax +aax +aaD +aax +aax +aax +aax +acD +acU +acW +adr +aax +aax +aax +aax +aaD +aax +aax +aaD +aaD +agl +agN +aaD +aie +ajb +akd +ald +ame +ann +aib +aoS +aqg +aib +asD +atD +auY +aib +aoT +aym +azr +aAq +aBq +aCA +aAu +aFp +aGL +aHZ +aJq +efb +aMw +aOf +aPM +efj +aJq +aqg +aWF +aYi +aZH +bbd +aWB +bdL +bfD +bhs +bju +bkJ +bjt +bjt +bjr +bbf +bsO +aWB +aUK +bxr +bzo +bAW +erd +bEr +bCC +bCC +bKf +bCF +bAZ +bQj +bSq +bUr +bWi +bXU +bZL +bWi +cdu +ceS +cgp +chQ +cjq +ckR +cmn +cnH +bXR +cqF +crR +cty +cvf +bWi +cyh +czN +cBp +cCQ +erJ +cFs +cGK +cId +cJM +ejs +cLs +cOO +cOO +cLs +cTN +cLs +cLs +cLs +cZV +dbp +dcM +dey +dgj +dhw +djp +dle +dmy +dnO +dnO +dqK +dnO +dnO +duW +dwu +dxD +dyE +dzS +dBo +dCD +dEa +dEF +dFZ +dFZ +dIl +dIQ +dJJ +dKE +dLC +dMF +dNG +dOs +dPk +dPZ +dQR +dRN +dSE +dTn +dTR +dUv +dVd +dVL +dWs +dNE +dXu +dNE +dYV +dZE +eah +dNE +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(130,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aaf +aax +aax +aax +aax +aax +aax +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aaD +agm +agO +ahu +ahu +ahu +ahu +ahu +ahu +ahu +ahu +aoT +aqb +aib +aib +atE +aib +aoQ +eqA +ayn +azr +aAr +aBr +aCB +aAu +aFq +aGM +aIa +aJq +aKN +aMx +aOg +aPN +aRx +aJq +aqb +aWF +aYj +aZI +bbe +aWB +bdM +bfE +bht +bjv +bjv +bjv +bjv +bjv +brE +bsO +aWB +aqc +bxr +bzp +bAX +bCE +bEs +bGk +bCE +bKh +bMg +bAZ +bQd +bSn +bUr +bWi +bXV +bZM +cbC +cdr +ceT +cgp +chS +cjr +ckS +cmo +ckS +cpk +cqD +crS +ctz +cvg +bWi +bZC +czO +bZD +cCR +cDD +cFt +cGL +cwn +cJN +cLt +cNb +cOP +cQK +cLI +erX +cLI +cLH +cLI +cIm +dbq +dcN +dez +dgk +dhx +djq +dlf +dmz +dnP +dpj +dqL +dst +dtR +duX +dwv +dxE +dyF +dzT +dBp +dCE +dEb +dEb +dEb +dHA +dIm +dIQ +dJK +dKF +dLD +dMG +dNH +dOt +dPl +dQa +dQS +dRO +dSF +dTo +dTS +dUw +dVe +dVM +dWt +dWV +dXv +dWV +dYW +dZF +eai +dZD +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(131,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aax +agl +agP +ahu +aif +eeB +ake +ale +amf +aif +ahu +aic +aqg +ars +ars +atF +aoT +ast +aic +ayo +azr +aAs +aBs +aCC +aAu +aFr +aGN +aIb +aJq +efc +aMw +aOh +aPM +aRy +aJq +aqc +aWF +aYk +aZG +eqM +aWB +bdN +bfF +bhu +bjw +bkK +bmG +bmG +bqp +brF +efB +aWB +aqg +bxr +bzq +bAY +bCF +bEt +bGl +bCF +bKi +bMh +bMi +bQe +bSn +bUr +bWi +bXW +bZN +bWi +cdv +ceS +cgp +cdn +cjs +ckT +cmp +cnI +cpl +bWi +crT +ctA +cvh +bWi +cyi +czP +ceO +czP +cDE +cFu +cGM +cIe +cJO +cLu +cNc +cOQ +cQL +cSa +cNc +cNc +cNc +cYK +cZX +dbr +dcO +deA +dgl +dgm +djr +dlg +dgm +dgp +dgm +dgp +dgm +dgm +dgm +dgm +dgm +dyG +dzU +dBq +dCF +dEc +dEG +dGa +dHB +dHB +dIQ +dJL +dKG +dLE +dMH +dNI +dNI +dPm +dPm +dNI +dNI +dNI +dNI +dNI +dNI +dNI +dNI +dNI +dNI +dNI +dNE +dYX +dZG +eaj +dZD +aaa +aaf +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(132,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aax +aaD +agn +agN +ahu +aig +ajd +akf +akk +ajd +ano +ahu +aoU +aqh +ajl +asE +atG +auZ +ajl +axb +ayp +azs +aAt +aBs +aCD +aAu +aFs +aGN +aIc +aJq +aKP +aMy +aOi +aPO +efk +aJq +aUL +aWF +aYl +aZJ +bbg +aWB +bdO +bfG +bhv +aWB +bkL +bmH +boC +bct +brG +aWB +aWB +bvI +bxr +bzr +bAZ +bAZ +bEu +bGm +bAZ +bAZ +bMi +bOi +bQk +bSr +bUx +bWm +bWi +bWi +bWi +bWj +ceU +cgs +bWj +bWi +bWi +bWi +bWi +bWi +bWi +bWi +bWi +bWi +bWi +bWg +bWg +bWg +bWg +cDF +cFv +cGN +bWg +cJP +cLv +cNd +cOR +cQM +cLv +cLv +cVq +cQQ +cLv +cZY +dbs +dcP +deB +dgm +dhy +djs +dlh +dmA +dnQ +dpk +dqM +dsu +dtS +duY +dww +dgm +dyH +dzV +dBr +dCG +dEd +dEH +dGa +dGa +dGa +dIQ +dFX +dKH +dLB +dIh +dNI +dOu +dPn +dPn +dQT +dRP +dSG +dTp +dTT +dUx +dQV +dVN +dWu +dWW +dXw +dNE +dYY +dZH +eak +dZD +aaf +agg +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(133,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +edo +edC +edo +edo +eev +edo +edo +eex +edo +aaf +abP +adr +agl +equ +ahv +aih +aje +akg +alf +amg +eeG +ahu +aoV +aqi +art +art +art +art +art +art +ayo +azr +aAu +aBt +aCE +aAu +aAu +aGO +aCE +aJq +aJq +aMz +aOj +aPP +aJq +aJq +aUM +aCE +aAu +aZK +bbh +aAu +bdP +bfH +bhw +bjx +bkM +bmI +bmI +bqq +brH +brH +bud +bvJ +bxu +bmI +bBa +bBa +bEv +bBa +bBa +bBa +bMj +bqq +bvJ +bSs +bUy +brN +bXX +brN +cbD +brN +ceV +bUy +brN +brN +brN +bqq +brN +bsZ +brN +brN +ctB +brN +brN +brN +brN +brN +brN +ceV +cFw +cGO +brK +cJP +cLw +cNe +cOS +cQN +cSb +cTO +cVr +cXi +cTO +cZZ +cNp +esb +dez +dgn +dhz +djt +dli +dmB +dnR +dpl +dqN +dsv +dtT +duZ +dwx +dgm +dyI +dyI +dyI +dyI +dyI +cJL +cJL +cJL +cJL +cJL +dac +dac +dLA +dMI +dNI +dOv +dPn +dQb +dQU +dRQ +dSH +dRQ +dTU +dUy +dVf +dVO +dWv +dNI +dOD +dNE +dYZ +dZI +eal +dNE +aaf +agg +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(134,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +eeq +ees +edo +edo +edD +edD +edp +edp +ehm +edD +edD +edC +aax +aax +aax +agl +agN +ahu +aii +ajf +ajj +ajj +ajd +anq +ahu +aoW +aqj +art +asF +atH +ava +eeS +axc +ayq +azt +aAv +aBu +aCF +aDU +aFt +aGP +aId +aJr +aKQ +aMA +aOk +aPQ +aKQ +aTh +aUN +aWG +aYm +aZL +bbi +bcw +bdQ +bfI +bhx +bjy +bkN +bmJ +boD +bqr +brI +brI +eqY +bvK +brI +bzs +brO +bCG +brO +brO +brO +brO +brO +bqv +bQl +bSt +brO +brO +bXY +brO +brO +brO +bBy +brO +brO +brO +brO +bqv +cnJ +cpm +brO +brO +brO +eri +brO +brO +brO +brO +brO +cDG +cFx +boR +cIf +cJP +cLx +cNf +cOT +cQO +cSc +cTP +cVs +cXj +cYL +daa +dbt +cLD +dez +dgo +dhA +dju +dlj +dmC +dnS +dpm +dqO +dsw +dtU +dva +dwy +dgm +dyJ +dzW +dBs +dCH +dEe +cJL +dGb +dcK +dIn +dIR +dJM +dac +dLF +dMJ +dNI +dOw +dPn +dQc +ess +dRP +dSI +dRP +dTV +dUz +dVg +dVP +dPn +dNI +dXx +dNE +dNE +dZJ +dNE +dNE +aaf +aaf +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(135,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aaf +aaf +aaa +aaa +aaa +aaa +aaa +eeq +edl +edp +ehi +edz +edp +edp +edp +edT +edp +edp +edp +een +epc +ack +epC +agl +agN +ahu +aij +ajf +ajd +ajd +amf +anr +ahu +aoW +aqk +art +asG +atI +avb +awf +axd +ayr +azu +aAw +aBv +aCG +aDV +aFu +aGQ +aIe +eqE +aJs +aMB +aOl +aPR +aRA +aTi +aUO +aWH +aYn +aZM +bbj +bcx +bdR +bfJ +bhy +bjz +bkO +bmK +boE +bqs +brJ +brJ +brJ +bvL +bxv +bzt +bBb +bCH +bEw +bGn +bGn +bGn +bGn +bOj +bQm +bSu +bUz +bUz +bXZ +bZO +bUz +bUz +ceW +bEw +chU +bGn +bGn +bOj +cnK +cpn +bnd +crU +bnd +cvi +bnd +bnd +bnd +bnd +bnd +cDH +bmX +cGP +cIg +cJP +cLy +cNg +cOU +cQP +cSd +cTQ +cVt +cXk +cVu +dab +dbo +cLE +dez +dgp +dhB +djv +dlk +dmD +dnT +dpn +dqP +dsx +dtV +dvb +dwz +dxF +dyK +dzX +dBt +dCI +dEf +cJL +dac +dHC +dIo +dac +dac +dac +dLG +dMK +dNI +dOx +dPn +dQc +dQU +dRQ +dSH +dTq +dTU +dUA +dVg +dPn +dWw +dNI +dXy +dNE +dZa +dZK +egR +dNE +aaf +agg +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +eaY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(136,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +eeq +eet +edo +edo +edF +edF +ehk +edp +edp +edF +edF +edC +aax +aax +aax +agl +agQ +ahw +aik +ajg +akh +alg +akh +ans +ahu +aoV +aql +art +asH +atJ +avc +awg +art +ays +azv +aAx +aAx +aCH +aDW +eeV +aAx +aAx +aHb +efd +aHb +aOm +aPS +efd +aHb +aUP +aUP +aYo +aZN +aUP +aUP +bdS +bfK +bhz +aYx +bkP +bmL +boF +boZ +brK +brM +brM +bsV +bxw +bzu +bBc +bCI +bEx +bEx +bId +bKj +bMk +bEx +bQn +bSv +bUA +bqt +bqt +bZP +bqt +cdw +bqu +bQn +bQn +bQn +bQn +cmq +cnL +cpo +cqG +cqH +cqH +cqH +cwA +cqH +cqH +cqH +cCS +bkS +bmZ +boJ +cIh +cJP +cJP +cNd +cOV +cQQ +cJP +cJP +cVu +cXl +cLv +dac +dbu +dcQ +deA +dgq +dhC +djw +dll +dmE +dnU +dpo +dqQ +dsu +dtW +dvc +dwA +dgm +dyL +dzY +dBu +dCJ +dEg +cJL +dGc +dHD +dIp +dIS +dJN +cJM +dLH +dML +dED +dOy +dPo +dQd +dPo +dPo +dPo +dPo +dTW +dUB +dVh +dVQ +dWx +dNI +dXz +dYm +dZb +dZL +ean +dZD +aaf +agg +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(137,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +edo +edC +edo +edo +eev +edo +edo +eex +edo +aaf +abR +adq +ago +agM +ahx +ail +ajh +aki +alh +amh +ant +ahu +aoX +aqm +art +asI +atK +avd +awh +axe +ayt +aqg +aAx +aBw +aCI +aDX +aFv +aGR +aAx +aJt +aKS +aMC +aOn +aPT +aRB +aTj +aUQ +aWI +aYp +aZO +bbk +bcy +bdT +bfL +eft +aUP +bkP +bmL +boG +boZ +brL +brL +brL +bsV +bxx +bzv +bBd +bCJ +bEx +bGo +bIe +bKk +bMl +bOk +bQn +bSw +bUB +bWn +bWn +bZQ +bWn +bWn +efO +bQn +chV +cjt +ckU +bQn +cnM +cpp +cqH +crV +ctC +cvj +cwB +cyj +czQ +cBq +cqH +cDI +bmX +boR +cIi +efY +cLz +cNh +cOW +cQR +cSe +cJL +cVv +cXm +cYM +dac +dbm +ejt +dez +dgr +dhD +djx +dlm +dgm +dgm +dpp +dgm +dgl +dgm +dgm +dgm +dgm +dyM +dzZ +dyI +dyI +dyI +cJL +egw +dHE +dIq +dIT +dJO +dKI +dLI +dMM +dNK +dOz +dPp +dQe +dQW +dRR +dSJ +dTr +dQW +dUC +dVi +dPp +dWy +dWX +dXA +dYn +dZc +dZM +eao +eas +aaa +aaf +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(138,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aax +aaD +agp +agN +ahu +aim +aji +akj +ali +alg +ans +ahu +aoV +aqn +art +asJ +atL +ave +awi +axf +ayu +aqc +aAx +aBx +aCJ +aDY +aFw +aGS +aAx +eeX +aKT +eqH +aOo +aPU +aKT +efm +aUP +aWJ +aYq +aZP +bbl +aUP +aZV +bfM +bhB +aUP +bkP +bmL +boH +bqt +aaa +aaf +aaa +bsV +bxy +bzw +bBe +bCK +bEx +bGp +bIf +bKl +bIf +bOl +bQn +bQn +bUC +bWo +bYa +bWo +cbE +bWo +bQn +bQn +chW +cju +ckV +bQn +cnM +cpp +cqH +crW +ctD +cvk +erD +cwC +czR +cBr +cqH +blb +bmX +cGQ +cIj +cJR +cLA +cLB +cOX +cQS +cSf +cTR +cVw +cXn +cYN +epL +dbv +dcR +deC +dgs +dgs +djy +dln +dmF +dgs +dpq +dgs +cZX +dgs +dgs +dgs +dxG +djy +dAa +dpq +dCK +dEh +cJO +dGe +dHF +dIr +dIU +dJP +cJO +dLJ +esp +dNI +dOA +dPn +dQf +dQU +dRQ +dSH +dRQ +dQU +est +dVg +dVP +dQc +dNI +dXB +dYo +dZd +dZN +eap +eas +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(139,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aax +egV +aax +aaf +aaf +aaf +aaf +aax +egT +aax +aaf +aaf +aaf +aaf +aaf +aax +agl +agN +ahy +ain +ajj +akk +ali +akh +anv +ahu +aoV +aqj +art +asK +atM +eeP +awj +art +ayv +aqb +aAx +aBy +aCK +aDZ +aFx +aGT +aAx +aJv +aKU +aMD +aOp +aPV +aRC +aTl +aUP +aWK +aYr +aZQ +bbm +bcz +bdU +bfN +bhC +aUP +bkP +bmL +boH +bqt +aaa +aaf +aaa +bsV +bxw +bzx +bBf +bCL +bEx +bGq +bIg +bKm +bMm +bOm +bQn +bSx +bUD +bWp +bYb +bZR +cbF +cdx +ceY +bZU +bZU +cjv +ckW +bQn +cnM +cpq +cqI +crX +ctE +cvl +cvl +cvl +czS +cBs +cqH +cDJ +bmX +cGR +cIk +cJS +cLB +cNi +cOY +cLI +cOW +cTS +cVx +cXo +cYO +cKc +dbw +dcM +deD +cLA +cLB +djz +dlo +dmG +dnV +dpr +dqR +dsy +dqR +dmG +dqR +dpr +esl +dAb +dBv +dCL +dEi +dEI +dGf +dHG +dIs +dIV +dJQ +dac +dLK +dIi +dNI +dOB +dPq +dQg +dQX +dRS +dSK +dRS +dQX +dUD +dQX +dVR +dWz +dWY +dXC +dYp +dZe +dZO +eap +eas +aaf +agg +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(140,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aax +ack +aax +aax +aax +aax +aax +aax +ack +aax +aaa +aaf +aaa +aaa +aaa +aaD +ago +agR +ahu +eeA +ajk +akl +alj +ami +anw +ahu +aoY +aqo +art +art +art +art +art +art +ayw +eqC +aAx +aBz +aCL +aEa +aFw +aGU +aAx +eeY +aKV +aME +aOq +aPW +aKV +efn +aUP +aWL +aYs +aZR +bbn +aUP +aZV +bfO +bhD +aUP +bkP +bmL +boH +bqt +aaa +aaf +aaa +bsV +bxz +bzy +bBg +bCM +bEy +bGr +bIh +bKn +bMn +bMs +bQn +bSy +bUE +bWq +bUE +bWq +bUE +cdy +ceZ +cgt +chX +cjw +ckX +bQn +cnM +eiR +cqH +crY +ctF +cvm +cvm +cvm +czT +cBt +cCT +cDK +bmY +cGS +cIk +cJS +cLC +cNj +cOZ +cQT +cSg +cTT +cVy +cXp +cYP +epM +dbx +dcS +deE +dgt +dhE +djA +dlp +dmH +dlp +dps +dqS +dsz +dmH +dmH +dwB +dxH +dhE +dAc +dhE +dCM +dhE +cJM +dGg +dHH +dIt +dIW +dJR +dac +dLL +dMN +dNI +dOC +dPr +dPn +dQY +dRT +dSH +dTs +dTX +dTq +dQU +dVS +eaZ +dNI +dXD +dYq +dZf +dZP +eaq +dNE +aaf +agg +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(141,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aay +aaD +aaD +aaD +aaD +aaD +aax +aax +aaD +abR +aax +egU +aax +acE +acV +adg +adr +aax +egW +aax +abP +aaD +aax +aax +aaD +aaD +agq +agN +ahu +ahu +ahu +ahu +alk +ahu +ahu +ahu +aoV +aqp +aru +asL +atN +avg +aru +axg +ayx +azw +aAx +aBA +aCM +aEb +aFy +aGV +aAx +aJx +aKW +aMF +aMF +aMF +aMF +aTn +aUP +aWM +aYt +aZS +bbo +aUP +bdV +bfP +bhE +aUP +bkQ +bmL +efy +boZ +aaf +aaf +aaf +bsV +bxA +bzy +bBg +bCN +bEy +bGs +bIi +bKo +bMo +bOn +bQn +bSz +bUF +bWr +bUF +bWr +erq +bWr +cfa +cgu +chY +cjx +ckY +cmr +cnN +cpr +cqH +crZ +ctG +cvn +cwD +cyk +czU +cBu +cCU +cDL +bmX +boR +cIi +cJT +cLD +cNk +cPa +erS +cSh +cTU +cVz +cXq +cYQ +dad +cNp +dcT +deF +dgu +dgu +djB +dgu +dmI +dgu +dpt +dgu +dsA +dsA +dsA +dwC +dxI +dyN +dsA +dsA +dsA +dsE +cJL +dac +dac +dac +dac +dac +dac +dLM +dMH +dNI +dOD +dPs +dQh +dOD +dNI +dOD +dNI +dNI +dOD +dNI +dNI +dNI +dNI +dXE +dNE +dNE +dNE +dNE +dNE +aaf +aaf +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(142,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aas +aas +aas +aaK +aaR +aax +abb +aaP +aaP +abD +abS +aaP +aaP +acq +acF +acF +acF +acF +acF +acF +acF +acF +aeL +acF +acF +afz +afQ +agr +agS +ahz +aip +ajl +akm +all +amj +akm +aom +aoZ +aqq +arv +arv +arv +arv +arv +arv +ayy +azx +aAx +eeT +aCN +eeU +aFz +aAx +aAx +aJy +aKX +aMG +aMG +aMG +aRD +aTo +aUP +aUP +aUP +aUP +aUP +aUP +bdW +bfQ +bhF +bjA +bkP +bmL +boH +bqt +aaa +aaf +aaa +bsV +bxB +bzz +bBh +bCO +bEy +bGt +bIj +bKp +bMp +bOo +bQo +bSA +bUG +bWs +bYc +bZS +cbG +bWs +cfb +bYc +chZ +cjy +ckZ +bQn +cnM +cps +cqH +crY +ctH +cvo +cvo +cvo +czV +cBv +cCV +cDM +eqV +boR +cIi +cJU +cLE +cNk +cPa +cLH +cSi +cTV +cVA +cTW +cTW +cTW +dby +dcU +deG +dgv +dhF +djC +dlq +dlv +dnW +dpu +dqT +dsA +dtX +dvd +dwD +dxJ +dyO +dAd +dBw +dCN +dsE +dEJ +dGh +dHI +dIu +dIX +dJS +dKJ +dLN +dMO +egA +egH +dQi +dQi +dPt +dQi +dQi +dRU +dSL +dTt +dTY +dUE +dVj +dVT +dPA +dWZ +dXF +dYr +dZg +dZQ +aaH +aaH +aaa +aaf +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(143,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aap +aat +aaz +aaE +aaL +aaS +aaV +abc +abh +abh +abh +abh +abh +abh +acr +abh +abh +abh +abh +adJ +abh +abh +abh +abh +abh +abh +afA +aba +agl +agN +ahA +ahA +ahA +ahA +ahA +ahA +ahA +ahA +aoV +aqr +arv +asM +atO +atO +awk +axh +ayy +aqg +aAx +aBC +aCM +aEd +aFA +aGW +aIf +aGY +aGY +aGY +aGY +aGY +aGY +aTp +aUR +aWN +aUQ +aZT +bbp +bcA +eqR +bfR +bhG +bjA +bkR +bmM +boH +bqt +aaa +aaf +aaa +bsV +bxC +bzA +bBi +bCP +bEz +bGu +bIk +bKq +bMq +bOp +bQp +bSB +bUH +bWt +bWt +bZT +cbH +bWt +bWt +bWt +bWt +cjz +cla +cms +cnO +cpt +cqJ +csa +ctI +cvl +cvl +cvl +czW +cBw +cqH +cDN +bna +boR +cIl +cJV +cLF +cNl +cPa +cLI +cSj +cTW +cVB +cXr +cYR +dae +dbz +dcV +deH +dgv +dhG +djD +dlr +dmJ +dmJ +dpv +dqU +dsB +dtY +dve +dwE +dxK +dyP +dAe +dBx +dCO +dEj +dEK +dGi +dHJ +dIv +dIY +dJT +dKK +dLO +dMP +egB +egI +egM +dOF +dPu +dQj +dQj +dQj +dSM +dQj +dQj +dQj +dQj +dVU +dWA +ahL +ahL +ahL +ahL +dZR +aaf +aaf +aaa +agg +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(144,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aas +aas +aas +aaK +aaT +aax +abd +aaQ +aaQ +abE +aaQ +aaQ +aaQ +aaQ +aaQ +aaQ +aaQ +aaQ +adK +aea +aea +aew +aeM +aea +aea +afB +afO +ags +agT +ahB +aiq +ajm +akn +alm +amk +anx +ahA +apa +aqs +arv +asN +atP +avh +arv +arv +ayy +aqc +aAx +aBD +aCO +aEe +aFB +aGX +aGY +aJz +aKY +aMH +aGY +aJA +aRE +aGY +eqF +aGX +aYu +aZU +aZV +aZU +aZV +bfQ +bhH +bjA +bkP +bmL +boH +bqt +aaa +aaf +aaa +bsW +bxD +bzB +bBj +bCQ +bEA +bGv +bIl +bKr +bMr +bGv +bQq +bSC +bUI +bWu +bYd +ecy +cbI +cdz +efP +cgv +cia +cjA +clb +bQq +cnP +cpu +cqH +csb +ctJ +cvp +cwE +cyl +czX +cBx +cqH +cDO +bmX +boR +cIi +cJW +cLG +cNm +cPb +cLB +cSk +cTX +cVC +cXs +cYS +daf +dbA +cXu +deI +dgw +dhH +djE +dls +dmK +dls +dpw +dqV +dsB +dtZ +dvf +dwF +dxL +dwH +dAf +dBy +dCP +dsE +dEL +dGj +ahA +ahA +ahA +ahA +ahA +ahA +dMQ +dNN +dPx +dPx +dOG +dPv +dPx +dPx +dPx +dSN +dQo +dQo +dQo +dQo +dVV +dWB +ahN +dXG +dYs +dZh +dZR +aaf +agg +aaf +agg +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(145,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aay +aaD +aaD +aaD +aaD +aaD +aax +aax +aaD +abP +aax +egT +aax +acG +acW +acW +ads +aax +egT +aax +abR +aaD +aax +aax +aaD +afR +agl +agN +ahC +air +ajn +ako +aln +aml +any +aon +apb +aqt +arv +asO +atQ +avi +awk +axi +ayy +aqg +aAx +aBE +aCM +aEf +aFB +aGX +aGY +aJA +aKZ +aMI +aGY +aPX +aRF +aJA +aGY +aGX +aYv +aZV +bbq +bcB +bdX +bfP +bhI +aUQ +bkS +bmN +boJ +bqu +aaf +aaf +aaf +bsU +bxE +bzC +bBk +bCR +bEy +bGw +bIm +bKs +bMs +bEx +bQn +bQn +bQn +bQn +bQn +bQn +bQn +bQn +bQn +bQn +bQn +bQn +bQn +bQn +cnM +erx +cqH +csc +ctK +cvq +cwF +cvq +czY +cBy +cqH +cDP +bmX +boR +cIi +cJX +cLH +cNk +cPa +cLI +cSl +cTW +cVD +cXt +cYT +dag +dbB +cXu +deJ +dgv +dhH +djF +dlt +dmL +dnX +dpx +dqW +dsC +dua +dvg +dwG +dxM +dyQ +dAg +dBz +dCQ +dEk +dEM +dGk +ahA +dIw +dIZ +dJU +dKL +egy +dMQ +dNN +dPx +dPx +dOH +dPw +dQk +dQZ +dQk +dSO +dPw +dQk +dQZ +dQk +dVW +dWC +dXa +dXH +dYt +dZi +dXb +aaf +aaf +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(146,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaa +aaf +aaa +aaa +aaf +aaa +aax +ack +aax +aax +aax +aax +aax +aax +ack +aax +aaa +aaf +aaa +aaa +aaa +aaD +agl +agN +ahA +ais +ajo +akp +alo +amm +anz +ahA +apc +aqu +arv +asP +atR +avj +arv +arv +ayy +aqc +aAx +aBF +aCP +aEg +aFC +aGX +aGY +aJA +aLa +aMJ +aOr +aPY +aRG +aJA +aGY +aGY +aUP +aZW +bbr +bcC +bdY +bfS +bhJ +bjA +bkP +eqU +boH +bqt +aaa +bsS +bue +bsV +bxF +bzy +bBd +bCS +bEy +bEx +bIn +bKt +bMt +bEx +bQr +bSD +bQr +bQr +bYe +bZV +bQr +bQr +bSD +bQr +bQs +aaa +aaa +cmt +cnQ +cpp +cqH +cqH +ctL +cqH +cqH +cqH +cqH +cqH +cqH +bla +bmX +cGP +cIk +cJY +cLA +cNn +cPc +cLB +cSm +cTY +cVE +cXu +cYU +dah +dbC +dcW +deK +dgx +dhI +djG +dlt +dmM +dnX +djG +dqX +dsB +dtZ +dvg +esj +dxN +dyR +dAh +dBA +dCR +dsE +dEN +dGl +dHK +dIx +dJa +dJV +ako +dLQ +dMR +dNO +dPx +dPx +dOI +dPx +dQl +dRa +dRV +dSP +dPx +dQl +dRa +dRV +dVX +dWB +dXb +dXI +dYu +dZj +dZS +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(147,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aax +egU +aax +aaf +aaa +aaa +aaf +aax +egW +aax +aaf +aaf +aaf +aaf +aaf +aax +agl +agN +ahA +ahA +ajp +akq +alp +amn +ahA +ahB +aib +aqv +arv +arv +atS +avk +awk +axj +ayy +azy +aAx +aBG +aCM +aEf +aFB +aGX +aGY +aJA +aLb +aMK +aGY +edf +aRH +aJA +aGY +aGZ +aYv +aZV +edb +bcD +bdZ +bfP +bhK +bjA +bkP +bmL +boH +bqt +aaa +bsT +buf +bvM +bxG +bzy +bBd +bCN +bEB +bGx +bGx +bGx +bGx +bGx +bQs +bQr +bQr +bQr +bYf +bZW +cbJ +cdA +cdA +cgw +cib +aaf +aaf +cmu +cnR +cpv +cqK +aaf +aaf +cvr +cwG +cym +czZ +cBz +cCW +blb +bmX +boR +cIm +cJZ +cLH +cNk +cPa +cLI +cSn +cTZ +cVF +cXv +cYV +cXu +dbD +cXu +deL +dgv +dhJ +djH +dlt +dmK +dnY +dpy +dqY +dsD +dub +dvh +dwI +dxO +dyS +dAh +dBB +dCS +dsE +dEO +dGm +dHL +dIy +dJb +dJW +dKM +dLR +dMS +dNO +dPx +dPx +dOI +dPx +dQm +dRb +dRV +dSP +dPx +dTZ +dRb +dVk +dVX +dWB +dXc +dXJ +dYv +dZk +dZT +aaf +aaf +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(148,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aaa +aaf +aaa +aaa +abq +abU +abV +acl +abV +abW +abW +abW +abW +adL +acl +abV +abV +aaa +aaa +aaa +aaa +aaD +agp +agU +ahD +afO +ajq +akr +alq +amo +amo +afO +apd +aqw +arw +arv +atT +avl +arv +arv +ayy +aqc +aAx +aBH +aCQ +aEh +aFB +aGZ +aGY +eqF +aJA +aML +aGY +aPZ +aRI +aTq +aGY +aWO +aYw +aZX +bbs +aZX +bbs +bfT +bhL +bjA +bkP +bmO +boH +bqt +aaa +bsT +bug +bvN +bvP +bzy +bBl +bCT +bEC +bGx +bIo +bKu +bMu +bOq +bQt +bSE +bUJ +bWv +bYg +bZX +cbK +cdB +cfd +cgx +bQs +aaa +aaa +cmt +cnM +cpw +cmt +csd +cqK +cvs +cwH +cyn +cAa +cBA +cCX +blb +cFy +boR +cIi +cKa +cLI +cNo +cPd +cLH +cSo +cTY +cVG +cXw +cYW +dai +dbE +dcX +deM +dgv +dhK +djI +dlu +djI +djI +djI +dqZ +dsB +duc +dvi +dwJ +dxP +dyT +dAi +dBC +dCT +dsE +dEP +dGn +ahA +dIz +dJc +dJX +dKN +dLS +dMT +dNO +dPx +esq +dOI +dPx +dQl +dRc +dRV +dSP +esq +dQl +dRc +dRV +dVX +dWD +dXd +dXK +dYw +dZl +dZR +aaf +agg +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(149,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aaa +aaf +aaa +abp +abq +abV +abY +acm +acs +acH +acH +acH +acH +adM +acm +aei +abV +aaa +aaa +aaa +aaa +aax +ago +agV +ahE +afP +ahE +ahE +ahE +amp +ahE +afP +ahE +aqx +arx +asQ +atU +avm +awl +axk +ayy +aqe +aAx +aBI +aCR +aEi +aFB +aHa +aIg +aGY +aGY +aMM +aGY +aQa +aGY +aGY +aUS +aWP +aUQ +aZY +aZX +bbs +aZX +bfU +efu +aYx +bkP +bmP +boK +bqt +aaa +bsU +buh +bvO +bxH +bzD +bBm +bCU +bED +bGx +bIp +bKv +bMv +bOr +bQu +bSE +bUK +bWw +bYh +bZY +cbK +cdC +cfe +bQr +bQs +cjB +cjB +cmt +cnS +cpx +cqL +cse +ctM +cvt +cwI +cyo +cwI +cwI +cCY +cDQ +cFz +boS +cIi +cKb +cLJ +cNp +cPe +cQU +cSp +cTW +cVH +cXx +cYX +cTW +dbF +dcY +dbF +dgv +dhL +djJ +dlv +dmN +dlv +dpz +dra +dsE +dsB +dvj +dsB +dsE +dyU +dAj +dBD +dCU +dsE +dEQ +dGo +ahA +ahA +ahC +dJY +dKO +ahA +dMQ +egC +dPw +dPw +dOJ +dPx +dQn +dRd +dRW +dSP +dTu +dUa +dRd +dVl +dVX +dWB +dXe +dXL +dYx +dZm +dZR +aaf +agg +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(150,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aaa +aaf +aaa +abp +abF +abW +abZ +acn +acn +acn +acn +acn +acn +acn +acn +aej +abV +abV +abW +abV +aaa +aax +agt +agW +ahF +ait +ajr +aks +alr +amq +anA +aiu +ape +aqy +ary +asR +arv +arv +arv +arv +ayy +azz +aAx +aAx +aAx +aAx +aFD +aHb +aHb +aJB +aJB +aMN +aOs +aQb +aJB +aJB +aHb +aHb +aYx +aUP +bbt +bbt +bbt +bfV +aUP +bjB +bkP +bmQ +boL +boZ +aaf +bsV +bui +bvP +bvP +bzE +bBn +bCV +bEE +bGy +bIq +bKw +bMw +bOs +bQu +bSF +bUL +bWx +bYh +bZZ +ecz +ecz +ecz +ecE +ecG +cjC +clc +cmt +eiP +cpy +cqM +csf +ctN +cvr +cwJ +cyp +cAb +cBB +cvs +cDR +cFA +cGT +cIn +cKc +cIi +cNq +cPf +cIi +cKc +cUb +cTY +cTW +cTY +cTV +dbG +dcZ +deN +dgv +dgv +dgv +dlw +dmO +dmO +dmI +dgv +dsE +dbG +dcZ +deN +dsE +dsE +dsE +dsE +dsE +dsE +dER +dGp +dgB +dIA +dJe +dJZ +dKP +dLT +dMU +dNO +dPx +dPx +dOK +dPx +dQl +dRa +dRV +dSP +dPx +dQl +dRa +dRV +dVX +dWE +ahL +dXk +dYy +dXk +dZR +aaf +agg +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(151,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aaa +aaf +aaa +abp +abF +abW +aca +acn +acn +acI +acI +acI +acI +adN +acn +aek +aex +aeN +aeV +abW +aaa +aax +agl +agX +ahG +aax +ajs +akt +eqx +amr +anB +aaD +apf +aqz +arz +asS +atV +avn +awm +awm +ayA +azA +aAy +aBJ +awm +awm +aFE +awm +awm +awm +awm +aMO +awm +ayA +awm +awm +aUT +aWQ +aYy +awm +awm +awm +bea +bfW +awm +bjC +bkT +bmR +boM +bqt +aaa +bsW +buj +bvQ +bvP +bzF +bBo +bCW +bEF +bGx +bIr +bKx +bMx +bOt +bQv +bQv +bQv +bWy +bYi +caa +cbL +cdD +bQv +bQv +bQv +cjD +cld +cmv +cnP +cpz +cqN +csg +ctN +cvs +cwK +cyq +cAc +cBC +cCW +cDS +cFB +cGU +cIo +cKd +cKd +cNr +cPg +cKd +cKd +cUc +cVI +cVI +cVI +cVI +cVI +cVI +cVI +dgy +cUc +djK +dlx +dmP +dmP +dpA +drb +dgy +dud +cVI +cVI +cUc +cKd +cKd +cKd +cKd +cKd +cPg +dGq +dHM +dIB +dJf +dJf +dKQ +dLU +dMV +egD +egJ +egJ +dOL +dPy +dQm +dRb +dRX +dSP +dPx +dQl +dRb +dVk +dVX +dWB +dXb +egQ +dYz +dZn +dZR +aaf +agg +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(152,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aaf +aaf +aaa +egS +abq +abU +acb +acn +act +ehj +acJ +adh +acJ +adt +ehl +ael +aey +aeO +aeW +abW +aaa +aax +agl +agY +ahH +aax +ajt +aku +als +ams +anC +aaD +apg +aqA +agX +asT +atW +avo +awn +axl +eqB +azB +axl +aBK +axl +axl +aFF +axl +axl +axl +axl +aMP +aOt +aQc +aRJ +aTr +aUU +axl +aYz +axl +eqB +bcE +beb +bfX +axl +bjD +bkU +bmS +boN +bqt +aaa +bsX +buk +bvR +bxI +bzG +bBp +bCX +bEG +bGz +bIs +bKy +bMy +bMy +bQw +bSG +bUM +bWz +bYj +cab +cbM +bWz +cff +bSG +cic +cjE +cle +cmw +cnT +cpA +cqO +csh +ctO +cvs +cwL +cyr +cAd +cBD +cCW +cDT +cFC +cGV +cIp +cKe +cKe +cNs +cPh +cKe +erV +cKe +cVJ +cKe +cKe +cKe +cKe +cKe +cKe +dgz +cKe +cKe +dly +cKe +erV +cKe +drc +dgz +cKe +cKe +eiI +eiK +dyV +eiK +eiK +esn +eiK +dES +dGr +dHN +dIC +cKe +dKa +dKR +dLV +dMW +dNO +dPx +dPx +dOM +dOK +dQl +dRc +dRV +dSP +dPx +dQl +dRc +dRV +dVY +dWF +dXf +dXN +dYA +dZo +dXb +aaf +aaf +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(153,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aaa +aaf +aaa +abp +abF +abW +acc +acn +acn +acH +acH +acH +acH +adO +acn +aem +aez +aeP +aeV +abW +aaa +aax +agl +agX +ahI +aax +aju +akv +akt +akt +anD +aaD +aph +aqB +arA +asU +atX +avp +awo +axm +axm +azC +aAz +aBL +aCS +aEj +aEj +aCS +aIh +aJC +axm +aMQ +axm +axm +aRK +aTs +aUV +axm +aYA +axm +bbu +bcF +bec +bbu +bhN +asU +bkV +bmT +boO +bqt +aaa +bsY +bul +bvQ +eqZ +bzE +bBq +bCY +bEH +bGx +bIt +bKz +erl +bOu +bQu +bQu +bQu +bWA +bYh +bZY +bWx +cdF +bQu +bQu +bQu +cjF +clf +cmt +cnU +cpB +cqP +csi +ctP +cvs +cwM +cys +cAe +cBE +cCW +cDU +cFD +cGW +cIq +cKf +cKf +cNt +cPi +cQV +cSq +cUd +cVK +cXy +cYY +cYY +dbH +cYY +cYY +dgA +cSq +djL +cSq +dmQ +dnZ +dpB +drd +dsF +due +dpB +eiJ +dxQ +dyW +dAk +cSq +cSq +dEl +dET +dGs +dHO +dID +dJg +dKb +dKb +dLW +dMV +egD +egJ +egJ +dON +dPz +dQo +dQo +dQo +dSQ +dPx +dPx +dUF +dPx +dVZ +dWB +dXg +dXO +dYB +dZp +dZS +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(154,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aaa +aaf +aaa +abp +abF +abW +abZ +acn +acn +acn +acn +acn +acn +acn +acn +ecc +abV +abV +abW +abV +aaa +aax +agl +agX +ahJ +aiu +ajv +akw +alr +amt +anE +ait +api +aqy +arB +asV +asW +avq +asW +asW +asW +asW +asW +aBM +aCT +aEk +aEk +aHc +aEk +aBM +aBM +aBM +aBM +ehV +aRL +aTt +ehW +ehV +ehV +aZZ +bbv +bcG +bed +bbv +bhO +bjE +bkW +bmU +boP +boZ +aaf +bsV +bum +bvP +bvP +bzE +bBr +bCZ +bEI +bGA +bIu +bKA +bMw +bOv +bQu +bSH +bUL +bWx +bYh +cad +cbN +cbN +cbN +ecE +ecG +cjG +clg +cmt +cnV +cpC +cqQ +csj +ctP +cvr +cwJ +cyt +cAf +cBF +cvs +cDV +cFE +cGX +cIr +cIw +cIs +cNu +cPj +cQW +cIw +cKs +cVL +cXz +cVL +daj +dbI +dda +deO +eqg +eqg +djM +eqg +eqg +eqg +doa +dre +doa +dcZ +dbG +dwK +dwK +dwK +dAl +dwK +dwK +dwK +dEU +dGt +dgB +dIE +dJh +dKc +dJh +egz +dMX +dNR +dOO +dOO +dOO +dOO +dOO +dOO +dOO +dOO +dOO +dOO +dOO +dOO +dOO +dWG +dXh +dXP +dYC +dZq +dZT +aaf +aaf +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(155,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aaa +aaf +aaa +abp +abq +abV +abY +aco +acu +acI +acI +acI +acI +adP +aco +aen +abV +aaa +aaa +aaa +aaa +aax +ago +agV +ahE +afP +ahE +akx +ahE +ahE +ahE +afP +ahE +aqC +arB +asW +atY +avr +awp +axn +ayB +azD +aAA +aBM +aCU +aEk +aFG +aHd +aIi +aJD +aLc +aMR +aBM +aQd +aRM +aTu +aUW +aWR +ehV +baa +bbw +bcH +bee +bfY +bhP +bbv +bkW +bmV +boQ +bqt +aaa +bsS +bun +bvO +bxJ +bzH +bBs +bDa +bEJ +bGx +bIv +bKB +bMA +bOw +bQu +bSE +bUN +bWB +bYh +bZY +ecA +cdG +cfg +bQr +bQs +cjB +cjB +cmt +cnW +cpD +cqR +csk +ctQ +cvu +cwN +cyu +cwN +cwN +cvu +cDW +cFF +cGY +cIs +cKg +cLK +cNv +cPk +cQX +cSr +cKs +cVM +cXA +cYZ +cXz +dbJ +ddb +cVL +eqg +dhM +djN +dlz +dmR +eqg +dpC +drf +doa +duf +dvk +dwK +dxR +dyX +dAm +dBE +dCV +dwK +dEV +dGu +dgB +dgB +dJi +dJi +dJi +dgB +dMQ +egF +egL +dPA +dUG +dPA +dPA +dPA +dPA +dPA +dPA +dPA +dUG +dPA +dPA +dPA +dXi +dXQ +dYD +dZr +dZR +aaf +agg +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(156,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aaa +aaf +aaa +aaa +abq +abU +abV +acl +abV +abW +abW +abW +abW +adL +acl +abV +abV +aaa +aaa +aaa +aaa +aaD +agu +agZ +ahK +afO +ajw +aky +alt +amo +amo +afO +apj +aqD +arC +asW +asW +asW +asW +asW +asW +azE +asW +aBM +aCV +aEl +aFH +aHe +aIj +aJE +aLd +aMS +aEk +aQe +aRN +aTv +aUX +aWS +aYB +bab +bbx +bcI +bef +bbz +bhQ +bbv +bkW +bmW +boR +bqt +aaa +bsT +buo +bvS +bvP +bzy +bBt +bDb +bEK +bGx +bIw +bKC +bMB +bOx +bQs +bSE +bUO +bWC +bYl +cae +ecA +cdH +cfh +cgx +bQs +aaa +aaa +cmt +cnV +cpE +cmt +csl +cqK +cvs +cwH +cyv +cAa +cBG +cCX +bkP +bmW +cGY +cIs +cKh +cLL +cNw +cPl +cQY +cSs +cUe +cVN +cXB +cZa +dak +dbK +ddc +deP +eqg +dhN +djO +dlA +eqo +eqg +dpD +drg +dsG +dug +dvl +dwK +dxS +dyY +dAn +dBF +dyY +dwK +dEW +dGv +dHP +aaa +aaf +aaa +aaf +aaa +dMY +dMY +dMY +dMY +dMY +dMY +dMY +dRe +dRY +dRe +dMY +dMY +dUH +dMY +dMY +dRe +dXj +dXR +ahM +dZs +dZU +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(157,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aax +egV +aax +aaf +aaa +aaa +aaf +aax +egV +aax +aaf +aaf +aaf +aaf +aaf +aax +agl +agN +ahL +ahL +ajx +akz +alu +amu +ahL +ahN +aeX +aqE +arD +asW +atZ +aua +awq +ejv +ayC +azF +aAB +aBN +aCW +aEl +aFI +aHf +aIk +aJF +aLe +aMT +aOu +aQf +aRO +aTw +aUY +aWT +aYC +bac +bby +bcJ +beg +bfZ +bhR +bjF +bkW +bmX +boR +bqt +aaa +bsT +bup +bvT +bxK +bzy +bBd +bCN +bEB +bGx +bGx +bGx +bGx +bGx +bQs +bQr +bQr +bQr +bYm +caf +cbO +cdA +cdA +cgw +cib +aaf +aaf +cmu +cnX +cpF +cqK +aaf +aaf +cvr +cwO +cyw +cAg +cBH +cCW +bkP +bmX +cGY +cIt +cKi +cLM +cNx +cPm +cQZ +cSt +cUf +cVO +cXC +cZb +cZb +dbL +ddd +deQ +eqg +dhO +djP +dlB +dmS +dob +dpE +drh +dsH +duh +dvm +dwL +dxT +dyZ +dAo +dBG +dCW +dwK +dEX +dGw +dHP +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaa +aaa +dMY +dPA +dMY +dPA +dMY +aaf +aaf +aaf +dMY +dPA +dXk +dXS +dXk +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(158,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaa +aaf +aaa +aaa +aaf +aaa +aax +ack +aax +aax +aax +aax +aax +aax +ack +aax +aaa +aaf +aaa +aaa +aaa +aaD +agv +equ +ahL +aiv +ajy +akA +alv +amv +anF +ahL +apk +aqF +arE +asW +aua +avs +awr +axo +ayD +azG +aAC +aBO +aCX +aEm +aFJ +aHg +aIl +aIl +aLf +aMU +aOv +aQg +aRP +aTx +aUZ +aWU +ehW +bad +bbz +bcK +beh +bga +bhS +bjG +bkX +bmY +boS +bqt +aaa +bsU +bue +bsV +bxL +bzy +bBd +bCN +bEL +bEL +bIx +bKD +bMC +bEL +bQr +bSI +bQr +bQr +bYn +cag +cbP +bQr +bSI +bQr +bQs +aaa +aaa +cmt +cnY +cpG +cqS +cqS +ctR +cqS +cqS +cqS +cqS +cqS +cqS +cDX +bmX +cGY +cIt +cKi +cLL +cNy +cPn +cLM +cSu +cUg +cVP +cXD +cZc +dal +dbM +dde +deR +dgC +dhP +djQ +dlC +dmT +doc +dpF +dri +dsI +dui +dvn +dwK +dxU +dza +dAp +dBH +dCX +dwK +dEY +dGx +dHP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dMY +epO +dMY +epO +dMY +aaa +aaa +aaa +dMY +epO +dXk +epS +dXk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(159,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aay +aaD +aaD +aaD +aaD +aaD +aax +aax +aaD +abR +aax +egW +aax +acK +acY +adi +adr +aax +egU +aax +abP +aaD +aax +aax +aaD +afR +agl +agN +ahM +aiw +ajz +akB +alw +amw +anG +aoo +apl +aqG +arF +asX +aub +avt +aws +axp +ayE +azH +aAD +aBP +aCY +aEn +aFK +aHh +aIm +aJG +aLg +aBM +aBM +aQh +aRQ +aTy +aUZ +aWV +eib +bae +bbz +bcL +bei +bbz +bhT +bjH +bkS +bmZ +boJ +bqu +aaf +aaf +aaf +bsS +bxM +bzI +bBj +bDc +bEM +bGB +bIy +bKE +bMD +bEL +bEL +bEL +bQC +bQC +bQC +bQC +bQC +bQC +cfi +cfi +cfi +cfi +cfi +cfi +eiQ +eiS +cqS +csm +ctS +cvv +cwP +cyx +cAh +cBI +cqS +bkP +bmX +cGY +cIs +cKj +erQ +cNx +cPo +cLO +cSv +cUh +cVQ +cXE +cZd +dam +dbN +cZb +deS +eqg +dhQ +djR +dlD +dmU +eqg +dpG +drj +dsJ +duj +dvo +dwM +dxV +dxX +dAq +dBI +dxW +dwK +dEZ +dGy +dHP +aaa +aaa +aaa +aaa +dJk +dKS +dKT +dKT +dKU +dKU +dKT +dKT +dRg +dRZ +dSR +dKT +dKU +dKU +dKU +dKT +dRg +dKT +dXT +dKT +dKT +dKT +dKT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(160,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aau +aau +aau +aaM +aaR +aax +abb +aaP +aaP +abG +aaP +aaP +aaP +acq +acF +acZ +acF +acF +acF +acF +acF +acF +aeQ +acF +acF +afz +afP +agw +aha +ahN +aix +ajA +akC +alx +amx +anH +ahL +apm +aqH +arG +asY +auc +avu +awt +axq +ayF +azI +aAE +aBN +aCZ +aEo +aFL +aEo +aEo +aJH +aEo +aMV +aOw +aQi +aRQ +aTz +aVa +aWU +ehW +baf +bbA +bcM +bej +bby +bhU +bjI +bkV +bmX +boR +bqt +aaa +aaf +aaa +bsY +bxN +bzJ +bBd +bDd +bEL +bGC +bIz +bIB +bME +bOy +bQy +bSJ +bUP +bWD +bYo +cah +cbQ +bQC +cfj +cfj +cid +cjH +clh +cfi +cnV +cpH +cqT +csn +ctT +cvw +cwQ +cwQ +cAi +cBJ +cqT +cDY +bmY +cGZ +cIs +cKk +cLL +cNx +cPp +cLM +cSw +cKs +cVR +cXF +cXF +cXF +dbO +cXF +deT +dgD +dgD +dgD +dgD +dgD +dod +dpH +drk +dsK +duk +dvp +dwN +dxS +dzb +dAr +dBJ +egt +dwK +dFa +eso +dHQ +aaa +aaa +aaa +dJj +dKd +dKT +dLY +ehr +dNT +dNT +dPB +dMZ +dOS +ehs +dOS +dMZ +dNT +dNT +dNT +ehr +dOS +dKT +dXU +dYF +dZt +dZV +dKT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(161,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaq +aav +aaA +aaF +aaN +aaS +aaW +abc +abh +abh +abh +abh +abh +abh +acr +abh +ada +abh +abh +adJ +abh +abh +abh +abh +abh +abh +afA +aba +agx +ahb +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ahL +ajD +aiB +arH +asZ +aud +avv +awu +axr +ayG +azJ +aAF +aBQ +aBQ +aEp +aFM +aHi +aBQ +aBQ +aLh +aHi +aOx +aQj +aRR +aTA +aVb +aWX +ehW +baf +bbz +bcK +bek +bbz +bhR +bjF +bkY +bna +boR +bqt +aaa +aaf +aaa +bsV +bxC +bzA +bBu +bDe +bEN +bGD +bIA +bKF +bMF +bOz +bQz +bSK +bUQ +bWE +bYp +cai +cbR +bQC +cfj +cfj +cie +cjI +cli +cmx +cnZ +cpI +cqU +cso +ctU +cvx +cwR +cyy +cAj +cBK +cCZ +cDZ +bna +cGY +cIu +cKl +cLN +cNx +cPq +cLL +cSx +cUe +cVS +cXG +cZe +dan +dbP +ddf +deU +dgD +dhR +djS +dlE +dmV +dod +dpI +drl +dsL +dul +dvq +dwN +dxW +dxW +dAq +dBI +dxX +dwK +dEX +dGA +dHP +aaa +aaa +aaa +dJj +dKd +dKU +dLZ +dNa +dNa +dNa +dNa +dNa +dNa +dNa +dNa +dNa +dNa +dNa +dNa +dNa +dWH +dXl +dXU +dXU +dXU +dZV +dKU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(162,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aau +aau +aau +aaM +aaT +aax +abd +aaQ +aaQ +abH +aaQ +aaQ +aaQ +aaQ +aaQ +adb +aaQ +aaQ +adK +aec +aea +aew +aeR +aea +aea +afB +afS +agj +ahc +aeX +aiy +ajB +akD +aly +aly +anI +agA +agA +aqI +arI +asZ +aue +avw +awv +axs +ayH +azK +aAG +aBQ +aDa +aEq +aFN +aHj +aIn +aJI +aLi +aMW +aOy +aQk +aRQ +eqI +aUZ +aWY +ehW +baf +bbz +eqQ +bei +bbz +bhV +bbv +bkW +bmX +boR +bqt +aaa +aaf +aaa +bsV +bxO +bzK +bBv +ere +bEO +bGE +bIB +bKG +bMG +bOA +bQA +bSL +bQC +bWF +bYq +caj +cbS +bQC +cfk +cfk +cif +cjJ +clj +cfi +coa +cpG +cqS +csp +ctV +cvy +cwS +cyz +cAk +cBL +cqS +bkP +bmX +cGY +cIs +cKm +cLL +cNx +cPp +cLM +cSy +cKs +cVT +cXz +cZf +cXz +dbQ +ddg +deV +dgD +dhS +djT +dlF +dmW +dod +dpJ +drm +dsM +dum +dvr +dwN +dxS +dzc +dAs +dBK +dCZ +dwK +dFb +dGB +dHP +aaa +aaa +aaa +dJj +dKd +dKU +dLZ +dNa +dNU +dNU +dNU +dNU +dNU +dNa +dNU +dNU +dNU +dNU +dNU +dNa +dWH +dKT +dXV +dXU +dXU +ehw +dKT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(163,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaB +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +acv +acL +adc +aaG +aaG +acv +aed +aeo +aaG +aaG +aeX +afm +aeX +aeX +agy +ahd +aeX +aiz +ajC +ajC +alz +amy +anJ +aop +ahg +aqJ +arJ +asZ +aue +avv +aww +axt +ayI +azL +aAH +aBQ +aDb +aEr +aFO +aHk +aIo +aJJ +aLj +aMX +aOz +aQl +aRS +aTB +aUZ +aWZ +aYD +bag +bbz +bcL +bei +bbz +bhW +bbv +bkW +bmX +efz +boZ +aaf +aaf +aaf +bsV +bxP +bzy +bBd +bDf +bEL +bGF +bIB +bKH +bMH +ebJ +bOB +bSM +bQC +bWG +bYr +cak +cbT +cdI +cfl +cfk +cig +cjK +clk +cmy +cob +cpJ +cqS +csq +ctW +cvz +cwT +cyA +cAl +cBM +cqS +bkP +eqV +cGY +cIs +cKn +cLM +cNx +erR +cLL +cSz +cIs +cVU +cXH +egd +cKs +dbR +ddh +deW +dgD +dhT +djU +dlG +dmX +dod +dpK +drn +dsN +dun +dvs +dwN +dxX +dxW +dAq +dBI +dDa +dwK +dEZ +dGC +dHQ +aaf +aaa +aaa +dJk +dJk +dKT +dLZ +dNa +dNV +dOQ +dPC +dQp +dNV +dNa +dSS +dQp +dUb +dOR +dSS +dNa +dWH +dKU +dXV +dXU +dZu +dZV +dKT +dKT +dRZ +dKU +dKT +dKT +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(164,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaG +aaX +aaG +abi +abr +abI +abX +acd +aaG +acw +acM +add +adj +adu +adQ +aee +adQ +aeA +aaG +aeY +afn +afn +aeX +agz +ahe +aeX +aiA +ajD +aeX +aeX +aeX +afF +aeX +aeX +aeX +arK +asZ +auf +avx +awx +axu +aua +azM +aAI +aBQ +aDc +aEs +aFP +aHl +aIp +aJK +aLk +aMY +aOA +aQm +aRT +aTC +aVc +aXa +ehV +bah +bag +bcN +bek +bgb +bhX +aZZ +bkZ +bmX +boR +bqt +aaa +aaf +aaa +bsV +bxz +bzy +bBd +bDg +bEL +bGG +bIC +bKI +bIB +bOC +bQB +bSN +bUR +bWH +bYr +cal +cbU +bUP +cfm +cgz +cih +cjL +cll +cmz +coc +cpK +cqS +cqS +ctX +cvA +cwU +cyB +cAm +cBN +cqS +cEa +bmX +cHa +cIv +cKo +cLO +cNz +cPr +cLM +cSA +cUi +cVV +cXI +cZh +dao +dbS +ddi +deX +dgE +dhU +djU +dlH +dmY +doe +dpL +dro +dsO +duo +dvt +dwN +dxY +dzd +dAt +dBL +dDb +dwK +dEX +dGA +dHP +aaa +aaa +aaa +dJj +dKd +dKT +ehp +dNa +dNT +dNT +dNT +dNT +dNT +dNa +dNT +dNT +dNT +dNT +dNT +dNa +dWH +dKT +dXW +dXU +dZv +dZW +dKT +eat +eax +eaD +eaL +dKT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(165,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aaH +aaU +aaY +abe +abj +abs +abJ +abJ +ace +acp +acx +acN +ade +adk +adv +eqt +aef +adR +aeB +aeS +aeZ +afo +afC +aeX +aeX +aeX +aeX +aiB +ajE +aeX +alA +amz +anK +amz +apn +aeX +arL +asZ +asW +avy +awy +asW +ayJ +asW +asW +aBQ +aBQ +aEt +aFQ +aHm +aBQ +aBQ +aEp +aMZ +aOx +atc +aRU +aTD +ata +aXb +aXb +aXf +bbB +bcO +bel +aXf +aXb +aXb +bla +bmX +boR +bqt +aaa +aaf +aaa +bsV +bxw +bzL +bBc +bCL +bEL +bGH +bID +bKJ +bMI +bEL +bQC +bQC +bQC +bWI +bYs +cam +cbV +bQC +cfn +cgA +cii +cjM +clm +cfi +cod +ery +cqV +cqS +ctY +cvB +cwV +cyC +cAn +cBO +cDa +cDL +bmX +cGY +cIt +cKp +cLM +cNx +cPm +cLL +cSA +cUj +cUu +cXJ +cZi +dap +dbT +ddj +deY +dgE +dhV +djV +dlI +dmZ +dof +dpM +drp +dsP +dup +dvu +dwN +dxZ +dze +dAu +dBM +dDc +dwK +dEY +dGz +dHP +aaa +aaa +aaa +dJj +dKd +dKU +dLZ +dNa +dNa +dNa +dNa +dNa +dNa +dNa +dNa +dNa +dNa +dNa +dNa +dNa +dWI +dKT +dKT +dXl +dKU +dRZ +dKT +eau +eay +eaE +eaM +dKU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(166,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaG +aaZ +aaG +abk +abt +esv +epT +acf +aaG +acy +adf +adl +esx +abK +abK +aeg +aep +aeC +aaG +afa +afp +afD +afT +agA +ahf +ahO +aiC +ajF +aeX +alB +amA +anL +aor +alC +aeX +arM +ata +aug +avz +awz +axv +ayK +azN +aAJ +avF +aDd +aEu +aFR +aHn +aIq +aJL +aLl +aNa +aOB +aQn +aRV +aTE +aVd +aXc +aYE +bai +bbC +bcP +bem +bgc +bhY +aXb +blb +bmX +boR +bqt +aaa +aaf +aaa +bsV +bxy +bzM +bBw +bxy +bEL +bGI +bIE +bIE +bIB +bOD +bQC +bSO +bUS +bWJ +bYt +can +cbW +bQC +cfo +cfk +cij +cjN +cln +cmA +cnV +cpG +cqW +cqS +ctZ +cvC +cwW +cyD +cAo +cBP +cDb +cDL +bmX +cGY +cIs +cKq +cLL +cNw +cPl +cLM +cSA +cUk +cVX +cLM +cSA +cIs +dbT +ddk +deY +dgE +dhW +djW +dlJ +dna +dog +dpN +drq +dsQ +duq +dvv +dwN +dwK +dwK +dAv +dBN +dwK +dwK +dFc +dGD +dHQ +aaf +aaa +aaa +dJk +dJk +dKT +ehp +dNa +dNU +dNU +dNU +dNU +dNU +dNa +dNU +dNU +dNU +dNU +dNU +dNa +dWH +dKU +dXX +dYG +dZw +dZX +dNc +eav +eav +eaF +eaN +dKU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(167,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaf +aaG +aaG +abf +abl +abu +abL +abf +acg +aaG +acg +acg +acg +acg +adw +acg +acg +acg +acg +aaG +afb +afq +afE +afU +agB +eqw +afE +aiD +ajG +aeX +alC +amB +anM +amA +apo +aeX +arN +ata +auh +avA +awA +axw +ayL +azO +aAK +avG +awC +aEv +aFS +azQ +awC +awC +aLm +aul +aOC +aQo +aRW +aTF +aVe +aXd +aYF +baj +bbD +bcQ +ben +bgd +bhZ +aXf +bkW +eqV +boU +boZ +brL +brL +brL +bsV +bxx +bzy +bBd +bDh +bEL +bGJ +bIF +bKK +bMJ +bOE +bQC +bSP +bUT +bWK +bYu +cao +cbX +bQC +cfp +cfk +cik +cjO +clo +cfi +cnV +cpG +cqX +cqS +cua +cvD +cwX +cyE +cAp +cBQ +cDc +cDL +bmX +cGY +cIs +cKr +cLP +cNA +cPs +cRa +cSB +cIs +cVY +cXK +cZj +cKs +dbT +esc +deY +dgD +dhX +djX +dlK +dnb +dod +dpO +drr +dsR +dur +dvw +esz +dya +esD +dAw +dBO +dDd +esB +dFd +dGE +dHP +aaa +aaa +aaa +dJj +dKd +dKU +dLZ +dNa +dNV +dOR +dPC +dQp +dNV +dNa +dSS +dOQ +dUb +dUI +dSS +dNa +dWH +dXm +dLZ +dNa +dNa +dZY +dXm +eav +eav +eaG +eaO +dKU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(168,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaf +aaf +aaf +abf +abm +abv +abM +abf +aaf +aaG +esw +acP +acP +acP +edj +acP +acP +acP +esy +aaG +afc +afr +eqd +afc +aeX +afc +ahQ +afc +aeX +aeX +alD +amC +anM +aos +app +aeX +arN +atb +aui +avB +awB +axx +ayM +azP +aAL +aBR +aDe +aEw +aFT +aFT +ayM +ayM +aLn +auq +aOD +aQp +aRX +aOE +aVf +aXe +aYG +bak +bbE +bcR +beo +bbD +bia +bjJ +blc +bmY +boV +boZ +brM +brM +brK +bsV +bxw +bzN +epE +bCL +bEL +bEL +bEL +bEL +bEL +bEL +bQC +bQC +bQC +bQC +bQC +bQC +bQC +bQC +cfi +cfi +cil +cfi +cfi +cmB +cnL +cpo +cqY +cqS +cqS +cqS +cqS +cqS +cqS +cqS +cDd +bkS +bmZ +boJ +cIw +cKs +cIs +cNB +cPt +cIs +cIw +cKs +cIs +cXL +cIs +cKs +dbT +ddl +deZ +dgF +dgE +djY +dlL +dgE +dod +dpP +drs +dsS +drs +dvx +esz +dyb +dzf +dAx +dBP +dDe +esB +dFe +dGF +dHP +aaa +aaa +aaa +dJj +dKd +dKU +dLZ +dNa +dNT +dNT +dNT +dNT +dNT +dNa +dNT +dNT +dNT +dNT +dNT +dNa +dWH +dXm +dLZ +dNa +dNa +dZY +dXm +eav +eav +eaH +eaP +dKU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(169,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaf +aaf +abg +abn +abw +ebg +abf +aaa +aaG +acA +acz +acQ +acR +acR +acR +acR +aeq +aeD +aaG +afd +afs +afG +afV +aeX +afn +ebW +aiE +eeC +akE +alB +amC +anN +amE +amE +aqK +arN +atc +auj +avC +awC +axy +ayN +azQ +axA +awC +aDf +aEv +aFU +awC +ayQ +awC +aLo +aNb +aDe +aQq +aRY +aDe +aVg +aXf +aYH +bal +eqO +bcS +bep +bge +bib +aXf +bkW +bnb +boW +bqq +brN +bsZ +brN +bvU +bxQ +bzO +bBx +bxQ +brN +bGK +brN +brN +brN +bqq +bsZ +bSQ +brN +brN +bsZ +brN +brN +brN +brN +cgB +cim +brN +brN +bqq +bkT +cpL +brH +csr +bmI +cvE +cwY +brH +brH +brH +brH +bkT +cFG +ebU +cIg +cKs +cLQ +cNv +cPu +cRb +cRb +cUl +cRb +cXM +cZk +cRb +dbU +ddm +dfa +dat +dhY +djZ +dlM +dnc +doh +dnc +drt +dsT +dnc +ego +dwO +dyc +dzg +dAy +dBQ +dDf +dwO +dFf +dGG +dHQ +aaf +aaa +aaa +dJk +dJk +dKT +dLZ +dNa +dNa +dNa +dNa +dNa +dNa +dNa +dNa +dNa +dNa +dNa +dNa +dNa +dWH +dKU +dXY +dYH +dZx +dYJ +dNc +eav +eaz +eaF +eaQ +dKU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(170,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +abf +abo +abx +abO +abf +aaf +aaG +acA +acQ +acR +acR +acR +acR +acR +acR +aeD +aaG +afe +aft +afH +afW +agC +afn +ahR +aiF +aeX +akF +alE +amD +anO +amC +apq +aqL +arO +atd +auk +avD +awD +axz +ayO +azR +eqD +ayO +aDg +aEx +aFV +aHo +aIr +aJM +aLp +aNc +aOE +aQr +aRZ +awC +aVh +aXb +aYI +bam +bbG +bcT +beq +bgf +bic +aXb +bld +bnc +boX +bqv +brO +bta +buq +brO +brO +bzP +bBy +bCG +buq +brO +eri +brO +brO +bqv +bta +bSR +brO +brO +bXY +brO +brO +brO +brO +bta +boX +eri +brO +bqv +bBy +cpM +brO +brO +bta +brO +brO +brO +brO +cBR +brO +bBy +cFH +boH +cIy +cKs +cLR +cNC +cPv +cLO +cSC +cLO +cSC +cLO +cZl +daq +dbV +ddn +dfb +dgG +dhZ +dka +dlN +dnd +doi +dnd +dru +dsU +dlN +dvz +dwP +dyd +dzh +dAz +dBR +dDg +dEm +dFg +dGH +dHP +aaa +aaa +aaa +dJj +dKd +dKU +dLY +dNb +dNU +dOS +dOS +dNU +dNU +eht +dNU +dNU +dNU +dOS +dOS +dNb +dLY +dKT +dRZ +dKT +dKT +dZZ +dKT +eau +eaA +eaI +eaR +dKU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(171,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaf +abg +abg +aby +abg +abg +aaf +aaG +acA +acR +acR +acR +adx +acR +acQ +acR +aeD +aaG +eez +aft +afG +afX +agD +ahh +ahS +aiG +aeX +akG +afn +amE +amE +amA +alB +aqM +arP +atc +aul +avE +awC +awC +axA +azQ +axA +axA +awC +awC +axA +aHp +awC +eqG +aLm +aul +awC +aQs +aSa +axA +aVi +aXb +aXb +aXf +bbH +bcO +ber +aXf +aXb +aXb +ble +bnd +boY +bqs +brP +btb +bur +bvV +brP +bzQ +bBz +bBz +bEP +bGL +brP +brP +bMK +bqs +bQD +bSS +bUU +brJ +bYv +brJ +brJ +cdJ +cfq +cgC +cin +cjP +brJ +bqs +cof +cof +cra +css +cuc +brJ +bYv +brJ +brJ +cdJ +brJ +cEb +cFI +cHb +cIz +cKs +cLS +cND +cPw +cRc +cRc +cUm +cRc +cRc +cRc +cRc +dbW +ddo +dfc +dav +dia +dia +dlO +dlO +doj +dlO +drv +dlO +dus +dvA +esB +esC +dzi +dAA +dBS +esE +esB +dEY +dGA +dHP +aaa +aaa +aaa +dJj +dKd +dKT +dKT +dNc +dKU +dOT +dOT +dKU +dRh +dKT +dKT +dKT +dKT +dUJ +dUJ +dKT +dKT +dKT +dXZ +dYI +dZy +ehx +dKT +eaw +eaB +eaJ +eaS +dKT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(172,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +abg +abz +abg +aaf +aaf +aaG +acA +acR +acR +edi +ady +acR +acR +acR +aeD +aaG +afg +afs +afI +afY +agE +ahi +ahT +aiH +aeX +akH +alF +amF +amC +amB +apr +aqM +arQ +atc +aum +avF +awE +axA +ayP +azS +aAM +awC +awG +awC +ayP +aHq +awG +awC +aLq +auq +aOF +aQp +aSb +aTG +aVj +aXb +aYJ +ban +bbI +bcU +bes +bgg +bid +aeX +blf +aeX +boZ +boZ +brQ +btc +bus +bvW +bxR +boZ +boZ +cmX +bEQ +cmX +bIG +bIG +bIG +bOF +bQE +bST +bUV +bWL +bWM +bWM +bWM +bWM +cfr +cgD +bWP +bWM +bWM +bWM +bWM +cpN +crb +cst +cud +cvF +cvF +cvF +cvF +cvF +cDe +cDe +cFJ +cHc +cDe +cDe +cLT +cLT +cPx +cRd +cSD +cLT +cLT +cXN +cSD +dar +dbX +ddp +dfd +cIu +cIs +cWd +cWd +cIs +dok +dpR +drw +dsV +dol +dvB +dol +dol +dol +dol +dol +dol +dol +dEY +dGI +dHQ +aaf +aaa +aaa +dJk +dJk +dKT +dMa +dNd +dNW +dOS +dOS +dQq +dRi +dKT +dST +dTv +dUc +dOS +dOS +dWa +dWJ +dKT +dYa +ehv +dKS +dKT +dKT +dKT +dRZ +dKU +dKT +dKT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(173,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abg +epB +abg +aaf +aaf +aaG +acA +acR +acQ +acR +adz +acR +acR +acR +aeD +aaG +afh +aft +afJ +afZ +agF +ahh +ahU +ahX +aeX +akI +alG +afs +anP +amC +aps +aqM +arR +atc +aun +avF +awF +awC +awG +azS +aAN +awC +ayP +axA +aFW +aHp +awG +axA +aLm +auq +aOG +aQt +aSc +aTH +aVk +aXg +aYK +aYF +bbJ +bcQ +bet +bgh +bie +bjK +blg +aeX +aaa +aaf +aaa +btd +but +bvX +aaa +aaf +aaa +cmX +bER +cmX +bIH +bKL +bML +bIG +bQF +bSU +bUW +bWM +bYw +cap +cbY +cdK +cfs +cgE +cfu +cjQ +clp +cmC +cog +bWM +crc +csu +boH +cvF +cwZ +cyF +cAq +cvF +cDf +cEc +cFK +cHd +cIA +cKt +cLU +cNE +cPy +cRe +cSE +cUn +cVZ +cXO +cZm +cVZ +dbY +ddj +dfe +cIs +dib +dkb +dkb +dne +dol +dpS +drx +dsW +dut +dvC +dwQ +dye +dzj +dAB +dBT +dDh +dol +dEY +dGx +dHP +aaa +aaa +aaa +dJj +dKd +dKU +dMb +dNe +dNX +dNa +dNa +dQr +dRj +dSb +dOS +dTw +dUd +dUd +dUd +dWb +dWK +dKT +dYb +dYJ +dZz +eaa +dKT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(174,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaf +aae +aae +aaf +aae +aaa +aaf +aaf +aaf +abA +aaf +aaf +aaa +aaG +acA +acQ +acR +acR +acR +acQ +acR +acR +aeD +aaG +afi +aft +aft +afZ +agD +ahj +ebX +aiI +eeC +akJ +alH +amG +akG +aot +apt +aqM +arK +atc +auo +avG +awG +axA +ayQ +azS +aAO +awC +aDh +axA +aDf +aHq +ayP +awC +aLr +aNd +aOH +aQu +aSd +aTI +aVl +aXh +aYL +bao +bbK +bcV +beu +bgi +bif +bjL +blh +aeX +aaa +bqw +bqw +bte +buu +bqw +bqw +bqw +aaa +cmX +bES +cmX +bII +bKM +bMM +bOG +bQG +bSU +bUX +bWN +bYx +caq +cbZ +cbZ +cft +cgF +caq +caq +caq +caq +cbZ +bWN +crd +erz +boH +cvF +cxa +cyG +cAr +cvF +cDg +cEd +cFL +cHe +cEd +cKu +cLU +cNF +cPz +cRf +cSF +cUo +cWa +cXP +cZn +das +dbZ +ddq +dfe +cKs +dic +dkc +dlP +dnf +dom +dpT +dry +dsX +duu +dvD +dwR +dyf +dzk +dAC +dBU +dDi +dol +dFa +dGJ +dHP +aaa +aaa +aaa +dJj +dKd +dKU +dMc +dNf +dNY +dNa +dNa +dQr +dRj +dSb +dOS +dTx +dUe +dUe +dUe +dWc +dWK +dKT +dYa +dYK +dLZ +eaa +dKU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(175,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaf +aae +aae +aaa +aaa +aaf +aaa +aaa +aae +aae +aaf +aae +aaf +aak +aaf +aae +aaf +aaG +acA +acB +acR +acQ +acR +acR +acR +aer +aeD +aaG +afj +aft +afs +aga +aeX +ahk +ahV +aiJ +aeX +aeX +aeX +afu +afu +aeX +alJ +aqN +arS +alJ +aup +avG +awH +awC +ayR +azT +aAP +awC +awH +ayN +ayR +aHr +awH +awC +aLs +aNe +aNf +aQv +aSe +aTJ +aVm +aNg +aYM +bap +bbL +bcW +bev +bgj +big +aeX +afn +aeX +aaf +bqw +brR +btf +but +btj +bxS +bqw +aaf +cmX +bET +bGM +bIJ +bKN +bMN +bOH +bQF +ern +bUW +bWO +bYy +car +cca +cdL +cfu +cgG +cio +car +cfu +cfu +cfs +bWO +cre +csv +cue +cvF +cxb +cyH +cAs +cvF +cDh +cEe +cFM +cHf +erP +cKv +cLU +cNG +cPA +cRg +cSG +cUp +cWb +cXQ +cZo +cWb +dca +ddr +dff +cIs +did +dkd +dlQ +dng +dom +dpU +drz +dsY +duv +dvE +dwS +dyg +dzl +dyg +dBV +dDj +dol +dFa +dGK +dHQ +aaa +aaa +aaa +dJj +dKd +dKT +dMd +dNg +dNZ +dOU +dPD +dQs +dRk +dRh +dSU +dTy +dUf +dSa +dSa +dLY +dWL +dKT +dLY +dYL +dZA +eaa +dKT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(176,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaf +aaa +aaa +aai +eba +aan +aaa +aaa +aaf +aaa +aaa +aaf +aal +aaa +aae +aaf +aaG +acB +acS +acS +acS +acS +acS +acS +acS +aer +aaG +aeX +afu +afu +aeX +aeX +aeX +ahW +aeX +aeX +aaf +aaf +aaH +aaH +aaf +alI +aqO +arT +alJ +auq +avH +awI +awI +ayS +awI +awI +awI +awI +awI +awI +awI +awI +awI +aLt +aNf +aOI +aQw +aSf +aTK +aVn +aXi +aYM +bap +bbM +bcX +bew +bgk +aXb +aeX +amC +aeX +aaa +bqw +brS +btg +buv +bti +bxT +bqw +aaa +cmX +bER +cmX +bIK +bKO +bMO +bOI +bQH +bSV +bUY +bWP +bYz +car +ccb +cdL +cfv +cgH +cip +cjR +clq +cmD +coh +cpO +crf +csw +cuf +cvF +cxc +cyI +cAt +cvF +cvF +cvF +cFN +cHg +cDg +cKw +cLU +cLT +cPB +cRh +cSH +cLT +cLT +cPx +cZp +dar +dcb +ddk +deY +cKs +die +dke +dlR +dnh +dom +dpV +drA +dsZ +duw +dvF +dwT +dyh +dzm +dAD +dBW +dDk +dol +dFh +dGL +dHP +aaa +aaa +aaa +aaa +dJk +dKS +dKT +dKU +dKU +dKU +dKU +dKT +dKT +dRZ +dKT +dKU +dKU +dKU +dKU +dKU +dKT +dKT +dKU +dYM +dYM +dKU +dKT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(177,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aai +eba +aan +aaa +aai +aaj +aan +aaa +aai +eba +aan +aaa +aaf +abA +aaf +aae +aaf +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaG +aaf +aaH +aaH +aaf +aeX +ahl +ebY +aiK +aeX +aaf +alI +alI +alI +alJ +alJ +aqP +arU +alJ +aur +avI +awJ +axB +ayT +ayT +aAQ +aAQ +ayT +aEy +aAQ +aAQ +aDi +aJN +aLu +aNf +aOJ +aQx +aSg +eqJ +aVo +aNf +aYN +baq +bbN +bcX +bex +bgj +bih +aeX +edh +aeX +aaa +bqw +brT +bth +buw +bvY +bxU +bqw +aaa +cmX +coB +cmX +bIL +bKP +bMP +bIG +bQF +bSU +bUW +bWM +efK +car +car +cdL +cfu +cgG +car +car +car +cmE +efT +bWM +crg +csx +boH +cvF +cxd +cyJ +cAu +cBS +cDi +cEf +cFO +cHh +cIB +cDg +cKs +cNH +cPC +cRb +cSI +cUq +egc +cRb +cRb +dat +dcc +esc +deY +cIs +dib +dkb +dkb +dni +dol +dpW +drB +dta +dux +dvG +dwU +dyi +dzj +dAE +dBX +dDl +dol +dFi +dGM +dHP +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(178,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aai +aaj +aan +aaa +aai +aaj +aan +aaa +aai +aaj +aan +aaa +aaf +abA +aaa +aaf +aaf +aaf +aaf +aaa +aaf +aaf +aaf +aaa +aaf +aaa +aaf +aaf +aaf +aaf +aaf +aaf +aeX +ahm +ahY +aiL +aeX +aaf +alI +amH +anQ +aou +apu +aqQ +arV +alJ +aus +avJ +avJ +avJ +avJ +awH +aAR +awH +aDi +aEz +aEz +aEz +aIs +aJN +aLv +aNf +aOK +aQy +aSh +aTL +aVp +aNg +aYO +bar +bbF +bcX +eqO +bgl +bii +aeX +blj +aeX +aaa +bqw +brU +bti +bux +bti +bxV +bqw +aaa +cmX +coB +cmX +bIG +bIG +bIG +bIG +bQI +bSW +bUZ +bWM +bYB +bYB +bYB +cdM +cfw +cgI +bYB +bYB +bYB +cmF +coj +bWM +crh +csu +boH +cvG +cxe +cyK +cAv +cBT +cDj +cEg +cFP +cHi +cIC +cDg +cKs +cNI +cLM +cLL +cNw +cUr +cLM +cLL +cLM +cIt +dcd +ddk +dfg +cIu +cIs +cWd +cWd +cIs +dok +dpR +drC +dsV +dol +dvH +dol +dol +dol +dol +dol +dol +dol +dch +dGN +cKs +cKs +dJl +dJp +dJp +dJp +dJp +aaa +dOV +dMh +dJp +dJr +dJp +dJq +dTz +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(179,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaf +aai +aaj +aan +aaf +aai +aaj +aan +aaf +aai +aaj +aan +aaf +aaf +abA +aaa +aae +aae +aaf +aae +aae +aae +aaf +aae +aae +aae +aae +aae +aaa +aaf +aaa +aaa +aaf +aeX +ahn +ahZ +aiM +aeX +aaf +alI +amI +anR +anR +apv +aqR +arW +alJ +aut +avK +awK +axD +ayU +azU +aAS +aBS +aDj +aEA +awK +awK +awK +awK +aLw +aNg +aOL +aQz +aSi +aTM +aVq +aNg +aYP +bas +bbO +bbF +bbF +bgm +bij +aeX +aeX +aeX +aaf +bqw +brV +btj +buy +btj +brR +bqw +aaf +cmX +bEV +bGN +bIM +bKQ +bMQ +bIM +bQJ +bSX +bVa +bWM +bYC +cas +ccc +cdN +cfx +cgJ +ciq +cjS +clr +cmG +cfs +bWM +cri +csy +cug +cvF +cxf +cyL +cAw +cvF +cvF +cvF +cFK +cHd +cDg +cDg +cKs +cNJ +cKp +cKp +cSJ +cPw +cRc +cRc +cRc +dav +dbW +dds +dfh +dav +dif +cZh +cZh +cZh +don +dif +drD +cZh +cZh +cZh +dwV +cZh +dzn +dif +dif +dDm +dEn +dFj +dGO +dHR +dIF +dJm +dKe +dKV +dMe +dJp +aaf +dOW +dPE +dQt +dRl +dSc +dSV +dTA +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(180,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aai +aaj +aan +aaa +aai +aaj +aan +aaa +aai +aaj +aan +aaa +aaf +aak +aaf +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aaf +aaf +aaH +aaf +aaf +aaa +aaa +aaf +aeX +aeX +aeX +aeX +aeX +aaf +alJ +amJ +alJ +alJ +apw +aqS +ejy +alJ +aaf +aaf +aaf +axE +ayV +azV +aut +azV +aDk +axE +aaf +aaf +aaf +aaf +aaf +aNh +aOM +aQA +aSj +aTN +aVr +aNh +aYQ +bat +bbP +bbG +bey +bgn +bik +bjM +aaf +aaa +aaa +bqw +bqw +bqw +bqw +bqw +bqw +bqw +aaa +bDi +bDi +bGO +bDi +bKR +bMR +bIM +bQK +bSU +bVb +bWM +bYD +cat +ccd +cdO +cfy +cgK +cir +cjT +cls +cmH +cok +bWM +crg +csu +cuh +cvF +cxg +cyM +cAx +cBU +cDk +cvF +cFQ +cHj +cID +cID +cLV +cNK +cNK +cRi +cLV +cIs +cWd +cWd +cIs +daw +dbY +ddt +dfi +dgH +dig +cXR +cWe +cXR +cWe +dpX +drE +cXR +cWe +erZ +dfi +cXR +cWe +dAF +dfi +dDn +dEo +dFk +dGP +dHS +dDn +dJn +dKf +dKW +dMf +dJp +aaa +dJp +dPF +dQu +dRm +dSd +dSW +dJp +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(181,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaf +aae +aae +aaf +aai +aaj +aan +aaa +aaf +aak +aaf +aaa +aai +aaj +aan +aaa +aaf +aaw +aaa +aae +aaa +aaa +aaa +aaa +aaH +aaf +aaf +aaH +aaa +aaa +aaH +aaa +aaf +aaa +aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +alI +amK +anS +aov +apw +aqT +arX +alJ +aaa +aaa +aaa +axF +ayW +azW +aAT +azW +aDl +aEB +aaa +aaa +aaa +aaa +aaf +aNi +aON +aQB +aSk +aTO +aVs +aXj +aYR +bau +bbQ +bcZ +aXf +bgo +aYR +bgp +aaf +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaa +bDi +efH +bGP +bIN +bIO +bMS +bDi +bQL +bSU +bUW +bWM +bYE +cau +cce +cdP +cfz +cgL +cis +cjU +clt +cmI +col +bWM +crg +csu +cuh +cvF +cxg +erF +cAy +cvF +cvF +cvF +cFQ +cHj +cIE +cKx +cLW +cNL +cPD +cRj +cLV +cUs +cKi +cSu +cZq +cIs +dce +ddu +dfj +dat +dih +dkf +dih +dnj +dih +dpY +drF +dih +duy +dih +dfl +dnj +dzo +dih +dfl +dDo +cNP +dFl +dGQ +dHT +dIG +dJo +dKg +dKX +dMg +dJp +aaf +dOX +dPG +dQv +dRn +dSe +dSX +dTB +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(182,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaf +aaa +aaa +aaf +aak +aaf +aaf +aaf +aaw +aaf +aaf +aaf +aak +aaf +aaf +aaf +aaw +aaf +aae +aaf +aaH +aaf +aaf +aaH +aaa +aaa +aaH +aaf +aaf +aaH +aaf +aaf +aaf +aae +aae +aaf +aaa +aae +aae +aae +aaf +alI +amK +anT +aow +apx +aqU +arX +alI +aaa +avL +avL +avL +ayX +azX +avL +azX +aDm +avL +avL +avL +aaa +aaa +aaf +aNj +aOO +aQC +aSl +aTP +aVt +aNj +aaf +bav +bbR +bda +bez +bav +aaf +aaf +aaf +aaf +aaf +aaf +aae +aae +aae +aae +aae +aaf +aaf +bDj +bEX +bGQ +erj +bKS +bMT +bDi +bQL +bSU +bUW +bWM +bYF +cav +ccf +cdQ +cfA +cgM +cit +cjV +clu +cmJ +col +bWM +crj +csz +cui +cvF +cxh +cyO +cAz +cBU +cDl +cvF +cFK +cHj +cIF +cKy +cLX +cLX +cLX +cRk +ega +cUt +cWe +erZ +cZr +dax +dbZ +ddv +dfe +dgI +dgI +dgI +dgI +dnk +dlS +dpZ +dlS +dgI +dgI +daA +dwW +dyj +cKs +daA +dwW +dyj +cKs +dch +dGR +cKs +cKs +dJl +dJp +dKY +dJp +dJp +aaa +dOY +dPH +dQw +dRo +dSf +dSY +dOY +aaa +aaf +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(183,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aag +aah +aah +aah +aah +aah +aao +aar +aaw +aaw +aaw +aaO +aaw +aaw +aaw +aaw +aaw +aaa +aaf +aaa +aaH +aaa +aaa +aaH +aaf +aaf +aaH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaf +alJ +amK +anU +aox +apy +aqV +arY +alI +aaa +avL +awL +axG +axG +azY +aAU +azY +azY +aEC +avL +avL +aIt +aaa +aaf +aNg +aNg +aQD +aSm +aTQ +aNg +aNg +aaa +baw +bbS +bdb +beA +baw +aaa +aaa +aaa +aaa +aaH +aaH +aaH +aaH +aaH +aaH +aaH +aaa +aaa +bDj +bEY +bGR +bIP +bKT +bMU +bOJ +bQM +bSY +bVc +bWQ +bYG +caw +ccg +cdR +cfB +cgN +ciu +cjW +clu +cmH +com +bWM +crg +csu +cuh +cvF +cxi +cyN +cAA +cvF +cvF +cvF +cFQ +cHj +cIG +cKz +cLY +cNM +cLY +cRl +cNK +cUu +cWf +cXS +cZs +cIt +dbY +ddj +dfe +dgI +dii +dkg +dgL +dnl +doo +dqa +drG +dtb +dgI +dvI +cNx +dyk +cKs +dvI +cNx +dyk +cKs +dFm +dGS +cDe +aaa +aaa +dJp +edg +dJp +aaa +aaa +dJp +dPI +dQx +dRp +dSg +dSZ +dJp +aaf +agg +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(184,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaf +aaa +aaa +aaf +aal +aaf +aaf +aaf +aaw +aaf +aaf +aaf +aal +aaf +aaf +aaf +aaf +aaf +aae +aaf +aaH +aaf +aaf +aaH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +alJ +amL +anV +aoy +apz +aqW +arZ +alJ +aaa +avL +awM +axH +ayY +axH +axH +axH +axI +aED +aFX +aHs +aIu +aaa +aaf +aNh +aOI +aQE +aSf +aTR +aNh +aaf +aaa +bax +bbT +bdc +beB +bgp +aaa +aaa +aaa +bne +bne +bqx +bne +bne +bqx +bne +bne +bne +aaa +bDi +bEZ +bGS +bIQ +bKU +bMV +bOK +bQN +bSZ +eiF +bWM +bYH +cax +cch +cdS +cfC +cgO +civ +cjX +clv +efS +con +bWM +crg +csA +cuh +cvF +cxj +cyH +cAB +cBV +cDm +cvF +cFR +cHj +cIH +cKz +cLZ +cNN +cPE +cRm +cSL +cKp +cLM +cLL +cSA +cIt +dbY +ddk +dfe +dgJ +dij +dio +dgM +dnm +dop +dqb +drH +dtc +dgI +dvJ +cNw +dyl +cKs +dvJ +cNw +dyl +cKs +dFn +dGT +daM +aaf +aaf +dKh +dLa +dMh +aaf +aaf +dJq +dPJ +dQy +dRq +dSh +dTa +dMh +aaa +agg +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(185,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aae +aae +aaf +aai +aam +aan +aaa +aaf +aal +aaf +aaa +aai +aam +aan +aaf +aae +aaf +aae +aae +aaa +aaH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaf +alJ +amM +alJ +alJ +alI +alI +alJ +alJ +aaa +avL +ehn +axI +axI +axI +axH +axI +axH +aEE +aFX +aHt +aIu +aaa +aaf +aNk +aOP +aQF +aSn +aTS +aVu +aaf +aYS +aYS +aYT +bdd +aYT +aYS +aYS +aaa +aaa +bnf +bpa +bqy +brW +btk +buz +bvZ +bne +bzR +aaa +bDj +bFa +bGT +bIR +bKV +bMW +bOL +bQO +bTa +bVd +bWR +bWR +cay +cci +bWR +bWR +bWR +bWM +bWM +bWM +bWM +bWM +bWM +crk +csB +cuk +cvF +cxc +cvF +cAC +cvF +cvF +cvF +cFS +cHj +cII +cKA +cMa +cNO +cPF +cRn +cLV +cUv +cWg +cXT +cZt +cIs +dbY +esc +dfe +dgI +dik +dio +dgL +dnn +doq +dqc +drI +dtd +dgI +dvK +dwX +dym +cKs +dvK +dwX +dym +cKs +cHd +dGU +cDe +aaa +aaa +dJq +dKZ +dMh +aaa +aaa +dJp +dPK +dQz +dRr +dSi +dTb +dJp +aaf +aaf +aaf +agg +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(186,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aai +aam +aan +aaa +aai +aam +aan +aaa +aai +aam +aan +aaa +aae +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaH +aaa +aaH +aaf +aaf +aaf +aaf +aaa +aaa +avL +awN +axI +axH +axH +axH +axH +axH +aEE +aFY +aHt +aIu +aaa +aaf +aNi +aOQ +aQG +aSo +aTT +aNi +aaf +aYS +bay +bbU +bde +beC +bgq +aYS +aaa +aaa +bnf +bpb +bqz +brX +btl +buA +bwa +bxW +bzR +aaa +bDj +bFb +bGU +bIS +bKW +bMX +bOM +bQP +bTb +bVe +bWR +bYI +caz +ccj +cdT +cfD +bWR +ciw +cjY +clw +cmL +coo +cpP +crl +csC +cul +cvH +cxk +cyQ +cAD +cBW +clx +cEh +cFR +cHj +cID +cKB +cMb +cID +cID +cLV +cLV +cKs +cKs +cKs +cKs +cIw +dce +ddw +egj +dgI +dil +dkh +dil +dno +dgI +dqd +dgI +dgI +dgI +dvL +dwY +dyn +cKs +dvL +dwY +dyn +cKs +dFo +dGV +cDe +aaa +dJp +dJp +dLb +dJp +dJp +dJp +dJp +dOh +dQA +dRs +dMh +dKl +dJp +dJp +dJp +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(187,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aai +aam +aan +aaf +aai +aam +aan +aaf +aai +aam +aan +aaf +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aae +aae +aaa +aaa +aaa +avL +awO +axJ +ayZ +axJ +eho +ayZ +axJ +aEF +avL +avL +aIv +aaa +aaf +aNl +aOR +aNg +aNg +aTU +aVv +aaf +aYT +baz +bbV +bdf +beD +bgr +bil +aaa +aaa +bnf +bpc +bqA +brY +btm +buB +bwb +bne +bzR +aaa +bDi +bFc +bGV +bIT +bKX +bMY +bDi +bQQ +bTc +bVf +bWS +bYJ +caA +cck +cdU +cfE +bWR +cix +cjZ +clx +cmM +cop +cpQ +crm +cpQ +cum +cpQ +cxl +cpQ +cAE +cBX +clx +cEi +cFT +cHk +cIJ +cKC +cMc +cKs +cPG +cKs +cSM +cUw +cWh +cXU +ege +cKs +egg +ddj +dfe +dgI +dim +dim +dlS +dnp +dor +dqe +drJ +egn +dgI +dvM +dwZ +dyo +cKs +dvM +dwZ +dyo +cKs +dFp +dGU +cDe +aaf +dJp +dKi +dLc +dMi +dNh +dOa +dOZ +dPL +dQB +dRt +dSj +dTc +dSj +dUg +dJp +dVm +dWd +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(188,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aai +aam +aan +aaa +aai +aam +aan +aaa +aai +aam +aan +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aaa +aaH +aaa +aaa +aaa +aaa +aaa +aaa +avL +avL +avL +avL +avL +avL +aBT +avL +avL +avL +avL +aaa +aaa +aaf +aaf +aaf +aaa +aaa +aaf +aaf +aaf +aYS +baA +bbW +bdg +beE +bgs +aYS +aaa +aaa +bne +bne +bqB +bne +bne +bne +bwc +bne +bne +aaa +bDi +bDi +bGW +bIU +bDi +bDi +bDi +bQQ +bTd +bVg +bWT +bYK +caB +ccl +cdV +efQ +cgP +ciy +cka +clx +cmM +cop +cpQ +crn +erA +cun +cvI +cxm +cpQ +cAE +cBY +clx +cEj +cFU +cHl +cIK +cKD +cMd +cNP +cPH +cNP +cSN +cUx +cWi +cXV +cZv +day +dcg +ddx +dfl +dgK +din +dim +dlS +dnq +dos +dqf +drK +dtf +dgI +cKs +cKs +cKs +cKs +cKs +cKs +cKs +cKs +cHd +dGW +daM +aaa +dJq +dKj +dLd +dMj +dNi +dOb +dPa +dPM +dQC +dRu +dSk +dTd +dTC +dUh +dUK +dVn +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(189,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aai +ebb +aan +aaa +aai +aam +aan +aaa +aai +ebb +aan +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aaH +aaH +aaH +aaH +aaH +aaH +aaH +aaH +aaa +aaa +aaa +aaf +aaa +aaf +aaf +aaf +aaf +aaa +aaa +aYS +aYS +aYT +bdh +aYT +aYS +aYS +aaa +aaa +aaa +bpd +bqC +bpd +aaa +bpd +bwd +bpd +aaa +aaa +bDi +bFd +bGX +bIV +bKY +bMZ +bDi +bQR +ern +bVh +bWU +bYL +caC +ccm +cdW +cfG +cgQ +ciz +ckb +clx +cmM +cop +cpR +cro +csD +cuo +cvJ +cxn +cpR +cAE +cBZ +clx +cEk +cFV +cHm +cIL +cKE +cMe +cKs +cPI +cKs +cSO +cUy +cWj +cUz +cZw +daz +dbW +dds +dfm +dgL +dio +dim +dlS +dnr +dot +dqg +drL +dtg +dgI +dvN +daK +dyp +cYg +dAG +dBY +dDp +dgN +dFq +dGU +cDe +aaf +dJp +dKk +dLe +dMk +dNj +dOc +dPb +dPN +dQD +dRv +dSl +dTe +dTD +dUi +dUL +dVo +dWe +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(190,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaa +aaf +aaa +aaa +aai +ebb +aan +aaa +aaa +aaf +aaa +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaf +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aaH +aaH +aaH +aaH +aaH +aaa +aaf +aaf +aaf +bpe +bqD +bpf +aaf +bpf +bwe +bpe +aaf +aaf +bDi +bFe +bGY +bIW +bKZ +bNa +bDi +bQL +bSU +bVi +bWR +bYM +caD +ccn +cdX +cfH +bWR +ciA +ckc +clx +cmN +coq +cpQ +crp +csE +cuo +cvK +cxo +cpR +cAF +cmN +clx +cvP +cvP +cvP +cvP +cKF +cMf +cNQ +cPJ +cRo +cSP +cUz +cWk +cXW +cZx +daA +dbY +ddk +dfn +ecW +dip +dim +dlS +dns +dou +dqh +drM +dth +dgI +dvO +dxa +cZA +dgO +dAH +dcj +dDq +dgO +cWn +dGX +cDe +aaa +dJp +dKl +dLf +dMl +dNk +dKl +dKl +dKl +dOY +dRw +dJq +dTf +dTE +dKl +dJp +dJp +dJp +dJp +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(191,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaf +aae +aae +aaa +aaa +aaf +aaa +aaa +aae +aae +aaf +aae +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aae +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aaf +bjN +blk +bjQ +bpf +bqE +bpf +bjQ +bpf +bwf +bpf +bzS +bzS +bDi +bDi +bDi +bDi +bDi +bDi +bDi +bQS +bTe +bVj +bWR +bYN +bYN +bYN +bYN +bYN +bWR +ciB +ckd +clx +cmO +cor +cpS +crq +csF +cuo +cvL +cxp +erA +cAG +cCa +clx +cEl +cFW +cHn +cvP +cKG +cMg +cKs +efZ +cKs +cSQ +cUA +cWl +cXX +cZy +cKs +dbY +ddy +dfe +dgI +diq +dki +dlS +dnt +dov +dqi +drN +dti +dgI +dvP +dxb +dyq +dyq +dyr +dyq +dDr +dyq +dyq +dyq +dyq +aaf +dJp +dKm +dLg +dMm +cHL +egG +dKl +dPO +dQE +dKl +dSm +dTg +dTF +dUj +dUM +dVp +dWf +dJp +aaf +agg +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(192,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aae +aaf +aae +aae +aaf +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aae +aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +bjO +bll +bng +bpg +bqF +brZ +bjQ +buC +bqF +bpg +bzT +bBA +bDk +bFf +bGZ +bIX +bGZ +bGZ +bON +bQT +bTa +efI +bWV +bDn +caE +cco +efM +bdi +cgR +ciC +eru +clx +ejB +cos +cpQ +crr +csG +cup +cvM +cxq +cyR +cAH +cCb +cDn +cEm +cFX +cHo +cvP +cKH +cHc +cKs +cKs +cKs +cKs +cKs +cKs +cKs +cKs +cKs +dch +ddz +dfo +dgI +dgI +dgI +dgI +dno +dgI +dqj +dgI +dgI +dgI +dvQ +dxc +dyq +dzp +dAI +dBZ +dDs +dAJ +dFr +dGY +dyq +aaa +dJr +dKn +dLh +dMn +dNm +dOe +dKl +dPP +dQF +dRx +dSn +dTh +dTG +dUk +dUN +dVq +dWg +dWM +aaa +aaf +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(193,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aae +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaf +bjP +blm +bnh +bph +bqG +bsa +btn +buD +bwg +bxX +bzU +bBB +bDl +bFg +bDl +bDl +bLa +bDl +bDl +bQU +bTf +bVl +bWW +bYO +caF +ccp +cdZ +bdi +cgS +ciD +ckc +clx +cmP +cot +cpT +crs +csH +cuq +cvN +cxr +cvN +cAI +cBX +csB +cEn +cFY +cHp +cvP +cKI +cMh +cNR +cNR +cRp +cRp +cUB +cWm +cXY +cZz +daB +dci +ddA +dfp +dgN +dir +dkj +dkj +dnu +dow +dqk +drO +eiG +duz +dvR +dxd +dyq +dzq +dAJ +dCa +dDt +dAJ +dAL +dGZ +dHU +aaa +dJs +dKo +dLi +dMo +dNn +dOf +dMh +dPQ +dQG +dRy +dSo +dTi +dTH +dKl +dUO +dVr +dKl +dJp +aaf +agg +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(194,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aae +aaf +aae +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaa +bdi +beF +bgt +bim +bjQ +bln +bni +bpi +bqH +bsb +bto +buE +bwh +era +bzV +bBC +bDm +bFh +bFh +bIY +bFh +bFh +bFh +bQV +bTg +bVm +bWX +bDn +caG +ccq +cea +bdi +cgT +ciB +cke +clx +cmP +cou +cpU +crt +csI +cur +cvO +cxs +cyS +cAJ +cCd +cDo +cEo +cFZ +cHq +cvP +cKJ +cMi +cMi +cPL +cRq +cSR +cUC +cWn +cWn +cZA +daC +dcj +ddB +dfq +dgO +dis +cMi +dcq +daL +dox +dql +daL +eiH +cWq +dvS +dxe +dyq +dzr +dAK +dCb +dDu +dEp +dFs +dHa +dHU +aaf +dJp +dKp +axC +dMp +dNo +dOg +dKl +dPR +dQH +dRz +dSp +dTj +dTI +dUk +dUP +dVs +dWg +dWM +aaa +aaf +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(195,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aaa +aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aae +aaa +aae +aaa +aaa +aBU +aEG +aEG +aBU +aBU +aaa +bdi +efr +bgu +bin +bjQ +blo +bnj +bpj +bqI +bsc +bjQ +buF +bwi +bxY +efF +bjQ +bdi +bdi +bdi +bdi +bdi +bdi +bdi +bdi +bTh +bVn +bWY +bdi +bIZ +YGN +ceb +bdi +cgU +ciE +ckf +clx +clx +clx +cpV +clx +clx +clx +clx +clx +clx +clx +clx +clx +cEp +cGa +cHr +cvP +cvP +cvP +cvP +cvP +cvP +cSS +cUD +cWo +cWo +cWo +daD +cZH +cWo +cWo +dgP +dgP +dgP +dgP +dgP +doy +dgP +dgP +dgP +dgP +dvT +dxf +dyq +dzs +dAL +dAL +dDv +dAJ +dAL +dHb +dyq +aaf +dJp +dKl +egx +dMq +dNp +dOh +dKl +dPS +dQI +dKl +dSq +dTk +dTJ +dUj +dUQ +dVt +dWf +dJp +aaf +agg +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(196,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aaf +aaf +aaH +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aae +aaf +aaf +aBU +aVw +aXk +aYU +aBU +aaf +bdi +beH +bgv +bio +bjQ +blp +bnk +bpk +bqJ +bsd +blk +buG +bwh +bxZ +bzX +bjQ +bDo +erg +bHb +bIZ +bLb +bFj +bHb +bIZ +bTi +bVo +bWZ +bIZ +caH +ccr +cec +bdi +cgV +ciF +ckg +cly +cmQ +cov +cpW +cru +csJ +cus +cvP +cxt +cyT +cAK +cCe +eiT +eiZ +cGb +cHs +eiT +eci +cCg +cNS +cxw +cvP +cST +cUE +cWo +cXZ +cZB +daE +dck +ddC +dfr +dgP +dit +dkk +dlT +dnv +doz +dqm +drP +dtj +dgP +dvU +esk +dyq +dzt +dAM +dCc +dDw +dEq +dFt +dHc +dyq +aaf +aaf +dJp +dLk +dMr +dNl +dOi +dJp +dJp +dJp +dJp +dJp +dOY +dJp +dJp +dJp +dJp +dJp +dJp +aaf +aaa +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(197,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aaa +aaa +aaH +aaf +aaf +aaf +agg +agg +agg +aaf +aaf +aaf +aaf +aaf +aaa +aaa +aBU +aVx +aXl +aYV +aBU +aaa +bdi +beI +bgw +bip +bjQ +blq +bnl +bpl +bqK +bse +bjQ +buH +bwj +bya +bzY +bjQ +bDp +bFk +bHc +bAb +bLc +bgA +bOO +bIZ +bTj +bVp +bXa +bIZ +caI +ccs +ced +bdi +cgW +ciG +ckh +clz +cmR +cow +cpX +crv +csK +cke +cvP +cxu +cyT +cyT +cyT +cDp +cEq +eje +cHt +cIM +cyX +cyX +cNT +cPM +cvP +erW +cUF +cWo +cYa +cZC +daF +dcl +ddD +dfs +dgP +diu +dkl +dkl +dkl +doA +dkl +dkl +dqm +dgP +dvP +cSS +dyq +dzu +dAN +dAN +dDx +dAN +dFu +dHd +dyq +aaf +aaf +dJq +dLl +dMs +dNq +dOj +dMh +aaa +aaf +aaf +aaf +aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +agg +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(198,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aaf +aaf +aaH +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaf +aBU +aBU +aBU +aBU +aBU +aBU +aVy +aXm +aBU +aBU +aBU +bdi +beJ +bgx +biq +bjQ +blr +bnm +bpm +bqL +blk +bjQ +bjQ +bwk +byb +bjQ +bjQ +bDq +bFl +bim +bIZ +bDq +bNb +bOP +bIZ +epG +bVq +epH +bIZ +beF +cct +bOP +bdi +cgX +ciH +cki +cgX +cgT +cox +cmX +cmX +ciB +erB +cvP +cxv +cyU +cAL +cCf +eiU +eja +cGd +cHu +eiU +cKK +cMj +cyX +cPN +cvP +cSS +cUF +cWo +cYb +cZD +daG +dcm +dcl +dft +dgP +div +dkl +dkl +dkl +doB +dkl +drQ +dtk +eqf +dvV +dxg +dyr +dzv +dAO +dAO +dDy +dAO +dAO +dHe +dHU +aaa +aaf +dJp +dLm +dMt +dNr +dOk +dJp +aaf +agg +agg +agg +aaf +agg +agg +agg +aaa +agg +agg +agg +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(199,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aaf +aaf +agg +aaa +aaf +aaf +aaf +aaf +aBU +aNm +aOS +aQH +aSp +aTV +aVz +aXn +aYW +baB +bbX +bdj +beK +bgy +bir +bjR +bir +bnn +bpn +bqM +bir +btp +buI +bwl +byc +bzZ +bir +bDr +bFm +bHd +bJa +bLd +bFm +bOQ +bQW +bTk +bir +bXb +bYP +caJ +ccu +cee +cfI +cgY +ciI +ckj +clA +cmS +coy +cpY +crw +ciB +cut +cvP +cvP +cvP +cvP +cvP +cvP +cEr +cGe +cHv +cvP +cvP +cvP +cvP +cvP +cvP +cSU +cUG +cWo +cYc +cZC +daH +dcn +ddE +dfu +dgP +diw +dkm +dkl +dnw +doC +dkl +drR +dtl +dgP +dvQ +dxh +dyr +dzw +dAL +dCd +dDz +dAI +dCa +dHf +dHU +aaa +aaf +dJp +dJp +dJp +dJp +dJp +dJp +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(200,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +aaf +aBU +aBU +aBU +aBU +aNn +aOT +aOT +aOT +aTW +aVA +aXo +aYX +baC +bbY +bdk +beL +bgz +bis +bjS +bls +bno +bpo +eqW +bqN +bqN +bqN +bwm +byd +efG +bBD +bDs +bFn +bHe +bqN +bLe +bFn +bOR +bqN +bTl +bVr +bjS +bYQ +caK +ccv +cef +cfJ +cgZ +ciJ +ckk +clB +cmT +coz +cpZ +cmX +ciF +cuu +cvP +cxw +cyV +cCg +ech +eiT +eiZ +ejf +ejj +eiT +cKL +cMk +cyY +cxz +cvP +cSV +cUG +cWo +cYd +cZE +cZC +dco +ddF +dfv +dgP +dix +dkl +dkl +dkl +dkl +dkl +drS +dtm +duA +dvW +cSS +dyq +dzx +dAP +dCe +dDA +dEr +dFw +dHg +dyq +aaf +aaf +aaf +aaa +aaa +aaa +aaf +aaf +aaf +agg +agg +aaf +aaf +aaf +agg +agg +agg +agg +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(201,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaa +aaf +aBU +aIw +aJO +aBU +aNo +aOU +aQI +aSq +aTX +aVB +aXp +aYY +baD +bbZ +bdl +beM +bgA +bit +bjT +bgA +bnp +bpp +bgA +bgA +btq +buJ +bwn +bye +bAb +bBE +bDt +bFo +bHf +bJb +bJb +bJb +bHf +bJb +bTm +bVs +bXc +bYR +bDt +ccw +ceg +cfK +cha +ciK +ckl +cgX +cmU +coA +cqa +cmX +csL +cuv +cvP +cxx +cyW +cyX +cyX +cDq +cEs +cGf +cHw +cIN +cyZ +cAO +cyZ +cPO +cvP +cSU +cUG +cWo +cYe +cZF +cZE +cZC +dcl +dfw +dgP +diy +dkl +dkl +dkl +dkl +dqn +drT +dtn +dgP +dvP +drW +dys +dys +dys +dys +dys +dys +dys +dys +dys +aaf +agg +agg +agg +aaf +agg +agg +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(202,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaf +aBU +aHu +eeZ +aBU +aBU +aBU +aBU +aBU +aBU +aVC +aXq +aBU +aBU +bca +bdm +bdm +bdn +biu +bjU +bdn +bnq +bpq +bqO +bdm +bdm +buK +bwo +byf +bdm +bBF +bDu +bBF +bBF +bHg +bLf +bHg +bBF +bBF +bTn +bVt +bXd +bBF +caL +ccx +bdi +bdi +chb +ciL +ckm +cgX +cgW +coB +cqb +cmX +csL +cuw +cvP +cxy +cyX +cAM +cCh +eiU +ejc +ejg +ejl +eiU +cKM +cyZ +cyZ +cPP +cvP +cSW +cUF +cWo +cYf +cZG +daI +dcp +ddG +cZG +dgP +diz +dkn +dlU +dnx +doD +dqo +drU +dto +dgP +dvT +dxf +dys +dzy +dAQ +dCf +dDB +dEs +dFx +dHh +dys +aaf +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(203,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +agg +aaf +aaf +aaa +aaf +aBU +aIx +aJQ +aLx +aNp +aHu +aQJ +aSr +aTY +aVD +aXq +aBU +baE +bcb +bdm +beN +bgB +biv +bjV +blt +bnr +bpr +bqP +bsf +bdm +biB +bkd +byg +bdm +bBG +bDv +bFp +bHg +bJc +bLg +bNc +bOS +bQX +bTo +bVu +bXe +bHg +caM +ccy +ceh +bdi +chc +ciM +ckn +cgX +cmV +coC +cqc +cmX +ciC +cux +cvP +cvP +cvP +cvP +cvP +cvP +cEu +ejh +cHx +cvP +cvP +cvP +cvP +cvP +cvP +cSX +cUH +cWo +cWo +cZH +daJ +cWo +cWo +cWo +dgP +dgP +dgP +dgP +dgP +doE +dgP +dgP +dgP +dgP +dvX +dxi +dyt +dzz +dAR +dCg +dDC +dEt +dFy +dHi +dAV +aaf +aaf +agg +agg +agg +agg +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(204,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +aaf +aaf +aaf +aaf +aBV +aIy +aJR +aLy +aNq +aOV +aQK +aSs +aTZ +aVD +aXr +aBU +baF +bcc +bdn +beO +bgC +biw +bjW +blu +bns +bps +bqQ +bsg +bdm +buM +bwp +byh +bdm +bBG +bDw +bFq +bHh +bJd +bLh +bNd +bOT +bQY +bTp +bVv +bXf +efL +caN +ccz +cei +bdi +chd +ciM +cko +cgX +cmW +coD +cqd +cmX +ciF +ckc +cvP +cxz +cyY +cAN +cCi +eiT +cEv +eji +cHy +eiT +cKN +cMl +cyT +cxt +cvP +cSY +cUI +cWp +cYg +cYg +daK +cWp +ddH +dfy +cWm +diA +cWp +esf +ddH +doF +cWp +cWp +dtp +ddH +dvY +dxf +dys +dzA +dAS +dCh +dDD +dEu +dFz +dHj +dAV +aaf +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(205,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +aBU +aBU +aEG +aBU +aBU +aIz +aJS +aLz +aNr +aHu +aQL +aSt +aUa +aVE +aXs +aBU +aBU +aEM +bdm +beP +bgD +bix +bjX +blv +bnt +bpt +bqR +bsh +btr +buM +bwq +byi +bdm +bBH +bDx +bBG +bDC +bJe +bLi +bNe +bOU +bQZ +bTq +bVw +bXg +bDC +caO +ccA +efN +bdi +che +ciM +ckp +cgX +cmX +coE +cmX +cmX +csL +cke +cvP +cxA +cyZ +cAO +cyZ +cDr +cEt +cGc +cHx +cIO +cyT +cyT +cyT +cPQ +cvP +cSZ +cUJ +cWq +cMi +cMi +daL +dcq +cMi +dfz +cWq +diB +dko +daL +dcq +dcq +dqp +drV +daL +dqp +dvZ +dxj +dys +egs +dAT +dAS +dDE +dAS +dFA +dHk +dAV +aaf +agg +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(206,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aBU +aDn +aEH +aFZ +aHu +aIA +aJT +aLA +aNs +aHu +aHu +aHu +aHu +aVF +aXt +aYZ +aBU +aaa +bdm +beQ +bgD +biy +bjY +biz +bnu +bpu +bqR +bsi +bdm +buN +bwr +efD +bdm +bBI +bDy +bFr +bHi +bHi +bLj +bLj +bHi +bRa +bTr +bVx +bXh +bHi +caP +ccB +cek +bdi +chf +ciM +chh +cgX +aaa +aaa +aaf +coE +csM +cuy +cvP +cxB +cyZ +cyZ +cCj +eiU +ejc +cGg +ejl +eiU +cKO +cMm +cNU +cPR +cvP +cTa +cUK +cEe +cYh +cDe +daM +cDe +cDe +dfA +cDe +dfA +cDe +cDe +daM +cDe +cDe +dfA +eig +eil +dwa +eiv +eig +dzC +dAU +dCi +egu +dEv +dFB +dHl +dys +aaf +agg +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(207,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aBV +aDo +aEI +aGa +aHv +aIB +aJU +aLB +aNt +aHu +aQM +aSu +aTY +aVG +aXu +aZa +aYX +aaf +bdm +beR +bgE +biz +bjZ +blw +bnv +bpv +bqS +bsj +bdm +buM +buM +byg +bdm +bBJ +bDz +bFs +bHi +bJf +bJf +bJf +bOV +bRb +bTs +bVy +bXi +bHi +caQ +ccC +cel +bim +chg +ciN +ckq +cgX +aaf +aaf +cqe +cqe +csN +cuz +cvP +cvP +cvP +cvP +cvP +cvP +cEw +cGa +cHz +cvP +cvP +cvP +cvP +cvP +cvP +cTb +cUL +cqe +cqe +cqe +aaf +cDe +ddI +dfB +cDe +diC +dkp +cDe +aaf +cDe +dqq +drW +eig +duB +eip +dxk +eig +dys +dAV +dys +dys +dys +dAV +dys +dys +aaf +agg +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(208,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aBU +aDp +aEJ +aGb +aHw +aIC +aJV +aLC +aGb +aOW +aQN +aSv +aUb +aVH +aXq +aZb +aBU +aaa +bdn +beS +bgF +biA +bka +blx +bnw +bpw +bqT +bsk +bdm +buO +bws +byk +bdm +bBK +bDA +bFt +bHi +bJg +bLk +bNf +bNf +bNf +bTt +bVy +bXj +bYT +caR +ccB +cem +bdi +chh +ciO +ckr +clC +aaa +aaa +cqe +crx +csO +cuA +cvQ +cxC +cza +cAP +cCk +cDs +cEx +cGh +cHA +cIP +cKP +cMn +cNV +cPS +cRr +cTc +cUM +cWr +cYi +cqe +aaa +dcr +ddJ +dfC +cDe +diD +dkq +daM +aaa +daM +dqr +drX +eig +duC +eiq +abN +eik +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaa +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(209,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aBV +aDq +aEK +aGc +aHx +aID +aJW +aLD +aNu +aHu +aQO +aSt +aUa +aVI +aXv +aHu +aBU +aaf +bdm +beT +bgG +bgG +bkb +bly +bnx +bpx +bgG +bgE +bts +buP +bwt +byl +bdm +bBL +bDB +bFu +bHi +bJh +bLl +bNg +bOW +bRc +bTu +bVz +bXk +bYU +caS +ccD +cen +bim +chi +ciM +cks +cgX +aaf +aaf +cqf +cry +csP +cuB +cvR +cxD +cxD +cxD +cxD +cxD +cEy +cGi +cHB +cxD +cxD +cxD +cxD +cxD +cRs +cvR +cUN +csQ +cYj +cqf +aaf +dcr +ddK +dfD +cDe +diE +dkr +daM +aaf +daM +dqs +drY +eig +duD +eir +dxl +eig +aaf +agg +agg +agg +aaf +agg +agg +agg +aaf +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(210,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aBU +aDr +aEL +aGd +aHu +aIE +aJX +aLE +aNv +aHu +aHu +aHu +aHu +aVJ +aXq +aZc +aBU +aaa +bdm +beU +bgH +bgH +bkc +blz +bny +bpy +bqU +bsl +btt +buQ +bwu +bym +bdm +bBF +bDC +bBF +bHi +bJi +bLm +bNh +bNh +bNh +bTv +bVA +bXl +bHi +caT +ccE +ceo +bdi +cgX +ciP +cgX +cgX +aaa +aaa +cqf +cry +csQ +cuC +cvS +cxE +czb +csQ +czc +cDt +cEz +cEz +cHC +cIQ +cKQ +csQ +cNW +cNW +cRt +cTd +cUO +cNW +cYj +cqf +aaa +dcr +dcr +cDe +cDe +cDe +daM +daM +aaa +daM +daM +cDe +eik +eik +eis +eik +eik +aaf +aaa +aaa +aaf +aaa +aaa +aaf +aaf +aaa +aaf +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(211,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +aBU +aBU +aEM +aBU +aBU +aIF +aJS +aLF +aNw +aHu +aQJ +aSw +aTY +aVK +aXo +aZd +aYX +aaf +bdm +beV +bgI +biB +bkd +blA +bnz +bpz +bqV +bsm +btu +biB +bwv +byn +bdm +aaf +aaa +aaf +bHi +bJj +bLn +bNi +bOX +bRd +bTw +bVB +bXm +bHi +caU +ccF +caU +bdi +aaa +aaf +aaa +aaa +cmY +aaa +cqf +crz +csQ +cuD +cvT +cxF +czc +csQ +cCl +cDu +cxF +cxF +cHD +cIR +cKR +csQ +cNX +cPT +cNW +cTe +cUP +cWs +cYj +cqf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +eik +eit +eik +aaf +aaa +aaa +agg +agg +aaf +agg +agg +agg +agg +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(212,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +aaf +aaf +aaa +aaf +aBU +aIG +aJY +aLG +aNx +aOX +aQP +aSx +aUc +aVL +aXs +aZe +aBU +aaa +bdm +beW +beW +biC +bke +blB +bnA +bpA +beW +beW +bdm +bdm +bdm +bdm +bdm +aaf +aaa +aaf +bHi +bHi +bHi +bHi +bHi +bHi +bHi +bHi +bHi +bHi +bdi +bVq +bdi +bdi +aaa +aaf +aaf +agg +aaf +aaf +cqf +crA +csQ +cuD +cvU +cxF +czc +csQ +cCl +cDu +cxF +cxF +cxF +cIR +cKR +csQ +cNY +cPU +csQ +cTe +cUQ +cWt +cYk +cqf +aaf +aaa +agg +agg +agg +agg +agg +aaa +agg +aaa +agg +agg +aaf +eik +epN +eik +aaf +aaf +agg +agg +aaa +aaa +aaf +aaa +aaa +aaf +aaf +agg +agg +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(213,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aBV +aIH +aJZ +aLH +aNy +aHu +aQQ +aSy +aHu +aVM +aXw +aBU +aBU +aaf +aaf +beW +bgJ +biD +bkf +blC +bnB +bpB +bqW +beW +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaf +aaf +aaf +aaf +aaf +bOY +aaf +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +cqf +crB +csQ +cuD +cvT +cxF +erH +csQ +cCl +cDu +cEA +cxF +cxF +cIR +cKR +csQ +cNZ +cPV +erT +cTf +cUR +cWu +czc +cqf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +dwb +aaf +aaf +aaa +aaf +aaa +aaa +dzD +ebD +dCj +aaa +aaa +aaf +aaa +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(214,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +aaa +aaf +aBV +aII +aKa +aLI +aHy +aHy +aHy +aHy +aBU +aVN +aXo +aYX +aaa +aaf +aaa +beX +bgK +biE +bkg +blD +bnC +biG +bqX +beX +aaf +agg +agg +aaf +agg +agg +agg +agg +aaf +agg +agg +agg +agg +aaf +agg +agg +agg +agg +agg +aaf +agg +agg +aaf +aaf +agg +agg +aaf +aaf +cqf +crC +csQ +cuE +cvV +cxG +czd +csQ +czc +cDv +cEB +cGj +cGj +cIS +cKQ +csQ +cNW +cNW +cRu +cTg +cUS +cNW +cWv +cqf +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +dwc +aaf +aaa +dzD +ebD +dCj +aaa +dzD +dAW +dCj +aaa +dzD +ebD +dCj +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(215,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +aaf +aaf +aBU +aIJ +aKb +aLJ +aHy +aOY +aQR +aSz +aBU +aVO +aXx +aYX +aaf +aaf +aaf +beY +bgL +biF +bkh +blE +bnD +bpC +bqY +bsn +aaa +aaf +aaa +aaa +aaf +aaf +aaa +aaf +aaf +aaf +aaa +aaf +aaf +aaa +aaf +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +cqf +crC +csQ +cuF +cvW +cxH +cxH +cxH +cxH +cxH +cEC +cxH +cxH +cxH +cxH +cxH +cxH +cxH +cxH +cTh +cuF +csQ +cWv +cqf +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +dwc +aaf +aaf +dzD +dAW +dCj +aaa +dzD +dAW +dCj +aaa +dzD +dAW +dCj +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(216,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aGe +aHy +aHy +aHy +aHy +aHy +aOZ +aQS +aSA +aUd +aVP +aXx +aYX +aaa +aaf +aaa +beZ +bgM +biG +bki +blF +bnE +biG +bqZ +beZ +aaf +aaf +agg +agg +agg +aaf +aaf +aaf +aaf +aaf +aaf +agg +agg +agg +agg +aaf +aaf +aaf +agg +agg +agg +agg +aaf +agg +aaf +aaf +agg +aaf +cqf +crC +crC +cuG +cvX +cxI +cze +cAQ +cAQ +cvX +cED +cGk +cGk +cIT +cKS +cMo +cMo +cPW +cMo +cKS +cUT +cWv +cYl +cqf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +dwc +aaf +aaa +dzD +dAW +dCj +aaf +dzD +dAW +dCj +aaf +dzD +dAW +dCj +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(217,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aaf +aaf +aHz +aIK +aKc +aLK +aNz +aPa +aQT +aSB +aUe +aVQ +aXy +aBU +aaf +aaf +aaf +beW +bgN +biH +bkf +blG +bnF +bpD +bra +beW +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cqf +crD +crD +crD +cqf +cqf +cqf +cqf +cqf +cqf +epj +cqf +cqf +epk +cqf +cqf +cqf +cqf +cqf +cqf +cUU +cWw +cYm +cqf +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaa +dwc +aaf +aaf +dzD +dAW +dCj +aaa +dzD +dAW +dCj +aaa +dzD +dAW +dCj +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(218,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aaa +aaa +aHz +aIL +aKd +aLL +aNA +aPb +aQU +aSC +aBU +aVR +aXz +aBU +aaf +aaa +aaf +beW +beW +biI +bkj +blH +bnG +bpE +beW +beW +aaf +aaf +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cqf +crE +csR +cuH +cqf +aaa +aaa +aaf +aaa +cqf +cEF +cqe +cGl +cIV +cqf +aaa +aaf +aaa +aaa +cqf +cUV +cWx +cYn +cqf +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +dwc +aaf +aaa +dzD +dAW +dCj +aaa +aaf +dwb +aaf +aaa +dzD +dAW +dCj +aaa +agg +aaf +agg +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(219,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aaf +aaf +aHz +aIM +aKe +efe +aNB +aPc +aQV +aSD +aBU +aVS +aXA +aBU +aaf +aaa +aaf +aaa +beW +biJ +bkk +blI +bnH +biJ +beW +aaa +aaa +aaf +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +cqe +cqf +cqf +cqf +cqe +aaf +czf +cAR +cAR +cAR +cEG +cqf +cqf +cIW +cKT +cKT +cKT +cPX +aaf +cqe +cqf +cqf +cqf +cqe +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +dwc +aaf +aaa +aaf +dwb +aaf +aaf +aaf +dwc +aaf +aaf +aaf +dwb +aaf +aaa +aaa +aaf +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(220,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aGe +aHy +aHy +aHy +aHy +aHy +aPd +aQW +aSE +aBU +aVT +aXB +aBU +aaf +aaa +aaf +aaa +beW +biK +bkf +blJ +bnI +bpF +beW +aaf +aaf +aaf +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaf +cqf +aaa +czg +cAS +cAS +cAS +cAS +cAS +cAS +cAS +cAS +cAS +cAS +cPY +aaa +cqf +aaf +aaf +aaf +aaf +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +dwc +dxm +dyu +dyu +dyu +dyu +dyu +dyu +dFC +dHm +dwc +dIH +dxm +dyu +dyu +dyu +dNs +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +eaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(221,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aBW +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aHy +aPe +aQX +aSF +aBU +aVR +aXz +aBU +aHu +aaf +aaf +aaf +beW +biL +bkl +blK +bnJ +bpG +beW +aaa +aaf +aaa +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +cqf +aaa +czg +cAS +cAS +cAS +cAS +cAS +cAS +cAS +cAS +cAS +cAS +cPY +aaa +cqf +aaf +aaa +aaa +agg +agg +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaa +aaa +aaf +aaa +aaf +dAX +aaf +aaf +aaf +dwc +aaf +aaf +aaf +dAX +aaf +aaa +aaa +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(222,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +agg +agg +aaa +agg +agg +agg +aaa +aHy +aHy +aHy +aHy +aBU +aVU +aXC +aZf +aHu +aaa +aaf +aaa +beW +biM +bkm +blL +bnK +bpH +beW +aaf +aaf +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +aaf +aaf +cqf +aaf +czh +cAT +cAS +cAS +cAS +cAS +cAS +cAS +cAS +cAS +cOa +cPZ +aaf +cqf +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +agg +aaf +aaf +aaa +dzD +dAY +dCj +aaa +aaf +dAX +aaf +aaa +dzD +dAY +dCj +aaa +agg +agg +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(223,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaH +aQY +aSG +aUf +aVV +aXD +aZg +aYX +aaa +aaf +aaa +beW +beW +bkn +blM +bnL +beW +beW +aaa +aaf +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +cqf +aaa +czg +cAS +cAS +cAS +cAS +cAS +cAS +cAS +cAS +cAS +cAS +cPY +aaa +cqf +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +dzD +dAY +dCj +aaa +dzD +dAY +dCj +aaa +dzD +dAY +dCj +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(224,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aHu +aHu +aHu +aVW +aXE +aKa +aHu +aaa +aaf +aaa +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaa +aaf +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +cqf +aaa +czg +cAS +cAS +cAS +cAS +cAS +cAS +cAS +cAS +cAS +cAS +cPY +aaa +cqf +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaa +dzD +dAY +dCj +aaf +dzD +dAY +dCj +aaf +dzD +dAY +dCj +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(225,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aHu +aVX +aXF +aVX +aHu +aaf +agg +agg +agg +aaf +agg +agg +agg +agg +agg +agg +aaf +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +cqe +aaf +czi +cAR +cAR +cAR +cEH +cqf +cqf +cIX +cKT +cKT +cKT +cQa +aaf +cqe +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +dzD +dAY +dCj +aaa +dzD +dAY +dCj +aaa +dzD +dAY +dCj +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(226,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +aHu +aVY +aVY +aZh +aHu +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +cqf +aaa +aaa +aaf +aaa +cqf +cEI +cGl +cqe +cIY +cqf +aaa +aaf +aaa +aaa +cqf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaa +dzD +ebE +dCj +aaa +dzD +dAY +dCj +aaa +dzD +ebE +dCj +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(227,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaf +aHu +aVZ +aXG +aVZ +aHu +aaf +aaf +agg +agg +agg +agg +agg +aaf +agg +agg +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +cqf +cqf +cqf +cqf +cqf +cqf +epj +cqf +cqf +epk +cqf +cqf +cqf +cqf +cqf +cqf +aaf +agg +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +aaa +aaa +aaa +aaa +aaa +dzD +ebE +dCj +aaa +aaa +aaa +aaa +aaa +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(228,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aHu +aWa +aXH +aWa +aHu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaf +aaf +cqf +cEJ +cGm +cHE +cIZ +cqf +aaf +aaf +aaf +aaf +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +agg +aaf +agg +agg +aaa +aaa +aaa +aaa +aaa +agg +aaf +agg +aaf +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(229,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aUg +aWa +aXI +aWa +aUg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +agg +aaa +agg +aaf +cDw +cEK +cGn +cHF +cJa +cDw +aaf +aaa +agg +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agg +agg +aaf +agg +agg +aaf +agg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(230,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aWa +aXJ +aWa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cqf +cEL +cGo +cHG +cJb +cqf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(231,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aXK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cqf +cqf +cqf +cqf +cqf +cqf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(232,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(233,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(234,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(235,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(236,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(237,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(238,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(239,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(240,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(241,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(242,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(243,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(244,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(245,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(246,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(247,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(248,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(249,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(250,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(251,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(252,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(253,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(254,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(255,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm index 74ffa97435..aa5a62d079 100644 --- a/_maps/map_files/MetaStation/MetaStation.dmm +++ b/_maps/map_files/MetaStation/MetaStation.dmm @@ -11728,9 +11728,6 @@ /turf/open/floor/plating, /area/security/brig) "ayx" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -11754,9 +11751,6 @@ /turf/open/floor/plating, /area/security/brig) "ayz" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -11770,9 +11764,6 @@ /turf/open/floor/plasteel/red/side, /area/security/brig) "ayA" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -12274,9 +12265,6 @@ /turf/open/floor/plasteel/floorgrime, /area/security/brig) "azE" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) "azF" = ( @@ -13088,15 +13076,18 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) "aBh" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) "aBi" = ( @@ -13698,19 +13689,8 @@ }, /area/security/brig) "aCq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Security Desk"; - req_access_txt = "63" - }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/black, +/turf/closed/wall, /area/security/brig) "aCr" = ( /obj/machinery/door/airlock/security{ @@ -14195,12 +14175,6 @@ }, /area/hallway/primary/fore) "aDz" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 32 - }, /obj/machinery/camera{ c_tag = "Fore Primary Hallway Cells"; dir = 2; @@ -14251,7 +14225,6 @@ /turf/open/floor/plating, /area/security/brig) "aDF" = ( -/obj/machinery/computer/secure_data, /obj/machinery/button/flasher{ id = "secentranceflasher"; name = "Brig Entrance Flash Control"; @@ -14299,16 +14272,13 @@ /turf/open/floor/plasteel/black, /area/security/brig) "aDG" = ( -/obj/structure/filingcabinet/chestdrawer{ - pixel_y = 3 - }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/black, -/area/security/brig) -"aDH" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, +/turf/open/floor/plasteel/black, +/area/security/brig) +"aDH" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -14331,6 +14301,9 @@ pixel_x = 29; pixel_y = -2 }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_y = 3 + }, /turf/open/floor/plasteel/black, /area/security/brig) "aDI" = ( @@ -14997,18 +14970,15 @@ /turf/open/floor/plasteel/black, /area/security/brig) "aEX" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, /turf/open/floor/plasteel/black, /area/security/brig) "aEY" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, /obj/machinery/airalarm{ dir = 8; pixel_x = 24 @@ -15016,6 +14986,15 @@ /obj/machinery/light/small{ dir = 4 }, +/obj/structure/table, +/obj/item/folder/red{ + pixel_x = 3 + }, +/obj/item/folder/white{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/restraints/handcuffs, /turf/open/floor/plasteel/black, /area/security/brig) "aEZ" = ( @@ -15712,21 +15691,13 @@ /turf/open/floor/plating, /area/security/brig) "aGq" = ( -/obj/machinery/computer/security, /obj/machinery/newscaster/security_unit{ pixel_y = -30 }, +/obj/machinery/computer/secure_data, /turf/open/floor/plasteel/black, /area/security/brig) "aGr" = ( -/obj/structure/table, -/obj/item/folder/red{ - pixel_x = 3 - }, -/obj/item/folder/white{ - pixel_x = -4; - pixel_y = 2 - }, /obj/machinery/computer/security/telescreen{ desc = "Used for watching Prison Wing holding areas."; dir = 1; @@ -15734,7 +15705,7 @@ network = list("Prison"); pixel_y = -30 }, -/obj/item/restraints/handcuffs, +/obj/machinery/computer/security, /turf/open/floor/plasteel/black, /area/security/brig) "aGs" = ( @@ -26427,7 +26398,7 @@ }, /area/security/checkpoint/engineering) "bcO" = ( -/obj/structure/easel, +/obj/machinery/vending/kink, /turf/open/floor/plating{ icon_state = "platingdmg3" }, @@ -59917,10 +59888,10 @@ /turf/open/space, /area/space) "ctn" = ( -/obj/machinery/vending/cigarette, /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/machinery/vending/kink, /turf/open/floor/plating, /area/maintenance/port/aft) "cto" = ( @@ -76029,7 +76000,7 @@ /turf/open/floor/plating, /area/maintenance/port) "dbl" = ( -/obj/structure/easel, +/obj/machinery/vending/kink, /turf/open/floor/plating, /area/maintenance/starboard/aft) "dbm" = ( @@ -80269,12 +80240,16 @@ /turf/open/floor/plating, /area/security/brig) "dBH" = ( -/obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ - icon_state = "0-4" + icon_state = "1-2" }, -/turf/open/floor/plating, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Security Desk"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/black, /area/security/brig) "dBI" = ( /obj/effect/spawner/structure/window/reinforced, @@ -80426,9 +80401,6 @@ }, /area/maintenance/starboard/fore) "dCj" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/floorgrime, /area/security/brig) @@ -97162,7 +97134,7 @@ cBR cBR cBR cBR -dBR +cDE cBR cBR cBR @@ -105821,7 +105793,7 @@ awZ ayw azD aAY -aCk +ajm aDw aDC aGb @@ -106078,8 +106050,8 @@ axa ayx azE azE -aCl -aDx +ajm +aDw aEK aGc aHx @@ -106335,7 +106307,7 @@ axb ayy azF aAZ -aCm +ajm aDw aEL aGd @@ -106593,7 +106565,7 @@ ahx ahx ahx ajm -aDy +aDw aEM aGe aHx @@ -106849,7 +106821,7 @@ axd ayw azG aAY -aCk +ajm aDw aEN aGf @@ -107106,8 +107078,8 @@ axe ayz dCj azE -aCl -aDx +ajm +aDw dCo aGg aHx @@ -107363,7 +107335,7 @@ axb ayy azF aBa -aCm +ajm aDw aEO aGh @@ -107877,7 +107849,7 @@ axd ayw azH aAY -aCk +ajm aDw aEO aGg @@ -108134,8 +108106,8 @@ axa ayA azE azE -aCl -aDx +ajm +aDw aEQ aGj aHz @@ -108391,7 +108363,7 @@ axg ayy azF aBb -aCm +ajm aDw aEN aGk @@ -109159,7 +109131,7 @@ atS auW awi axj -dBD +aiq azJ aBd aCo @@ -109930,10 +109902,10 @@ ahB ave awl axm -dBD +aiq azL aBf -ajm +ahx aDF aEW aGq diff --git a/tgstation.dme b/tgstation.dme index 56046559ae..d6eea16986 100755 --- a/tgstation.dme +++ b/tgstation.dme @@ -1265,14 +1265,11 @@ #include "code\modules\clothing\glasses\engine_goggles.dm" #include "code\modules\clothing\glasses\hud.dm" #include "code\modules\clothing\glasses\vg_glasses.dm" -#include "code\modules\clothing\gloves\boxing.dm" -#include "code\modules\clothing\gloves\color.dm" -#include "code\modules\clothing\gloves\miscellaneous.dm" -#include "code\modules\clothing\gloves\vg_gloves.dm" #include "code\modules\clothing\gloves\_gloves.dm" #include "code\modules\clothing\gloves\boxing.dm" #include "code\modules\clothing\gloves\color.dm" #include "code\modules\clothing\gloves\miscellaneous.dm" +#include "code\modules\clothing\gloves\vg_gloves.dm" #include "code\modules\clothing\head\_head.dm" #include "code\modules\clothing\head\beanie.dm" #include "code\modules\clothing\head\cit_hats.dm" From c6150a08194082679da0c852a8d042567477d4d1 Mon Sep 17 00:00:00 2001 From: deathride58 Date: Mon, 23 Oct 2017 14:10:23 -0400 Subject: [PATCH 087/227] Boxstation major non-security map changes --- _maps/map_files/BoxStation/BoxStation.dmm | 3088 +++++++++++++++------ 1 file changed, 2295 insertions(+), 793 deletions(-) diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index 5b8b608781..d7e4dfc312 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -9634,9 +9634,6 @@ /obj/structure/cable{ icon_state = "2-4" }, -/obj/structure/cable{ - icon_state = "2-8" - }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -10044,14 +10041,10 @@ /turf/closed/wall/r_wall, /area/maintenance/port/fore) "ayA" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/barricade/wooden, +/obj/structure/grille, +/turf/open/floor/wood, /area/maintenance/fore) "ayB" = ( /obj/structure/cable{ @@ -10072,15 +10065,8 @@ /turf/open/floor/plating, /area/maintenance/fore) "ayD" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, /area/maintenance/fore) "ayE" = ( /turf/closed/wall/r_wall, @@ -10495,14 +10481,28 @@ /turf/closed/wall, /area/maintenance/port/fore) "azH" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/space, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/bar/cafe"; + dir = 1; + name = "Abandoned Cafe APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, /area/space) "azI" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/space, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair/stool/bar, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, /area/space) "azJ" = ( /obj/machinery/gateway{ @@ -11383,11 +11383,16 @@ /turf/closed/wall/r_wall, /area/storage/primary) "aBS" = ( -/obj/machinery/light_switch{ - pixel_y = 28 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/circuit, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/wood, /area/ai_monitored/nuke_storage) "aBT" = ( /obj/machinery/computer/bank_machine, @@ -11396,17 +11401,13 @@ }, /area/ai_monitored/nuke_storage) "aBU" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Vault APC"; - areastring = "/area/ai_monitored/nuke_storage"; - pixel_y = 25 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, /obj/structure/cable{ - icon_state = "0-2" + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/circuit, +/turf/open/floor/wood, /area/ai_monitored/nuke_storage) "aBV" = ( /obj/machinery/airalarm{ @@ -11985,18 +11986,11 @@ /turf/open/floor/plasteel, /area/storage/primary) "aDr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/circuit, +/turf/closed/wall, /area/ai_monitored/nuke_storage) "aDs" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 1 - }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, /area/ai_monitored/nuke_storage) "aDt" = ( /obj/structure/cable{ @@ -13157,9 +13151,9 @@ /area/ai_monitored/nuke_storage) "aGd" = ( /obj/structure/cable{ - icon_state = "2-4" + icon_state = "1-2" }, -/turf/open/floor/plasteel/vault, +/turf/open/floor/plating, /area/ai_monitored/nuke_storage) "aGe" = ( /obj/structure/safe, @@ -14446,19 +14440,13 @@ /turf/open/floor/plasteel, /area/storage/primary) "aJd" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, +/turf/closed/wall, /area/hallway/primary/port) "aJe" = ( /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, +/turf/open/floor/plating, /area/hallway/primary/port) "aJf" = ( /obj/machinery/camera{ @@ -14984,20 +14972,22 @@ /turf/open/floor/plating, /area/storage/primary) "aKt" = ( -/obj/structure/cable{ - icon_state = "0-4" +/obj/machinery/door/airlock/freezer{ + boltDown = null; + boltUp = null; + doorClose = null; + doorDeni = null; + doorOpen = null; + name = "Mime's Office"; + noPower = null; + req_access_txt = "46" }, -/obj/structure/cable{ - icon_state = "0-8" +/turf/open/floor/plasteel/white/side{ + dir = 1 }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, /area/hallway/primary/port) "aKu" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, +/obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/hallway/primary/port) "aKv" = ( @@ -15012,19 +15002,13 @@ /turf/open/floor/plating, /area/hallway/primary/port) "aKw" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, /obj/structure/cable{ icon_state = "1-2" }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, +/turf/open/floor/plating, /area/hallway/primary/port) "aKx" = ( /obj/structure/cable{ @@ -15313,16 +15297,7 @@ /turf/open/floor/plasteel, /area/hallway/primary/port) "aLl" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 32 - }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, /turf/open/floor/plasteel, /area/hallway/primary/port) "aLm" = ( @@ -15476,15 +15451,6 @@ /obj/machinery/light{ dir = 1 }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, /turf/open/floor/plasteel, /area/hallway/primary/port) "aLK" = ( @@ -15496,9 +15462,6 @@ c_tag = "Port Hallway 2"; dir = 2 }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, /turf/open/floor/plasteel, /area/hallway/primary/port) "aLM" = ( @@ -15526,9 +15489,6 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, /turf/open/floor/plasteel, /area/hallway/primary/port) "aLQ" = ( @@ -21887,8 +21847,7 @@ /turf/closed/wall, /area/quartermaster/storage) "bcU" = ( -/obj/item/stack/tile/plasteel, -/turf/open/space, +/turf/open/floor/wood, /area/space/nearstation) "bcV" = ( /obj/machinery/airalarm{ @@ -22280,8 +22239,8 @@ /turf/open/floor/plasteel/floorgrime, /area/quartermaster/storage) "bdV" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/airless, +/obj/structure/chair/stool, +/turf/open/floor/wood, /area/space/nearstation) "bdW" = ( /obj/item/clothing/gloves/color/rainbow, @@ -23411,7 +23370,7 @@ dir = 4 }, /turf/closed/wall/r_wall, -/area/engine/gravity_generator) +/area/ai_monitored/nuke_storage) "bgS" = ( /obj/machinery/requests_console{ announcementConsole = 1; @@ -23964,6 +23923,9 @@ /area/bridge/meeting_room) "bif" = ( /obj/machinery/vending/cigarette, +/obj/machinery/light{ + dir = 4 + }, /turf/open/floor/wood, /area/bridge/meeting_room) "big" = ( @@ -24525,16 +24487,13 @@ /turf/open/floor/plasteel, /area/hallway/primary/central) "bjy" = ( -/obj/machinery/camera{ - c_tag = "Gravity Generator Room"; - dir = 8; - network = list("SS13") - }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, -/turf/open/floor/plasteel/black, -/area/engine/gravity_generator) +/turf/open/floor/plasteel/vault{ + dir = 4 + }, +/area/ai_monitored/nuke_storage) "bjz" = ( /turf/closed/wall/r_wall, /area/maintenance/central) @@ -25768,13 +25727,15 @@ dir = 8 }, /turf/closed/wall/r_wall, -/area/engine/gravity_generator) +/area/ai_monitored/nuke_storage) "bmv" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, -/turf/open/floor/plasteel/black, -/area/engine/gravity_generator) +/turf/open/floor/plasteel/vault{ + dir = 1 + }, +/area/ai_monitored/nuke_storage) "bmw" = ( /obj/machinery/light{ dir = 4 @@ -26410,25 +26371,21 @@ /area/engine/gravity_generator) "bnU" = ( /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/machinery/door/airlock/glass_engineering{ - name = "Gravity Generator"; - req_access_txt = "11"; - req_one_access_txt = "0" - }, -/turf/open/floor/plasteel/black, -/area/engine/gravity_generator) +/turf/open/floor/plasteel/vault, +/area/ai_monitored/nuke_storage) "bnV" = ( -/obj/structure/cable{ - icon_state = "0-8" +/obj/machinery/camera/motion{ + c_tag = "Vault"; + dir = 1; + network = list("MiniSat") }, -/obj/structure/cable{ - icon_state = "0-4" +/obj/machinery/light, +/turf/open/floor/plasteel/vault{ + dir = 10 }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/gravity_generator) +/area/ai_monitored/nuke_storage) "bnW" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; @@ -26945,35 +26902,24 @@ /turf/open/floor/plasteel, /area/crew_quarters/heads/hop) "bpg" = ( -/obj/structure/chair/office/light, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) "bph" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) "bpi" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) "bpj" = ( /obj/structure/chair/comfy/brown{ dir = 4 @@ -27559,17 +27505,20 @@ /area/engine/gravity_generator) "bqE" = ( /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/hallway/primary/central) "bqF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - icon_state = "4-8" + icon_state = "0-2" }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) +/turf/open/floor/plating, +/area/hallway/primary/central) "bqG" = ( /obj/structure/cable{ icon_state = "0-8" @@ -28215,20 +28164,20 @@ /turf/closed/wall/r_wall, /area/engine/gravity_generator) "bsb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, /turf/closed/wall/r_wall, -/area/engine/gravity_generator) +/area/security/checkpoint/checkpoint2) "bsc" = ( /turf/open/floor/plasteel, /area/engine/gravity_generator) "bsd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "0-4" }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/primary/central) "bse" = ( /obj/machinery/power/terminal{ dir = 1 @@ -28239,11 +28188,14 @@ /turf/closed/wall/r_wall, /area/engine/gravity_generator) "bsf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-8" }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) +/turf/open/floor/plating, +/area/hallway/primary/central) "bsg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -29409,45 +29361,32 @@ /turf/open/floor/plasteel, /area/crew_quarters/heads/hop) "buP" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/closed/wall, -/area/engine/gravity_generator) -"buQ" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/checkpoint2) +"buQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/checkpoint2) +"buR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, /turf/open/floor/plasteel, -/area/engine/gravity_generator) -"buR" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/engine/gravity_generator) +/area/security/checkpoint/checkpoint2) "buS" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Gravity Generator Foyer" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 }, /turf/open/floor/plasteel, -/area/engine/gravity_generator) +/area/security/checkpoint/checkpoint2) "buT" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -29942,8 +29881,8 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/obj/structure/cable{ + icon_state = "1-2" }, /turf/open/floor/plasteel, /area/hallway/primary/central) @@ -29995,16 +29934,10 @@ }, /area/hallway/primary/central) "bwh" = ( -/obj/structure/sign/securearea{ - pixel_y = 32 - }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, /turf/open/floor/plasteel, /area/hallway/primary/central) "bwi" = ( @@ -30044,39 +29977,24 @@ /turf/open/floor/plasteel, /area/crew_quarters/heads/hop) "bwm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/engine/gravity_generator) +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/checkpoint2) "bwn" = ( -/obj/structure/closet/radiation, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = -32 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/checkpoint2) "bwo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall, /area/engine/gravity_generator) "bwp" = ( -/obj/structure/closet/radiation, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) +/obj/structure/chair/office/dark, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/checkpoint2) "bwq" = ( /obj/machinery/teleport/station, /turf/open/floor/plating, @@ -30665,30 +30583,65 @@ /turf/open/floor/plasteel, /area/crew_quarters/heads/hop) "bxH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "vault"; + name = "vault shutters" }, -/turf/closed/wall, -/area/engine/gravity_generator) +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/checkpoint/checkpoint2) "bxI" = ( -/obj/machinery/ai_status_display, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 +/obj/machinery/door/airlock/security{ + name = "Security Checkpoint"; + req_access = null; + req_access_txt = "1" }, -/turf/closed/wall, -/area/engine/gravity_generator) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/checkpoint2) "bxJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "vault"; + name = "vault shutters" }, -/turf/closed/wall, -/area/engine/gravity_generator) +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/checkpoint/checkpoint2) "bxK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/item/paper, +/obj/machinery/door/window/westright{ + dir = 1; + name = "Security Checkpoint"; + req_access_txt = "1" }, -/turf/closed/wall, -/area/engine/gravity_generator) +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "vault"; + name = "vault shutters" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) "bxL" = ( /obj/machinery/camera{ c_tag = "Central Hallway South-East"; @@ -31182,6 +31135,9 @@ /area/security/checkpoint/supply) "byU" = ( /obj/machinery/light, +/obj/structure/cable{ + icon_state = "4-8" + }, /turf/open/floor/plasteel, /area/hallway/primary/central) "byV" = ( @@ -31189,6 +31145,9 @@ pixel_x = 5; pixel_y = -32 }, +/obj/structure/cable{ + icon_state = "4-8" + }, /turf/open/floor/plasteel, /area/hallway/primary/central) "byW" = ( @@ -31683,6 +31642,9 @@ }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, /turf/open/floor/plasteel, /area/hallway/primary/central) "bAh" = ( @@ -32175,6 +32137,9 @@ /obj/structure/cable{ icon_state = "1-8" }, +/obj/structure/cable{ + icon_state = "4-8" + }, /turf/open/floor/plasteel, /area/hallway/primary/central) "bBm" = ( @@ -32234,6 +32199,9 @@ pixel_x = -32; pixel_y = -32 }, +/obj/structure/cable{ + icon_state = "1-8" + }, /turf/open/floor/plasteel, /area/hallway/primary/central) "bBr" = ( @@ -40463,8 +40431,11 @@ /turf/open/floor/plating, /area/maintenance/port/aft) "bUt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, /obj/structure/cable{ - icon_state = "0-4" + icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/port/aft) @@ -40479,16 +40450,19 @@ /obj/structure/cable{ icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 }, /turf/open/floor/plating, /area/maintenance/port/aft) "bUv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/maintenance/port/aft) "bUx" = ( @@ -40979,10 +40953,10 @@ /turf/open/floor/plating, /area/maintenance/port/aft) "bVG" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = -31 }, -/turf/open/floor/plating, +/turf/open/floor/wood, /area/maintenance/port/aft) "bVI" = ( /turf/closed/wall/r_wall, @@ -48115,6 +48089,9 @@ /obj/structure/cable{ icon_state = "1-4" }, +/obj/structure/cable{ + icon_state = "1-2" + }, /turf/open/floor/plasteel/black, /area/engine/engine_smes) "cnP" = ( @@ -48346,6 +48323,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 5 }, +/obj/structure/cable{ + icon_state = "1-2" + }, /turf/open/floor/plasteel, /area/engine/engine_smes) "coz" = ( @@ -48583,11 +48563,17 @@ /obj/effect/turf_decal/stripes/line{ dir = 6 }, +/obj/structure/cable{ + icon_state = "1-8" + }, /turf/open/floor/plasteel, /area/engine/engine_smes) "cpn" = ( /obj/machinery/light, /obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + icon_state = "2-4" + }, /turf/open/floor/plasteel, /area/engine/engine_smes) "cpo" = ( @@ -48802,7 +48788,6 @@ /turf/open/floor/plating, /area/maintenance/port/aft) "cpS" = ( -/obj/structure/cable, /obj/machinery/power/apc{ dir = 2; name = "SMES room APC"; @@ -48812,6 +48797,10 @@ /obj/effect/turf_decal/stripes/line{ dir = 10 }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable, /turf/open/floor/plasteel, /area/engine/engine_smes) "cpT" = ( @@ -48827,12 +48816,8 @@ /turf/open/floor/plasteel, /area/engine/engine_smes) "cpU" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, @@ -49324,9 +49309,11 @@ /turf/open/floor/plating, /area/maintenance/port/aft) "crn" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/engine/engineering) +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) "cro" = ( /obj/structure/cable{ icon_state = "0-4" @@ -53535,8 +53522,8 @@ /turf/open/floor/plasteel/grimy, /area/chapel/office) "cCa" = ( -/obj/item/clothing/head/hardhat, -/turf/open/floor/plating/airless, +/obj/structure/table/wood/poker, +/turf/open/floor/wood, /area/space/nearstation) "cCb" = ( /obj/structure/table, @@ -57807,6 +57794,1521 @@ /obj/structure/grille, /turf/open/space/basic, /area/space) +"Qov" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/space) +"Qow" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/space) +"Qox" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/space) +"Qoy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/space) +"Qoz" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/space) +"QoA" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/space) +"QoB" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks/beer, +/turf/open/floor/wood, +/area/space) +"QoC" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/space) +"QoD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/wood, +/area/ai_monitored/nuke_storage) +"QoE" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/wood, +/area/ai_monitored/nuke_storage) +"QoF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/ai_monitored/nuke_storage) +"QoG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/ai_monitored/nuke_storage) +"QoH" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/chair/stool/bar, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/ai_monitored/nuke_storage) +"QoI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/table/wood, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/ai_monitored/nuke_storage) +"QoJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/wood, +/area/ai_monitored/nuke_storage) +"QoK" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks, +/turf/open/floor/wood, +/area/space) +"QoL" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/space) +"QoM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/table/wood, +/obj/machinery/light/small, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/ai_monitored/nuke_storage) +"QoN" = ( +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/theatre/mime"; + dir = 2; + name = "Mime's Office APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/ai_monitored/nuke_storage) +"QoO" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/wood, +/area/ai_monitored/nuke_storage) +"QoP" = ( +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/theatre/mime"; + dir = 2; + name = "Clown's Office APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/ai_monitored/nuke_storage) +"QoQ" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/ai_monitored/nuke_storage) +"QoR" = ( +/obj/structure/table/wood, +/obj/item/storage/box/drinkingglasses, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/wood, +/area/space) +"QoS" = ( +/turf/closed/wall, +/area/space) +"QoT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/ai_monitored/nuke_storage) +"QoU" = ( +/obj/structure/barricade/wooden, +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/ai_monitored/nuke_storage) +"QoV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/ai_monitored/nuke_storage) +"QoW" = ( +/turf/closed/wall, +/area/space) +"QoX" = ( +/obj/machinery/vending/autodrobe, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/space) +"QoY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"QoZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/bed, +/obj/item/bedsheet/mime, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"Qpa" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/ai_monitored/nuke_storage) +"Qpb" = ( +/obj/structure/closet/secure_closet/freezer/cream_pie, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/redyellow, +/area/ai_monitored/nuke_storage) +"Qpc" = ( +/obj/structure/closet/crate/wooden/toy, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/redyellow, +/area/ai_monitored/nuke_storage) +"Qpd" = ( +/obj/machinery/vending/autodrobe, +/turf/open/floor/plasteel/redyellow, +/area/space) +"Qpe" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/snacks/baguette, +/obj/item/toy/dummy, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/space) +"Qpf" = ( +/obj/effect/landmark/start/mime, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"Qpg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Mime's Office"; + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"Qph" = ( +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Clown's Office"; + c_tag_order = 999; + dir = 4 + }, +/turf/open/floor/plasteel/redyellow, +/area/ai_monitored/nuke_storage) +"Qpi" = ( +/obj/effect/landmark/start/clown, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/redyellow, +/area/ai_monitored/nuke_storage) +"Qpj" = ( +/obj/structure/bed, +/obj/item/bedsheet/clown, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/redyellow, +/area/space) +"Qpk" = ( +/obj/structure/table, +/obj/item/lipstick/random{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/lipstick/random{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/space) +"Qpl" = ( +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"Qpm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"Qpn" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/redyellow, +/area/ai_monitored/nuke_storage) +"Qpo" = ( +/turf/open/floor/plasteel/redyellow, +/area/ai_monitored/nuke_storage) +"Qpp" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/bikehorn, +/turf/open/floor/plasteel/redyellow, +/area/space) +"Qpq" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/space) +"Qpr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/space) +"Qps" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/space) +"Qpt" = ( +/obj/structure/table, +/obj/item/device/flashlight/lamp/bananalamp, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -30 + }, +/turf/open/floor/plasteel/redyellow, +/area/space) +"Qpu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/redyellow, +/area/space) +"Qpv" = ( +/obj/structure/statue/bananium/clown, +/turf/open/floor/plasteel/redyellow, +/area/space) +"Qpw" = ( +/obj/machinery/door/airlock/clown{ + name = "Clown's Office"; + req_access_txt = "46" + }, +/turf/open/floor/plasteel/redyellow, +/area/hallway/primary/port) +"Qpx" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/bridge/meeting_room) +"Qpy" = ( +/turf/open/floor/plating, +/area/maintenance/department/bridge) +"Qpz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/bridge) +"QpA" = ( +/turf/open/floor/plating, +/area/maintenance/department/bridge) +"QpB" = ( +/turf/open/floor/plating, +/area/maintenance/department/bridge) +"QpC" = ( +/turf/open/floor/plating, +/area/maintenance/department/bridge) +"QpD" = ( +/turf/open/floor/plating, +/area/maintenance/department/bridge) +"QpE" = ( +/turf/open/floor/plating, +/area/maintenance/department/bridge) +"QpF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/bridge) +"QpG" = ( +/turf/open/floor/plating, +/area/maintenance/department/bridge) +"QpH" = ( +/obj/machinery/door/airlock/maintenance{ + name = "bridge maintenance access"; + req_access_txt = "20" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/captain) +"QpI" = ( +/turf/closed/wall/r_wall, +/area/maintenance/department/bridge) +"QpJ" = ( +/turf/closed/wall/r_wall, +/area/maintenance/department/bridge) +"QpK" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/circuit, +/area/ai_monitored/nuke_storage) +"QpL" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Vault APC"; + areastring = "/area/ai_monitored/nuke_storage"; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/circuit, +/area/ai_monitored/nuke_storage) +"QpM" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/circuit, +/area/ai_monitored/nuke_storage) +"QpN" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/circuit, +/area/ai_monitored/nuke_storage) +"QpO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"QpP" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"QpQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"QpR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/hallway/primary/central) +"QpS" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/checkpoint2) +"QpT" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/hallway/primary/central) +"QpU" = ( +/obj/structure/closet/secure_closet/security, +/obj/machinery/power/apc{ + areastring = "/area/security/checkpoint/checkpoint2"; + dir = 8; + name = "Security Checkpoint APC"; + pixel_x = -24; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/checkpoint/checkpoint2) +"QpV" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 30 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/checkpoint/checkpoint2) +"QpW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/checkpoint/checkpoint2) +"QpX" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/checkpoint/checkpoint2) +"QpY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/checkpoint/checkpoint2) +"QpZ" = ( +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = 30 + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/checkpoint/checkpoint2) +"Qqa" = ( +/obj/machinery/computer/security, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/checkpoint/checkpoint2) +"Qqb" = ( +/obj/structure/closet/wardrobe/red, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/checkpoint/checkpoint2) +"Qqc" = ( +/turf/open/floor/plasteel, +/area/security/checkpoint/checkpoint2) +"Qqd" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/checkpoint/checkpoint2) +"Qqe" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/camera{ + c_tag = "Security Checkpoint"; + dir = 1 + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the vault shutters."; + id = "vault"; + name = "vault shutter control"; + normaldoorcontrol = 0; + pixel_x = 8; + pixel_y = -24; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/checkpoint/checkpoint2) +"Qqf" = ( +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/structure/table, +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/checkpoint2) +"Qqg" = ( +/obj/item/device/radio/off, +/obj/item/crowbar, +/obj/item/device/assembly/flash/handheld, +/obj/structure/table, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/checkpoint/checkpoint2) +"Qqh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "vault"; + name = "vault shutters" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/checkpoint/checkpoint2) +"Qqi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"Qqj" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"Qqk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"Qql" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"Qqm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/maintenance/port/aft) +"Qqn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"Qqo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/abandoned{ + req_access_txt = "0" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"Qqp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"Qqq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/port/aft) +"Qqr" = ( +/obj/structure/chair/stool/bar, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"Qqs" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"Qqt" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/port/aft) +"Qqu" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/port/aft) +"Qqv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"Qqw" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/maintenance/port/aft) +"Qqx" = ( +/obj/structure/chair/stool/bar, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/space/nearstation) +"Qqy" = ( +/obj/structure/table/wood, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/space/nearstation) +"Qqz" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/space/nearstation) +"QqA" = ( +/obj/machinery/chem_dispenser/drinks/beer, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/space/nearstation) +"QqB" = ( +/obj/item/restraints/handcuffs/fake, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/spawner/lootdrop/minor/kittyears_or_rabbitears, +/turf/open/floor/plating, +/area/space/nearstation) +"QqC" = ( +/obj/item/shard, +/obj/item/wirecutters, +/obj/item/wallframe/camera, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/space/nearstation) +"QqD" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -30 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/maintenance/port/aft) +"QqE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"QqF" = ( +/obj/structure/chair/stool/bar, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/space/nearstation) +"QqG" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/space/nearstation) +"QqH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/space/nearstation) +"QqI" = ( +/obj/machinery/vending/boozeomat, +/turf/open/floor/wood, +/area/space/nearstation) +"QqJ" = ( +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/item/crowbar, +/obj/item/device/electropack/shockcollar, +/turf/open/floor/plating, +/area/space/nearstation) +"QqK" = ( +/obj/structure/bed, +/obj/item/bedsheet/grey, +/obj/effect/decal/cleanable/semen{ + desc = "Blech."; + name = "dried semen" + }, +/obj/effect/spawner/lootdrop/costume, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/space/nearstation) +"QqL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/maintenance/port/aft) +"QqM" = ( +/obj/structure/chair/stool/bar, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/wood, +/area/space/nearstation) +"QqN" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/space/nearstation) +"QqO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/space/nearstation) +"QqP" = ( +/obj/machinery/chem_dispenser/drinks, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/space/nearstation) +"QqQ" = ( +/obj/item/lighter/greyscale, +/obj/effect/decal/cleanable/semen{ + desc = "Blech."; + name = "dried semen" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/space/nearstation) +"QqR" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/blood/old, +/obj/item/device/assembly/signaler, +/turf/open/floor/plating, +/area/space/nearstation) +"QqS" = ( +/obj/effect/spawner/lootdrop/keg, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"QqT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"QqU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/space/nearstation) +"QqV" = ( +/obj/machinery/power/apc{ + areastring = "/area/maintenance/bar"; + dir = 2; + name = "Maintenance Bar APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/space/nearstation) +"QqW" = ( +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/space/nearstation) +"QqX" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/space/nearstation) +"QqY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/maintenance/abandoned{ + req_access_txt = "0" + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/space/nearstation) +"QqZ" = ( +/obj/structure/sign/poster/official/no_erp, +/turf/closed/wall, +/area/space/nearstation) +"Qra" = ( +/obj/machinery/vending/clothing, +/turf/open/floor/wood, +/area/space/nearstation) +"Qrb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/space/nearstation) +"Qrc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/space/nearstation) +"Qrd" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/space/nearstation) +"Qre" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/space/nearstation) +"Qrf" = ( +/obj/machinery/vending/autodrobe, +/turf/open/floor/wood, +/area/space/nearstation) +"Qrg" = ( +/obj/structure/sign/poster/random{ + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/space/nearstation) +"Qrh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/space/nearstation) +"Qri" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/space/nearstation) +"Qrj" = ( +/obj/structure/table/wood/poker, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/space/nearstation) +"Qrk" = ( +/obj/structure/table/wood/poker, +/obj/item/storage/pill_bottle/dice, +/turf/open/floor/wood, +/area/space/nearstation) +"Qrl" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/space/nearstation) +"Qrm" = ( +/obj/structure/table/wood/bar, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/turf/open/floor/wood, +/area/space/nearstation) +"Qrn" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = -31 + }, +/turf/open/floor/wood, +/area/space/nearstation) +"Qro" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/wood, +/area/space/nearstation) +"Qrp" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/wood, +/area/space/nearstation) +"Qrq" = ( +/obj/structure/table/wood/poker, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/space/nearstation) +"Qrr" = ( +/obj/structure/table/wood/poker, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/space/nearstation) +"Qrs" = ( +/obj/structure/table/wood/poker, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/space/nearstation) +"Qrt" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/space/nearstation) +"Qru" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/wood, +/area/space/nearstation) +"Qrv" = ( +/obj/structure/table/wood/bar, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/space/nearstation) +"Qrw" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/space/nearstation) +"Qrx" = ( +/obj/structure/table/wood/poker, +/obj/item/coin/iron, +/turf/open/floor/wood, +/area/space/nearstation) +"Qry" = ( +/obj/structure/table/wood/bar, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/sign/poster/random{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/space/nearstation) +"Qrz" = ( +/obj/effect/spawner/lootdrop/keg, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/space/nearstation) +"QrA" = ( +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/space/nearstation) +"QrB" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/space/nearstation) +"QrC" = ( +/obj/structure/chair/stool, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -35 + }, +/turf/open/floor/wood, +/area/space/nearstation) +"QrD" = ( +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/space/nearstation) +"QrE" = ( +/obj/machinery/vending/kink, +/turf/open/floor/wood, +/area/space/nearstation) +"QrF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"QrG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"QrH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"QrI" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = -32 + }, +/obj/structure/closet/radiation, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"QrJ" = ( +/obj/machinery/camera{ + c_tag = "Gravity Generator Foyer" + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 32 + }, +/obj/structure/closet/radiation, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"QrK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"QrL" = ( +/turf/closed/wall, +/area/space) +"QrM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"QrN" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"QrO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"QrP" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"QrQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"QrR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"QrS" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"QrT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"QrU" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"QrV" = ( +/obj/machinery/power/terminal, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/cable, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"QrW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"QrX" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/paper/guides/jobs/engi/gravity_gen{ + layer = 3 + }, +/obj/structure/table, +/obj/item/pen/blue, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"QrY" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"QrZ" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"Qsa" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Gravity Generator APC"; + areastring = "/area/engine/gravity_generator"; + pixel_x = -25; + pixel_y = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"Qsb" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"Qsc" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"Qsd" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"Qse" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"Qsf" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_x = -32 + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/engine/gravity_generator) +"Qsg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/engine/gravity_generator) +"Qsh" = ( +/obj/machinery/door/airlock/glass_engineering{ + name = "Gravity Generator"; + req_access_txt = "11"; + req_one_access_txt = "0" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/black, +/area/engine/gravity_generator) +"Qsi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/engine/gravity_generator) +"Qsj" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 32 + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engine/gravity_generator) +"Qsk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"Qsl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/black, +/area/engine/gravity_generator) +"Qsm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Gravity Generator Room"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel/black, +/area/engine/gravity_generator) +"Qsn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) (1,1,1) = {" aaa @@ -77443,17 +78945,17 @@ alU ali ali atO -axm -ayz -ayz -ayz -aBR -aBR -aBR -aBR -aBR -aBR -aBR +axo +alU +alU +alU +aBQ +aBQ +aBQ +aBQ +aBQ +aBQ +aBQ aLJ aLE aOl @@ -77701,17 +79203,17 @@ aoV apQ avY axo -ayB -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaa +aqQ +Qov +QoC +QoL +QoS +QoX +Qpe +Qpk +Qpq aKu -aLM +aLF aLF aOs aPG @@ -77958,15 +79460,15 @@ aoV aoV avY axo -ayA -aaf -aBa -aBa -aBa -aBa -aBa -aBa -aaf +aqQ +Qow +QoD +QoM +QoT +QoY +Qpf +Qpl +Qpr aKt aLL bDe @@ -78215,17 +79717,17 @@ apQ apQ avY axo -ayA -aaa -aBa -aBT +aqQ +Qox +QoE +QoN aDs -aEN -aGb -aBa -aaa -aKt -aLN +QoZ +Qpg +Qpm +Qps +aKu +aLE aLE aOl aPH @@ -78472,17 +79974,17 @@ aqQ aqQ avZ axp -ayC +arP azH -aBb +QoF aBS aDr -aEM -aGa -aHF +aDr +aDr +aDr aJd -aKv -aLN +aJd +aLE aLE aOl aPF @@ -78559,18 +80061,18 @@ cqK crl bLv aaa +aaT +aaT +aaT +aaT +aaT +aaT +aaT +aaT +aaT aaa -aaa -aae -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +aaT +aaT aaa aaa aaa @@ -78730,13 +80232,13 @@ aqR awb axo ayA -aaa -aBa -aBV -alu -aEM +Qoy +QoG +QoO +QoU +Qpa +aGd aGd -aHG aJe aKw aLP @@ -78816,19 +80318,19 @@ cAQ crm bLv aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +aaT +ctv +ctv +ctv +ctv +ctv +ctv +ctv +aaT +Qoi +ctv +aaT +aaT aaa aaa aaa @@ -78988,15 +80490,15 @@ awa axq ayD azI -aBc +QoH aBU -aDt -aEO -aGc -aHF +aDr +aDr +aDr +aDr aJd -aKb -aLN +aJd +aLE aMQ aNT aPI @@ -79072,20 +80574,20 @@ cqv cqL bJe bLv -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +Qoi +aaT +aaT +aaT +aaT +aaT +aaT +aaT +aaT +aaT +Qoi +ctv +ctv +aaT aaa aaa aaa @@ -79243,17 +80745,17 @@ aaa aag avY axo -ayA -aaa -aBa -aBW -aDv -aEP -aGe -aBa -aaa -aKt -aLN +aqQ +Qoz +QoI +QoP +aDs +Qpb +Qph +Qpn +Qpt +aKu +aLE aMS aOt aPK @@ -79307,12 +80809,12 @@ bCq bYy bCq bCq -bLv bCq bCq bCq bCq -bLv +bCq +bCq bUs bLv aaa @@ -79329,19 +80831,19 @@ bCq bCq bCq bCq +Qoi +Qoi +Qoi +aaa +aaa +Qoi aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +Qoi +Qoi +Qoi +Qoi aaa aaa aaa @@ -79500,17 +81002,17 @@ aaa aag avY axo -ayA -aaf -aBa -aBa -aBa -aBa -aBa -aBa -aaf -aKt -aLN +aqQ +QoA +QoJ +QoQ +QoV +Qpc +Qpi +Qpo +Qpu +Qpw +aLE aMS aOi aLE @@ -79557,19 +81059,19 @@ bPX bRg bRg bCq -bHE +bPS bVG -bHE -bHE -bHE -bLv -apQ -aoV -aoV -aoV -aoV -aoV -bLv +Qqv +QqD +bPS +QqS +atS +bcU +Qrg +Qrn +bcU +Qrz +bCq bUs bLv aaa @@ -79584,20 +81086,20 @@ aaa aaa aaf aaf -cig -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +QrL aaa +QrR +bij +bij +bij +bij +bij +bij +Qsk +btG +btG aaa +Qoi aaa aaa aaa @@ -79756,18 +81258,18 @@ aaa aaa aag avY -axs -ayF -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaa -aKx -aLN +axo +aqQ +QoB +QoK +QoR +QoW +Qpd +Qpj +Qpp +Qpv +aKu +aLE aMS aOi aLE @@ -79814,19 +81316,19 @@ bQa bHE bHE bCq -bHE -bLv -bLv -bLv -bLv -bLv -aoV -aoV -aoV -aoV -aoV -apQ -bLv +Qqk +Qqq +Qqw +QqE +QqL +QqT +QqX +Qrb +Qrh +Qro +Qrw +QrA +bCq bUs bLv aaf @@ -79838,25 +81340,25 @@ cjJ cjJ cjJ cjJ -cjJ -cjJ -aaa +QrF +bij +bij crn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +bij +QrS +QrX +Qsa +Qsf +bkI +bgN +bgN +Qsl +bgN +btG +Qoi +aaT +aaT +aaT aaa aaa aaa @@ -80013,17 +81515,17 @@ aaf arP avd avZ -axr -ayE -ayE -ayE -ayE -ayE -ayE -ayE -ayE -ayE -ayE +axo +arP +arP +arP +arP +arP +arP +arP +arP +arP +arP aLl aMT aOi @@ -80070,20 +81572,20 @@ bLv bPZ bHE bHE -cTF -bHE -bLv -aoV -aoV -aoV -aoV -aoV -aoV -aoV -aoV -aoV -aoV -bLv +Qqj +Qql +Qqr +Qqx +QqF +QqM +QqU +QqY +Qrc +Qri +Qrp +bdV +bcU +bCq bUs bLv aaa @@ -80096,24 +81598,24 @@ cnL cov cpj cpS -cjJ -aaa -crn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +btG +QrI +QrM +btG +QrT +bsc +Qsb +Qsg +bgN +bih +big +bii +bgN +btG aaa +aaT +ctv +aaT aaa aaa aaa @@ -80328,19 +81830,19 @@ bHE bHE bSs bCq -bHE -bLv -aoV -aoV -aoV +Qqm +Qqs +Qqy +QqG +QqN bcU -apQ -aaH +QqZ +Qrd cCa -aoV -aoV -aoV -bLv +Qrq +cCa +QrB +bCq bUs bLv aaa @@ -80353,24 +81855,24 @@ cnN cox cpl cpU -cjJ -aaf -crn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +btF +bsc +QrN +btF +bsc +QrY +Qsc +Qsh +bgN +big +bgN +bkZ +bgN +btG +Qoi +aaT +ctv +aaT aaa aaa aaa @@ -80585,19 +82087,19 @@ bHE bRh bSr bCq -bHE -bLv -apQ -apQ -aoV -aoV -aaH +Qqn +Qqt +Qqz +QqH +QqO +QqV +atS bdV -aaH -apQ -apQ -apQ -bLv +Qrj +Qrr +cCa +QrC +bCq bUs bLv aaf @@ -80610,24 +82112,24 @@ cnM cow cpk cpT -cjJ -aaa -crn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +btG +QrJ +QrO +btG +QrU +bsc +Qsd +Qsi +bgN +bii +big +bih +bgN +btG aaa +aaT +ctv +aaT aaa aaa aaa @@ -80842,19 +82344,19 @@ bOK bCq bCq bCq -bHE -bLv -aoV -aoV -aoV -aoV -cjn -bSu -aaH -aoV -aoV -aoV -bLv +Qqo +bTA +QqA +QqI +QqP +atS +atS +bdV +Qrk +Qrs +Qrx +bdV +bCq bUs bLv aaa @@ -80866,25 +82368,25 @@ cnq cnP coz cpn -cjJ -cjJ -aaa -crn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +QrG +QrH +QrK +QrP +QrQ +QrV +QrZ +Qse +Qsj +bmw +bgN +bgN +Qsm +bgN +btG aaa +aaT +ctv +aaT aaa aaa aaa @@ -81099,19 +82601,19 @@ bHE bLv aaa bLv -bHE -bLv -aoV -aoV -aoV -aoV -aoV -aaH -apQ -aoV -aoV -aoV -bLv +Qqp +bTA +atS +atS +atS +atS +bcU +bcU +bdV +Qrt +bdV +QrD +bCq bUs bLv aaa @@ -81126,20 +82628,21 @@ cpm cjJ aaf aaf -crn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +Qol aaa +QrW +bgO +bgO +bgO +bgO +bgO +bgO +Qsn +btG +btG +Qoi aaT +ctv aaT aaa aaa @@ -81193,7 +82696,6 @@ aaa aaa aaa aaa -aaa "} (92,1,1) = {" aaa @@ -81357,18 +82859,18 @@ bLv aaf bLv bUt -bLv -apQ -apQ -aoV -aoV -aoV -aaH -aoV -aoV -apQ -apQ -bLv +bTA +QqB +QqJ +QqQ +QqW +bcU +Qre +Qrl +Qru +bcU +bcU +bCq bUs bLv aaf @@ -81383,21 +82885,21 @@ cjJ cjJ aaa aaa -crn +Qol aaf -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaT aaa -aaf -ctv +aaa +aaa +Qoi +aaa +aaa +Qoi +Qoi +Qoi +aaa +aHr aaT +ctv aaT aaa aaa @@ -81613,18 +83115,18 @@ bLv bCq aaa bLv -bUs -bLv -aoV -aoV -aoV -aoV -aoV -apQ -aoV -aoV -aoV -aoV +bUt +bTA +QqC +QqK +QqR +atS +Qra +Qrf +Qrm +Qrv +Qry +QrE bCq bUs bCq @@ -81640,20 +83142,20 @@ cpo cjJ aaa aaa -crn +Qol aaf -aaT -ctv -ctv -ctv -ctv -ctv -ctv -ctv -aaT +Qoi aaa -aaf -ctv +aaa +Qoi +aaa +aaa +Qoi +Qoi +Qoi +Qoi +aHr +aaT ctv aaT aaa @@ -81871,14 +83373,14 @@ aaa aaa bTB bUv +Qqu +bES +bES +bES bES bES bES bES -bGp -bGp -bGp -bGp bES bES bES @@ -81899,21 +83401,21 @@ aaf aaf cig aaf -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaf -aaf -aaf -aaf +Qoi aaa aaa +Qoi +aaa +aaa +Qoi +aaa +Qoi +aaf +aaf +aaT +aaT +aaT +aaa aaa aaa aaa @@ -82167,7 +83669,7 @@ aaa aaa aaa aaf -aaa +Qoi aaa aaa aaa @@ -85180,7 +86682,7 @@ bcc bdd bbX bfr -bgM +bbX bif aZM aZM @@ -85195,7 +86697,7 @@ bmr bmr byQ aJq -aJq +bBi bCs bDy bFb @@ -85437,7 +86939,7 @@ bbk bbk bbk bfs -aZM +Qpx aZM aZM aaf @@ -85694,19 +87196,19 @@ bce bdf beb aYv +Qpy +QpI aaf aaf -aaf -aaf +Qoi aaa +Qoi aaa -aaa -aaa -aaf -aaa -aaa -aaa -aJn +QpS +bsb +bsb +bsb +bsb aXf aJq byU @@ -85951,22 +87453,22 @@ aZR bbm bec bfu -bgO -bgO -bgO +Qpz +aBb +aBb bmu -bgO -bgO -bgO -bgO +aBb +aBb +QpO +aaa +bsb +QpU +Qqb +Qqe bsb -aaf -aaf -aaf -aJn aXf aJq -aJq +bBi bCs bFa bFa @@ -86208,22 +87710,22 @@ aZR aZR aZR bft -bgN -bgN -bgN +QpA +aBa +aBT bmv -bkI -bnT +aEN +aGb bpg -bqD -bsa -bgO +aaa +bsb +QpV buP bwm bxH -byS +aXf aJq -aMh +Qqi bCs bCs bCs @@ -86465,16 +87967,16 @@ bbm bdh bee bfv -bgN -bih -big -bii -bgN -bnV +QpB +aBa +QpK +aEM +aEM +aGa bph bqF bsd -btG +QpW buQ bwn bxI @@ -86722,20 +88224,20 @@ bcf bdg bed bfv -bgN -big -bgN -bkZ -bgN +QpC +aBa +aBV +alu +QpM bnU -bph +aHG bqE -bsc -btF -bph -bsc -btF -bvW +QpT +QpX +Qqc +Qqf +Qqh +aNr bAf bBp aHP @@ -86979,16 +88481,16 @@ bbm bdh bef bfv -bgN -bii -big -bih -bgN +QpD +aBa +QpL +aEO +QpN bnV -bph -bqF +QpP +QpR bsf -btG +QpY buS bwp bxK @@ -87236,20 +88738,20 @@ aZR aZR aZR bfw -bgN -bgN -bgN +QpE +aBa +aBW bjy -bmw -bnW +aEP +aGe bpi -bqG -bse -bij +aaa +bsb +QpZ buR -bwo +aFM bxJ -bwb +aNs aJq bBr bCv @@ -87493,19 +88995,19 @@ aZR bbm beh bfx -bij -bij -bij +QpF +aBc +aBc bgR -bij -bij -bij -bij -bsg -aaf -aaf -aaf -aJn +aBc +aBc +QpQ +aaa +bsb +Qqa +Qqd +Qqg +bsb aJq aJq bBu @@ -87750,19 +89252,19 @@ bcg aZU beg aYB +QpG +QpJ aaf aaf -aaf -aaf +Qoi aaa +Qoi aaa -aaa -aaa -aaf -aaa -aaa -aaa -aJn +bsb +bsb +bsb +bsb +bsb aJq aJq bBt @@ -88007,7 +89509,7 @@ bbp bbp bbp bfz -aZV +QpH aZV aZV aaf @@ -88264,7 +89766,7 @@ bch bdi bei bfy -bgS +bbw bik aZV aZV From 23765d9ddde38720f88dd63560b245d156349a30 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Mon, 23 Oct 2017 13:17:35 -0500 Subject: [PATCH 088/227] Update stunbaton.dm --- code/game/objects/items/stunbaton.dm | 205 --------------------------- 1 file changed, 205 deletions(-) diff --git a/code/game/objects/items/stunbaton.dm b/code/game/objects/items/stunbaton.dm index 64a208301c..92d00d9e2d 100644 --- a/code/game/objects/items/stunbaton.dm +++ b/code/game/objects/items/stunbaton.dm @@ -1,207 +1,3 @@ -<<<<<<< HEAD -/obj/item/melee/baton - name = "stunbaton" - desc = "A stun baton for incapacitating people with." - icon_state = "stunbaton" - item_state = "baton" - lefthand_file = 'icons/mob/inhands/equipment/security_lefthand.dmi' - righthand_file = 'icons/mob/inhands/equipment/security_righthand.dmi' - slot_flags = SLOT_BELT - force = 10 - throwforce = 7 - w_class = WEIGHT_CLASS_NORMAL - origin_tech = "combat=2" - attack_verb = list("beaten") - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 50, bio = 0, rad = 0, fire = 80, acid = 80) - - var/stunforce = 140 - var/status = 0 - var/obj/item/stock_parts/cell/high/cell - var/hitcost = 1000 - var/throw_hit_chance = 35 - -/obj/item/melee/baton/get_cell() - return cell - -/obj/item/melee/baton/suicide_act(mob/user) - user.visible_message("[user] is putting the live [name] in [user.p_their()] mouth! It looks like [user.p_theyre()] trying to commit suicide!") - return (FIRELOSS) - -/obj/item/melee/baton/Initialize() - . = ..() - update_icon() - -/obj/item/melee/baton/throw_impact(atom/hit_atom) - ..() - //Only mob/living types have stun handling - if(status && prob(throw_hit_chance) && iscarbon(hit_atom)) - baton_stun(hit_atom) - -/obj/item/melee/baton/loaded/Initialize() //this one starts with a cell pre-installed. - cell = new(src) - update_icon() - . = ..() - -/obj/item/melee/baton/proc/deductcharge(chrgdeductamt) - if(cell) - //Note this value returned is significant, as it will determine - //if a stun is applied or not - . = cell.use(chrgdeductamt) - if(status && cell.charge < hitcost) - //we're below minimum, turn off - status = 0 - update_icon() - playsound(loc, "sparks", 75, 1, -1) - - -/obj/item/melee/baton/update_icon() - if(status) - icon_state = "[initial(name)]_active" - else if(!cell) - icon_state = "[initial(name)]_nocell" - else - icon_state = "[initial(name)]" - -/obj/item/melee/baton/examine(mob/user) - ..() - if(cell) - to_chat(user, "The baton is [round(cell.percent())]% charged.") - else - to_chat(user, "The baton does not have a power source installed.") - -/obj/item/melee/baton/attackby(obj/item/W, mob/user, params) - if(istype(W, /obj/item/stock_parts/cell)) - var/obj/item/stock_parts/cell/C = W - if(cell) - to_chat(user, "[src] already has a cell.") - else - if(C.maxcharge < hitcost) - to_chat(user, "[src] requires a higher capacity cell.") - return - if(!user.transferItemToLoc(W, src)) - return - cell = W - to_chat(user, "You install a cell in [src].") - update_icon() - - else if(istype(W, /obj/item/screwdriver)) - if(cell) - cell.update_icon() - cell.forceMove(get_turf(src)) - cell = null - to_chat(user, "You remove the cell from [src].") - status = 0 - update_icon() - else - return ..() - -/obj/item/melee/baton/attack_self(mob/user) - if(cell && cell.charge > hitcost) - status = !status - to_chat(user, "[src] is now [status ? "on" : "off"].") - playsound(loc, "sparks", 75, 1, -1) - else - status = 0 - if(!cell) - to_chat(user, "[src] does not have a power source!") - else - to_chat(user, "[src] is out of charge.") - update_icon() - add_fingerprint(user) - -/obj/item/melee/baton/attack(mob/M, mob/living/carbon/human/user) - if(status && user.disabilities & CLUMSY && prob(50)) - user.visible_message("[user] accidentally hits themself with [src]!", \ - "You accidentally hit yourself with [src]!") - user.Knockdown(stunforce*3) - deductcharge(hitcost) - return - - if(iscyborg(M)) - ..() - return - - - if(ishuman(M)) - var/mob/living/carbon/human/L = M - if(check_martial_counter(L, user)) - return - - if(user.a_intent != INTENT_HARM) - if(status) - if(baton_stun(M, user)) - user.do_attack_animation(M) - return - else - M.visible_message("[user] has prodded [M] with [src]. Luckily it was off.", \ - "[user] has prodded you with [src]. Luckily it was off") - else - if(status) - baton_stun(M, user) - ..() - - -/obj/item/melee/baton/proc/baton_stun(mob/living/L, mob/user) - if(ishuman(L)) - var/mob/living/carbon/human/H = L - if(H.check_shields(src, 0, "[user]'s [name]", MELEE_ATTACK)) //No message; check_shields() handles that - playsound(L, 'sound/weapons/genhit.ogg', 50, 1) - return 0 - if(iscyborg(loc)) - var/mob/living/silicon/robot/R = loc - if(!R || !R.cell || !R.cell.use(hitcost)) - return 0 - else - if(!deductcharge(hitcost)) - return 0 - - L.Knockdown(stunforce) - L.apply_effect(STUTTER, stunforce) - if(user) - user.lastattacked = L - L.lastattacker = user - L.visible_message("[user] has stunned [L] with [src]!", \ - "[user] has stunned you with [src]!") - add_logs(user, L, "stunned") - - playsound(loc, 'sound/weapons/egloves.ogg', 50, 1, -1) - - if(ishuman(L)) - var/mob/living/carbon/human/H = L - H.forcesay(GLOB.hit_appends) - - - return 1 - -/obj/item/melee/baton/emp_act(severity) - deductcharge(1000 / severity) - ..() - -//Makeshift stun baton. Replacement for stun gloves. -/obj/item/melee/baton/cattleprod - name = "stunprod" - desc = "An improvised stun baton." - icon_state = "stunprod_nocell" - item_state = "prod" - lefthand_file = 'icons/mob/inhands/weapons/melee_lefthand.dmi' - righthand_file = 'icons/mob/inhands/weapons/melee_righthand.dmi' - w_class = WEIGHT_CLASS_BULKY - force = 3 - throwforce = 5 - stunforce = 100 - hitcost = 2000 - throw_hit_chance = 10 - slot_flags = SLOT_BACK - var/obj/item/device/assembly/igniter/sparkler = 0 - -/obj/item/melee/baton/cattleprod/Initialize() - . = ..() - sparkler = new (src) - -/obj/item/melee/baton/cattleprod/baton_stun() - if(sparkler.activate()) - ..() -======= /obj/item/melee/baton name = "stunbaton" desc = "A stun baton for incapacitating people with." @@ -404,4 +200,3 @@ /obj/item/melee/baton/cattleprod/baton_stun() if(sparkler.activate()) ..() ->>>>>>> 032c864... Removes mob.lastattacked and replaces lastattacker with a string (#31981) From 11bcd573a05f14d4d81a615e8dcde15255f7e652 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Mon, 23 Oct 2017 13:17:52 -0500 Subject: [PATCH 089/227] Update mob_defines.dm --- code/modules/mob/mob_defines.dm | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/code/modules/mob/mob_defines.dm b/code/modules/mob/mob_defines.dm index ee54d9a9ac..6d9630cb56 100644 --- a/code/modules/mob/mob_defines.dm +++ b/code/modules/mob/mob_defines.dm @@ -27,13 +27,9 @@ var/damageoverlaytemp = 0 var/computer_id = null var/lastattacker = null -<<<<<<< HEAD - var/lastattacked = null - var/list/logging = list(INDIVIDUAL_ATTACK_LOG, INDIVIDUAL_SAY_LOG, INDIVIDUAL_EMOTE_LOG, INDIVIDUAL_OOC_LOG, INDIVIDUAL_LOOC_LOG) -======= var/lastattackerckey = null var/list/logging = list(INDIVIDUAL_ATTACK_LOG, INDIVIDUAL_SAY_LOG, INDIVIDUAL_EMOTE_LOG, INDIVIDUAL_OOC_LOG) ->>>>>>> 032c864... Removes mob.lastattacked and replaces lastattacker with a string (#31981) + var/obj/machinery/machine = null var/other_mobs = null var/disabilities = 0 //Carbon From 268c80dc66683b4948ee22872b2a7f2f4797c57a Mon Sep 17 00:00:00 2001 From: deathride58 Date: Mon, 23 Oct 2017 14:26:05 -0400 Subject: [PATCH 090/227] fixes areas, other small changes --- _maps/map_files/BoxStation/BoxStation.dmm | 1686 ++++++++++++--------- 1 file changed, 939 insertions(+), 747 deletions(-) diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index d7e4dfc312..3a32c929b3 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -10045,29 +10045,18 @@ /obj/structure/barricade/wooden, /obj/structure/grille, /turf/open/floor/wood, -/area/maintenance/fore) +/area/maintenance/bar/cafe) "ayB" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/maintenance/fore) +/area/maintenance/bar/cafe) "ayC" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/fore) +/turf/closed/wall, +/area/maintenance/bar/cafe) "ayD" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, -/area/maintenance/fore) +/area/maintenance/bar/cafe) "ayE" = ( /turf/closed/wall/r_wall, /area/maintenance/fore) @@ -10493,7 +10482,7 @@ /turf/open/floor/wood{ icon_state = "wood-broken" }, -/area/space) +/area/maintenance/bar/cafe) "azI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/chair/stool/bar, @@ -10503,7 +10492,7 @@ /turf/open/floor/wood{ icon_state = "wood-broken5" }, -/area/space) +/area/maintenance/bar/cafe) "azJ" = ( /obj/machinery/gateway{ dir = 9 @@ -10695,9 +10684,9 @@ icon_state = "1-4" }, /obj/machinery/power/apc{ + areastring = "/area/security/checkpoint/customs"; dir = 2; - name = "Security Checkpoint APC"; - areastring = "/area/security/checkpoint/checkpoint2"; + name = "Customs APC"; pixel_x = 1; pixel_y = -24 }, @@ -11326,15 +11315,15 @@ /area/hallway/secondary/entry) "aBI" = ( /turf/closed/wall, -/area/security/checkpoint/checkpoint2) +/area/security/checkpoint/customs) "aBJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, -/area/security/checkpoint/checkpoint2) +/area/security/checkpoint/customs) "aBK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall, -/area/security/checkpoint/checkpoint2) +/area/security/checkpoint/customs) "aBL" = ( /obj/machinery/door/airlock/maintenance{ name = "Tool Storage Maintenance"; @@ -11393,7 +11382,7 @@ icon_state = "4-8" }, /turf/open/floor/wood, -/area/ai_monitored/nuke_storage) +/area/maintenance/bar/cafe) "aBT" = ( /obj/machinery/computer/bank_machine, /turf/open/floor/plasteel/vault{ @@ -11408,7 +11397,7 @@ icon_state = "4-8" }, /turf/open/floor/wood, -/area/ai_monitored/nuke_storage) +/area/maintenance/bar/cafe) "aBV" = ( /obj/machinery/airalarm{ pixel_y = 23 @@ -11598,11 +11587,10 @@ pixel_x = -32 }, /obj/item/reagent_containers/food/snacks/baguette, -/obj/item/toy/dummy, /turf/open/floor/plasteel/white/side{ dir = 4 }, -/area/crew_quarters/theatre) +/area/space) "aCr" = ( /turf/closed/wall, /area/crew_quarters/theatre) @@ -11612,7 +11600,7 @@ /turf/open/floor/plasteel/red/side{ dir = 1 }, -/area/security/checkpoint/checkpoint2) +/area/security/checkpoint/customs) "aCt" = ( /obj/structure/cable{ icon_state = "1-2" @@ -11755,7 +11743,7 @@ /turf/open/floor/plasteel/red/side{ dir = 9 }, -/area/security/checkpoint/checkpoint2) +/area/security/checkpoint/customs) "aCM" = ( /obj/structure/reagent_dispensers/fueltank, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -11840,12 +11828,12 @@ /turf/open/floor/plasteel/red/side{ dir = 1 }, -/area/security/checkpoint/checkpoint2) +/area/security/checkpoint/customs) "aCZ" = ( /turf/open/floor/plasteel/red/side{ dir = 5 }, -/area/security/checkpoint/checkpoint2) +/area/security/checkpoint/customs) "aDa" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 @@ -11878,7 +11866,7 @@ /turf/open/floor/plasteel/red/side{ dir = 1 }, -/area/security/checkpoint/checkpoint2) +/area/security/checkpoint/customs) "aDd" = ( /obj/structure/cable{ icon_state = "1-2" @@ -11900,7 +11888,7 @@ /turf/open/floor/plasteel/red/side{ dir = 1 }, -/area/security/checkpoint/checkpoint2) +/area/security/checkpoint/customs) "aDg" = ( /obj/machinery/biogenerator, /turf/open/floor/plasteel, @@ -11987,28 +11975,18 @@ /area/storage/primary) "aDr" = ( /turf/closed/wall, -/area/ai_monitored/nuke_storage) +/area/crew_quarters/theatre/mime) "aDs" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, -/area/ai_monitored/nuke_storage) +/area/crew_quarters/theatre/mime) "aDt" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/circuit, -/area/ai_monitored/nuke_storage) +/turf/closed/wall, +/area/crew_quarters/theatre/clown) "aDv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/ai_monitored/nuke_storage) +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/theatre/clown) "aDw" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -12198,7 +12176,7 @@ /turf/open/floor/plasteel/white/side{ dir = 4 }, -/area/crew_quarters/theatre) +/area/space) "aDS" = ( /obj/machinery/door/airlock{ name = "Unisex Showers"; @@ -12248,7 +12226,6 @@ /area/maintenance/starboard/fore) "aDY" = ( /obj/structure/chair/stool, -/obj/effect/landmark/start/mime, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -12536,7 +12513,7 @@ dir = 5 }, /turf/open/floor/plasteel, -/area/security/checkpoint/checkpoint2) +/area/security/checkpoint/customs) "aEF" = ( /obj/structure/table/glass, /obj/item/reagent_containers/food/snacks/grown/wheat, @@ -12555,31 +12532,31 @@ /turf/open/floor/plasteel/red/side{ dir = 8 }, -/area/security/checkpoint/checkpoint2) +/area/security/checkpoint/customs) "aEH" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, /turf/open/floor/plasteel, -/area/security/checkpoint/checkpoint2) +/area/security/checkpoint/customs) "aEI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel, -/area/security/checkpoint/checkpoint2) +/area/security/checkpoint/customs) "aEJ" = ( /turf/open/floor/plasteel/red/side{ dir = 4 }, -/area/security/checkpoint/checkpoint2) +/area/security/checkpoint/customs) "aEK" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/open/floor/plasteel, -/area/security/checkpoint/checkpoint2) +/area/security/checkpoint/customs) "aEL" = ( /obj/machinery/door/airlock{ name = "Garden"; @@ -12809,7 +12786,7 @@ }, /obj/structure/dresser, /turf/open/floor/plasteel/redblue/redside, -/area/crew_quarters/theatre) +/area/space) "aFm" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -12957,7 +12934,7 @@ dir = 1 }, /turf/open/floor/plasteel/red/side, -/area/security/checkpoint/checkpoint2) +/area/security/checkpoint/customs) "aFI" = ( /obj/machinery/camera{ c_tag = "Security Checkpoint"; @@ -12977,7 +12954,7 @@ /turf/open/floor/plasteel/red/side{ dir = 10 }, -/area/security/checkpoint/checkpoint2) +/area/security/checkpoint/customs) "aFJ" = ( /obj/machinery/atmospherics/pipe/simple/supplymain/hidden, /obj/effect/landmark/event_spawn, @@ -12994,7 +12971,7 @@ dir = 9 }, /turf/open/floor/plasteel/red/side, -/area/security/checkpoint/checkpoint2) +/area/security/checkpoint/customs) "aFL" = ( /obj/item/device/radio/off, /obj/item/crowbar, @@ -13003,7 +12980,7 @@ /turf/open/floor/plasteel/red/side{ dir = 6 }, -/area/security/checkpoint/checkpoint2) +/area/security/checkpoint/customs) "aFM" = ( /obj/machinery/recharger{ pixel_y = 4 @@ -13151,9 +13128,9 @@ /area/ai_monitored/nuke_storage) "aGd" = ( /obj/structure/cable{ - icon_state = "1-2" + icon_state = "2-4" }, -/turf/open/floor/plating, +/turf/open/floor/plasteel/vault, /area/ai_monitored/nuke_storage) "aGe" = ( /obj/structure/safe, @@ -13266,7 +13243,6 @@ /area/ai_monitored/storage/eva) "aGr" = ( /obj/structure/chair/stool, -/obj/effect/landmark/start/clown, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -13381,11 +13357,8 @@ /obj/structure/mirror{ pixel_x = -28 }, -/obj/item/device/flashlight/lamp/bananalamp{ - pixel_y = 3 - }, /turf/open/floor/plasteel/redblue, -/area/crew_quarters/theatre) +/area/space) "aGE" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -13597,7 +13570,7 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, -/area/security/checkpoint/checkpoint2) +/area/security/checkpoint/customs) "aHa" = ( /obj/machinery/door/firedoor, /obj/structure/table/reinforced, @@ -13769,7 +13742,7 @@ "aHy" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/security/checkpoint/checkpoint2) +/area/security/checkpoint/customs) "aHz" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plasteel/green/side{ @@ -13991,9 +13964,10 @@ dir = 4; pixel_x = -22 }, -/obj/structure/closet/crate/wooden/toy, +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/bananalamp, /turf/open/floor/plasteel/redblue, -/area/crew_quarters/theatre) +/area/space) "aIa" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -14440,13 +14414,19 @@ /turf/open/floor/plasteel, /area/storage/primary) "aJd" = ( -/turf/closed/wall, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, /area/hallway/primary/port) "aJe" = ( /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, /area/hallway/primary/port) "aJf" = ( /obj/machinery/camera{ @@ -14985,11 +14965,11 @@ /turf/open/floor/plasteel/white/side{ dir = 1 }, -/area/hallway/primary/port) +/area/crew_quarters/theatre/mime) "aKu" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, -/area/hallway/primary/port) +/area/crew_quarters/theatre/mime) "aKv" = ( /obj/structure/cable, /obj/structure/cable{ @@ -15009,14 +14989,11 @@ icon_state = "1-2" }, /turf/open/floor/plating, -/area/hallway/primary/port) +/area/maintenance/fore) "aKx" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, +/obj/effect/spawner/structure/window, /turf/open/floor/plating, -/area/hallway/primary/port) +/area/crew_quarters/theatre/clown) "aKy" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -15144,6 +15121,13 @@ "aKQ" = ( /obj/machinery/reagentgrinder, /obj/structure/table/wood, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, /turf/open/floor/wood, /area/crew_quarters/bar) "aKR" = ( @@ -15462,6 +15446,9 @@ c_tag = "Port Hallway 2"; dir = 2 }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, /turf/open/floor/plasteel, /area/hallway/primary/port) "aLM" = ( @@ -18266,6 +18253,10 @@ /obj/structure/table, /obj/item/storage/crayons, /obj/item/storage/crayons, +/obj/machinery/camera{ + c_tag = "Art Storage"; + dir = 1 + }, /turf/open/floor/plasteel, /area/storage/art) "aTH" = ( @@ -21848,7 +21839,7 @@ /area/quartermaster/storage) "bcU" = ( /turf/open/floor/wood, -/area/space/nearstation) +/area/maintenance/bar) "bcV" = ( /obj/machinery/airalarm{ dir = 8; @@ -22241,7 +22232,7 @@ "bdV" = ( /obj/structure/chair/stool, /turf/open/floor/wood, -/area/space/nearstation) +/area/maintenance/bar) "bdW" = ( /obj/item/clothing/gloves/color/rainbow, /obj/item/clothing/head/soft/rainbow, @@ -27510,7 +27501,7 @@ /turf/open/floor/plasteel/vault{ dir = 5 }, -/area/hallway/primary/central) +/area/security/checkpoint/checkpoint2) "bqF" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -27518,7 +27509,7 @@ icon_state = "0-2" }, /turf/open/floor/plating, -/area/hallway/primary/central) +/area/security/checkpoint/checkpoint2) "bqG" = ( /obj/structure/cable{ icon_state = "0-8" @@ -28177,7 +28168,7 @@ }, /obj/structure/cable, /turf/open/floor/plating, -/area/hallway/primary/central) +/area/security/checkpoint/checkpoint2) "bse" = ( /obj/machinery/power/terminal{ dir = 1 @@ -28195,7 +28186,7 @@ icon_state = "0-8" }, /turf/open/floor/plating, -/area/hallway/primary/central) +/area/security/checkpoint/checkpoint2) "bsg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -30654,7 +30645,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/red/side, -/area/security/checkpoint/checkpoint2) +/area/security/checkpoint/customs) "bxN" = ( /obj/structure/sink{ dir = 8; @@ -35934,8 +35925,13 @@ /turf/open/floor/plasteel, /area/science/misc_lab) "bJP" = ( -/obj/machinery/vending/boozeomat, -/turf/open/floor/plasteel/bar, +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/soap/nanotrasen, +/turf/open/floor/plating, /area/maintenance/port/aft) "bJQ" = ( /obj/effect/spawner/structure/window/reinforced, @@ -38556,8 +38552,9 @@ /turf/open/floor/plasteel, /area/tcommsat/computer) "bPR" = ( -/obj/effect/decal/cleanable/robot_debris/old, -/turf/open/floor/wood, +/obj/item/shard, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, /area/maintenance/port/aft) "bPS" = ( /turf/open/floor/wood, @@ -38572,13 +38569,7 @@ /turf/open/floor/plating, /area/maintenance/port/aft) "bPV" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Maint Bar Access"; - req_access_txt = "12" - }, -/obj/structure/barricade/wooden{ - name = "wooden barricade (CLOSED)" - }, +/obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating, /area/maintenance/port/aft) "bPW" = ( @@ -39005,11 +38996,11 @@ /turf/open/floor/plating, /area/maintenance/starboard/aft) "bRc" = ( -/obj/structure/table/wood, -/obj/item/soap/nanotrasen, -/turf/open/floor/wood{ - icon_state = "wood-broken7" +/obj/machinery/door/airlock{ + id_tag = "MaintDorm1"; + name = "Maintenance Dorm 1" }, +/turf/open/floor/wood, /area/maintenance/port/aft) "bRd" = ( /obj/structure/table, @@ -39517,12 +39508,28 @@ /turf/open/floor/wood, /area/maintenance/port/aft) "bSo" = ( -/obj/structure/chair/stool, +/obj/machinery/button/door{ + id = "MaintDorm1"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + req_access_txt = "0"; + specialfunctions = 4 + }, /turf/open/floor/wood, /area/maintenance/port/aft) "bSp" = ( -/obj/structure/grille/broken, -/turf/open/floor/plating, +/obj/machinery/button/door{ + id = "MaintDorm2"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + req_access_txt = "0"; + specialfunctions = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, /area/maintenance/port/aft) "bSq" = ( /obj/structure/rack{ @@ -40022,33 +40029,31 @@ }, /area/maintenance/port/aft) "bTt" = ( +/obj/structure/closet/secure_closet/personal, /obj/machinery/atmospherics/pipe/simple/general/hidden{ dir = 4 }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/port/aft) -"bTu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, /turf/open/floor/wood, /area/maintenance/port/aft) -"bTv" = ( +"bTu" = ( /obj/machinery/atmospherics/pipe/simple/general/hidden{ dir = 4 }, -/turf/open/floor/plating, +/turf/closed/wall, +/area/maintenance/port/aft) +"bTv" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 4 + }, +/turf/open/floor/wood, /area/maintenance/port/aft) "bTw" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 4 - }, -/turf/open/floor/plating, +/obj/machinery/light/small, +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/manifold/general/hidden, +/turf/open/floor/wood, /area/maintenance/port/aft) "bTx" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ @@ -40957,7 +40962,7 @@ pixel_x = -31 }, /turf/open/floor/wood, -/area/maintenance/port/aft) +/area/maintenance/bar) "bVI" = ( /turf/closed/wall/r_wall, /area/tcommsat/server) @@ -42844,7 +42849,7 @@ dir = 5 }, /turf/closed/wall, -/area/maintenance/port/aft) +/area/maintenance/bar) "cas" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -46474,9 +46479,8 @@ /turf/open/floor/plasteel, /area/engine/engineering) "cjn" = ( -/obj/item/weldingtool, -/turf/open/floor/plating/airless, -/area/space/nearstation) +/turf/closed/wall, +/area/maintenance/bar) "cjo" = ( /obj/structure/closet/toolcloset, /turf/open/floor/plasteel, @@ -53524,7 +53528,7 @@ "cCa" = ( /obj/structure/table/wood/poker, /turf/open/floor/wood, -/area/space/nearstation) +/area/maintenance/bar) "cCb" = ( /obj/structure/table, /obj/item/stack/cable_coil{ @@ -57801,11 +57805,11 @@ /turf/open/floor/wood{ icon_state = "wood-broken6" }, -/area/space) +/area/maintenance/bar/cafe) "Qow" = ( /obj/structure/table/wood, /turf/open/floor/wood, -/area/space) +/area/maintenance/bar/cafe) "Qox" = ( /obj/structure/chair/wood{ dir = 8 @@ -57813,36 +57817,36 @@ /turf/open/floor/wood{ icon_state = "wood-broken7" }, -/area/space) +/area/maintenance/bar/cafe) "Qoy" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, -/area/space) +/area/maintenance/bar/cafe) "Qoz" = ( /obj/structure/table/wood, /turf/open/floor/wood, -/area/space) +/area/maintenance/bar/cafe) "QoA" = ( /turf/open/floor/wood{ icon_state = "wood-broken5" }, -/area/space) +/area/maintenance/bar/cafe) "QoB" = ( /obj/structure/table/wood, /obj/machinery/chem_dispenser/drinks/beer, /turf/open/floor/wood, -/area/space) +/area/maintenance/bar/cafe) "QoC" = ( /turf/open/floor/wood{ icon_state = "wood-broken5" }, -/area/space) +/area/maintenance/bar/cafe) "QoD" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/wood, -/area/ai_monitored/nuke_storage) +/area/maintenance/bar/cafe) "QoE" = ( /obj/structure/chair/wood{ dir = 4 @@ -57851,7 +57855,7 @@ dir = 1 }, /turf/open/floor/wood, -/area/ai_monitored/nuke_storage) +/area/maintenance/bar/cafe) "QoF" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -57861,7 +57865,7 @@ icon_state = "1-2" }, /turf/open/floor/wood, -/area/ai_monitored/nuke_storage) +/area/maintenance/bar/cafe) "QoG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -57871,14 +57875,14 @@ dir = 8 }, /turf/open/floor/wood, -/area/ai_monitored/nuke_storage) +/area/maintenance/bar/cafe) "QoH" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /obj/structure/chair/stool/bar, /turf/open/floor/wood{ icon_state = "wood-broken7" }, -/area/ai_monitored/nuke_storage) +/area/maintenance/bar/cafe) "QoI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 @@ -57887,22 +57891,22 @@ /turf/open/floor/wood{ icon_state = "wood-broken6" }, -/area/ai_monitored/nuke_storage) +/area/maintenance/bar/cafe) "QoJ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/wood, -/area/ai_monitored/nuke_storage) +/area/maintenance/bar/cafe) "QoK" = ( /obj/structure/table/wood, /obj/machinery/chem_dispenser/drinks, /turf/open/floor/wood, -/area/space) +/area/maintenance/bar/cafe) "QoL" = ( /obj/structure/chair/wood{ dir = 4 }, /turf/open/floor/wood, -/area/space) +/area/maintenance/bar/cafe) "QoM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 @@ -57912,7 +57916,7 @@ /turf/open/floor/wood{ icon_state = "wood-broken" }, -/area/ai_monitored/nuke_storage) +/area/maintenance/bar/cafe) "QoN" = ( /obj/machinery/power/apc{ areastring = "/area/crew_quarters/theatre/mime"; @@ -57934,7 +57938,7 @@ /turf/open/floor/wood{ icon_state = "wood-broken6" }, -/area/ai_monitored/nuke_storage) +/area/maintenance/bar/cafe) "QoO" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable{ @@ -57944,7 +57948,7 @@ icon_state = "2-8" }, /turf/open/floor/wood, -/area/ai_monitored/nuke_storage) +/area/maintenance/bar/cafe) "QoP" = ( /obj/machinery/power/apc{ areastring = "/area/crew_quarters/theatre/mime"; @@ -57963,7 +57967,7 @@ /turf/open/floor/wood{ icon_state = "wood-broken6" }, -/area/ai_monitored/nuke_storage) +/area/maintenance/bar/cafe) "QoQ" = ( /obj/machinery/light/small, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -57972,7 +57976,7 @@ /turf/open/floor/wood{ icon_state = "wood-broken" }, -/area/ai_monitored/nuke_storage) +/area/maintenance/bar/cafe) "QoR" = ( /obj/structure/table/wood, /obj/item/storage/box/drinkingglasses, @@ -57980,14 +57984,14 @@ pixel_x = 27 }, /turf/open/floor/wood, -/area/space) +/area/maintenance/bar/cafe) "QoS" = ( /turf/closed/wall, -/area/space) +/area/crew_quarters/theatre/mime) "QoT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall, -/area/ai_monitored/nuke_storage) +/area/crew_quarters/theatre/mime) "QoU" = ( /obj/structure/barricade/wooden, /obj/structure/grille, @@ -57995,21 +57999,18 @@ icon_state = "1-2" }, /turf/open/floor/wood, -/area/ai_monitored/nuke_storage) +/area/maintenance/fore) "QoV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall, -/area/ai_monitored/nuke_storage) +/area/crew_quarters/theatre/clown) "QoW" = ( -/turf/closed/wall, -/area/space) -"QoX" = ( /obj/machinery/vending/autodrobe, /turf/open/floor/plasteel/white/side{ dir = 1 }, -/area/space) -"QoY" = ( +/area/crew_quarters/theatre/mime) +"QoX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light{ dir = 1 @@ -58017,39 +58018,40 @@ /turf/open/floor/plasteel/white/side{ dir = 1 }, -/area/ai_monitored/nuke_storage) -"QoZ" = ( +/area/crew_quarters/theatre/mime) +"QoY" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/bed, /obj/item/bedsheet/mime, /turf/open/floor/plasteel/white/side{ dir = 1 }, -/area/ai_monitored/nuke_storage) -"Qpa" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/ai_monitored/nuke_storage) -"Qpb" = ( +/area/crew_quarters/theatre/mime) +"QoZ" = ( /obj/structure/closet/secure_closet/freezer/cream_pie, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/redyellow, -/area/ai_monitored/nuke_storage) -"Qpc" = ( +/area/crew_quarters/theatre/clown) +"Qpa" = ( /obj/structure/closet/crate/wooden/toy, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light{ dir = 1 }, /turf/open/floor/plasteel/redyellow, -/area/ai_monitored/nuke_storage) -"Qpd" = ( +/area/crew_quarters/theatre/clown) +"Qpb" = ( /obj/machinery/vending/autodrobe, /turf/open/floor/plasteel/redyellow, -/area/space) -"Qpe" = ( +/area/crew_quarters/theatre/clown) +"Qpc" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/table, +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/customs) +"Qpd" = ( /obj/structure/table, /obj/item/reagent_containers/food/snacks/baguette, /obj/item/toy/dummy, @@ -58059,8 +58061,8 @@ /turf/open/floor/plasteel/white/side{ dir = 1 }, -/area/space) -"Qpf" = ( +/area/crew_quarters/theatre/mime) +"Qpe" = ( /obj/effect/landmark/start/mime, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 @@ -58068,8 +58070,8 @@ /turf/open/floor/plasteel/white/side{ dir = 1 }, -/area/ai_monitored/nuke_storage) -"Qpg" = ( +/area/crew_quarters/theatre/mime) +"Qpf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/camera{ c_tag = "Mime's Office"; @@ -58078,8 +58080,8 @@ /turf/open/floor/plasteel/white/side{ dir = 1 }, -/area/ai_monitored/nuke_storage) -"Qph" = ( +/area/crew_quarters/theatre/mime) +"Qpg" = ( /obj/structure/mirror{ pixel_x = -28 }, @@ -58090,15 +58092,15 @@ dir = 4 }, /turf/open/floor/plasteel/redyellow, -/area/ai_monitored/nuke_storage) -"Qpi" = ( +/area/crew_quarters/theatre/clown) +"Qph" = ( /obj/effect/landmark/start/clown, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/plasteel/redyellow, -/area/ai_monitored/nuke_storage) -"Qpj" = ( +/area/crew_quarters/theatre/clown) +"Qpi" = ( /obj/structure/bed, /obj/item/bedsheet/clown, /obj/machinery/airalarm{ @@ -58106,8 +58108,8 @@ pixel_x = 24 }, /turf/open/floor/plasteel/redyellow, -/area/space) -"Qpk" = ( +/area/crew_quarters/theatre/clown) +"Qpj" = ( /obj/structure/table, /obj/item/lipstick/random{ pixel_x = -2; @@ -58124,27 +58126,27 @@ /turf/open/floor/plasteel/white/side{ dir = 1 }, -/area/space) -"Qpl" = ( +/area/crew_quarters/theatre/mime) +"Qpk" = ( /turf/open/floor/plasteel/white/side{ dir = 1 }, -/area/ai_monitored/nuke_storage) -"Qpm" = ( +/area/crew_quarters/theatre/mime) +"Qpl" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/white/side{ dir = 1 }, -/area/ai_monitored/nuke_storage) -"Qpn" = ( +/area/crew_quarters/theatre/mime) +"Qpm" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/redyellow, -/area/ai_monitored/nuke_storage) -"Qpo" = ( +/area/crew_quarters/theatre/clown) +"Qpn" = ( /turf/open/floor/plasteel/redyellow, -/area/ai_monitored/nuke_storage) -"Qpp" = ( +/area/crew_quarters/theatre/clown) +"Qpo" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -58154,8 +58156,8 @@ }, /obj/item/bikehorn, /turf/open/floor/plasteel/redyellow, -/area/space) -"Qpq" = ( +/area/crew_quarters/theatre/clown) +"Qpp" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = 1; @@ -58165,24 +58167,24 @@ /turf/open/floor/plasteel/white/side{ dir = 1 }, -/area/space) -"Qpr" = ( +/area/crew_quarters/theatre/mime) +"Qpq" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/plasteel/white/side{ dir = 1 }, -/area/space) -"Qps" = ( +/area/crew_quarters/theatre/mime) +"Qpr" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, /turf/open/floor/plasteel/white/side{ dir = 1 }, -/area/space) -"Qpt" = ( +/area/crew_quarters/theatre/mime) +"Qps" = ( /obj/structure/table, /obj/item/device/flashlight/lamp/bananalamp, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -58195,41 +58197,50 @@ pixel_x = -30 }, /turf/open/floor/plasteel/redyellow, -/area/space) -"Qpu" = ( +/area/crew_quarters/theatre/clown) +"Qpt" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/open/floor/plasteel/redyellow, -/area/space) -"Qpv" = ( +/area/crew_quarters/theatre/clown) +"Qpu" = ( /obj/structure/statue/bananium/clown, /turf/open/floor/plasteel/redyellow, -/area/space) +/area/crew_quarters/theatre/clown) +"Qpv" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/crew_quarters/theatre/clown) "Qpw" = ( /obj/machinery/door/airlock/clown{ name = "Clown's Office"; req_access_txt = "46" }, /turf/open/floor/plasteel/redyellow, -/area/hallway/primary/port) +/area/crew_quarters/theatre/clown) "Qpx" = ( +/obj/machinery/door/airlock{ + name = "Bar Storage"; + req_access_txt = "25" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"Qpy" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"Qpz" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" }, /turf/open/floor/plating, /area/bridge/meeting_room) -"Qpy" = ( -/turf/open/floor/plating, -/area/maintenance/department/bridge) -"Qpz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/bridge) "QpA" = ( /turf/open/floor/plating, /area/maintenance/department/bridge) "QpB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/maintenance/department/bridge) "QpC" = ( @@ -58242,32 +58253,38 @@ /turf/open/floor/plating, /area/maintenance/department/bridge) "QpF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/department/bridge) "QpG" = ( /turf/open/floor/plating, /area/maintenance/department/bridge) "QpH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/bridge) +"QpI" = ( +/turf/open/floor/plating, +/area/maintenance/department/bridge) +"QpJ" = ( /obj/machinery/door/airlock/maintenance{ name = "bridge maintenance access"; req_access_txt = "20" }, /turf/open/floor/plating, /area/crew_quarters/heads/captain) -"QpI" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/bridge) -"QpJ" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/bridge) "QpK" = ( +/turf/closed/wall/r_wall, +/area/maintenance/department/bridge) +"QpL" = ( +/turf/closed/wall/r_wall, +/area/maintenance/department/bridge) +"QpM" = ( /obj/machinery/light_switch{ pixel_y = 28 }, /turf/open/floor/circuit, /area/ai_monitored/nuke_storage) -"QpL" = ( +"QpN" = ( /obj/machinery/power/apc{ dir = 1; name = "Vault APC"; @@ -58279,49 +58296,49 @@ }, /turf/open/floor/circuit, /area/ai_monitored/nuke_storage) -"QpM" = ( +"QpO" = ( /obj/structure/cable{ icon_state = "2-4" }, /turf/open/floor/circuit, /area/ai_monitored/nuke_storage) -"QpN" = ( +"QpP" = ( /obj/structure/cable{ icon_state = "1-8" }, /turf/open/floor/circuit, /area/ai_monitored/nuke_storage) -"QpO" = ( +"QpQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/closed/wall/r_wall, /area/ai_monitored/nuke_storage) -"QpP" = ( +"QpR" = ( /obj/structure/sign/securearea, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/closed/wall/r_wall, /area/ai_monitored/nuke_storage) -"QpQ" = ( +"QpS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /turf/closed/wall/r_wall, /area/ai_monitored/nuke_storage) -"QpR" = ( +"QpT" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ icon_state = "0-2" }, /turf/open/floor/plating, -/area/hallway/primary/central) -"QpS" = ( +/area/security/checkpoint/checkpoint2) +"QpU" = ( /turf/closed/wall/r_wall, /area/security/checkpoint/checkpoint2) -"QpT" = ( +"QpV" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ icon_state = "2-4" @@ -58335,8 +58352,8 @@ /turf/open/floor/plasteel/vault{ dir = 5 }, -/area/hallway/primary/central) -"QpU" = ( +/area/security/checkpoint/checkpoint2) +"QpW" = ( /obj/structure/closet/secure_closet/security, /obj/machinery/power/apc{ areastring = "/area/security/checkpoint/checkpoint2"; @@ -58352,7 +58369,7 @@ dir = 9 }, /area/security/checkpoint/checkpoint2) -"QpV" = ( +"QpX" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_y = 30 }, @@ -58363,7 +58380,7 @@ dir = 1 }, /area/security/checkpoint/checkpoint2) -"QpW" = ( +"QpY" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "2-8" @@ -58375,7 +58392,7 @@ dir = 1 }, /area/security/checkpoint/checkpoint2) -"QpX" = ( +"QpZ" = ( /obj/structure/cable{ icon_state = "1-8" }, @@ -58383,13 +58400,13 @@ dir = 1 }, /area/security/checkpoint/checkpoint2) -"QpY" = ( +"Qqa" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/red/side{ dir = 1 }, /area/security/checkpoint/checkpoint2) -"QpZ" = ( +"Qqb" = ( /obj/machinery/requests_console{ department = "Security"; departmentType = 5; @@ -58399,13 +58416,13 @@ dir = 1 }, /area/security/checkpoint/checkpoint2) -"Qqa" = ( +"Qqc" = ( /obj/machinery/computer/security, /turf/open/floor/plasteel/red/side{ dir = 5 }, /area/security/checkpoint/checkpoint2) -"Qqb" = ( +"Qqd" = ( /obj/structure/closet/wardrobe/red, /obj/machinery/light{ dir = 8 @@ -58414,10 +58431,10 @@ dir = 8 }, /area/security/checkpoint/checkpoint2) -"Qqc" = ( +"Qqe" = ( /turf/open/floor/plasteel, /area/security/checkpoint/checkpoint2) -"Qqd" = ( +"Qqf" = ( /obj/machinery/computer/secure_data, /obj/machinery/light{ dir = 4 @@ -58426,7 +58443,7 @@ dir = 4 }, /area/security/checkpoint/checkpoint2) -"Qqe" = ( +"Qqg" = ( /obj/machinery/airalarm{ dir = 4; pixel_x = -22 @@ -58448,7 +58465,7 @@ dir = 10 }, /area/security/checkpoint/checkpoint2) -"Qqf" = ( +"Qqh" = ( /obj/item/paper_bin{ pixel_x = 1; pixel_y = 9 @@ -58457,7 +58474,7 @@ /obj/structure/table, /turf/open/floor/plasteel/red/side, /area/security/checkpoint/checkpoint2) -"Qqg" = ( +"Qqi" = ( /obj/item/device/radio/off, /obj/item/crowbar, /obj/item/device/assembly/flash/handheld, @@ -58471,7 +58488,7 @@ dir = 6 }, /area/security/checkpoint/checkpoint2) -"Qqh" = ( +"Qqj" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "vault"; @@ -58485,7 +58502,7 @@ }, /turf/open/floor/plating, /area/security/checkpoint/checkpoint2) -"Qqi" = ( +"Qqk" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -58494,33 +58511,98 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"Qqj" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - req_access_txt = "0" +"Qql" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/turf/open/floor/plating{ + icon_state = "platingdmg3" }, -/turf/open/floor/plating, /area/maintenance/port/aft) -"Qqk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 +"Qqm" = ( +/obj/machinery/door/airlock{ + id_tag = "MaintDorm2"; + name = "Maintenance Dorm 2" }, /turf/open/floor/wood, /area/maintenance/port/aft) -"Qql" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +"Qqn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"Qqo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"Qqp" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"Qqq" = ( +/obj/machinery/light/small, +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 5 + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"Qqr" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ dir = 4 }, /turf/open/floor/wood, /area/maintenance/port/aft) -"Qqm" = ( +"Qqs" = ( +/turf/closed/wall, +/area/maintenance/bar) +"Qqt" = ( +/turf/closed/wall, +/area/maintenance/bar) +"Qqu" = ( +/turf/closed/wall, +/area/maintenance/bar) +"Qqv" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/maintenance/bar) +"Qqw" = ( +/turf/closed/wall, +/area/maintenance/bar) +"Qqx" = ( +/turf/closed/wall, +/area/maintenance/bar) +"Qqy" = ( +/turf/closed/wall, +/area/maintenance/bar) +"Qqz" = ( +/turf/closed/wall, +/area/maintenance/bar) +"QqA" = ( +/turf/open/floor/wood, +/area/maintenance/bar) +"QqB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"QqC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"QqD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/wood{ icon_state = "wood-broken5" }, -/area/maintenance/port/aft) -"Qqn" = ( +/area/maintenance/bar) +"QqE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -58528,8 +58610,8 @@ icon_state = "2-4" }, /turf/open/floor/wood, -/area/maintenance/port/aft) -"Qqo" = ( +/area/maintenance/bar) +"QqF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -58540,8 +58622,8 @@ icon_state = "4-8" }, /turf/open/floor/plating, -/area/maintenance/port/aft) -"Qqp" = ( +/area/maintenance/bar) +"QqG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -58550,27 +58632,30 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"Qqq" = ( +"QqH" = ( +/turf/closed/wall, +/area/maintenance/bar) +"QqI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood{ icon_state = "wood-broken7" }, -/area/maintenance/port/aft) -"Qqr" = ( +/area/maintenance/bar) +"QqJ" = ( /obj/structure/chair/stool/bar, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, /turf/open/floor/wood, -/area/maintenance/port/aft) -"Qqs" = ( +/area/maintenance/bar) +"QqK" = ( /obj/structure/table/wood, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/wood, -/area/maintenance/port/aft) -"Qqt" = ( +/area/maintenance/bar) +"QqL" = ( /obj/structure/table/wood, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -58584,14 +58669,41 @@ /turf/open/floor/wood{ icon_state = "wood-broken7" }, -/area/maintenance/port/aft) -"Qqu" = ( +/area/maintenance/bar) +"QqM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/bar) +"QqN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/bar) +"QqO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/bar) +"QqP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/bar) +"QqQ" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, /turf/closed/wall, -/area/maintenance/port/aft) -"Qqv" = ( +/area/maintenance/bar) +"QqR" = ( +/turf/closed/wall, +/area/maintenance/bar) +"QqS" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -58599,52 +58711,62 @@ dir = 8 }, /turf/open/floor/wood, -/area/maintenance/port/aft) -"Qqw" = ( +/area/maintenance/bar) +"QqT" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, /turf/open/floor/wood{ icon_state = "wood-broken6" }, -/area/maintenance/port/aft) -"Qqx" = ( +/area/maintenance/bar) +"QqU" = ( /obj/structure/chair/stool/bar, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, -/area/space/nearstation) -"Qqy" = ( +/area/maintenance/bar) +"QqV" = ( /obj/structure/table/wood, /turf/open/floor/wood{ icon_state = "wood-broken5" }, -/area/space/nearstation) -"Qqz" = ( +/area/maintenance/bar) +"QqW" = ( /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/wood, -/area/space/nearstation) -"QqA" = ( +/area/maintenance/bar) +"QqX" = ( /obj/machinery/chem_dispenser/drinks/beer, /obj/structure/table/wood, /turf/open/floor/wood, -/area/space/nearstation) -"QqB" = ( +/area/maintenance/bar) +"QqY" = ( +/turf/closed/wall, +/area/maintenance/bar) +"QqZ" = ( /obj/item/restraints/handcuffs/fake, /obj/effect/decal/cleanable/blood/old, /obj/effect/spawner/lootdrop/minor/kittyears_or_rabbitears, /turf/open/floor/plating, -/area/space/nearstation) -"QqC" = ( +/area/maintenance/bar) +"Qra" = ( /obj/item/shard, /obj/item/wirecutters, /obj/item/wallframe/camera, /turf/open/floor/plating{ icon_state = "panelscorched" }, -/area/space/nearstation) -"QqD" = ( +/area/maintenance/bar) +"Qrb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/bar) +"Qrc" = ( +/turf/closed/wall, +/area/maintenance/bar) +"Qrd" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -58654,35 +58776,38 @@ /turf/open/floor/wood{ icon_state = "wood-broken" }, -/area/maintenance/port/aft) -"QqE" = ( +/area/maintenance/bar) +"Qre" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, -/area/maintenance/port/aft) -"QqF" = ( +/area/maintenance/bar) +"Qrf" = ( /obj/structure/chair/stool/bar, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood{ icon_state = "wood-broken7" }, -/area/space/nearstation) -"QqG" = ( +/area/maintenance/bar) +"Qrg" = ( /obj/structure/table/wood, /turf/open/floor/wood, -/area/space/nearstation) -"QqH" = ( +/area/maintenance/bar) +"Qrh" = ( /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/wood{ icon_state = "wood-broken7" }, -/area/space/nearstation) -"QqI" = ( +/area/maintenance/bar) +"Qri" = ( /obj/machinery/vending/boozeomat, /turf/open/floor/wood, -/area/space/nearstation) -"QqJ" = ( +/area/maintenance/bar) +"Qrj" = ( +/turf/closed/wall, +/area/maintenance/bar) +"Qrk" = ( /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; name = "2maintenance loot spawner" @@ -58690,8 +58815,8 @@ /obj/item/crowbar, /obj/item/device/electropack/shockcollar, /turf/open/floor/plating, -/area/space/nearstation) -"QqK" = ( +/area/maintenance/bar) +"Qrl" = ( /obj/structure/bed, /obj/item/bedsheet/grey, /obj/effect/decal/cleanable/semen{ @@ -58702,28 +58827,45 @@ /turf/open/floor/plating{ icon_state = "platingdmg3" }, -/area/space/nearstation) -"QqL" = ( +/area/maintenance/bar) +"Qrm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/bar) +"Qrn" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Incinerator Access"; + req_access_txt = "12" + }, +/obj/structure/barricade/wooden{ + name = "wooden barricade (CLOSED)" + }, +/turf/open/floor/plating, +/area/maintenance/bar) +"Qro" = ( +/turf/open/floor/wood, +/area/maintenance/bar) +"Qrp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood{ icon_state = "wood-broken5" }, -/area/maintenance/port/aft) -"QqM" = ( +/area/maintenance/bar) +"Qrq" = ( /obj/structure/chair/stool/bar, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, /turf/open/floor/wood, -/area/space/nearstation) -"QqN" = ( +/area/maintenance/bar) +"Qrr" = ( /obj/structure/table/wood, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/wood, -/area/space/nearstation) -"QqO" = ( +/area/maintenance/bar) +"Qrs" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, @@ -58731,13 +58873,16 @@ icon_state = "1-2" }, /turf/open/floor/wood, -/area/space/nearstation) -"QqP" = ( +/area/maintenance/bar) +"Qrt" = ( /obj/machinery/chem_dispenser/drinks, /obj/structure/table/wood, /turf/open/floor/wood, -/area/space/nearstation) -"QqQ" = ( +/area/maintenance/bar) +"Qru" = ( +/turf/closed/wall, +/area/maintenance/bar) +"Qrv" = ( /obj/item/lighter/greyscale, /obj/effect/decal/cleanable/semen{ desc = "Blech."; @@ -58746,26 +58891,33 @@ /turf/open/floor/plating{ icon_state = "panelscorched" }, -/area/space/nearstation) -"QqR" = ( +/area/maintenance/bar) +"Qrw" = ( /obj/effect/spawner/lootdrop/maintenance, /obj/effect/decal/cleanable/blood/old, /obj/item/device/assembly/signaler, /turf/open/floor/plating, -/area/space/nearstation) -"QqS" = ( +/area/maintenance/bar) +"Qrx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/bar) +"Qry" = ( +/turf/closed/wall, +/area/maintenance/bar) +"Qrz" = ( /obj/effect/spawner/lootdrop/keg, /turf/open/floor/wood, -/area/maintenance/port/aft) -"QqT" = ( +/area/maintenance/bar) +"QrA" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, -/area/maintenance/port/aft) -"QqU" = ( +/area/maintenance/bar) +"QrB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, -/area/space/nearstation) -"QqV" = ( +/area/maintenance/bar) +"QrC" = ( /obj/machinery/power/apc{ areastring = "/area/maintenance/bar"; dir = 2; @@ -58777,19 +58929,38 @@ /turf/open/floor/wood{ icon_state = "wood-broken7" }, -/area/space/nearstation) -"QqW" = ( +/area/maintenance/bar) +"QrD" = ( +/turf/closed/wall, +/area/maintenance/bar) +"QrE" = ( +/turf/closed/wall, +/area/maintenance/bar) +"QrF" = ( /obj/structure/falsewall, /turf/open/floor/plating, -/area/space/nearstation) -"QqX" = ( +/area/maintenance/bar) +"QrG" = ( +/turf/closed/wall, +/area/maintenance/bar) +"QrH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/bar) +"QrI" = ( +/turf/closed/wall, +/area/maintenance/bar) +"QrJ" = ( +/turf/closed/wall, +/area/maintenance/bar) +"QrK" = ( /obj/machinery/door/airlock/maintenance/abandoned{ req_access_txt = "0" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, -/area/space/nearstation) -"QqY" = ( +/area/maintenance/bar) +"QrL" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/airlock/maintenance/abandoned{ req_access_txt = "0" @@ -58797,39 +58968,50 @@ /turf/open/floor/wood{ icon_state = "wood-broken" }, -/area/space/nearstation) -"QqZ" = ( +/area/maintenance/bar) +"QrM" = ( /obj/structure/sign/poster/official/no_erp, /turf/closed/wall, -/area/space/nearstation) -"Qra" = ( +/area/maintenance/bar) +"QrN" = ( +/turf/closed/wall, +/area/maintenance/bar) +"QrO" = ( /obj/machinery/vending/clothing, /turf/open/floor/wood, -/area/space/nearstation) -"Qrb" = ( +/area/maintenance/bar) +"QrP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/bar) +"QrQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, -/area/space/nearstation) -"Qrc" = ( +/area/maintenance/bar) +"QrR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, -/area/space/nearstation) -"Qrd" = ( +/area/maintenance/bar) +"QrS" = ( /obj/structure/chair/stool, /turf/open/floor/wood{ icon_state = "wood-broken6" }, -/area/space/nearstation) -"Qre" = ( +/area/maintenance/bar) +"QrT" = ( /turf/open/floor/wood{ icon_state = "wood-broken6" }, -/area/space/nearstation) -"Qrf" = ( +/area/maintenance/bar) +"QrU" = ( /obj/machinery/vending/autodrobe, /turf/open/floor/wood, -/area/space/nearstation) -"Qrg" = ( +/area/maintenance/bar) +"QrV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/bar) +"QrW" = ( /obj/structure/sign/poster/random{ pixel_x = -32 }, @@ -58839,35 +59021,35 @@ /turf/open/floor/wood{ icon_state = "wood-broken7" }, -/area/space/nearstation) -"Qrh" = ( +/area/maintenance/bar) +"QrX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, -/area/space/nearstation) -"Qri" = ( +/area/maintenance/bar) +"QrY" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood{ icon_state = "wood-broken" }, -/area/space/nearstation) -"Qrj" = ( +/area/maintenance/bar) +"QrZ" = ( /obj/structure/table/wood/poker, /turf/open/floor/wood{ icon_state = "wood-broken7" }, -/area/space/nearstation) -"Qrk" = ( +/area/maintenance/bar) +"Qsa" = ( /obj/structure/table/wood/poker, /obj/item/storage/pill_bottle/dice, /turf/open/floor/wood, -/area/space/nearstation) -"Qrl" = ( +/area/maintenance/bar) +"Qsb" = ( /turf/open/floor/wood{ icon_state = "wood-broken5" }, -/area/space/nearstation) -"Qrm" = ( +/area/maintenance/bar) +"Qsc" = ( /obj/structure/table/wood/bar, /obj/item/paper_bin{ pixel_x = -3; @@ -58878,61 +59060,59 @@ pixel_x = 30 }, /turf/open/floor/wood, -/area/space/nearstation) -"Qrn" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -31 - }, -/turf/open/floor/wood, -/area/space/nearstation) -"Qro" = ( +/area/maintenance/bar) +"Qsd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/bar) +"Qse" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/wood, -/area/space/nearstation) -"Qrp" = ( +/area/maintenance/bar) +"Qsf" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/open/floor/wood, -/area/space/nearstation) -"Qrq" = ( +/area/maintenance/bar) +"Qsg" = ( /obj/structure/table/wood/poker, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/wood, -/area/space/nearstation) -"Qrr" = ( +/area/maintenance/bar) +"Qsh" = ( /obj/structure/table/wood/poker, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/wood, -/area/space/nearstation) -"Qrs" = ( +/area/maintenance/bar) +"Qsi" = ( /obj/structure/table/wood/poker, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/wood, -/area/space/nearstation) -"Qrt" = ( +/area/maintenance/bar) +"Qsj" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/wood, -/area/space/nearstation) -"Qru" = ( +/area/maintenance/bar) +"Qsk" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/open/floor/wood, -/area/space/nearstation) -"Qrv" = ( +/area/maintenance/bar) +"Qsl" = ( /obj/structure/table/wood/bar, /obj/machinery/light{ dir = 4 @@ -58940,84 +59120,96 @@ /turf/open/floor/wood{ icon_state = "wood-broken6" }, -/area/space/nearstation) -"Qrw" = ( +/area/maintenance/bar) +"Qsm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/bar) +"Qsn" = ( /turf/open/floor/wood{ icon_state = "wood-broken5" }, -/area/space/nearstation) -"Qrx" = ( +/area/maintenance/bar) +"Qso" = ( /obj/structure/table/wood/poker, /obj/item/coin/iron, /turf/open/floor/wood, -/area/space/nearstation) -"Qry" = ( +/area/maintenance/bar) +"Qsp" = ( /obj/structure/table/wood/bar, /obj/item/reagent_containers/spray/cleaner, /obj/structure/sign/poster/random{ pixel_x = 32 }, /turf/open/floor/wood, -/area/space/nearstation) -"Qrz" = ( +/area/maintenance/bar) +"Qsq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/bar) +"Qsr" = ( /obj/effect/spawner/lootdrop/keg, /turf/open/floor/wood{ icon_state = "wood-broken7" }, -/area/space/nearstation) -"QrA" = ( +/area/maintenance/bar) +"Qss" = ( /obj/structure/sign/poster/random{ pixel_y = -32 }, /turf/open/floor/wood, -/area/space/nearstation) -"QrB" = ( +/area/maintenance/bar) +"Qst" = ( /obj/structure/chair/stool, /turf/open/floor/wood{ icon_state = "wood-broken" }, -/area/space/nearstation) -"QrC" = ( +/area/maintenance/bar) +"Qsu" = ( /obj/structure/chair/stool, /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; pixel_y = -35 }, /turf/open/floor/wood, -/area/space/nearstation) -"QrD" = ( +/area/maintenance/bar) +"Qsv" = ( /obj/structure/sign/poster/random{ pixel_y = -32 }, /turf/open/floor/wood{ icon_state = "wood-broken7" }, -/area/space/nearstation) -"QrE" = ( +/area/maintenance/bar) +"Qsw" = ( /obj/machinery/vending/kink, /turf/open/floor/wood, -/area/space/nearstation) -"QrF" = ( +/area/maintenance/bar) +"Qsx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/bar) +"Qsy" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/closed/wall/r_wall, /area/engine/engine_smes) -"QrG" = ( +"Qsz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "1-2" }, /turf/closed/wall/r_wall, /area/engine/engine_smes) -"QrH" = ( +"QsA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "1-2" }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QrI" = ( +"QsB" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; @@ -59030,7 +59222,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QrJ" = ( +"QsC" = ( /obj/machinery/camera{ c_tag = "Gravity Generator Foyer" }, @@ -59046,17 +59238,17 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QrK" = ( +"QsD" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "1-2" }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QrL" = ( +"QsE" = ( /turf/closed/wall, /area/space) -"QrM" = ( +"QsF" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -59069,11 +59261,11 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QrN" = ( +"QsG" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QrO" = ( +"QsH" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -59085,7 +59277,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QrP" = ( +"QsI" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, @@ -59094,30 +59286,30 @@ }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QrQ" = ( +"QsJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "1-2" }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QrR" = ( +"QsK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QrS" = ( +"QsL" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QrT" = ( +"QsM" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QrU" = ( +"QsN" = ( /obj/item/device/radio/intercom{ broadcasting = 0; listening = 1; @@ -59129,19 +59321,19 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QrV" = ( +"QsO" = ( /obj/machinery/power/terminal, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /obj/structure/cable, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QrW" = ( +"QsP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QrX" = ( +"QsQ" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -24 @@ -59153,11 +59345,11 @@ /obj/item/pen/blue, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QrY" = ( +"QsR" = ( /obj/machinery/holopad, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QrZ" = ( +"QsS" = ( /obj/machinery/power/smes{ charge = 5e+006 }, @@ -59166,7 +59358,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"Qsa" = ( +"QsT" = ( /obj/machinery/power/apc{ dir = 8; name = "Gravity Generator APC"; @@ -59185,28 +59377,28 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"Qsb" = ( +"QsU" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/cable{ icon_state = "4-8" }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"Qsc" = ( +"QsV" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/cable{ icon_state = "4-8" }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"Qsd" = ( +"QsW" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/cable{ icon_state = "4-8" }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"Qse" = ( +"QsX" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 }, @@ -59222,7 +59414,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"Qsf" = ( +"QsY" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; @@ -59235,7 +59427,7 @@ }, /turf/open/floor/plating, /area/engine/gravity_generator) -"Qsg" = ( +"QsZ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ icon_state = "0-8" @@ -59245,7 +59437,7 @@ }, /turf/open/floor/plating, /area/engine/gravity_generator) -"Qsh" = ( +"Qta" = ( /obj/machinery/door/airlock/glass_engineering{ name = "Gravity Generator"; req_access_txt = "11"; @@ -59256,7 +59448,7 @@ }, /turf/open/floor/plasteel/black, /area/engine/gravity_generator) -"Qsi" = ( +"Qtb" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ icon_state = "0-8" @@ -59266,7 +59458,7 @@ }, /turf/open/floor/plating, /area/engine/gravity_generator) -"Qsj" = ( +"Qtc" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; @@ -59280,19 +59472,19 @@ /obj/structure/cable, /turf/open/floor/plating, /area/engine/gravity_generator) -"Qsk" = ( +"Qtd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"Qsl" = ( +"Qte" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/floor/plasteel/black, /area/engine/gravity_generator) -"Qsm" = ( +"Qtf" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -59303,7 +59495,7 @@ }, /turf/open/floor/plasteel/black, /area/engine/gravity_generator) -"Qsn" = ( +"Qtg" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -73555,7 +73747,7 @@ auT aBI aDf aEK -aFM +Qpc aHy ayl aKk @@ -75144,8 +75336,6 @@ aaa aaa aaa aaa -aaa -aaa aag aaa aaa @@ -75153,6 +75343,8 @@ aaa aaa aaa aaa +aaa +aaa aaf aaS aaa @@ -75401,8 +75593,6 @@ aaa aaa aaa aaa -aaa -aaa aag aaa aaa @@ -75410,6 +75600,8 @@ aaa aaa aaa aaa +aaa +aaa aaf aaS aaf @@ -75658,8 +75850,6 @@ aaa aaa aaa aaa -aaa -aaa aag aaa aaa @@ -75667,6 +75857,8 @@ aaa aaa aaa aaa +aaa +aaa aaf aaS aaa @@ -75915,8 +76107,6 @@ aaa aaa aaa aaa -aaa -aaa aag aaa aaa @@ -75924,6 +76114,8 @@ aaa aaa aaa aaa +aaa +aaa aaf aaS acy @@ -76172,8 +76364,6 @@ aaa aaa aaa aaa -aaa -aaa aag aaa aaa @@ -76181,6 +76371,8 @@ aaa aaa aaa aaa +aaa +aaa aaf aba aaa @@ -76429,8 +76621,6 @@ aaa aaa aaa aaa -aaa -aaa aag aaa aaa @@ -76438,6 +76628,8 @@ aaa aaa aaa aaa +aaa +aaa aaf aaS aaf @@ -76686,10 +76878,10 @@ aaa aaa aaa aaa -aaa -aaa aag aaa +aaa +aaa aoV bZm aoV @@ -76943,10 +77135,10 @@ aaa aaa aaa aaa -aaa -aaa aag aaa +aaa +aaa aoV bVz apQ @@ -77200,10 +77392,10 @@ aaa aaa aaa aaa -aaa -aaa aag aaa +aaa +aaa bVw bVz bVw @@ -77457,10 +77649,10 @@ aaa aaa aaa aaa -aaa -aaa aag aaa +aaa +aaa apQ bVz aoV @@ -77714,9 +77906,9 @@ aaa aaa aaa aaa -aaa -aaa aag +Qoi +aHr aaa apQ bVz @@ -77971,10 +78163,10 @@ aaa aaf aaf aaf -aaa -aaa aag -aaa +Qoi +aaf +Qoi bVx caf aoV @@ -78228,11 +78420,11 @@ aaa aaa aaa bCq -bCq -bCq bLv bCq -aoV +bCq +bCq +bCq cbj aoV bVw @@ -78487,8 +78679,8 @@ aaa bCq bJP bCq -bSn -bCq +bTs +Qqp bCq cbj bLv @@ -78742,10 +78934,10 @@ cTg cTg aaa bCq -bPS -bRd -bPS -bPS +bHE +bCq +Qqn +Qqq bCq cbk bLv @@ -79002,7 +79194,7 @@ bLv bPR bRc bSo -bTs +Qqr bCq bVy bLv @@ -79203,15 +79395,15 @@ aoV apQ avY axo -aqQ +ayB Qov QoC QoL QoS -QoX -Qpe -Qpk -Qpq +QoW +Qpd +Qpj +Qpp aKu aLF aLF @@ -79256,9 +79448,9 @@ bLt bMF aaa bCq -bPS -bRf -bSo +bHE +bCq +bCq bTu bCq bVB @@ -79460,17 +79652,17 @@ aoV aoV avY axo -aqQ +ayB Qow QoD QoM QoT -QoY -Qpf -Qpl -Qpr +QoX +Qpe +Qpk +Qpq aKt -aLL +aLE bDe aOl aPF @@ -79513,9 +79705,9 @@ bLs cTg aaa bLv -bPT -bRe -bSo +bPU +bCq +bPS bTt bCq bVA @@ -79717,15 +79909,15 @@ apQ apQ avY axo -aqQ +ayB Qox QoE QoN aDs -QoZ -Qpg -Qpm -Qps +QoY +Qpf +Qpl +Qpr aKu aLE aLE @@ -79772,7 +79964,7 @@ aaa bCq bPV bCq -bCq +Qqo bTw bCq bVD @@ -79974,7 +80166,7 @@ aqQ aqQ avZ axp -arP +ayC azH QoF aBS @@ -79982,8 +80174,8 @@ aDr aDr aDr aDr -aJd -aJd +aDr +aDr aLE aLE aOl @@ -80027,8 +80219,8 @@ bGi aoV aoV bCq -bPU -bHE +bPW +Qqm bSp bTv bCq @@ -80236,10 +80428,10 @@ Qoy QoG QoO QoU -Qpa -aGd -aGd -aJe +apS +apS +apS +apS aKw aLP aMR @@ -80284,10 +80476,10 @@ bGi aoV aoV bCq -bPW +Qql bCq bCq -bTy +bTu bCq bVF bWA @@ -80492,12 +80684,12 @@ ayD azI QoH aBU -aDr -aDr -aDr -aDr -aJd -aJd +aDt +aDt +aDt +aDt +aDt +aDt aLE aMQ aNT @@ -80542,7 +80734,7 @@ aoV aoV bCq bHE -bHE +bPU bSq bTx bCq @@ -80745,16 +80937,16 @@ aaa aag avY axo -aqQ +ayB Qoz QoI QoP -aDs -Qpb -Qph -Qpn -Qpt -aKu +aDv +QoZ +Qpg +Qpm +Qps +Qpv aLE aMS aOt @@ -80801,20 +80993,20 @@ bCq bPY cOw bCq -bCq -bCq -bCq -bCq -bCq -bYy -bCq -bCq -bCq -bCq -bCq -bCq -bCq -bCq +Qqs +Qqz +QqH +QqR +Qrc +Qrn +Qry +QrI +cjn +cjn +cjn +cjn +cjn +cjn bUs bLv aaa @@ -81002,15 +81194,15 @@ aaa aag avY axo -aqQ +ayB QoA QoJ QoQ QoV -Qpc -Qpi -Qpo -Qpu +Qpa +Qph +Qpn +Qpt Qpw aLE aMS @@ -81058,20 +81250,20 @@ bCq bPX bRg bRg -bCq -bPS +Qqt +QqA bVG -Qqv -QqD -bPS QqS -atS -bcU -Qrg -Qrn -bcU +Qrd +Qro Qrz -bCq +QrJ +bcU +QrW +bVG +bcU +Qsr +cjn bUs bLv aaa @@ -81086,16 +81278,16 @@ aaa aaa aaf aaf -QrL +QsE aaa -QrR +QsK bij bij bij bij bij bij -Qsk +Qtd btG btG aaa @@ -81259,16 +81451,16 @@ aaa aag avY axo -aqQ +ayB QoB QoK QoR -QoW -Qpd -Qpj -Qpp -Qpv -aKu +aDt +Qpb +Qpi +Qpo +Qpu +aKx aLE aMS aOi @@ -81315,20 +81507,20 @@ bLv bQa bHE bHE -bCq -Qqk -Qqq -Qqw -QqE -QqL +Qqu +QqB +QqI QqT -QqX -Qrb -Qrh -Qro -Qrw +Qre +Qrp QrA -bCq +QrK +QrQ +QrX +Qse +Qsn +Qss +cjn bUs bLv aaf @@ -81340,19 +81532,19 @@ cjJ cjJ cjJ cjJ -QrF +Qsy bij bij crn bij -QrS -QrX -Qsa -Qsf +QsL +QsQ +QsT +QsY bkI bgN bgN -Qsl +Qte bgN btG Qoi @@ -81572,20 +81764,20 @@ bLv bPZ bHE bHE -Qqj -Qql -Qqr -Qqx -QqF -QqM +Qqv +QqC +QqJ QqU -QqY -Qrc -Qri -Qrp +Qrf +Qrq +QrB +QrL +QrR +QrY +Qsf bdV bcU -bCq +cjn bUs bLv aaa @@ -81599,13 +81791,13 @@ cov cpj cpS btG -QrI -QrM +QsB +QsF btG -QrT +QsM bsc -Qsb -Qsg +QsU +QsZ bgN bih big @@ -81829,20 +82021,20 @@ bLv bHE bHE bSs -bCq -Qqm -Qqs -Qqy -QqG -QqN +Qqw +QqD +QqK +QqV +Qrg +Qrr bcU -QqZ -Qrd +QrM +QrS cCa -Qrq +Qsg cCa -QrB -bCq +Qst +cjn bUs bLv aaa @@ -81857,12 +82049,12 @@ cpl cpU btF bsc -QrN +QsG btF bsc -QrY -Qsc -Qsh +QsR +QsV +Qta bgN big bgN @@ -82086,20 +82278,20 @@ bCq bHE bRh bSr -bCq -Qqn -Qqt -Qqz -QqH -QqO -QqV -atS -bdV -Qrj -Qrr -cCa +Qqx +QqE +QqL +QqW +Qrh +Qrs QrC -bCq +QrN +bdV +QrZ +Qsh +cCa +Qsu +cjn bUs bLv aaf @@ -82113,13 +82305,13 @@ cow cpk cpT btG -QrJ -QrO +QsC +QsH btG -QrU +QsN bsc -Qsd -Qsi +QsW +Qtb bgN bii big @@ -82343,20 +82535,20 @@ bCq bOK bCq bCq -bCq -Qqo -bTA -QqA -QqI -QqP -atS -atS +Qqy +QqF +QqM +QqX +Qri +Qrt +QrD +cjn bdV -Qrk -Qrs -Qrx +Qsa +Qsi +Qso bdV -bCq +cjn bUs bLv aaa @@ -82368,19 +82560,19 @@ cnq cnP coz cpn -QrG -QrH -QrK -QrP -QrQ -QrV -QrZ -Qse -Qsj +Qsz +QsA +QsD +QsI +QsJ +QsO +QsS +QsX +Qtc bmw bgN bgN -Qsm +Qtf bgN btG aaa @@ -82601,19 +82793,19 @@ bHE bLv aaa bLv -Qqp -bTA -atS -atS -atS -atS +QqG +QqN +QqY +Qrj +Qru +QrE bcU bcU bdV -Qrt +Qsj bdV -QrD -bCq +Qsv +cjn bUs bLv aaa @@ -82630,14 +82822,14 @@ aaf aaf Qol aaa -QrW +QsP bgO bgO bgO bgO bgO bgO -Qsn +Qtg btG btG Qoi @@ -82859,18 +83051,18 @@ bLv aaf bLv bUt -bTA -QqB -QqJ -QqQ -QqW +QqO +QqZ +Qrk +Qrv +QrF bcU -Qre -Qrl -Qru +QrT +Qsb +Qsk bcU bcU -bCq +cjn bUs bLv aaf @@ -83116,18 +83308,18 @@ bCq aaa bLv bUt -bTA -QqC -QqK -QqR -atS +QqP Qra -Qrf -Qrm -Qrv -Qry -QrE -bCq +Qrl +Qrw +QrG +QrO +QrU +Qsc +Qsl +Qsp +Qsw +cjn bUs bCq aaa @@ -83373,17 +83565,17 @@ aaa aaa bTB bUv -Qqu -bES -bES -bES -bES -bES -bES -bES -bES -bES -bES +QqQ +Qrb +Qrm +Qrx +QrH +QrP +QrV +Qsd +Qsm +Qsq +Qsx car bUs bCq @@ -86939,7 +87131,7 @@ bbk bbk bbk bfs -Qpx +Qpz aZM aZM aaf @@ -87196,15 +87388,15 @@ bce bdf beb aYv -Qpy -QpI +QpA +QpK aaf aaf Qoi aaa Qoi aaa -QpS +QpU bsb bsb bsb @@ -87453,18 +87645,18 @@ aZR bbm bec bfu -Qpz +QpB aBb aBb bmu aBb aBb -QpO +QpQ aaa bsb -QpU -Qqb -Qqe +QpW +Qqd +Qqg bsb aXf aJq @@ -87710,7 +87902,7 @@ aZR aZR aZR bft -QpA +QpC aBa aBT bmv @@ -87719,13 +87911,13 @@ aGb bpg aaa bsb -QpV +QpX buP bwm bxH aXf aJq -Qqi +Qqk bCs bCs bCs @@ -87967,16 +88159,16 @@ bbm bdh bee bfv -QpB +QpD aBa -QpK +QpM aEM aEM aGa bph bqF bsd -QpW +QpY buQ bwn bxI @@ -88224,19 +88416,19 @@ bcf bdg bed bfv -QpC +QpE aBa aBV alu -QpM +QpO bnU aHG bqE -QpT -QpX -Qqc -Qqf +QpV +QpZ +Qqe Qqh +Qqj aNr bAf bBp @@ -88481,16 +88673,16 @@ bbm bdh bef bfv -QpD +QpF aBa -QpL -aEO QpN -bnV +aEO QpP +bnV QpR +QpT bsf -QpY +Qqa buS bwp bxK @@ -88738,7 +88930,7 @@ aZR aZR aZR bfw -QpE +QpG aBa aBW bjy @@ -88747,7 +88939,7 @@ aGe bpi aaa bsb -QpZ +Qqb buR aFM bxJ @@ -88995,18 +89187,18 @@ aZR bbm beh bfx -QpF +QpH aBc aBc bgR aBc aBc -QpQ +QpS aaa bsb -Qqa -Qqd -Qqg +Qqc +Qqf +Qqi bsb aJq aJq @@ -89252,8 +89444,8 @@ bcg aZU beg aYB -QpG -QpJ +QpI +QpL aaf aaf Qoi @@ -89509,7 +89701,7 @@ bbp bbp bbp bfz -QpH +QpJ aZV aZV aaf @@ -92839,7 +93031,7 @@ aCr aCr aJC bYP -aQg +bbx aJC aQg aJC @@ -95147,7 +95339,7 @@ aGI aId aJD aKP -aMx +aOL aNJ aQe aOL @@ -95404,7 +95596,7 @@ aGH aIc aJC aKO -aMw +aQc aNI aMw aOK @@ -95661,7 +95853,7 @@ aGJ aIe aJC aJC -aJC +Qpx aJC aJC aJC @@ -95918,7 +96110,7 @@ aGJ aIe aJE aKQ -aLU +aKR aNu aJC aPw @@ -96689,9 +96881,9 @@ aGL aIe aJC aKS +aKR aMC aJC -aJC aJI aJI aSI @@ -96946,15 +97138,15 @@ aGL aIg aJH aKR +Qpy aMB aJC -aOP -aJI aRA aVz aVz aVz aVz +aVz aYJ aJI bbz @@ -97723,7 +97915,7 @@ aON aQk aRD aSM -aVG +aVD aVE aXm aVz @@ -97981,8 +98173,8 @@ aQj aRB aSL aTN -aVD cCq +aVz cAg bak bbz @@ -98238,9 +98430,9 @@ aJI aRG aSO aTO -aVG cCq aVz +aVz bak bbz aYV From 636ab7d156d7cef105a451df845e05e90e7fc6ed Mon Sep 17 00:00:00 2001 From: vuonojenmustaturska Date: Mon, 23 Oct 2017 21:31:17 +0300 Subject: [PATCH 091/227] Removes mob references from camera motion tracking --- code/game/machinery/camera/motion.dm | 75 ++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) diff --git a/code/game/machinery/camera/motion.dm b/code/game/machinery/camera/motion.dm index e7887d0fb4..7ce2408019 100644 --- a/code/game/machinery/camera/motion.dm +++ b/code/game/machinery/camera/motion.dm @@ -1,3 +1,4 @@ +<<<<<<< HEAD /obj/machinery/camera var/list/localMotionTargets = list() @@ -70,3 +71,77 @@ if (!area_motion) if(isliving(AM)) newTarget(AM) +======= +/obj/machinery/camera + + var/list/localMotionTargets = list() + var/detectTime = 0 + var/area/ai_monitored/area_motion = null + var/alarm_delay = 30 // Don't forget, there's another 3 seconds in queueAlarm() + +/obj/machinery/camera/process() + // motion camera event loop + if(!isMotion()) + . = PROCESS_KILL + return + if (detectTime > 0) + var/elapsed = world.time - detectTime + if (elapsed > alarm_delay) + triggerAlarm() + else if (detectTime == -1) + for (var/targetref in getTargetList()) + var/mob/target = locate(targetref) in GLOB.mob_list + if (target.stat == DEAD || QDELETED(target) || (!area_motion && !in_range(src, target))) + //If not part of a monitored area and the camera is not in range or the target is dead + lostTarget(target) + +/obj/machinery/camera/proc/getTargetList() + if(area_motion) + return area_motion.motionTargets + return localMotionTargets + +/obj/machinery/camera/proc/newTarget(mob/target) + if(isAI(target)) + return 0 + if (detectTime == 0) + detectTime = world.time // start the clock + var/list/targets = getTargetList() + targets |= "\ref[target]" + return 1 + +/obj/machinery/camera/Destroy() + var/area/ai_monitored/A = get_area(src) + if(istype(A)) + A.motioncameras -= src + return ..() + +/obj/machinery/camera/proc/lostTarget(mob/target) + var/list/targets = getTargetList() + targets -= "\ref[target]" + if (targets.len == 0) + cancelAlarm() + +/obj/machinery/camera/proc/cancelAlarm() + if (detectTime == -1) + for (var/mob/living/silicon/aiPlayer in GLOB.player_list) + if (status) + aiPlayer.cancelAlarm("Motion", get_area(src), src) + detectTime = 0 + return 1 + +/obj/machinery/camera/proc/triggerAlarm() + if (!detectTime) + return 0 + for (var/mob/living/silicon/aiPlayer in GLOB.player_list) + if (status) + aiPlayer.triggerAlarm("Motion", get_area(src), list(src), src) + detectTime = -1 + return 1 + +/obj/machinery/camera/HasProximity(atom/movable/AM as mob|obj) + // Motion cameras outside of an "ai monitored" area will use this to detect stuff. + if (!area_motion) + if(isliving(AM)) + newTarget(AM) + +>>>>>>> 1dc0519... Removes mob references from camera motion tracking (#32002) From 6ead40bcee07e3eaad6995e99eab8dbc79a7deac Mon Sep 17 00:00:00 2001 From: deathride58 Date: Mon, 23 Oct 2017 14:43:05 -0400 Subject: [PATCH 092/227] Boxstation security changes --- _maps/map_files/BoxStation/BoxStation.dmm | 2811 +++++++++++++-------- 1 file changed, 1796 insertions(+), 1015 deletions(-) diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index 3a32c929b3..8510ae683c 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -635,35 +635,52 @@ /turf/open/floor/plasteel/floorgrime, /area/security/prison) "abN" = ( -/obj/structure/closet/secure_closet/lethalshots, -/turf/open/floor/plasteel/black, +/obj/machinery/door/poddoor/shutters{ + id = "armory"; + name = "Armoury Shutter" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, /area/ai_monitored/security/armory) "abO" = ( /turf/open/floor/plasteel/showroomfloor, /area/security/main) "abP" = ( /obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/bot{ + dir = 2 + }, /turf/open/floor/plasteel/showroomfloor, /area/security/main) "abQ" = ( -/obj/structure/rack, -/obj/machinery/airalarm{ - pixel_y = 23 +/obj/machinery/door/firedoor, +/obj/machinery/door/window/southleft{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "Armory"; + req_access_txt = "3" }, -/obj/item/gun/energy/ionrifle, -/obj/item/gun/energy/temperature/security, -/obj/item/clothing/suit/armor/laserproof, -/turf/open/floor/plasteel/vault{ +/obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/black, /area/ai_monitored/security/armory) "abR" = ( /obj/structure/closet/secure_closet/security/sec, /obj/machinery/light{ dir = 4 }, -/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/bot{ + dir = 2 + }, /turf/open/floor/plasteel/showroomfloor, /area/security/main) "abS" = ( @@ -801,8 +818,13 @@ /turf/open/floor/plasteel/freezer, /area/security/prison) "aci" = ( -/obj/vehicle/secway, -/turf/open/floor/plasteel/black, +/obj/machinery/door/poddoor/shutters{ + id = "armory"; + name = "Armoury Shutter" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, /area/ai_monitored/security/armory) "acj" = ( /obj/machinery/light{ @@ -821,6 +843,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 9 }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) "acm" = ( @@ -830,12 +855,13 @@ name = "Armory APC"; pixel_x = 24 }, -/obj/structure/cable{ - icon_state = "0-2" - }, /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "0-8" + }, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) "acn" = ( @@ -855,7 +881,9 @@ /area/security/main) "acq" = ( /obj/effect/landmark/secequipment, -/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/bot{ + dir = 2 + }, /turf/open/floor/plasteel/showroomfloor, /area/security/main) "acr" = ( @@ -1057,6 +1085,7 @@ dir = 1; layer = 2.9 }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel{ dir = 2 }, @@ -1066,7 +1095,6 @@ /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) "acO" = ( -/obj/structure/closet/l3closet/security, /obj/machinery/camera{ c_tag = "Brig Equipment Room"; dir = 4 @@ -1211,9 +1239,7 @@ /turf/open/floor/plasteel/freezer, /area/security/prison) "adg" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) "adh" = ( @@ -1222,7 +1248,9 @@ /turf/open/floor/carpet, /area/crew_quarters/heads/hos) "adi" = ( -/obj/machinery/flasher/portable, +/obj/structure/table, +/obj/item/storage/box/firingpins, +/obj/item/storage/box/firingpins, /turf/open/floor/plasteel/vault{ dir = 8 }, @@ -1248,6 +1276,9 @@ /obj/structure/window/reinforced{ dir = 4 }, +/obj/structure/cable{ + icon_state = "1-2" + }, /turf/open/floor/plasteel{ dir = 2 }, @@ -1540,6 +1571,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 2 }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) "adR" = ( @@ -1828,10 +1860,13 @@ }, /area/security/prison) "aes" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/structure/rack, +/obj/item/gun/energy/ionrifle, +/obj/item/gun/energy/temperature/security, +/obj/item/clothing/suit/armor/laserproof, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/obj/machinery/suit_storage_unit/security, /turf/open/floor/plasteel/red/side, /area/ai_monitored/security/armory) "aet" = ( @@ -1841,10 +1876,19 @@ /turf/open/floor/plasteel, /area/ai_monitored/security/armory) "aeu" = ( -/obj/structure/cable{ - icon_state = "1-8" +/obj/structure/rack, +/obj/item/storage/box/teargas{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/flashbangs{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 }, -/obj/machinery/suit_storage_unit/security, /turf/open/floor/plasteel/red/side, /area/ai_monitored/security/armory) "aev" = ( @@ -2112,19 +2156,16 @@ /turf/open/floor/plasteel/showroomfloor, /area/security/warden) "aeX" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, +/obj/structure/cable{ + icon_state = "0-4" + }, /turf/open/floor/plating, /area/ai_monitored/security/armory) "aeY" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, /obj/machinery/door/window/southleft{ name = "Armory"; req_access_txt = "3" @@ -2133,18 +2174,21 @@ /obj/effect/turf_decal/stripes/line{ dir = 10 }, +/obj/structure/cable{ + icon_state = "4-8" + }, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) "aeZ" = ( -/obj/structure/cable{ - icon_state = "0-8" +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 }, /obj/structure/cable{ icon_state = "0-4" }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 +/obj/structure/cable{ + icon_state = "0-8" }, /turf/open/floor/plating, /area/ai_monitored/security/armory) @@ -2676,22 +2720,22 @@ name = "Armory"; req_access_txt = "3" }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, /obj/machinery/light{ dir = 4 }, -/obj/structure/cable{ - icon_state = "2-4" - }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/line{ dir = 2 }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) "agr" = ( @@ -4129,7 +4173,7 @@ }, /area/security/brig) "ajB" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/open/floor/plasteel, /area/security/brig) "ajC" = ( @@ -4157,7 +4201,7 @@ "ajF" = ( /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /turf/open/floor/plasteel/red/corner{ - dir = 2 + dir = 8 }, /area/security/brig) "ajG" = ( @@ -4404,16 +4448,13 @@ /turf/open/floor/plasteel, /area/security/brig) "aki" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-8" + }, /turf/open/floor/plasteel/red/corner{ dir = 8 }, @@ -4428,16 +4469,21 @@ /turf/open/floor/plasteel/red/side, /area/security/brig) "akk" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 +/obj/machinery/door_timer{ + id = "Cell 1"; + name = "Cell 1"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, /turf/open/floor/plasteel/red/corner{ dir = 2 }, /area/security/brig) "akl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 }, /turf/open/floor/plasteel, /area/security/brig) @@ -4480,33 +4526,6 @@ c_tag = "Brig Central"; dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door_timer{ - id = "Cell 3"; - name = "Cell 3"; - pixel_y = -32 - }, -/turf/open/floor/plasteel/red/side, -/area/security/brig) -"akr" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/brig) -"aks" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/red/corner{ - dir = 8 - }, -/area/security/brig) -"akt" = ( -/obj/machinery/light, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -4515,15 +4534,33 @@ name = "Cell 4"; pixel_y = -32 }, +/turf/open/floor/plasteel/red/corner, +/area/security/brig) +"akr" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/plasteel/red/side, /area/security/brig) -"aku" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 +"aks" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/brig) +"akt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, /turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/brig) +"aku" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, /area/security/brig) "akv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -4554,9 +4591,14 @@ }, /area/security/courtroom) "akz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) +/obj/structure/chair, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/hallway/primary/fore) "akA" = ( /obj/structure/chair{ dir = 8; @@ -4642,26 +4684,13 @@ /turf/open/floor/plating, /area/maintenance/fore) "akM" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/security/brig) "akN" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/security/brig) "akO" = ( @@ -4669,27 +4698,24 @@ id = "Cell 1"; name = "Cell 1" }, -/obj/structure/cable{ - icon_state = "4-8" - }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/red/side, /area/security/brig) "akP" = ( -/obj/structure/cable{ - icon_state = "0-8" +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 2"; + name = "Cell 2" }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red/side, /area/security/brig) "akQ" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 3"; + name = "Cell 3" }, -/turf/closed/wall, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/red/side, /area/security/brig) "akR" = ( /obj/machinery/door/window/brigdoor/security/cell{ @@ -4702,46 +4728,26 @@ /turf/open/floor/plasteel/red/side, /area/security/brig) "akS" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 4"; + name = "Cell 4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, +/turf/open/floor/plasteel/red/side, /area/security/brig) "akT" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 3"; - name = "Cell 3" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red/side, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, /area/security/brig) "akU" = ( /obj/machinery/door/airlock/glass_security{ name = "Brig Desk"; req_access_txt = "1" }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, /turf/open/floor/plasteel/black, /area/security/brig) "akV" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/security/brig) @@ -4774,14 +4780,20 @@ }, /area/security/brig) "akY" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "seclobby"; + name = "security shutters" }, -/obj/structure/cable{ - icon_state = "1-8" +/obj/machinery/door/airlock/glass_security{ + cyclelinkeddir = 2; + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/red/side{ + dir = 5 }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, /area/security/brig) "akZ" = ( /obj/structure/cable{ @@ -4831,11 +4843,11 @@ }, /area/security/courtroom) "alf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/red/side{ + dir = 5 }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) +/area/hallway/primary/fore) "alg" = ( /obj/structure/cable{ icon_state = "0-2" @@ -4950,15 +4962,22 @@ /turf/open/floor/plasteel/floorgrime, /area/security/brig) "alw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 +/obj/item/device/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + dir = 2; + name = "Prison Intercom (General)"; + pixel_x = -25; + pixel_y = -2; + prison_radio = 1 }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/floorgrime, /area/security/brig) "alx" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/floorgrime, /area/security/brig) "aly" = ( @@ -4983,9 +5002,6 @@ pixel_y = 6; req_access_txt = "0" }, -/obj/structure/cable{ - icon_state = "1-2" - }, /obj/machinery/button/flasher{ id = "brigentry"; pixel_x = -28; @@ -5015,28 +5031,22 @@ /turf/open/floor/plasteel/black, /area/security/brig) "alC" = ( +/obj/item/twohanded/required/kirbyplants/random, /turf/open/floor/plasteel/red/side{ dir = 9 }, -/area/security/brig) +/area/hallway/primary/fore) "alD" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/security/courtroom) "alE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/red/side{ + dir = 5 }, -/obj/machinery/flasher{ - id = "Cell 4"; - pixel_x = 28 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) +/area/hallway/primary/fore) "alF" = ( /obj/machinery/atmospherics/components/unary/tank/air{ dir = 2 @@ -5195,11 +5205,6 @@ /turf/open/floor/plasteel, /area/security/processing) "amf" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/structure/cable{ - icon_state = "1-2" - }, /obj/machinery/flasher{ id = "Cell 1"; pixel_x = -28 @@ -5214,11 +5219,8 @@ /turf/open/floor/plasteel/floorgrime, /area/security/brig) "amh" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/machinery/flasher{ - id = "Cell 2"; - pixel_x = -28 +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) @@ -5267,9 +5269,6 @@ pixel_y = 5; req_access_txt = "63" }, -/obj/structure/cable{ - icon_state = "1-2" - }, /turf/open/floor/plasteel/black, /area/security/brig) "amm" = ( @@ -5293,14 +5292,10 @@ /turf/open/floor/plasteel/black, /area/security/brig) "amo" = ( -/obj/machinery/flasher{ - id = "brigentry"; - pixel_x = 28 - }, /turf/open/floor/plasteel/red/side{ - dir = 5 + dir = 9 }, -/area/security/brig) +/area/hallway/primary/fore) "amp" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 4"; @@ -5309,18 +5304,15 @@ /turf/open/floor/plasteel/floorgrime, /area/security/brig) "amq" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/item/device/radio/intercom{ - desc = "Talk through this. It looks like it has been modified to not broadcast."; - dir = 2; - name = "Prison Intercom (General)"; - pixel_x = 25; - pixel_y = -2; - prison_radio = 1 +/obj/machinery/vending/snack/random, +/obj/machinery/flasher{ + id = "brigentry"; + pixel_x = 28 }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/hallway/primary/fore) "amr" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -5493,16 +5485,9 @@ /turf/open/floor/plasteel/showroomfloor, /area/security/warden) "amQ" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "Secure Gate"; - name = "brig shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, +/obj/structure/bed, +/obj/item/bedsheet, +/turf/open/floor/plasteel/floorgrime, /area/security/brig) "amR" = ( /obj/structure/cable{ @@ -5525,20 +5510,12 @@ /turf/closed/wall/r_wall, /area/security/brig) "amT" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "briggate"; - name = "security shutters" - }, -/obj/machinery/door/window/southleft{ - name = "Brig Desk"; - req_access_txt = "1" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" +/obj/machinery/button/door{ + id = "seclobby"; + name = "Security Lobby Lockdown"; + pixel_x = -26; + pixel_y = 8; + req_access_txt = "2" }, /turf/open/floor/plasteel/black, /area/security/brig) @@ -5554,20 +5531,6 @@ /turf/open/floor/plating, /area/security/brig) "amV" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "briggate"; - name = "security shutters" - }, -/obj/machinery/door/window/southleft{ - base_state = "right"; - icon_state = "right"; - name = "Brig Desk"; - req_access_txt = "1" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, /turf/open/floor/plasteel/black, /area/security/brig) "amW" = ( @@ -5583,17 +5546,10 @@ }, /area/security/brig) "amX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - cyclelinkeddir = 1; - id_tag = "outerbrig"; - name = "Brig"; - req_access_txt = "63" - }, /turf/open/floor/plasteel/red/side{ - dir = 9 + dir = 8 }, -/area/security/brig) +/area/hallway/primary/fore) "amY" = ( /obj/structure/chair{ dir = 1 @@ -5823,18 +5779,16 @@ }, /area/hallway/primary/fore) "anB" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 4 +/turf/open/floor/plasteel/red/side{ + dir = 5 }, /area/hallway/primary/fore) "anC" = ( /obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "seclobby"; + name = "security shutters" + }, /turf/open/floor/plating, /area/security/courtroom) "anD" = ( @@ -5946,12 +5900,6 @@ /turf/open/floor/plasteel, /area/security/processing) "anQ" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 32 - }, /obj/machinery/light{ dir = 1 }, @@ -5959,14 +5907,21 @@ /area/hallway/primary/fore) "anR" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, /area/hallway/primary/fore) "anS" = ( /obj/machinery/holopad, /turf/open/floor/plasteel, /area/hallway/primary/fore) "anT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "seclobby"; + name = "security shutters" + }, /turf/open/floor/plasteel, /area/hallway/primary/fore) "anU" = ( @@ -5974,6 +5929,10 @@ /obj/machinery/door/airlock/glass{ name = "Courtroom" }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "seclobby"; + name = "security shutters" + }, /turf/open/floor/plasteel/black, /area/security/courtroom) "anV" = ( @@ -6228,15 +6187,20 @@ dir = 1; pixel_y = -24 }, -/turf/open/floor/plasteel/red/corner{ - dir = 2 +/obj/item/twohanded/required/kirbyplants/random, +/turf/open/floor/plasteel/red/side{ + dir = 10 }, /area/hallway/primary/fore) "aoC" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel/red/corner{ - dir = 2 +/obj/structure/chair{ + dir = 1 }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel/red/side, /area/hallway/primary/fore) "aoD" = ( /obj/machinery/camera{ @@ -6247,21 +6211,22 @@ pixel_x = 5; pixel_y = -32 }, -/turf/open/floor/plasteel/red/corner{ - dir = 2 +/obj/machinery/light, +/obj/structure/chair{ + dir = 1 }, +/turf/open/floor/plasteel/red/side, /area/hallway/primary/fore) "aoE" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/red/corner{ - dir = 2 - }, +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/bar, /area/hallway/primary/fore) "aoF" = ( -/obj/machinery/vending/snack/random, -/turf/open/floor/plasteel/red/corner{ - dir = 2 - }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel/red/side, /area/hallway/primary/fore) "aoG" = ( /obj/structure/table, @@ -6478,6 +6443,9 @@ /area/maintenance/fore/secondary) "apm" = ( /obj/machinery/door/firedoor, +/obj/structure/sign/securearea{ + pixel_x = 32 + }, /turf/open/floor/plasteel/red/corner{ dir = 4 }, @@ -6487,9 +6455,7 @@ /turf/closed/wall, /area/maintenance/fore/secondary) "apo" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /turf/closed/wall, /area/maintenance/fore/secondary) "app" = ( @@ -6799,12 +6765,13 @@ /turf/open/floor/plating, /area/maintenance/fore/secondary) "aqg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, /turf/open/floor/plating, /area/maintenance/fore/secondary) "aqh" = ( @@ -7169,6 +7136,9 @@ /area/lawoffice) "arc" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable{ + icon_state = "1-2" + }, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) "ard" = ( @@ -25498,10 +25468,12 @@ /turf/open/floor/plating, /area/maintenance/disposal) "blT" = ( -/obj/structure/cable{ - icon_state = "2-4" +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) "blU" = ( @@ -48511,14 +48483,8 @@ /turf/open/space, /area/space) "cpg" = ( -/obj/item/grenade/barrier{ - pixel_x = 4 - }, -/obj/item/grenade/barrier, -/obj/item/grenade/barrier{ - pixel_x = -4 - }, /obj/structure/table, +/obj/item/storage/lockbox/loyalty, /turf/open/floor/plasteel/vault{ dir = 8 }, @@ -48672,12 +48638,10 @@ /turf/open/floor/engine, /area/engine/engineering) "cpA" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, /obj/structure/chair/office/dark{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) "cpC" = ( @@ -51489,15 +51453,13 @@ /area/shuttle/escape) "cwM" = ( /obj/structure/rack, -/obj/item/storage/box/teargas{ - pixel_x = -3; - pixel_y = 3 +/obj/item/storage/box/chemimp{ + pixel_x = 6 }, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/flashbangs{ - pixel_x = 3; - pixel_y = -3 +/obj/item/storage/box/trackimp{ + pixel_x = -3 }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/vault{ dir = 8 }, @@ -57799,6 +57761,825 @@ /turf/open/space/basic, /area/space) "Qov" = ( +/obj/structure/grille, +/turf/open/space/basic, +/area/space) +"Qow" = ( +/obj/structure/grille, +/turf/open/space/basic, +/area/space) +"Qox" = ( +/obj/structure/grille, +/turf/open/space/basic, +/area/space) +"Qoy" = ( +/obj/structure/grille, +/turf/open/space/basic, +/area/space) +"Qoz" = ( +/obj/structure/grille, +/turf/open/space/basic, +/area/space) +"QoA" = ( +/obj/structure/grille, +/turf/open/space/basic, +/area/space) +"QoB" = ( +/obj/structure/grille, +/turf/open/space/basic, +/area/space) +"QoC" = ( +/obj/structure/grille, +/turf/open/space/basic, +/area/space) +"QoD" = ( +/obj/structure/grille, +/turf/open/space/basic, +/area/space) +"QoE" = ( +/turf/closed/wall, +/area/space) +"QoF" = ( +/obj/structure/window/reinforced, +/obj/vehicle/secway, +/obj/item/key/security, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"QoG" = ( +/turf/closed/wall, +/area/space) +"QoH" = ( +/obj/structure/window/reinforced, +/obj/vehicle/secway, +/obj/item/key/security, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"QoI" = ( +/obj/structure/closet/l3closet/security, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"QoJ" = ( +/turf/closed/wall, +/area/space) +"QoK" = ( +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/bot{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"QoL" = ( +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/bot{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"QoM" = ( +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/bot{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"QoN" = ( +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/bot{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"QoO" = ( +/obj/structure/table, +/obj/item/grenade/barrier{ + pixel_x = 4 + }, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier{ + pixel_x = -4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"QoP" = ( +/obj/structure/rack, +/obj/item/gun/energy/e_gun/dragnet, +/obj/item/gun/energy/e_gun/dragnet, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"QoQ" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"QoR" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/shield/riot, +/obj/item/shield/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"QoS" = ( +/obj/effect/landmark/secequipment, +/obj/effect/turf_decal/bot{ + dir = 2 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"QoT" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot{ + dir = 2 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"QoU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/camera/motion{ + c_tag = "Non-Lethal Armory Motion Sensor"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"QoV" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"QoW" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"QoX" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"QoY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"QoZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"Qpa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"Qpb" = ( +/obj/machinery/door/poddoor/shutters{ + id = "lowsecarmory"; + name = "Non-Lethal Armoury Shutter" + }, +/obj/machinery/button/door{ + id = "lowsecarmory"; + name = "Non-Lethal Armory Shutters"; + pixel_y = 26; + req_access_txt = "3" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"Qpc" = ( +/obj/effect/landmark/secequipment, +/obj/effect/turf_decal/bot{ + dir = 2 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"Qpd" = ( +/obj/machinery/suit_storage_unit/security, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"Qpe" = ( +/obj/machinery/suit_storage_unit/security, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"Qpf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/tank_dispenser/oxygen, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"Qpg" = ( +/obj/machinery/suit_storage_unit/security, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"Qph" = ( +/obj/machinery/suit_storage_unit/security, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"Qpi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"Qpj" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"Qpk" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"Qpl" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"Qpm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/camera/motion{ + c_tag = "Armory Motion Sensor"; + dir = 2; + name = "motion-sensitive security camera" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"Qpn" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"Qpo" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"Qpp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"Qpq" = ( +/obj/structure/closet/secure_closet/lethalshots, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"Qpr" = ( +/obj/structure/table, +/obj/item/storage/toolbox/drone, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"Qps" = ( +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/security/execution/transfer) +"Qpt" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"Qpu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"Qpv" = ( +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"Qpw" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/closet/secure_closet/brig{ + id = "highseccell"; + name = "High Security Cell Locker" + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"Qpx" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/floorgrime, +/area/security/execution/transfer) +"Qpy" = ( +/turf/open/floor/plasteel/floorgrime, +/area/security/execution/transfer) +"Qpz" = ( +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/execution/transfer) +"QpA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"QpB" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/door_timer{ + id = "highseccell"; + name = "High Security Cell"; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"QpC" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/door/window/brigdoor/security/cell{ + dir = 4; + id = "highseccell"; + name = "High Security Cell Interior" + }, +/obj/machinery/door/window/brigdoor/security/cell{ + dir = 8; + id = "highseccell"; + name = "High Security Cell Exterior" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/execution/transfer) +"QpD" = ( +/turf/open/floor/plasteel/floorgrime, +/area/security/execution/transfer) +"QpE" = ( +/obj/structure/bed, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/turf/open/floor/plasteel/floorgrime, +/area/security/execution/transfer) +"QpF" = ( +/obj/machinery/flasher{ + id = "highseccell"; + pixel_x = 28 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/execution/transfer) +"QpG" = ( +/turf/open/floor/plasteel/floorgrime, +/area/security/execution/transfer) +"QpH" = ( +/turf/open/floor/plasteel/floorgrime, +/area/security/execution/transfer) +"QpI" = ( +/turf/open/floor/plasteel/floorgrime, +/area/security/execution/transfer) +"QpJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"QpK" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"QpL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door_timer{ + id = "Cell 2"; + name = "Cell 2"; + pixel_y = -32 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/red/corner, +/area/security/brig) +"QpM" = ( +/obj/machinery/door_timer{ + id = "Cell 3"; + name = "Cell 3"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner, +/area/security/brig) +"QpN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + cyclelinkeddir = 2; + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "seclobby"; + name = "security shutters" + }, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/brig) +"QpO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"QpP" = ( +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/hallway/primary/fore) +"QpQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"QpR" = ( +/obj/machinery/flasher{ + id = "Cell 2"; + pixel_x = -28 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"QpS" = ( +/obj/machinery/flasher{ + id = "Cell 3"; + pixel_x = -28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"QpT" = ( +/obj/machinery/flasher{ + id = "Cell 4"; + pixel_x = -28 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"QpU" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "briggate"; + name = "security shutters" + }, +/obj/machinery/door/window/eastright{ + name = "Brig Desk"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/black, +/area/security/brig) +"QpV" = ( +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/hallway/primary/fore) +"QpW" = ( +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/hallway/primary/fore) +"QpX" = ( +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/hallway/primary/fore) +"QpY" = ( +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/hallway/primary/fore) +"QpZ" = ( +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/hallway/primary/fore) +"Qqa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/hallway/primary/fore) +"Qqb" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/hallway/primary/fore) +"Qqc" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "briggate"; + name = "security shutters" + }, +/obj/machinery/door/window/southleft{ + base_state = "right"; + icon_state = "right"; + name = "Brig Desk"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel/black, +/area/security/brig) +"Qqd" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "seclobby"; + name = "security shutters" + }, +/turf/open/floor/plating, +/area/security/brig) +"Qqe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/hallway/primary/fore) +"Qqf" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/hallway/primary/fore) +"Qqg" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/hallway/primary/fore) +"Qqh" = ( +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/hallway/primary/fore) +"Qqi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + cyclelinkeddir = 1; + id_tag = "outerbrig"; + name = "Security Lobby"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/hallway/primary/fore) +"Qqj" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/hallway/primary/fore) +"Qqk" = ( +/turf/open/floor/plasteel/red/side, +/area/hallway/primary/fore) +"Qql" = ( +/turf/open/floor/plasteel/red/side, +/area/hallway/primary/fore) +"Qqm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/hallway/primary/fore) +"Qqn" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/hallway/primary/fore) +"Qqo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + cyclelinkeddir = 1; + id_tag = "outerbrig"; + name = "Security Lobby"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel/red/side, +/area/hallway/primary/fore) +"Qqp" = ( +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/hallway/primary/fore) +"Qqq" = ( +/obj/machinery/flasher{ + id = "brigentry"; + pixel_x = 0; + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/red/side, +/area/hallway/primary/fore) +"Qqr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/fore/secondary) +"Qqs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/maintenance/fore/secondary) +"Qqt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"Qqu" = ( /obj/structure/chair/wood{ dir = 4 }, @@ -57806,11 +58587,11 @@ icon_state = "wood-broken6" }, /area/maintenance/bar/cafe) -"Qow" = ( +"Qqv" = ( /obj/structure/table/wood, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"Qox" = ( +"Qqw" = ( /obj/structure/chair/wood{ dir = 8 }, @@ -57818,36 +58599,36 @@ icon_state = "wood-broken7" }, /area/maintenance/bar/cafe) -"Qoy" = ( +"Qqx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"Qoz" = ( +"Qqy" = ( /obj/structure/table/wood, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QoA" = ( +"Qqz" = ( /turf/open/floor/wood{ icon_state = "wood-broken5" }, /area/maintenance/bar/cafe) -"QoB" = ( +"QqA" = ( /obj/structure/table/wood, /obj/machinery/chem_dispenser/drinks/beer, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QoC" = ( +"QqB" = ( /turf/open/floor/wood{ icon_state = "wood-broken5" }, /area/maintenance/bar/cafe) -"QoD" = ( +"QqC" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QoE" = ( +"QqD" = ( /obj/structure/chair/wood{ dir = 4 }, @@ -57856,7 +58637,7 @@ }, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QoF" = ( +"QqE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -57866,7 +58647,7 @@ }, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QoG" = ( +"QqF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -57876,14 +58657,14 @@ }, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QoH" = ( +"QqG" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /obj/structure/chair/stool/bar, /turf/open/floor/wood{ icon_state = "wood-broken7" }, /area/maintenance/bar/cafe) -"QoI" = ( +"QqH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -57892,22 +58673,22 @@ icon_state = "wood-broken6" }, /area/maintenance/bar/cafe) -"QoJ" = ( +"QqI" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QoK" = ( +"QqJ" = ( /obj/structure/table/wood, /obj/machinery/chem_dispenser/drinks, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QoL" = ( +"QqK" = ( /obj/structure/chair/wood{ dir = 4 }, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QoM" = ( +"QqL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, @@ -57917,7 +58698,7 @@ icon_state = "wood-broken" }, /area/maintenance/bar/cafe) -"QoN" = ( +"QqM" = ( /obj/machinery/power/apc{ areastring = "/area/crew_quarters/theatre/mime"; dir = 2; @@ -57939,7 +58720,7 @@ icon_state = "wood-broken6" }, /area/maintenance/bar/cafe) -"QoO" = ( +"QqN" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable{ icon_state = "2-4" @@ -57949,7 +58730,7 @@ }, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QoP" = ( +"QqO" = ( /obj/machinery/power/apc{ areastring = "/area/crew_quarters/theatre/mime"; dir = 2; @@ -57968,7 +58749,7 @@ icon_state = "wood-broken6" }, /area/maintenance/bar/cafe) -"QoQ" = ( +"QqP" = ( /obj/machinery/light/small, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 @@ -57977,7 +58758,7 @@ icon_state = "wood-broken" }, /area/maintenance/bar/cafe) -"QoR" = ( +"QqQ" = ( /obj/structure/table/wood, /obj/item/storage/box/drinkingglasses, /obj/machinery/light_switch{ @@ -57985,14 +58766,14 @@ }, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QoS" = ( +"QqR" = ( /turf/closed/wall, /area/crew_quarters/theatre/mime) -"QoT" = ( +"QqS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall, /area/crew_quarters/theatre/mime) -"QoU" = ( +"QqT" = ( /obj/structure/barricade/wooden, /obj/structure/grille, /obj/structure/cable{ @@ -58000,17 +58781,17 @@ }, /turf/open/floor/wood, /area/maintenance/fore) -"QoV" = ( +"QqU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall, /area/crew_quarters/theatre/clown) -"QoW" = ( +"QqV" = ( /obj/machinery/vending/autodrobe, /turf/open/floor/plasteel/white/side{ dir = 1 }, /area/crew_quarters/theatre/mime) -"QoX" = ( +"QqW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light{ dir = 1 @@ -58019,7 +58800,7 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"QoY" = ( +"QqX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/bed, /obj/item/bedsheet/mime, @@ -58027,12 +58808,12 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"QoZ" = ( +"QqY" = ( /obj/structure/closet/secure_closet/freezer/cream_pie, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qpa" = ( +"QqZ" = ( /obj/structure/closet/crate/wooden/toy, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light{ @@ -58040,18 +58821,18 @@ }, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qpb" = ( +"Qra" = ( /obj/machinery/vending/autodrobe, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qpc" = ( +"Qrb" = ( /obj/machinery/recharger{ pixel_y = 4 }, /obj/structure/table, /turf/open/floor/plasteel/red/side, /area/security/checkpoint/customs) -"Qpd" = ( +"Qrc" = ( /obj/structure/table, /obj/item/reagent_containers/food/snacks/baguette, /obj/item/toy/dummy, @@ -58062,7 +58843,7 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qpe" = ( +"Qrd" = ( /obj/effect/landmark/start/mime, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 @@ -58071,7 +58852,7 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qpf" = ( +"Qre" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/camera{ c_tag = "Mime's Office"; @@ -58081,7 +58862,7 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qpg" = ( +"Qrf" = ( /obj/structure/mirror{ pixel_x = -28 }, @@ -58093,14 +58874,14 @@ }, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qph" = ( +"Qrg" = ( /obj/effect/landmark/start/clown, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qpi" = ( +"Qrh" = ( /obj/structure/bed, /obj/item/bedsheet/clown, /obj/machinery/airalarm{ @@ -58109,7 +58890,7 @@ }, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qpj" = ( +"Qri" = ( /obj/structure/table, /obj/item/lipstick/random{ pixel_x = -2; @@ -58127,26 +58908,26 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qpk" = ( +"Qrj" = ( /turf/open/floor/plasteel/white/side{ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qpl" = ( +"Qrk" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/white/side{ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qpm" = ( +"Qrl" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qpn" = ( +"Qrm" = ( /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qpo" = ( +"Qrn" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -58157,7 +58938,7 @@ /obj/item/bikehorn, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qpp" = ( +"Qro" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = 1; @@ -58168,7 +58949,7 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qpq" = ( +"Qrp" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -58176,7 +58957,7 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qpr" = ( +"Qrq" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -58184,7 +58965,7 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qps" = ( +"Qrr" = ( /obj/structure/table, /obj/item/device/flashlight/lamp/bananalamp, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -58198,93 +58979,93 @@ }, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qpt" = ( +"Qrs" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qpu" = ( +"Qrt" = ( /obj/structure/statue/bananium/clown, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qpv" = ( +"Qru" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/crew_quarters/theatre/clown) -"Qpw" = ( +"Qrv" = ( /obj/machinery/door/airlock/clown{ name = "Clown's Office"; req_access_txt = "46" }, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qpx" = ( +"Qrw" = ( /obj/machinery/door/airlock{ name = "Bar Storage"; req_access_txt = "25" }, /turf/open/floor/wood, /area/crew_quarters/bar) -"Qpy" = ( +"Qrx" = ( /obj/structure/reagent_dispensers/beerkeg, /turf/open/floor/wood, /area/crew_quarters/bar) -"Qpz" = ( +"Qry" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" }, /turf/open/floor/plating, /area/bridge/meeting_room) -"QpA" = ( +"Qrz" = ( /turf/open/floor/plating, /area/maintenance/department/bridge) -"QpB" = ( +"QrA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/maintenance/department/bridge) -"QpC" = ( +"QrB" = ( /turf/open/floor/plating, /area/maintenance/department/bridge) -"QpD" = ( +"QrC" = ( /turf/open/floor/plating, /area/maintenance/department/bridge) -"QpE" = ( +"QrD" = ( /turf/open/floor/plating, /area/maintenance/department/bridge) -"QpF" = ( +"QrE" = ( /turf/open/floor/plating, /area/maintenance/department/bridge) -"QpG" = ( +"QrF" = ( /turf/open/floor/plating, /area/maintenance/department/bridge) -"QpH" = ( +"QrG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/department/bridge) -"QpI" = ( +"QrH" = ( /turf/open/floor/plating, /area/maintenance/department/bridge) -"QpJ" = ( +"QrI" = ( /obj/machinery/door/airlock/maintenance{ name = "bridge maintenance access"; req_access_txt = "20" }, /turf/open/floor/plating, /area/crew_quarters/heads/captain) -"QpK" = ( +"QrJ" = ( /turf/closed/wall/r_wall, /area/maintenance/department/bridge) -"QpL" = ( +"QrK" = ( /turf/closed/wall/r_wall, /area/maintenance/department/bridge) -"QpM" = ( +"QrL" = ( /obj/machinery/light_switch{ pixel_y = 28 }, /turf/open/floor/circuit, /area/ai_monitored/nuke_storage) -"QpN" = ( +"QrM" = ( /obj/machinery/power/apc{ dir = 1; name = "Vault APC"; @@ -58296,38 +59077,38 @@ }, /turf/open/floor/circuit, /area/ai_monitored/nuke_storage) -"QpO" = ( +"QrN" = ( /obj/structure/cable{ icon_state = "2-4" }, /turf/open/floor/circuit, /area/ai_monitored/nuke_storage) -"QpP" = ( +"QrO" = ( /obj/structure/cable{ icon_state = "1-8" }, /turf/open/floor/circuit, /area/ai_monitored/nuke_storage) -"QpQ" = ( +"QrP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/closed/wall/r_wall, /area/ai_monitored/nuke_storage) -"QpR" = ( +"QrQ" = ( /obj/structure/sign/securearea, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/closed/wall/r_wall, /area/ai_monitored/nuke_storage) -"QpS" = ( +"QrR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /turf/closed/wall/r_wall, /area/ai_monitored/nuke_storage) -"QpT" = ( +"QrS" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ @@ -58335,10 +59116,10 @@ }, /turf/open/floor/plating, /area/security/checkpoint/checkpoint2) -"QpU" = ( +"QrT" = ( /turf/closed/wall/r_wall, /area/security/checkpoint/checkpoint2) -"QpV" = ( +"QrU" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ icon_state = "2-4" @@ -58353,7 +59134,7 @@ dir = 5 }, /area/security/checkpoint/checkpoint2) -"QpW" = ( +"QrV" = ( /obj/structure/closet/secure_closet/security, /obj/machinery/power/apc{ areastring = "/area/security/checkpoint/checkpoint2"; @@ -58369,7 +59150,7 @@ dir = 9 }, /area/security/checkpoint/checkpoint2) -"QpX" = ( +"QrW" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_y = 30 }, @@ -58380,7 +59161,7 @@ dir = 1 }, /area/security/checkpoint/checkpoint2) -"QpY" = ( +"QrX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "2-8" @@ -58392,7 +59173,7 @@ dir = 1 }, /area/security/checkpoint/checkpoint2) -"QpZ" = ( +"QrY" = ( /obj/structure/cable{ icon_state = "1-8" }, @@ -58400,13 +59181,13 @@ dir = 1 }, /area/security/checkpoint/checkpoint2) -"Qqa" = ( +"QrZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/red/side{ dir = 1 }, /area/security/checkpoint/checkpoint2) -"Qqb" = ( +"Qsa" = ( /obj/machinery/requests_console{ department = "Security"; departmentType = 5; @@ -58416,13 +59197,13 @@ dir = 1 }, /area/security/checkpoint/checkpoint2) -"Qqc" = ( +"Qsb" = ( /obj/machinery/computer/security, /turf/open/floor/plasteel/red/side{ dir = 5 }, /area/security/checkpoint/checkpoint2) -"Qqd" = ( +"Qsc" = ( /obj/structure/closet/wardrobe/red, /obj/machinery/light{ dir = 8 @@ -58431,10 +59212,10 @@ dir = 8 }, /area/security/checkpoint/checkpoint2) -"Qqe" = ( +"Qsd" = ( /turf/open/floor/plasteel, /area/security/checkpoint/checkpoint2) -"Qqf" = ( +"Qse" = ( /obj/machinery/computer/secure_data, /obj/machinery/light{ dir = 4 @@ -58443,7 +59224,7 @@ dir = 4 }, /area/security/checkpoint/checkpoint2) -"Qqg" = ( +"Qsf" = ( /obj/machinery/airalarm{ dir = 4; pixel_x = -22 @@ -58465,7 +59246,7 @@ dir = 10 }, /area/security/checkpoint/checkpoint2) -"Qqh" = ( +"Qsg" = ( /obj/item/paper_bin{ pixel_x = 1; pixel_y = 9 @@ -58474,7 +59255,7 @@ /obj/structure/table, /turf/open/floor/plasteel/red/side, /area/security/checkpoint/checkpoint2) -"Qqi" = ( +"Qsh" = ( /obj/item/device/radio/off, /obj/item/crowbar, /obj/item/device/assembly/flash/handheld, @@ -58488,7 +59269,7 @@ dir = 6 }, /area/security/checkpoint/checkpoint2) -"Qqj" = ( +"Qsi" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "vault"; @@ -58502,7 +59283,7 @@ }, /turf/open/floor/plating, /area/security/checkpoint/checkpoint2) -"Qqk" = ( +"Qsj" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -58511,32 +59292,32 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"Qql" = ( +"Qsk" = ( /obj/effect/spawner/lootdrop/grille_or_trash, /turf/open/floor/plating{ icon_state = "platingdmg3" }, /area/maintenance/port/aft) -"Qqm" = ( +"Qsl" = ( /obj/machinery/door/airlock{ id_tag = "MaintDorm2"; name = "Maintenance Dorm 2" }, /turf/open/floor/wood, /area/maintenance/port/aft) -"Qqn" = ( +"Qsm" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/wood, /area/maintenance/port/aft) -"Qqo" = ( +"Qsn" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/wood, /area/maintenance/port/aft) -"Qqp" = ( +"Qso" = ( /obj/structure/closet/secure_closet/personal, /turf/open/floor/wood, /area/maintenance/port/aft) -"Qqq" = ( +"Qsp" = ( /obj/machinery/light/small, /obj/structure/table/wood, /obj/machinery/atmospherics/pipe/simple/general/hidden{ @@ -58544,7 +59325,7 @@ }, /turf/open/floor/wood, /area/maintenance/port/aft) -"Qqr" = ( +"Qsq" = ( /obj/structure/bed, /obj/item/bedsheet, /obj/machinery/atmospherics/pipe/simple/general/hidden{ @@ -58552,49 +59333,49 @@ }, /turf/open/floor/wood, /area/maintenance/port/aft) -"Qqs" = ( +"Qsr" = ( /turf/closed/wall, /area/maintenance/bar) -"Qqt" = ( +"Qss" = ( /turf/closed/wall, /area/maintenance/bar) -"Qqu" = ( +"Qst" = ( /turf/closed/wall, /area/maintenance/bar) -"Qqv" = ( +"Qsu" = ( /obj/machinery/door/airlock/maintenance/abandoned{ req_access_txt = "0" }, /turf/open/floor/plating, /area/maintenance/bar) -"Qqw" = ( +"Qsv" = ( /turf/closed/wall, /area/maintenance/bar) -"Qqx" = ( +"Qsw" = ( /turf/closed/wall, /area/maintenance/bar) -"Qqy" = ( +"Qsx" = ( /turf/closed/wall, /area/maintenance/bar) -"Qqz" = ( +"Qsy" = ( /turf/closed/wall, /area/maintenance/bar) -"QqA" = ( +"Qsz" = ( /turf/open/floor/wood, /area/maintenance/bar) -"QqB" = ( +"QsA" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/open/floor/wood, /area/maintenance/bar) -"QqC" = ( +"QsB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/wood, /area/maintenance/bar) -"QqD" = ( +"QsC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -58602,7 +59383,7 @@ icon_state = "wood-broken5" }, /area/maintenance/bar) -"QqE" = ( +"QsD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -58611,7 +59392,7 @@ }, /turf/open/floor/wood, /area/maintenance/bar) -"QqF" = ( +"QsE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -58623,7 +59404,7 @@ }, /turf/open/floor/plating, /area/maintenance/bar) -"QqG" = ( +"QsF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -58632,30 +59413,30 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"QqH" = ( +"QsG" = ( /turf/closed/wall, /area/maintenance/bar) -"QqI" = ( +"QsH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood{ icon_state = "wood-broken7" }, /area/maintenance/bar) -"QqJ" = ( +"QsI" = ( /obj/structure/chair/stool/bar, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, /turf/open/floor/wood, /area/maintenance/bar) -"QqK" = ( +"QsJ" = ( /obj/structure/table/wood, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/wood, /area/maintenance/bar) -"QqL" = ( +"QsK" = ( /obj/structure/table/wood, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -58670,40 +59451,40 @@ icon_state = "wood-broken7" }, /area/maintenance/bar) -"QqM" = ( +"QsL" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/closed/wall, /area/maintenance/bar) -"QqN" = ( +"QsM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/closed/wall, /area/maintenance/bar) -"QqO" = ( +"QsN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/closed/wall, /area/maintenance/bar) -"QqP" = ( +"QsO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/closed/wall, /area/maintenance/bar) -"QqQ" = ( +"QsP" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, /turf/closed/wall, /area/maintenance/bar) -"QqR" = ( +"QsQ" = ( /turf/closed/wall, /area/maintenance/bar) -"QqS" = ( +"QsR" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -58712,7 +59493,7 @@ }, /turf/open/floor/wood, /area/maintenance/bar) -"QqT" = ( +"QsS" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -58720,38 +59501,38 @@ icon_state = "wood-broken6" }, /area/maintenance/bar) -"QqU" = ( +"QsT" = ( /obj/structure/chair/stool/bar, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, /area/maintenance/bar) -"QqV" = ( +"QsU" = ( /obj/structure/table/wood, /turf/open/floor/wood{ icon_state = "wood-broken5" }, /area/maintenance/bar) -"QqW" = ( +"QsV" = ( /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/wood, /area/maintenance/bar) -"QqX" = ( +"QsW" = ( /obj/machinery/chem_dispenser/drinks/beer, /obj/structure/table/wood, /turf/open/floor/wood, /area/maintenance/bar) -"QqY" = ( +"QsX" = ( /turf/closed/wall, /area/maintenance/bar) -"QqZ" = ( +"QsY" = ( /obj/item/restraints/handcuffs/fake, /obj/effect/decal/cleanable/blood/old, /obj/effect/spawner/lootdrop/minor/kittyears_or_rabbitears, /turf/open/floor/plating, /area/maintenance/bar) -"Qra" = ( +"QsZ" = ( /obj/item/shard, /obj/item/wirecutters, /obj/item/wallframe/camera, @@ -58759,14 +59540,14 @@ icon_state = "panelscorched" }, /area/maintenance/bar) -"Qrb" = ( +"Qta" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"Qrc" = ( +"Qtb" = ( /turf/closed/wall, /area/maintenance/bar) -"Qrd" = ( +"Qtc" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -58777,22 +59558,22 @@ icon_state = "wood-broken" }, /area/maintenance/bar) -"Qre" = ( +"Qtd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/maintenance/bar) -"Qrf" = ( +"Qte" = ( /obj/structure/chair/stool/bar, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood{ icon_state = "wood-broken7" }, /area/maintenance/bar) -"Qrg" = ( +"Qtf" = ( /obj/structure/table/wood, /turf/open/floor/wood, /area/maintenance/bar) -"Qrh" = ( +"Qtg" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -58800,14 +59581,14 @@ icon_state = "wood-broken7" }, /area/maintenance/bar) -"Qri" = ( +"Qth" = ( /obj/machinery/vending/boozeomat, /turf/open/floor/wood, /area/maintenance/bar) -"Qrj" = ( +"Qti" = ( /turf/closed/wall, /area/maintenance/bar) -"Qrk" = ( +"Qtj" = ( /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; name = "2maintenance loot spawner" @@ -58816,7 +59597,7 @@ /obj/item/device/electropack/shockcollar, /turf/open/floor/plating, /area/maintenance/bar) -"Qrl" = ( +"Qtk" = ( /obj/structure/bed, /obj/item/bedsheet/grey, /obj/effect/decal/cleanable/semen{ @@ -58828,11 +59609,11 @@ icon_state = "platingdmg3" }, /area/maintenance/bar) -"Qrm" = ( +"Qtl" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"Qrn" = ( +"Qtm" = ( /obj/machinery/door/airlock/maintenance/abandoned{ name = "Incinerator Access"; req_access_txt = "12" @@ -58842,30 +59623,30 @@ }, /turf/open/floor/plating, /area/maintenance/bar) -"Qro" = ( +"Qtn" = ( /turf/open/floor/wood, /area/maintenance/bar) -"Qrp" = ( +"Qto" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood{ icon_state = "wood-broken5" }, /area/maintenance/bar) -"Qrq" = ( +"Qtp" = ( /obj/structure/chair/stool/bar, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, /turf/open/floor/wood, /area/maintenance/bar) -"Qrr" = ( +"Qtq" = ( /obj/structure/table/wood, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/wood, /area/maintenance/bar) -"Qrs" = ( +"Qtr" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, @@ -58874,15 +59655,15 @@ }, /turf/open/floor/wood, /area/maintenance/bar) -"Qrt" = ( +"Qts" = ( /obj/machinery/chem_dispenser/drinks, /obj/structure/table/wood, /turf/open/floor/wood, /area/maintenance/bar) -"Qru" = ( +"Qtt" = ( /turf/closed/wall, /area/maintenance/bar) -"Qrv" = ( +"Qtu" = ( /obj/item/lighter/greyscale, /obj/effect/decal/cleanable/semen{ desc = "Blech."; @@ -58892,32 +59673,32 @@ icon_state = "panelscorched" }, /area/maintenance/bar) -"Qrw" = ( +"Qtv" = ( /obj/effect/spawner/lootdrop/maintenance, /obj/effect/decal/cleanable/blood/old, /obj/item/device/assembly/signaler, /turf/open/floor/plating, /area/maintenance/bar) -"Qrx" = ( +"Qtw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"Qry" = ( +"Qtx" = ( /turf/closed/wall, /area/maintenance/bar) -"Qrz" = ( +"Qty" = ( /obj/effect/spawner/lootdrop/keg, /turf/open/floor/wood, /area/maintenance/bar) -"QrA" = ( +"Qtz" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/maintenance/bar) -"QrB" = ( +"QtA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, /area/maintenance/bar) -"QrC" = ( +"QtB" = ( /obj/machinery/power/apc{ areastring = "/area/maintenance/bar"; dir = 2; @@ -58930,37 +59711,37 @@ icon_state = "wood-broken7" }, /area/maintenance/bar) -"QrD" = ( +"QtC" = ( /turf/closed/wall, /area/maintenance/bar) -"QrE" = ( +"QtD" = ( /turf/closed/wall, /area/maintenance/bar) -"QrF" = ( +"QtE" = ( /obj/structure/falsewall, /turf/open/floor/plating, /area/maintenance/bar) -"QrG" = ( +"QtF" = ( /turf/closed/wall, /area/maintenance/bar) -"QrH" = ( +"QtG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"QrI" = ( +"QtH" = ( /turf/closed/wall, /area/maintenance/bar) -"QrJ" = ( +"QtI" = ( /turf/closed/wall, /area/maintenance/bar) -"QrK" = ( +"QtJ" = ( /obj/machinery/door/airlock/maintenance/abandoned{ req_access_txt = "0" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/maintenance/bar) -"QrL" = ( +"QtK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/airlock/maintenance/abandoned{ req_access_txt = "0" @@ -58969,49 +59750,49 @@ icon_state = "wood-broken" }, /area/maintenance/bar) -"QrM" = ( +"QtL" = ( /obj/structure/sign/poster/official/no_erp, /turf/closed/wall, /area/maintenance/bar) -"QrN" = ( +"QtM" = ( /turf/closed/wall, /area/maintenance/bar) -"QrO" = ( +"QtN" = ( /obj/machinery/vending/clothing, /turf/open/floor/wood, /area/maintenance/bar) -"QrP" = ( +"QtO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"QrQ" = ( +"QtP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/maintenance/bar) -"QrR" = ( +"QtQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, /area/maintenance/bar) -"QrS" = ( +"QtR" = ( /obj/structure/chair/stool, /turf/open/floor/wood{ icon_state = "wood-broken6" }, /area/maintenance/bar) -"QrT" = ( +"QtS" = ( /turf/open/floor/wood{ icon_state = "wood-broken6" }, /area/maintenance/bar) -"QrU" = ( +"QtT" = ( /obj/machinery/vending/autodrobe, /turf/open/floor/wood, /area/maintenance/bar) -"QrV" = ( +"QtU" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"QrW" = ( +"QtV" = ( /obj/structure/sign/poster/random{ pixel_x = -32 }, @@ -59022,34 +59803,34 @@ icon_state = "wood-broken7" }, /area/maintenance/bar) -"QrX" = ( +"QtW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/maintenance/bar) -"QrY" = ( +"QtX" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood{ icon_state = "wood-broken" }, /area/maintenance/bar) -"QrZ" = ( +"QtY" = ( /obj/structure/table/wood/poker, /turf/open/floor/wood{ icon_state = "wood-broken7" }, /area/maintenance/bar) -"Qsa" = ( +"QtZ" = ( /obj/structure/table/wood/poker, /obj/item/storage/pill_bottle/dice, /turf/open/floor/wood, /area/maintenance/bar) -"Qsb" = ( +"Qua" = ( /turf/open/floor/wood{ icon_state = "wood-broken5" }, /area/maintenance/bar) -"Qsc" = ( +"Qub" = ( /obj/structure/table/wood/bar, /obj/item/paper_bin{ pixel_x = -3; @@ -59061,58 +59842,58 @@ }, /turf/open/floor/wood, /area/maintenance/bar) -"Qsd" = ( +"Quc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"Qse" = ( +"Qud" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/wood, /area/maintenance/bar) -"Qsf" = ( +"Que" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/open/floor/wood, /area/maintenance/bar) -"Qsg" = ( +"Quf" = ( /obj/structure/table/wood/poker, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/wood, /area/maintenance/bar) -"Qsh" = ( +"Qug" = ( /obj/structure/table/wood/poker, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/wood, /area/maintenance/bar) -"Qsi" = ( +"Quh" = ( /obj/structure/table/wood/poker, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/wood, /area/maintenance/bar) -"Qsj" = ( +"Qui" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/wood, /area/maintenance/bar) -"Qsk" = ( +"Quj" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/open/floor/wood, /area/maintenance/bar) -"Qsl" = ( +"Quk" = ( /obj/structure/table/wood/bar, /obj/machinery/light{ dir = 4 @@ -59121,21 +59902,21 @@ icon_state = "wood-broken6" }, /area/maintenance/bar) -"Qsm" = ( +"Qul" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"Qsn" = ( +"Qum" = ( /turf/open/floor/wood{ icon_state = "wood-broken5" }, /area/maintenance/bar) -"Qso" = ( +"Qun" = ( /obj/structure/table/wood/poker, /obj/item/coin/iron, /turf/open/floor/wood, /area/maintenance/bar) -"Qsp" = ( +"Quo" = ( /obj/structure/table/wood/bar, /obj/item/reagent_containers/spray/cleaner, /obj/structure/sign/poster/random{ @@ -59143,29 +59924,29 @@ }, /turf/open/floor/wood, /area/maintenance/bar) -"Qsq" = ( +"Qup" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"Qsr" = ( +"Quq" = ( /obj/effect/spawner/lootdrop/keg, /turf/open/floor/wood{ icon_state = "wood-broken7" }, /area/maintenance/bar) -"Qss" = ( +"Qur" = ( /obj/structure/sign/poster/random{ pixel_y = -32 }, /turf/open/floor/wood, /area/maintenance/bar) -"Qst" = ( +"Qus" = ( /obj/structure/chair/stool, /turf/open/floor/wood{ icon_state = "wood-broken" }, /area/maintenance/bar) -"Qsu" = ( +"Qut" = ( /obj/structure/chair/stool, /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; @@ -59173,7 +59954,7 @@ }, /turf/open/floor/wood, /area/maintenance/bar) -"Qsv" = ( +"Quu" = ( /obj/structure/sign/poster/random{ pixel_y = -32 }, @@ -59181,35 +59962,35 @@ icon_state = "wood-broken7" }, /area/maintenance/bar) -"Qsw" = ( +"Quv" = ( /obj/machinery/vending/kink, /turf/open/floor/wood, /area/maintenance/bar) -"Qsx" = ( +"Quw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"Qsy" = ( +"Qux" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/closed/wall/r_wall, /area/engine/engine_smes) -"Qsz" = ( +"Quy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "1-2" }, /turf/closed/wall/r_wall, /area/engine/engine_smes) -"QsA" = ( +"Quz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "1-2" }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QsB" = ( +"QuA" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; @@ -59222,7 +60003,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QsC" = ( +"QuB" = ( /obj/machinery/camera{ c_tag = "Gravity Generator Foyer" }, @@ -59238,17 +60019,17 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QsD" = ( +"QuC" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "1-2" }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QsE" = ( +"QuD" = ( /turf/closed/wall, /area/space) -"QsF" = ( +"QuE" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -59261,11 +60042,11 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QsG" = ( +"QuF" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QsH" = ( +"QuG" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -59277,7 +60058,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QsI" = ( +"QuH" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, @@ -59286,30 +60067,30 @@ }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QsJ" = ( +"QuI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "1-2" }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QsK" = ( +"QuJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QsL" = ( +"QuK" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QsM" = ( +"QuL" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QsN" = ( +"QuM" = ( /obj/item/device/radio/intercom{ broadcasting = 0; listening = 1; @@ -59321,19 +60102,19 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QsO" = ( +"QuN" = ( /obj/machinery/power/terminal, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /obj/structure/cable, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QsP" = ( +"QuO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QsQ" = ( +"QuP" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -24 @@ -59345,11 +60126,11 @@ /obj/item/pen/blue, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QsR" = ( +"QuQ" = ( /obj/machinery/holopad, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QsS" = ( +"QuR" = ( /obj/machinery/power/smes{ charge = 5e+006 }, @@ -59358,7 +60139,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QsT" = ( +"QuS" = ( /obj/machinery/power/apc{ dir = 8; name = "Gravity Generator APC"; @@ -59377,28 +60158,28 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QsU" = ( +"QuT" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/cable{ icon_state = "4-8" }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QsV" = ( +"QuU" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/cable{ icon_state = "4-8" }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QsW" = ( +"QuV" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/cable{ icon_state = "4-8" }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QsX" = ( +"QuW" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 }, @@ -59414,7 +60195,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QsY" = ( +"QuX" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; @@ -59427,7 +60208,7 @@ }, /turf/open/floor/plating, /area/engine/gravity_generator) -"QsZ" = ( +"QuY" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ icon_state = "0-8" @@ -59437,7 +60218,7 @@ }, /turf/open/floor/plating, /area/engine/gravity_generator) -"Qta" = ( +"QuZ" = ( /obj/machinery/door/airlock/glass_engineering{ name = "Gravity Generator"; req_access_txt = "11"; @@ -59448,7 +60229,7 @@ }, /turf/open/floor/plasteel/black, /area/engine/gravity_generator) -"Qtb" = ( +"Qva" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ icon_state = "0-8" @@ -59458,7 +60239,7 @@ }, /turf/open/floor/plating, /area/engine/gravity_generator) -"Qtc" = ( +"Qvb" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; @@ -59472,19 +60253,19 @@ /obj/structure/cable, /turf/open/floor/plating, /area/engine/gravity_generator) -"Qtd" = ( +"Qvc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"Qte" = ( +"Qvd" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/floor/plasteel/black, /area/engine/gravity_generator) -"Qtf" = ( +"Qve" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -59495,7 +60276,7 @@ }, /turf/open/floor/plasteel/black, /area/engine/gravity_generator) -"Qtg" = ( +"Qvf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -73747,7 +74528,7 @@ auT aBI aDf aEK -Qpc +Qrb aHy ayl aKk @@ -78680,7 +79461,7 @@ bCq bJP bCq bTs -Qqp +Qso bCq cbj bLv @@ -78936,8 +79717,8 @@ aaa bCq bHE bCq -Qqn -Qqq +Qsm +Qsp bCq cbk bLv @@ -79194,7 +79975,7 @@ bLv bPR bRc bSo -Qqr +Qsq bCq bVy bLv @@ -79396,14 +80177,14 @@ apQ avY axo ayB -Qov -QoC -QoL -QoS -QoW -Qpd -Qpj -Qpp +Qqu +QqB +QqK +QqR +QqV +Qrc +Qri +Qro aKu aLF aLF @@ -79653,14 +80434,14 @@ aoV avY axo ayB -Qow -QoD -QoM -QoT -QoX -Qpe -Qpk -Qpq +Qqv +QqC +QqL +QqS +QqW +Qrd +Qrj +Qrp aKt aLE bDe @@ -79910,14 +80691,14 @@ apQ avY axo ayB -Qox -QoE -QoN +Qqw +QqD +QqM aDs -QoY -Qpf -Qpl -Qpr +QqX +Qre +Qrk +Qrq aKu aLE aLE @@ -79964,7 +80745,7 @@ aaa bCq bPV bCq -Qqo +Qsn bTw bCq bVD @@ -80168,7 +80949,7 @@ avZ axp ayC azH -QoF +QqE aBS aDr aDr @@ -80220,7 +81001,7 @@ aoV aoV bCq bPW -Qqm +Qsl bSp bTv bCq @@ -80424,10 +81205,10 @@ aqR awb axo ayA -Qoy -QoG -QoO -QoU +Qqx +QqF +QqN +QqT apS apS apS @@ -80476,7 +81257,7 @@ bGi aoV aoV bCq -Qql +Qsk bCq bCq bTu @@ -80682,7 +81463,7 @@ awa axq ayD azI -QoH +QqG aBU aDt aDt @@ -80938,15 +81719,15 @@ aag avY axo ayB -Qoz -QoI -QoP +Qqy +QqH +QqO aDv -QoZ -Qpg -Qpm -Qps -Qpv +QqY +Qrf +Qrl +Qrr +Qru aLE aMS aOt @@ -80993,14 +81774,14 @@ bCq bPY cOw bCq -Qqs -Qqz -QqH -QqR -Qrc -Qrn -Qry -QrI +Qsr +Qsy +QsG +QsQ +Qtb +Qtm +Qtx +QtH cjn cjn cjn @@ -81195,15 +81976,15 @@ aag avY axo ayB -QoA -QoJ -QoQ -QoV -Qpa -Qph -Qpn -Qpt -Qpw +Qqz +QqI +QqP +QqU +QqZ +Qrg +Qrm +Qrs +Qrv aLE aMS aOi @@ -81250,19 +82031,19 @@ bCq bPX bRg bRg -Qqt -QqA +Qss +Qsz bVG -QqS -Qrd -Qro -Qrz -QrJ +QsR +Qtc +Qtn +Qty +QtI bcU -QrW +QtV bVG bcU -Qsr +Quq cjn bUs bLv @@ -81278,16 +82059,16 @@ aaa aaa aaf aaf -QsE +QuD aaa -QsK +QuJ bij bij bij bij bij bij -Qtd +Qvc btG btG aaa @@ -81452,14 +82233,14 @@ aag avY axo ayB -QoB -QoK -QoR +QqA +QqJ +QqQ aDt -Qpb -Qpi -Qpo -Qpu +Qra +Qrh +Qrn +Qrt aKx aLE aMS @@ -81507,19 +82288,19 @@ bLv bQa bHE bHE -Qqu -QqB -QqI -QqT -Qre -Qrp -QrA -QrK -QrQ -QrX -Qse -Qsn -Qss +Qst +QsA +QsH +QsS +Qtd +Qto +Qtz +QtJ +QtP +QtW +Qud +Qum +Qur cjn bUs bLv @@ -81532,19 +82313,19 @@ cjJ cjJ cjJ cjJ -Qsy +Qux bij bij crn bij -QsL -QsQ -QsT -QsY +QuK +QuP +QuS +QuX bkI bgN bgN -Qte +Qvd bgN btG Qoi @@ -81764,17 +82545,17 @@ bLv bPZ bHE bHE -Qqv -QqC -QqJ -QqU -Qrf -Qrq -QrB -QrL -QrR -QrY -Qsf +Qsu +QsB +QsI +QsT +Qte +Qtp +QtA +QtK +QtQ +QtX +Que bdV bcU cjn @@ -81791,13 +82572,13 @@ cov cpj cpS btG -QsB -QsF +QuA +QuE btG -QsM +QuL bsc -QsU -QsZ +QuT +QuY bgN bih big @@ -82021,19 +82802,19 @@ bLv bHE bHE bSs -Qqw -QqD -QqK -QqV -Qrg -Qrr +Qsv +QsC +QsJ +QsU +Qtf +Qtq bcU -QrM -QrS +QtL +QtR cCa -Qsg +Quf cCa -Qst +Qus cjn bUs bLv @@ -82049,12 +82830,12 @@ cpl cpU btF bsc -QsG +QuF btF bsc -QsR -QsV -Qta +QuQ +QuU +QuZ bgN big bgN @@ -82278,19 +83059,19 @@ bCq bHE bRh bSr -Qqx -QqE -QqL -QqW -Qrh -Qrs -QrC -QrN +Qsw +QsD +QsK +QsV +Qtg +Qtr +QtB +QtM bdV -QrZ -Qsh +QtY +Qug cCa -Qsu +Qut cjn bUs bLv @@ -82305,13 +83086,13 @@ cow cpk cpT btG -QsC -QsH +QuB +QuG btG -QsN +QuM bsc -QsW -Qtb +QuV +Qva bgN bii big @@ -82456,11 +83237,11 @@ abc abc afu abc -aaa -aaa -aaa -aaa -aaa +abc +abc +abc +abc +Qoi aaa akD akD @@ -82535,18 +83316,18 @@ bCq bOK bCq bCq -Qqy -QqF -QqM -QqX -Qri -Qrt -QrD +Qsx +QsE +QsL +QsW +Qth +Qts +QtC cjn bdV -Qsa -Qsi -Qso +QtZ +Quh +Qun bdV cjn bUs @@ -82560,19 +83341,19 @@ cnq cnP coz cpn -Qsz -QsA -QsD -QsI -QsJ -QsO -QsS -QsX -Qtc +Quy +Quz +QuC +QuH +QuI +QuN +QuR +QuW +Qvb bmw bgN bgN -Qtf +Qve bgN btG aaa @@ -82712,13 +83493,13 @@ abc aea aeH aft +Qps +Qpt +Qpu +QpA abc -aaa -aaa -aaa -aaa -aaa -aaa +Qoi +Qoi aaa aiU aln @@ -82793,18 +83574,18 @@ bHE bLv aaa bLv -QqG -QqN -QqY -Qrj -Qru -QrE +QsF +QsM +QsX +Qti +Qtt +QtD bcU bcU bdV -Qsj +Qui bdV -Qsv +Quu cjn bUs bLv @@ -82822,14 +83603,14 @@ aaf aaf Qol aaa -QsP +QuO bgO bgO bgO bgO bgO bgO -Qtg +Qvf btG btG Qoi @@ -82971,10 +83752,10 @@ aeJ afw abc abc -aaf -aaa -aaf -aaf +Qpv +QpB +abc +Qoi aaf aaf aiU @@ -83051,15 +83832,15 @@ bLv aaf bLv bUt -QqO -QqZ -Qrk -Qrv -QrF +QsN +QsY +Qtj +Qtu +QtE bcU -QrT -Qsb -Qsk +QtS +Qua +Quj bcU bcU cjn @@ -83227,11 +84008,11 @@ aeb aeI afv agf -abc -aaf -aaa -aaa -aiT +afA +Qpw +QpC +afA +aiV aiT aiV akG @@ -83308,17 +84089,17 @@ bCq aaa bLv bUt -QqP -Qra -Qrl -Qrw -QrG -QrO -QrU -Qsc -Qsl -Qsp -Qsw +QsO +QsZ +Qtk +Qtv +QtF +QtN +QtT +Qub +Quk +Quo +Quv cjn bUs bCq @@ -83484,11 +84265,11 @@ aee aeL afy agh -abc -aaf -aaa -aaf -aiT +afA +Qpx +QpD +QpG +aiV ajs akb akI @@ -83565,17 +84346,17 @@ aaa aaa bTB bUv -QqQ -Qrb -Qrm -Qrx -QrH -QrP -QrV -Qsd -Qsm -Qsq -Qsx +QsP +Qta +Qtl +Qtw +QtG +QtO +QtU +Quc +Qul +Qup +Quw car bUs bCq @@ -83741,11 +84522,11 @@ aed aeK afx agg -abc -aaf -aaa -aaa -aiU +afA +Qpy +QpE +QpH +aiV ajr aka akH @@ -83999,10 +84780,10 @@ aeN afA afA afA -aaf -aaa -aaa -aiU +Qpz +QpF +QpI +aiV aju akd akK @@ -85805,11 +86586,11 @@ agj ajz aki akM -alv +aly amf amQ +aiX anw -anz aov cCi arT @@ -86063,10 +86844,10 @@ auj akl akO alx -alx -amR +QpQ +amg +aiX anw -anz aox cCi cCi @@ -86318,11 +87099,11 @@ aid agj aiZ akk -akN -alw -amg -amR -anw +agj +agj +agj +agj +aiX anR aow apg @@ -86573,14 +87354,14 @@ ahP ahP aiF agj -aja -ajG -akQ -agj -agj -amS -anx -anz +ajD +akm +akM +aly +QpR +amQ +aiX +anw aov aph aph @@ -86830,14 +87611,14 @@ ahD aiw aiO agj -ajD -akm +aja +akl akP -aly +alx amh -amR +ami +aiX anw -anz aov aph aob @@ -87088,13 +87869,13 @@ agP agP aiz ajg -akl -akR -alx -alx -amR +QpL +agj +agj +agj +agj +aiX anw -anz aov aph aoc @@ -87131,7 +87912,7 @@ bbk bbk bbk bfs -Qpz +Qry aZM aZM aaf @@ -87326,7 +88107,7 @@ aaa aaa aaf aaf -aaa +Qov aaf aai abi @@ -87348,10 +88129,10 @@ ajb ajF akN alw -ami -amR +QpS +amQ +aiX anw -anz aov api ata @@ -87388,15 +88169,15 @@ bce bdf beb aYv -QpA -QpK +Qrz +QrJ aaf aaf Qoi aaa Qoi aaa -QpU +QrT bsb bsb bsb @@ -87583,7 +88364,7 @@ aaf aaf aaf aaf -aaf +abY aaR aaZ aaZ @@ -87601,14 +88382,14 @@ agn agR agn ajc -ajI -ako +QpJ +akv akQ -agj -agj -amS -any -anz +QpO +aww +amk +aiX +Qqg aov aph aqb @@ -87645,18 +88426,18 @@ aZR bbm bec bfu -QpB +QrA aBb aBb bmu aBb aBb -QpQ +QrP aaa bsb -QpW -Qqd -Qqg +QrV +Qsc +Qsf bsb aXf aJq @@ -87840,17 +88621,17 @@ aaa aaa aaa aaf -aaa -aaf -aaf -aaT +Qow aaf aaZ -abm +QoK +QoU +Qpd +aaZ cpg +Qpq acv adi -adi aaZ aeW agQ @@ -87859,13 +88640,13 @@ ahQ aiI aiH ajB -akm -akP -aly -amj -amR +QpM +agj +agj +agj +agj +aiX anw -anz aov aph aph @@ -87902,7 +88683,7 @@ aZR aZR aZR bft -QpC +QrB aBa aBT bmv @@ -87911,13 +88692,13 @@ aGb bpg aaa bsb -QpX +QrW buP bwm bxH aXf aJq -Qqk +Qsj bCs bCs bCs @@ -88097,17 +88878,17 @@ aaa aaa aaa aaf -aaa +Qox aaf -aaf -aaT -aaa aaZ -abH +QoL +QoV +Qpe +aaZ acl -ajC +cxA acL -adi +Qpr aaZ agp agT @@ -88115,14 +88896,14 @@ ahx ahS aiK ajc -ajI -akl +QpK +akm akT -aww -alx -amR +aly +QpT +amQ +aiX anw -anz aov apk anw @@ -88159,16 +88940,16 @@ bbm bdh bee bfv -QpD +QrC aBa -QpM +QrL aEM aEM aGa bph bqF bsd -QpY +QrX buQ bwn bxI @@ -88354,14 +89135,14 @@ aaa aaa aaa aaf -aaa +Qoy aaf -aaf -abY -aaa aaZ -abn -ack +QoM +QoW +Qpf +aaZ +Qpl adk adK cqG @@ -88373,12 +89154,12 @@ ahR aiJ ajc ajI -akk +akl akS -alw -amk -amR -anw +alx +amh +amp +aiX anS aoy apj @@ -88416,19 +89197,19 @@ bcf bdg bed bfv -QpE +QrD aBa aBV alu -QpO +QrN bnU aHG bqE -QpV -QpZ -Qqe -Qqh -Qqj +QrU +QrY +Qsd +Qsg +Qsi aNr bAf bBp @@ -88611,14 +89392,14 @@ aaa aaa aaa aaf -aaa +Qoz aaf -aaf -aaT -aaa aaZ -abJ -ack +QoN +QoX +Qpg +aaZ +Qpm acM adQ cwM @@ -88631,12 +89412,12 @@ aiL ajc ajI akq -akQ agj agj -amS -anx -anz +agj +agj +aiX +Qqh aoz apm aqd @@ -88673,16 +89454,16 @@ bbm bdh bef bfv -QpF +QrE aBa -QpN +QrM aEO -QpP +QrO bnV -QpR -QpT +QrQ +QrS bsf -Qqa +QrZ buS bwp bxK @@ -88868,14 +89649,14 @@ aaa aaa aaa aaf -aaa +QoA aaf -aaf -aaT -aaa aaZ -abI -ack +QoO +QoY +Qph +aaZ +Qpn coS aet cxA @@ -88892,9 +89673,9 @@ akU alz aml amT -anw -anz -aoz +aiX +Qqi +Qqo apl aqc aqc @@ -88930,7 +89711,7 @@ aZR aZR aZR bfw -QpG +QrF aBa aBW bjy @@ -88939,7 +89720,7 @@ aGe bpi aaa bsb -Qqb +Qsa buR aFM bxJ @@ -89125,14 +89906,14 @@ aaa aaa aaa aaf -aaa +QoB aaf -aaf -abY -aaa aaZ +QoP +QoZ +Qpi abQ -ack +Qpo adj arc blT @@ -89149,9 +89930,9 @@ akV alB amn amV -anw -anz -aoz +Qqc +anB +Qqp aod aqf ahT @@ -89187,18 +89968,18 @@ aZR bbm beh bfx -QpH +QrG aBc aBc bgR aBc aBc -QpS +QrR aaa bsb -Qqc -Qqf -Qqi +Qsb +Qse +Qsh bsb aJq aJq @@ -89382,14 +90163,14 @@ aaa aaa aaa aaf -aaa +QoC aaf -aaf -abY -aaa aaZ -abN +QoQ ack +Qpj +abN +Qpp bkA acF aes @@ -89402,14 +90183,14 @@ aIF ajc ajI akp -akQ +aiX alA +QpU amm -amU -anw +Qqd anT -aoA -apn +anT +aod aqe arf arf @@ -89444,8 +90225,8 @@ bcg aZU beg aYB -QpI -QpL +QrH +QrK aaf aaf Qoi @@ -89639,12 +90420,12 @@ aaa aaa aaa aaf -aaa -aaf -aaf -aaT +QoD aaf aaZ +QoR +Qpa +Qpk aci acm cpA @@ -89659,12 +90440,12 @@ agn aje ajJ akr -akX -alC +aiX alC +QpV +amX +amX amX -anz -anz aoB aod aqe @@ -89701,7 +90482,7 @@ bbp bbp bbp bfz -QpJ +QrI aZV aZV aaf @@ -89896,14 +90677,14 @@ aaa aaa aaf aaf -aaf -aaf -aaa -adR -abo aaZ aaZ aaZ +aaZ +Qpb +avB +aaZ +aaZ acT adl aaZ @@ -89915,16 +90696,16 @@ aii agn ajd ajI -ahY -akW -aiG +akp +aiX +QpP amo -amW -anz -anz -aoz -aod -aqe +amX +amX +Qqj +Qqq +Qqr +Qqt arf apY ate @@ -90153,14 +90934,14 @@ aaa aaa aaa aaa -aaf -aaf -aaa abp -abP -aco +QoF +QoH +abO +abO +abO acO -abl +abO abO abO afc @@ -90173,12 +90954,12 @@ adR aiQ ajI akt -akQ -agj -agj -aiX +QpN +anw +QpW +QpY anB -anz +Qqk aoD aod aqe @@ -90410,9 +91191,6 @@ aaa aaa aaa aaa -aaa -aaf -aaa abo abO abO @@ -90420,6 +91198,9 @@ abO abO abO abO +abO +abO +abO afb abo afg @@ -90431,11 +91212,11 @@ ajf ajK aks akY -alx -amp -aiX anA -anz +QpX +QpZ +amo +Qql aoC aod aqe @@ -90667,15 +91448,15 @@ aaa aaa aaa aaa -aaa -aaf -aaa abp abO +abO +QoS +Qpc acq acq acq -acq +abO aew afe afS @@ -90686,13 +91467,13 @@ aia aiP aiR ajB -akv -ala +akp +aiX akz alf -aiX -anA -anz +Qqa +Qqe +Qqm aoF apo aqh @@ -90924,11 +91705,11 @@ aaa aaa aaa aaf -aaf -aaf -aaf abo abO +abO +abO +abO acp acP acP @@ -90944,14 +91725,14 @@ adR aiG ajL aku -akZ +aiX alE amq -aiX -anA -anz +Qqb +Qqf +Qqn aoE -aod +Qqs aqg aun asf @@ -91181,15 +91962,15 @@ aaa aaa aaa aaa -aaa -aaa -aaf abp +aco +QoI +QoT abR abP abP abP -abP +abl abp abp abp @@ -91438,9 +92219,9 @@ aaa aaa aaf aaf -aaf -aaf -aaf +QoE +QoG +QoJ abq abq abq @@ -95853,7 +96634,7 @@ aGJ aIe aJC aJC -Qpx +Qrw aJC aJC aJC @@ -97138,7 +97919,7 @@ aGL aIg aJH aKR -Qpy +Qrx aMB aJC aRA From a8d91c08100bf14b9ed204e0dac121fe9822b471 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 23 Oct 2017 13:49:42 -0500 Subject: [PATCH 093/227] Automatic changelog generation for PR #3557 [ci skip] --- html/changelogs/AutoChangeLog-pr-3557.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3557.yml diff --git a/html/changelogs/AutoChangeLog-pr-3557.yml b/html/changelogs/AutoChangeLog-pr-3557.yml new file mode 100644 index 0000000000..9bf16022d7 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3557.yml @@ -0,0 +1,4 @@ +author: "CitadelStationBot" +delete-after: True +changes: + - rscadd: "Wizards may now shapeshift into viper spiders." From 32bafcf090812bbee924fe416ba2173c9159bbf3 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 23 Oct 2017 13:50:36 -0500 Subject: [PATCH 094/227] Automatic changelog generation for PR #3559 [ci skip] --- html/changelogs/AutoChangeLog-pr-3559.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3559.yml diff --git a/html/changelogs/AutoChangeLog-pr-3559.yml b/html/changelogs/AutoChangeLog-pr-3559.yml new file mode 100644 index 0000000000..252225cc5f --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3559.yml @@ -0,0 +1,4 @@ +author: "More Robust Than You" +delete-after: True +changes: + - bugfix: "Fixes champrojector camera bugs" From 78e0e83bf2d06e42bf375bfd16836189273389e6 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 23 Oct 2017 14:07:05 -0500 Subject: [PATCH 095/227] Automatic changelog generation for PR #3567 [ci skip] --- html/changelogs/AutoChangeLog-pr-3567.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3567.yml diff --git a/html/changelogs/AutoChangeLog-pr-3567.yml b/html/changelogs/AutoChangeLog-pr-3567.yml new file mode 100644 index 0000000000..746a23b1e6 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3567.yml @@ -0,0 +1,4 @@ +author: "Toriate" +delete-after: True +changes: + - bugfix: "fixed Otusian, Wolf, Skunk, and Big Cat ears" From 9e47e120ce055dde7ae0acc77f17a48587c3f22d Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 23 Oct 2017 14:08:13 -0500 Subject: [PATCH 096/227] Automatic changelog generation for PR #3570 [ci skip] --- html/changelogs/AutoChangeLog-pr-3570.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3570.yml diff --git a/html/changelogs/AutoChangeLog-pr-3570.yml b/html/changelogs/AutoChangeLog-pr-3570.yml new file mode 100644 index 0000000000..5399805908 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3570.yml @@ -0,0 +1,4 @@ +author: "Naksu" +delete-after: True +changes: + - bugfix: "Grinders will now grind grown items like cocoa pods again" From 9367eb23c5695df33f472bb4b47fa0af66b561d4 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Mon, 23 Oct 2017 14:15:20 -0500 Subject: [PATCH 097/227] Update iv_drip.dm --- code/game/machinery/iv_drip.dm | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/code/game/machinery/iv_drip.dm b/code/game/machinery/iv_drip.dm index 2bf3fceb3a..6c9e11ffa4 100644 --- a/code/game/machinery/iv_drip.dm +++ b/code/game/machinery/iv_drip.dm @@ -10,25 +10,14 @@ var/mob/living/carbon/attached = null var/mode = IV_INJECTING var/obj/item/reagent_containers/beaker = null -<<<<<<< HEAD - var/list/drip_containers = list(/obj/item/reagent_containers/blood, - /obj/item/reagent_containers/food, - /obj/item/reagent_containers/glass) -======= var/static/list/drip_containers = typecacheof(list(/obj/item/reagent_containers/blood, /obj/item/reagent_containers/food, /obj/item/reagent_containers/glass)) ->>>>>>> 8e434b7... Removes duplicate typecaches (#31883) /obj/machinery/iv_drip/Initialize() . = ..() update_icon() -<<<<<<< HEAD - drip_containers = typecacheof(drip_containers) - -======= ->>>>>>> 8e434b7... Removes duplicate typecaches (#31883) /obj/machinery/iv_drip/Destroy() attached = null QDEL_NULL(beaker) From f0a32458bb3b9a075acf848792d1a916866f3c25 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Mon, 23 Oct 2017 14:15:30 -0500 Subject: [PATCH 098/227] Update human_defines.dm --- code/modules/mob/living/carbon/human/human_defines.dm | 3 --- 1 file changed, 3 deletions(-) diff --git a/code/modules/mob/living/carbon/human/human_defines.dm b/code/modules/mob/living/carbon/human/human_defines.dm index 97bd22430b..8e72b26419 100644 --- a/code/modules/mob/living/carbon/human/human_defines.dm +++ b/code/modules/mob/living/carbon/human/human_defines.dm @@ -47,7 +47,4 @@ buckle_lying = FALSE var/creamed = FALSE //to use with creampie overlays -<<<<<<< HEAD -======= var/static/list/can_ride_typecache = typecacheof(list(/mob/living/carbon/human, /mob/living/simple_animal/slime, /mob/living/simple_animal/parrot)) ->>>>>>> 8e434b7... Removes duplicate typecaches (#31883) From dd53de885934b10fac361161022294c95054c351 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Mon, 23 Oct 2017 14:15:43 -0500 Subject: [PATCH 099/227] Update mob.dm --- code/modules/mob/mob.dm | 5 ----- 1 file changed, 5 deletions(-) diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index c1279ac089..beb64a9e6e 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -26,11 +26,6 @@ else GLOB.living_mob_list += src prepare_huds() -<<<<<<< HEAD - can_ride_typecache = typecacheof(can_ride_typecache) - hook_vr("mob_new",list(src)) -======= ->>>>>>> 8e434b7... Removes duplicate typecaches (#31883) for(var/v in GLOB.active_alternate_appearances) if(!v) continue From ad3bafcb42bebc3555429a3a4e39db7cb511e640 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Mon, 23 Oct 2017 14:16:15 -0500 Subject: [PATCH 100/227] Update motion.dm --- code/game/machinery/camera/motion.dm | 76 ---------------------------- 1 file changed, 76 deletions(-) diff --git a/code/game/machinery/camera/motion.dm b/code/game/machinery/camera/motion.dm index 7ce2408019..f26b60202e 100644 --- a/code/game/machinery/camera/motion.dm +++ b/code/game/machinery/camera/motion.dm @@ -1,77 +1,3 @@ -<<<<<<< HEAD -/obj/machinery/camera - - var/list/localMotionTargets = list() - var/detectTime = 0 - var/area/ai_monitored/area_motion = null - var/alarm_delay = 30 // Don't forget, there's another 3 seconds in queueAlarm() - -/obj/machinery/camera/process() - // motion camera event loop - if(!isMotion()) - . = PROCESS_KILL - return - if (detectTime > 0) - var/elapsed = world.time - detectTime - if (elapsed > alarm_delay) - triggerAlarm() - else if (detectTime == -1) - for (var/mob/target in getTargetList()) - if (target.stat == DEAD || (!area_motion && !in_range(src, target))) - //If not part of a monitored area and the camera is not in range or the target is dead - lostTarget(target) - -/obj/machinery/camera/proc/getTargetList() - if(area_motion) - return area_motion.motionTargets - return localMotionTargets - -/obj/machinery/camera/proc/newTarget(mob/target) - if(isAI(target)) - return 0 - if (detectTime == 0) - detectTime = world.time // start the clock - var/list/targets = getTargetList() - if (!(target in targets)) - targets += target - return 1 - -/obj/machinery/camera/Destroy() - var/area/ai_monitored/A = get_area(src) - if(istype(A)) - A.motioncameras -= src - return ..() - -/obj/machinery/camera/proc/lostTarget(mob/target) - var/list/targets = getTargetList() - if (target in targets) - targets -= target - if (targets.len == 0) - cancelAlarm() - -/obj/machinery/camera/proc/cancelAlarm() - if (detectTime == -1) - for (var/mob/living/silicon/aiPlayer in GLOB.player_list) - if (status) - aiPlayer.cancelAlarm("Motion", get_area(src), src) - detectTime = 0 - return 1 - -/obj/machinery/camera/proc/triggerAlarm() - if (!detectTime) - return 0 - for (var/mob/living/silicon/aiPlayer in GLOB.player_list) - if (status) - aiPlayer.triggerAlarm("Motion", get_area(src), list(src), src) - detectTime = -1 - return 1 - -/obj/machinery/camera/HasProximity(atom/movable/AM as mob|obj) - // Motion cameras outside of an "ai monitored" area will use this to detect stuff. - if (!area_motion) - if(isliving(AM)) - newTarget(AM) -======= /obj/machinery/camera var/list/localMotionTargets = list() @@ -143,5 +69,3 @@ if (!area_motion) if(isliving(AM)) newTarget(AM) - ->>>>>>> 1dc0519... Removes mob references from camera motion tracking (#32002) From c77421ec4a4ae02e1854434f6906a29dee6e4991 Mon Sep 17 00:00:00 2001 From: deathride58 Date: Mon, 23 Oct 2017 15:36:51 -0400 Subject: [PATCH 101/227] EMERGENCY BOX CLOWN/MIME OFFICE HOTFIX --- _maps/map_files/BoxStation/BoxStation.dmm | 1014 +++++++++++---------- 1 file changed, 510 insertions(+), 504 deletions(-) diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index 8510ae683c..43f3ad365b 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -58580,6 +58580,12 @@ /turf/open/floor/plating, /area/maintenance/fore/secondary) "Qqu" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"Qqv" = ( /obj/structure/chair/wood{ dir = 4 }, @@ -58587,11 +58593,11 @@ icon_state = "wood-broken6" }, /area/maintenance/bar/cafe) -"Qqv" = ( +"Qqw" = ( /obj/structure/table/wood, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"Qqw" = ( +"Qqx" = ( /obj/structure/chair/wood{ dir = 8 }, @@ -58599,36 +58605,36 @@ icon_state = "wood-broken7" }, /area/maintenance/bar/cafe) -"Qqx" = ( +"Qqy" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"Qqy" = ( +"Qqz" = ( /obj/structure/table/wood, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"Qqz" = ( +"QqA" = ( /turf/open/floor/wood{ icon_state = "wood-broken5" }, /area/maintenance/bar/cafe) -"QqA" = ( +"QqB" = ( /obj/structure/table/wood, /obj/machinery/chem_dispenser/drinks/beer, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QqB" = ( +"QqC" = ( /turf/open/floor/wood{ icon_state = "wood-broken5" }, /area/maintenance/bar/cafe) -"QqC" = ( +"QqD" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QqD" = ( +"QqE" = ( /obj/structure/chair/wood{ dir = 4 }, @@ -58637,7 +58643,7 @@ }, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QqE" = ( +"QqF" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -58647,7 +58653,7 @@ }, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QqF" = ( +"QqG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -58657,14 +58663,14 @@ }, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QqG" = ( +"QqH" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /obj/structure/chair/stool/bar, /turf/open/floor/wood{ icon_state = "wood-broken7" }, /area/maintenance/bar/cafe) -"QqH" = ( +"QqI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -58673,22 +58679,22 @@ icon_state = "wood-broken6" }, /area/maintenance/bar/cafe) -"QqI" = ( +"QqJ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QqJ" = ( +"QqK" = ( /obj/structure/table/wood, /obj/machinery/chem_dispenser/drinks, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QqK" = ( +"QqL" = ( /obj/structure/chair/wood{ dir = 4 }, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QqL" = ( +"QqM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, @@ -58698,7 +58704,7 @@ icon_state = "wood-broken" }, /area/maintenance/bar/cafe) -"QqM" = ( +"QqN" = ( /obj/machinery/power/apc{ areastring = "/area/crew_quarters/theatre/mime"; dir = 2; @@ -58720,7 +58726,7 @@ icon_state = "wood-broken6" }, /area/maintenance/bar/cafe) -"QqN" = ( +"QqO" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable{ icon_state = "2-4" @@ -58730,7 +58736,7 @@ }, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QqO" = ( +"QqP" = ( /obj/machinery/power/apc{ areastring = "/area/crew_quarters/theatre/mime"; dir = 2; @@ -58749,7 +58755,7 @@ icon_state = "wood-broken6" }, /area/maintenance/bar/cafe) -"QqP" = ( +"QqQ" = ( /obj/machinery/light/small, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 @@ -58758,7 +58764,7 @@ icon_state = "wood-broken" }, /area/maintenance/bar/cafe) -"QqQ" = ( +"QqR" = ( /obj/structure/table/wood, /obj/item/storage/box/drinkingglasses, /obj/machinery/light_switch{ @@ -58766,14 +58772,14 @@ }, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QqR" = ( -/turf/closed/wall, -/area/crew_quarters/theatre/mime) "QqS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall, /area/crew_quarters/theatre/mime) "QqT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/crew_quarters/theatre/mime) +"QqU" = ( /obj/structure/barricade/wooden, /obj/structure/grille, /obj/structure/cable{ @@ -58781,17 +58787,17 @@ }, /turf/open/floor/wood, /area/maintenance/fore) -"QqU" = ( +"QqV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall, /area/crew_quarters/theatre/clown) -"QqV" = ( +"QqW" = ( /obj/machinery/vending/autodrobe, /turf/open/floor/plasteel/white/side{ dir = 1 }, /area/crew_quarters/theatre/mime) -"QqW" = ( +"QqX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light{ dir = 1 @@ -58800,7 +58806,7 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"QqX" = ( +"QqY" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/bed, /obj/item/bedsheet/mime, @@ -58808,12 +58814,12 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"QqY" = ( +"QqZ" = ( /obj/structure/closet/secure_closet/freezer/cream_pie, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"QqZ" = ( +"Qra" = ( /obj/structure/closet/crate/wooden/toy, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light{ @@ -58821,18 +58827,18 @@ }, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qra" = ( +"Qrb" = ( /obj/machinery/vending/autodrobe, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qrb" = ( +"Qrc" = ( /obj/machinery/recharger{ pixel_y = 4 }, /obj/structure/table, /turf/open/floor/plasteel/red/side, /area/security/checkpoint/customs) -"Qrc" = ( +"Qrd" = ( /obj/structure/table, /obj/item/reagent_containers/food/snacks/baguette, /obj/item/toy/dummy, @@ -58843,7 +58849,7 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qrd" = ( +"Qre" = ( /obj/effect/landmark/start/mime, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 @@ -58852,7 +58858,7 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qre" = ( +"Qrf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/camera{ c_tag = "Mime's Office"; @@ -58862,7 +58868,7 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qrf" = ( +"Qrg" = ( /obj/structure/mirror{ pixel_x = -28 }, @@ -58874,14 +58880,14 @@ }, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qrg" = ( +"Qrh" = ( /obj/effect/landmark/start/clown, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qrh" = ( +"Qri" = ( /obj/structure/bed, /obj/item/bedsheet/clown, /obj/machinery/airalarm{ @@ -58890,7 +58896,7 @@ }, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qri" = ( +"Qrj" = ( /obj/structure/table, /obj/item/lipstick/random{ pixel_x = -2; @@ -58908,26 +58914,26 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qrj" = ( -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/crew_quarters/theatre/mime) "Qrk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/white/side{ dir = 1 }, /area/crew_quarters/theatre/mime) "Qrl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/crew_quarters/theatre/mime) +"Qrm" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qrm" = ( +"Qrn" = ( /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qrn" = ( +"Qro" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -58938,7 +58944,7 @@ /obj/item/bikehorn, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qro" = ( +"Qrp" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = 1; @@ -58949,7 +58955,7 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qrp" = ( +"Qrq" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -58957,7 +58963,7 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qrq" = ( +"Qrr" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -58965,7 +58971,7 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qrr" = ( +"Qrs" = ( /obj/structure/table, /obj/item/device/flashlight/lamp/bananalamp, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -58979,52 +58985,49 @@ }, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qrs" = ( +"Qrt" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qrt" = ( +"Qru" = ( /obj/structure/statue/bananium/clown, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qru" = ( +"Qrv" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/crew_quarters/theatre/clown) -"Qrv" = ( +"Qrw" = ( /obj/machinery/door/airlock/clown{ name = "Clown's Office"; req_access_txt = "46" }, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qrw" = ( +"Qrx" = ( /obj/machinery/door/airlock{ name = "Bar Storage"; req_access_txt = "25" }, /turf/open/floor/wood, /area/crew_quarters/bar) -"Qrx" = ( +"Qry" = ( /obj/structure/reagent_dispensers/beerkeg, /turf/open/floor/wood, /area/crew_quarters/bar) -"Qry" = ( +"Qrz" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" }, /turf/open/floor/plating, /area/bridge/meeting_room) -"Qrz" = ( -/turf/open/floor/plating, -/area/maintenance/department/bridge) "QrA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/maintenance/department/bridge) "QrB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/maintenance/department/bridge) "QrC" = ( @@ -59040,32 +59043,35 @@ /turf/open/floor/plating, /area/maintenance/department/bridge) "QrG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/department/bridge) "QrH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/department/bridge) "QrI" = ( +/turf/open/floor/plating, +/area/maintenance/department/bridge) +"QrJ" = ( /obj/machinery/door/airlock/maintenance{ name = "bridge maintenance access"; req_access_txt = "20" }, /turf/open/floor/plating, /area/crew_quarters/heads/captain) -"QrJ" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/bridge) "QrK" = ( /turf/closed/wall/r_wall, /area/maintenance/department/bridge) "QrL" = ( +/turf/closed/wall/r_wall, +/area/maintenance/department/bridge) +"QrM" = ( /obj/machinery/light_switch{ pixel_y = 28 }, /turf/open/floor/circuit, /area/ai_monitored/nuke_storage) -"QrM" = ( +"QrN" = ( /obj/machinery/power/apc{ dir = 1; name = "Vault APC"; @@ -59077,38 +59083,38 @@ }, /turf/open/floor/circuit, /area/ai_monitored/nuke_storage) -"QrN" = ( +"QrO" = ( /obj/structure/cable{ icon_state = "2-4" }, /turf/open/floor/circuit, /area/ai_monitored/nuke_storage) -"QrO" = ( +"QrP" = ( /obj/structure/cable{ icon_state = "1-8" }, /turf/open/floor/circuit, /area/ai_monitored/nuke_storage) -"QrP" = ( +"QrQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/closed/wall/r_wall, /area/ai_monitored/nuke_storage) -"QrQ" = ( +"QrR" = ( /obj/structure/sign/securearea, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/closed/wall/r_wall, /area/ai_monitored/nuke_storage) -"QrR" = ( +"QrS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /turf/closed/wall/r_wall, /area/ai_monitored/nuke_storage) -"QrS" = ( +"QrT" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ @@ -59116,10 +59122,10 @@ }, /turf/open/floor/plating, /area/security/checkpoint/checkpoint2) -"QrT" = ( +"QrU" = ( /turf/closed/wall/r_wall, /area/security/checkpoint/checkpoint2) -"QrU" = ( +"QrV" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ icon_state = "2-4" @@ -59134,7 +59140,7 @@ dir = 5 }, /area/security/checkpoint/checkpoint2) -"QrV" = ( +"QrW" = ( /obj/structure/closet/secure_closet/security, /obj/machinery/power/apc{ areastring = "/area/security/checkpoint/checkpoint2"; @@ -59150,7 +59156,7 @@ dir = 9 }, /area/security/checkpoint/checkpoint2) -"QrW" = ( +"QrX" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_y = 30 }, @@ -59161,7 +59167,7 @@ dir = 1 }, /area/security/checkpoint/checkpoint2) -"QrX" = ( +"QrY" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "2-8" @@ -59173,7 +59179,7 @@ dir = 1 }, /area/security/checkpoint/checkpoint2) -"QrY" = ( +"QrZ" = ( /obj/structure/cable{ icon_state = "1-8" }, @@ -59181,13 +59187,13 @@ dir = 1 }, /area/security/checkpoint/checkpoint2) -"QrZ" = ( +"Qsa" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/red/side{ dir = 1 }, /area/security/checkpoint/checkpoint2) -"Qsa" = ( +"Qsb" = ( /obj/machinery/requests_console{ department = "Security"; departmentType = 5; @@ -59197,13 +59203,13 @@ dir = 1 }, /area/security/checkpoint/checkpoint2) -"Qsb" = ( +"Qsc" = ( /obj/machinery/computer/security, /turf/open/floor/plasteel/red/side{ dir = 5 }, /area/security/checkpoint/checkpoint2) -"Qsc" = ( +"Qsd" = ( /obj/structure/closet/wardrobe/red, /obj/machinery/light{ dir = 8 @@ -59212,10 +59218,10 @@ dir = 8 }, /area/security/checkpoint/checkpoint2) -"Qsd" = ( +"Qse" = ( /turf/open/floor/plasteel, /area/security/checkpoint/checkpoint2) -"Qse" = ( +"Qsf" = ( /obj/machinery/computer/secure_data, /obj/machinery/light{ dir = 4 @@ -59224,7 +59230,7 @@ dir = 4 }, /area/security/checkpoint/checkpoint2) -"Qsf" = ( +"Qsg" = ( /obj/machinery/airalarm{ dir = 4; pixel_x = -22 @@ -59246,7 +59252,7 @@ dir = 10 }, /area/security/checkpoint/checkpoint2) -"Qsg" = ( +"Qsh" = ( /obj/item/paper_bin{ pixel_x = 1; pixel_y = 9 @@ -59255,7 +59261,7 @@ /obj/structure/table, /turf/open/floor/plasteel/red/side, /area/security/checkpoint/checkpoint2) -"Qsh" = ( +"Qsi" = ( /obj/item/device/radio/off, /obj/item/crowbar, /obj/item/device/assembly/flash/handheld, @@ -59269,7 +59275,7 @@ dir = 6 }, /area/security/checkpoint/checkpoint2) -"Qsi" = ( +"Qsj" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "vault"; @@ -59283,7 +59289,7 @@ }, /turf/open/floor/plating, /area/security/checkpoint/checkpoint2) -"Qsj" = ( +"Qsk" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -59292,32 +59298,32 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"Qsk" = ( +"Qsl" = ( /obj/effect/spawner/lootdrop/grille_or_trash, /turf/open/floor/plating{ icon_state = "platingdmg3" }, /area/maintenance/port/aft) -"Qsl" = ( +"Qsm" = ( /obj/machinery/door/airlock{ id_tag = "MaintDorm2"; name = "Maintenance Dorm 2" }, /turf/open/floor/wood, /area/maintenance/port/aft) -"Qsm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/wood, -/area/maintenance/port/aft) "Qsn" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/wood, /area/maintenance/port/aft) "Qso" = ( -/obj/structure/closet/secure_closet/personal, +/obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/wood, /area/maintenance/port/aft) "Qsp" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"Qsq" = ( /obj/machinery/light/small, /obj/structure/table/wood, /obj/machinery/atmospherics/pipe/simple/general/hidden{ @@ -59325,7 +59331,7 @@ }, /turf/open/floor/wood, /area/maintenance/port/aft) -"Qsq" = ( +"Qsr" = ( /obj/structure/bed, /obj/item/bedsheet, /obj/machinery/atmospherics/pipe/simple/general/hidden{ @@ -59333,9 +59339,6 @@ }, /turf/open/floor/wood, /area/maintenance/port/aft) -"Qsr" = ( -/turf/closed/wall, -/area/maintenance/bar) "Qss" = ( /turf/closed/wall, /area/maintenance/bar) @@ -59343,14 +59346,14 @@ /turf/closed/wall, /area/maintenance/bar) "Qsu" = ( +/turf/closed/wall, +/area/maintenance/bar) +"Qsv" = ( /obj/machinery/door/airlock/maintenance/abandoned{ req_access_txt = "0" }, /turf/open/floor/plating, /area/maintenance/bar) -"Qsv" = ( -/turf/closed/wall, -/area/maintenance/bar) "Qsw" = ( /turf/closed/wall, /area/maintenance/bar) @@ -59361,21 +59364,24 @@ /turf/closed/wall, /area/maintenance/bar) "Qsz" = ( -/turf/open/floor/wood, +/turf/closed/wall, /area/maintenance/bar) "QsA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, /turf/open/floor/wood, /area/maintenance/bar) "QsB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 + dir = 6 }, /turf/open/floor/wood, /area/maintenance/bar) "QsC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"QsD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -59383,7 +59389,7 @@ icon_state = "wood-broken5" }, /area/maintenance/bar) -"QsD" = ( +"QsE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -59392,7 +59398,7 @@ }, /turf/open/floor/wood, /area/maintenance/bar) -"QsE" = ( +"QsF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -59404,7 +59410,7 @@ }, /turf/open/floor/plating, /area/maintenance/bar) -"QsF" = ( +"QsG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -59413,30 +59419,30 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"QsG" = ( +"QsH" = ( /turf/closed/wall, /area/maintenance/bar) -"QsH" = ( +"QsI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood{ icon_state = "wood-broken7" }, /area/maintenance/bar) -"QsI" = ( +"QsJ" = ( /obj/structure/chair/stool/bar, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, /turf/open/floor/wood, /area/maintenance/bar) -"QsJ" = ( +"QsK" = ( /obj/structure/table/wood, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/wood, /area/maintenance/bar) -"QsK" = ( +"QsL" = ( /obj/structure/table/wood, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -59451,12 +59457,6 @@ icon_state = "wood-broken7" }, /area/maintenance/bar) -"QsL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/bar) "QsM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -59476,15 +59476,21 @@ /turf/closed/wall, /area/maintenance/bar) "QsP" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/closed/wall, /area/maintenance/bar) "QsQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, /turf/closed/wall, /area/maintenance/bar) "QsR" = ( +/turf/closed/wall, +/area/maintenance/bar) +"QsS" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -59493,7 +59499,7 @@ }, /turf/open/floor/wood, /area/maintenance/bar) -"QsS" = ( +"QsT" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -59501,38 +59507,38 @@ icon_state = "wood-broken6" }, /area/maintenance/bar) -"QsT" = ( +"QsU" = ( /obj/structure/chair/stool/bar, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, /area/maintenance/bar) -"QsU" = ( +"QsV" = ( /obj/structure/table/wood, /turf/open/floor/wood{ icon_state = "wood-broken5" }, /area/maintenance/bar) -"QsV" = ( +"QsW" = ( /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/wood, /area/maintenance/bar) -"QsW" = ( +"QsX" = ( /obj/machinery/chem_dispenser/drinks/beer, /obj/structure/table/wood, /turf/open/floor/wood, /area/maintenance/bar) -"QsX" = ( +"QsY" = ( /turf/closed/wall, /area/maintenance/bar) -"QsY" = ( +"QsZ" = ( /obj/item/restraints/handcuffs/fake, /obj/effect/decal/cleanable/blood/old, /obj/effect/spawner/lootdrop/minor/kittyears_or_rabbitears, /turf/open/floor/plating, /area/maintenance/bar) -"QsZ" = ( +"Qta" = ( /obj/item/shard, /obj/item/wirecutters, /obj/item/wallframe/camera, @@ -59540,14 +59546,14 @@ icon_state = "panelscorched" }, /area/maintenance/bar) -"Qta" = ( +"Qtb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"Qtb" = ( +"Qtc" = ( /turf/closed/wall, /area/maintenance/bar) -"Qtc" = ( +"Qtd" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -59558,22 +59564,22 @@ icon_state = "wood-broken" }, /area/maintenance/bar) -"Qtd" = ( +"Qte" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/maintenance/bar) -"Qte" = ( +"Qtf" = ( /obj/structure/chair/stool/bar, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood{ icon_state = "wood-broken7" }, /area/maintenance/bar) -"Qtf" = ( +"Qtg" = ( /obj/structure/table/wood, /turf/open/floor/wood, /area/maintenance/bar) -"Qtg" = ( +"Qth" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -59581,14 +59587,14 @@ icon_state = "wood-broken7" }, /area/maintenance/bar) -"Qth" = ( +"Qti" = ( /obj/machinery/vending/boozeomat, /turf/open/floor/wood, /area/maintenance/bar) -"Qti" = ( +"Qtj" = ( /turf/closed/wall, /area/maintenance/bar) -"Qtj" = ( +"Qtk" = ( /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; name = "2maintenance loot spawner" @@ -59597,7 +59603,7 @@ /obj/item/device/electropack/shockcollar, /turf/open/floor/plating, /area/maintenance/bar) -"Qtk" = ( +"Qtl" = ( /obj/structure/bed, /obj/item/bedsheet/grey, /obj/effect/decal/cleanable/semen{ @@ -59609,11 +59615,11 @@ icon_state = "platingdmg3" }, /area/maintenance/bar) -"Qtl" = ( +"Qtm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"Qtm" = ( +"Qtn" = ( /obj/machinery/door/airlock/maintenance/abandoned{ name = "Incinerator Access"; req_access_txt = "12" @@ -59623,30 +59629,30 @@ }, /turf/open/floor/plating, /area/maintenance/bar) -"Qtn" = ( +"Qto" = ( /turf/open/floor/wood, /area/maintenance/bar) -"Qto" = ( +"Qtp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood{ icon_state = "wood-broken5" }, /area/maintenance/bar) -"Qtp" = ( +"Qtq" = ( /obj/structure/chair/stool/bar, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, /turf/open/floor/wood, /area/maintenance/bar) -"Qtq" = ( +"Qtr" = ( /obj/structure/table/wood, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/wood, /area/maintenance/bar) -"Qtr" = ( +"Qts" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, @@ -59655,15 +59661,15 @@ }, /turf/open/floor/wood, /area/maintenance/bar) -"Qts" = ( +"Qtt" = ( /obj/machinery/chem_dispenser/drinks, /obj/structure/table/wood, /turf/open/floor/wood, /area/maintenance/bar) -"Qtt" = ( +"Qtu" = ( /turf/closed/wall, /area/maintenance/bar) -"Qtu" = ( +"Qtv" = ( /obj/item/lighter/greyscale, /obj/effect/decal/cleanable/semen{ desc = "Blech."; @@ -59673,32 +59679,32 @@ icon_state = "panelscorched" }, /area/maintenance/bar) -"Qtv" = ( +"Qtw" = ( /obj/effect/spawner/lootdrop/maintenance, /obj/effect/decal/cleanable/blood/old, /obj/item/device/assembly/signaler, /turf/open/floor/plating, /area/maintenance/bar) -"Qtw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) "Qtx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) "Qty" = ( +/turf/closed/wall, +/area/maintenance/bar) +"Qtz" = ( /obj/effect/spawner/lootdrop/keg, /turf/open/floor/wood, /area/maintenance/bar) -"Qtz" = ( +"QtA" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/maintenance/bar) -"QtA" = ( +"QtB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, /area/maintenance/bar) -"QtB" = ( +"QtC" = ( /obj/machinery/power/apc{ areastring = "/area/maintenance/bar"; dir = 2; @@ -59711,37 +59717,37 @@ icon_state = "wood-broken7" }, /area/maintenance/bar) -"QtC" = ( -/turf/closed/wall, -/area/maintenance/bar) "QtD" = ( /turf/closed/wall, /area/maintenance/bar) "QtE" = ( +/turf/closed/wall, +/area/maintenance/bar) +"QtF" = ( /obj/structure/falsewall, /turf/open/floor/plating, /area/maintenance/bar) -"QtF" = ( -/turf/closed/wall, -/area/maintenance/bar) "QtG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) "QtH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) "QtI" = ( /turf/closed/wall, /area/maintenance/bar) "QtJ" = ( +/turf/closed/wall, +/area/maintenance/bar) +"QtK" = ( /obj/machinery/door/airlock/maintenance/abandoned{ req_access_txt = "0" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/maintenance/bar) -"QtK" = ( +"QtL" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/airlock/maintenance/abandoned{ req_access_txt = "0" @@ -59750,49 +59756,49 @@ icon_state = "wood-broken" }, /area/maintenance/bar) -"QtL" = ( +"QtM" = ( /obj/structure/sign/poster/official/no_erp, /turf/closed/wall, /area/maintenance/bar) -"QtM" = ( +"QtN" = ( /turf/closed/wall, /area/maintenance/bar) -"QtN" = ( +"QtO" = ( /obj/machinery/vending/clothing, /turf/open/floor/wood, /area/maintenance/bar) -"QtO" = ( +"QtP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"QtP" = ( +"QtQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/maintenance/bar) -"QtQ" = ( +"QtR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, /area/maintenance/bar) -"QtR" = ( +"QtS" = ( /obj/structure/chair/stool, /turf/open/floor/wood{ icon_state = "wood-broken6" }, /area/maintenance/bar) -"QtS" = ( +"QtT" = ( /turf/open/floor/wood{ icon_state = "wood-broken6" }, /area/maintenance/bar) -"QtT" = ( +"QtU" = ( /obj/machinery/vending/autodrobe, /turf/open/floor/wood, /area/maintenance/bar) -"QtU" = ( +"QtV" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"QtV" = ( +"QtW" = ( /obj/structure/sign/poster/random{ pixel_x = -32 }, @@ -59803,34 +59809,34 @@ icon_state = "wood-broken7" }, /area/maintenance/bar) -"QtW" = ( +"QtX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/maintenance/bar) -"QtX" = ( +"QtY" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood{ icon_state = "wood-broken" }, /area/maintenance/bar) -"QtY" = ( +"QtZ" = ( /obj/structure/table/wood/poker, /turf/open/floor/wood{ icon_state = "wood-broken7" }, /area/maintenance/bar) -"QtZ" = ( +"Qua" = ( /obj/structure/table/wood/poker, /obj/item/storage/pill_bottle/dice, /turf/open/floor/wood, /area/maintenance/bar) -"Qua" = ( +"Qub" = ( /turf/open/floor/wood{ icon_state = "wood-broken5" }, /area/maintenance/bar) -"Qub" = ( +"Quc" = ( /obj/structure/table/wood/bar, /obj/item/paper_bin{ pixel_x = -3; @@ -59842,30 +59848,23 @@ }, /turf/open/floor/wood, /area/maintenance/bar) -"Quc" = ( +"Qud" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"Qud" = ( +"Que" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/wood, /area/maintenance/bar) -"Que" = ( +"Quf" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/open/floor/wood, /area/maintenance/bar) -"Quf" = ( -/obj/structure/table/wood/poker, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/bar) "Qug" = ( /obj/structure/table/wood/poker, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -59881,19 +59880,26 @@ /turf/open/floor/wood, /area/maintenance/bar) "Qui" = ( -/obj/structure/chair/stool, +/obj/structure/table/wood/poker, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/wood, /area/maintenance/bar) "Quj" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"Quk" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/open/floor/wood, /area/maintenance/bar) -"Quk" = ( +"Qul" = ( /obj/structure/table/wood/bar, /obj/machinery/light{ dir = 4 @@ -59902,21 +59908,21 @@ icon_state = "wood-broken6" }, /area/maintenance/bar) -"Qul" = ( +"Qum" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"Qum" = ( +"Qun" = ( /turf/open/floor/wood{ icon_state = "wood-broken5" }, /area/maintenance/bar) -"Qun" = ( +"Quo" = ( /obj/structure/table/wood/poker, /obj/item/coin/iron, /turf/open/floor/wood, /area/maintenance/bar) -"Quo" = ( +"Qup" = ( /obj/structure/table/wood/bar, /obj/item/reagent_containers/spray/cleaner, /obj/structure/sign/poster/random{ @@ -59924,29 +59930,29 @@ }, /turf/open/floor/wood, /area/maintenance/bar) -"Qup" = ( +"Quq" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"Quq" = ( +"Qur" = ( /obj/effect/spawner/lootdrop/keg, /turf/open/floor/wood{ icon_state = "wood-broken7" }, /area/maintenance/bar) -"Qur" = ( +"Qus" = ( /obj/structure/sign/poster/random{ pixel_y = -32 }, /turf/open/floor/wood, /area/maintenance/bar) -"Qus" = ( +"Qut" = ( /obj/structure/chair/stool, /turf/open/floor/wood{ icon_state = "wood-broken" }, /area/maintenance/bar) -"Qut" = ( +"Quu" = ( /obj/structure/chair/stool, /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; @@ -59954,7 +59960,7 @@ }, /turf/open/floor/wood, /area/maintenance/bar) -"Quu" = ( +"Quv" = ( /obj/structure/sign/poster/random{ pixel_y = -32 }, @@ -59962,35 +59968,35 @@ icon_state = "wood-broken7" }, /area/maintenance/bar) -"Quv" = ( +"Quw" = ( /obj/machinery/vending/kink, /turf/open/floor/wood, /area/maintenance/bar) -"Quw" = ( +"Qux" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"Qux" = ( +"Quy" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/closed/wall/r_wall, /area/engine/engine_smes) -"Quy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/engine/engine_smes) "Quz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "1-2" }, /turf/closed/wall/r_wall, -/area/engine/gravity_generator) +/area/engine/engine_smes) "QuA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"QuB" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; @@ -60003,7 +60009,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuB" = ( +"QuC" = ( /obj/machinery/camera{ c_tag = "Gravity Generator Foyer" }, @@ -60019,17 +60025,17 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuC" = ( +"QuD" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "1-2" }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QuD" = ( +"QuE" = ( /turf/closed/wall, /area/space) -"QuE" = ( +"QuF" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -60042,11 +60048,11 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuF" = ( +"QuG" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuG" = ( +"QuH" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -60058,7 +60064,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuH" = ( +"QuI" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, @@ -60067,30 +60073,30 @@ }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QuI" = ( +"QuJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "1-2" }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QuJ" = ( +"QuK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QuK" = ( +"QuL" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QuL" = ( +"QuM" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuM" = ( +"QuN" = ( /obj/item/device/radio/intercom{ broadcasting = 0; listening = 1; @@ -60102,19 +60108,19 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuN" = ( +"QuO" = ( /obj/machinery/power/terminal, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /obj/structure/cable, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QuO" = ( +"QuP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QuP" = ( +"QuQ" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -24 @@ -60126,11 +60132,11 @@ /obj/item/pen/blue, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuQ" = ( +"QuR" = ( /obj/machinery/holopad, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuR" = ( +"QuS" = ( /obj/machinery/power/smes{ charge = 5e+006 }, @@ -60139,7 +60145,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuS" = ( +"QuT" = ( /obj/machinery/power/apc{ dir = 8; name = "Gravity Generator APC"; @@ -60158,13 +60164,6 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuT" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) "QuU" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/cable{ @@ -60180,6 +60179,13 @@ /turf/open/floor/plasteel, /area/engine/gravity_generator) "QuW" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"QuX" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 }, @@ -60195,7 +60201,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuX" = ( +"QuY" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; @@ -60208,7 +60214,7 @@ }, /turf/open/floor/plating, /area/engine/gravity_generator) -"QuY" = ( +"QuZ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ icon_state = "0-8" @@ -60218,7 +60224,7 @@ }, /turf/open/floor/plating, /area/engine/gravity_generator) -"QuZ" = ( +"Qva" = ( /obj/machinery/door/airlock/glass_engineering{ name = "Gravity Generator"; req_access_txt = "11"; @@ -60229,7 +60235,7 @@ }, /turf/open/floor/plasteel/black, /area/engine/gravity_generator) -"Qva" = ( +"Qvb" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ icon_state = "0-8" @@ -60239,7 +60245,7 @@ }, /turf/open/floor/plating, /area/engine/gravity_generator) -"Qvb" = ( +"Qvc" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; @@ -60253,19 +60259,19 @@ /obj/structure/cable, /turf/open/floor/plating, /area/engine/gravity_generator) -"Qvc" = ( +"Qvd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"Qvd" = ( +"Qve" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/floor/plasteel/black, /area/engine/gravity_generator) -"Qve" = ( +"Qvf" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -60276,7 +60282,7 @@ }, /turf/open/floor/plasteel/black, /area/engine/gravity_generator) -"Qvf" = ( +"Qvg" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -74528,7 +74534,7 @@ auT aBI aDf aEK -Qrb +Qrc aHy ayl aKk @@ -79461,7 +79467,7 @@ bCq bJP bCq bTs -Qso +Qsp bCq cbj bLv @@ -79717,8 +79723,8 @@ aaa bCq bHE bCq -Qsm -Qsp +Qsn +Qsq bCq cbk bLv @@ -79975,7 +79981,7 @@ bLv bPR bRc bSo -Qsq +Qsr bCq bVy bLv @@ -80177,14 +80183,14 @@ apQ avY axo ayB -Qqu -QqB -QqK -QqR -QqV -Qrc -Qri -Qro +Qqv +QqC +QqL +QqS +QqW +Qrd +Qrj +Qrp aKu aLF aLF @@ -80434,14 +80440,14 @@ aoV avY axo ayB -Qqv -QqC -QqL -QqS -QqW -Qrd -Qrj -Qrp +Qqw +QqD +QqM +QqT +QqX +Qre +Qrk +Qrq aKt aLE bDe @@ -80691,14 +80697,14 @@ apQ avY axo ayB -Qqw -QqD -QqM +Qqx +QqE +QqN aDs -QqX -Qre -Qrk -Qrq +QqY +Qrf +Qrl +Qrr aKu aLE aLE @@ -80745,7 +80751,7 @@ aaa bCq bPV bCq -Qsn +Qso bTw bCq bVD @@ -80946,10 +80952,10 @@ aqQ aqQ aqQ avZ -axp +axo ayC azH -QqE +QqF aBS aDr aDr @@ -81001,7 +81007,7 @@ aoV aoV bCq bPW -Qsl +Qsm bSp bTv bCq @@ -81202,13 +81208,13 @@ aqR aGh aqR aqR -awb -axo +Qqu +axq ayA -Qqx -QqF -QqN -QqT +Qqy +QqG +QqO +QqU apS apS apS @@ -81257,7 +81263,7 @@ bGi aoV aoV bCq -Qsk +Qsl bCq bCq bTu @@ -81459,11 +81465,11 @@ aqQ aqQ aqQ aqQ -awa -axq +avZ +axp ayD azI -QqG +QqH aBU aDt aDt @@ -81719,15 +81725,15 @@ aag avY axo ayB -Qqy -QqH -QqO +Qqz +QqI +QqP aDv -QqY -Qrf -Qrl -Qrr -Qru +QqZ +Qrg +Qrm +Qrs +Qrv aLE aMS aOt @@ -81774,14 +81780,14 @@ bCq bPY cOw bCq -Qsr -Qsy -QsG -QsQ -Qtb -Qtm -Qtx -QtH +Qss +Qsz +QsH +QsR +Qtc +Qtn +Qty +QtI cjn cjn cjn @@ -81976,15 +81982,15 @@ aag avY axo ayB -Qqz -QqI -QqP -QqU -QqZ -Qrg -Qrm -Qrs -Qrv +QqA +QqJ +QqQ +QqV +Qra +Qrh +Qrn +Qrt +Qrw aLE aMS aOi @@ -82031,19 +82037,19 @@ bCq bPX bRg bRg -Qss -Qsz +Qst +QsA bVG -QsR -Qtc -Qtn -Qty -QtI +QsS +Qtd +Qto +Qtz +QtJ bcU -QtV +QtW bVG bcU -Quq +Qur cjn bUs bLv @@ -82059,16 +82065,16 @@ aaa aaa aaf aaf -QuD +QuE aaa -QuJ +QuK bij bij bij bij bij bij -Qvc +Qvd btG btG aaa @@ -82233,14 +82239,14 @@ aag avY axo ayB -QqA -QqJ -QqQ +QqB +QqK +QqR aDt -Qra -Qrh -Qrn -Qrt +Qrb +Qri +Qro +Qru aKx aLE aMS @@ -82288,19 +82294,19 @@ bLv bQa bHE bHE -Qst -QsA -QsH -QsS -Qtd -Qto -Qtz -QtJ -QtP -QtW -Qud -Qum -Qur +Qsu +QsB +QsI +QsT +Qte +Qtp +QtA +QtK +QtQ +QtX +Que +Qun +Qus cjn bUs bLv @@ -82313,19 +82319,19 @@ cjJ cjJ cjJ cjJ -Qux +Quy bij bij crn bij -QuK -QuP -QuS -QuX +QuL +QuQ +QuT +QuY bkI bgN bgN -Qvd +Qve bgN btG Qoi @@ -82545,17 +82551,17 @@ bLv bPZ bHE bHE -Qsu -QsB -QsI -QsT -Qte -Qtp -QtA -QtK -QtQ -QtX -Que +Qsv +QsC +QsJ +QsU +Qtf +Qtq +QtB +QtL +QtR +QtY +Quf bdV bcU cjn @@ -82572,13 +82578,13 @@ cov cpj cpS btG -QuA -QuE +QuB +QuF btG -QuL +QuM bsc -QuT -QuY +QuU +QuZ bgN bih big @@ -82802,19 +82808,19 @@ bLv bHE bHE bSs -Qsv -QsC -QsJ -QsU -Qtf -Qtq +Qsw +QsD +QsK +QsV +Qtg +Qtr bcU -QtL -QtR +QtM +QtS cCa -Quf +Qug cCa -Qus +Qut cjn bUs bLv @@ -82830,12 +82836,12 @@ cpl cpU btF bsc -QuF +QuG btF bsc -QuQ -QuU -QuZ +QuR +QuV +Qva bgN big bgN @@ -83059,19 +83065,19 @@ bCq bHE bRh bSr -Qsw -QsD -QsK -QsV -Qtg -Qtr -QtB -QtM +Qsx +QsE +QsL +QsW +Qth +Qts +QtC +QtN bdV -QtY -Qug +QtZ +Quh cCa -Qut +Quu cjn bUs bLv @@ -83086,13 +83092,13 @@ cow cpk cpT btG -QuB -QuG +QuC +QuH btG -QuM +QuN bsc -QuV -Qva +QuW +Qvb bgN bii big @@ -83316,18 +83322,18 @@ bCq bOK bCq bCq -Qsx -QsE -QsL -QsW -Qth -Qts -QtC +Qsy +QsF +QsM +QsX +Qti +Qtt +QtD cjn bdV -QtZ -Quh -Qun +Qua +Qui +Quo bdV cjn bUs @@ -83341,19 +83347,19 @@ cnq cnP coz cpn -Quy Quz -QuC -QuH +QuA +QuD QuI -QuN -QuR -QuW -Qvb +QuJ +QuO +QuS +QuX +Qvc bmw bgN bgN -Qve +Qvf bgN btG aaa @@ -83574,18 +83580,18 @@ bHE bLv aaa bLv -QsF -QsM -QsX -Qti -Qtt -QtD +QsG +QsN +QsY +Qtj +Qtu +QtE bcU bcU bdV -Qui +Quj bdV -Quu +Quv cjn bUs bLv @@ -83603,14 +83609,14 @@ aaf aaf Qol aaa -QuO +QuP bgO bgO bgO bgO bgO bgO -Qvf +Qvg btG btG Qoi @@ -83832,15 +83838,15 @@ bLv aaf bLv bUt -QsN -QsY -Qtj -Qtu -QtE +QsO +QsZ +Qtk +Qtv +QtF bcU -QtS -Qua -Quj +QtT +Qub +Quk bcU bcU cjn @@ -84089,17 +84095,17 @@ bCq aaa bLv bUt -QsO -QsZ -Qtk -Qtv -QtF -QtN -QtT -Qub -Quk -Quo -Quv +QsP +Qta +Qtl +Qtw +QtG +QtO +QtU +Quc +Qul +Qup +Quw cjn bUs bCq @@ -84346,17 +84352,17 @@ aaa aaa bTB bUv -QsP -Qta -Qtl -Qtw -QtG -QtO -QtU -Quc -Qul -Qup -Quw +QsQ +Qtb +Qtm +Qtx +QtH +QtP +QtV +Qud +Qum +Quq +Qux car bUs bCq @@ -87912,7 +87918,7 @@ bbk bbk bbk bfs -Qry +Qrz aZM aZM aaf @@ -88169,15 +88175,15 @@ bce bdf beb aYv -Qrz -QrJ +QrA +QrK aaf aaf Qoi aaa Qoi aaa -QrT +QrU bsb bsb bsb @@ -88426,18 +88432,18 @@ aZR bbm bec bfu -QrA +QrB aBb aBb bmu aBb aBb -QrP +QrQ aaa bsb -QrV -Qsc -Qsf +QrW +Qsd +Qsg bsb aXf aJq @@ -88683,7 +88689,7 @@ aZR aZR aZR bft -QrB +QrC aBa aBT bmv @@ -88692,13 +88698,13 @@ aGb bpg aaa bsb -QrW +QrX buP bwm bxH aXf aJq -Qsj +Qsk bCs bCs bCs @@ -88940,16 +88946,16 @@ bbm bdh bee bfv -QrC +QrD aBa -QrL +QrM aEM aEM aGa bph bqF bsd -QrX +QrY buQ bwn bxI @@ -89197,19 +89203,19 @@ bcf bdg bed bfv -QrD +QrE aBa aBV alu -QrN +QrO bnU aHG bqE -QrU -QrY -Qsd -Qsg -Qsi +QrV +QrZ +Qse +Qsh +Qsj aNr bAf bBp @@ -89454,16 +89460,16 @@ bbm bdh bef bfv -QrE +QrF aBa -QrM +QrN aEO -QrO +QrP bnV -QrQ -QrS +QrR +QrT bsf -QrZ +Qsa buS bwp bxK @@ -89711,7 +89717,7 @@ aZR aZR aZR bfw -QrF +QrG aBa aBW bjy @@ -89720,7 +89726,7 @@ aGe bpi aaa bsb -Qsa +Qsb buR aFM bxJ @@ -89968,18 +89974,18 @@ aZR bbm beh bfx -QrG +QrH aBc aBc bgR aBc aBc -QrR +QrS aaa bsb -Qsb -Qse -Qsh +Qsc +Qsf +Qsi bsb aJq aJq @@ -90225,8 +90231,8 @@ bcg aZU beg aYB -QrH -QrK +QrI +QrL aaf aaf Qoi @@ -90482,7 +90488,7 @@ bbp bbp bbp bfz -QrI +QrJ aZV aZV aaf @@ -96634,7 +96640,7 @@ aGJ aIe aJC aJC -Qrw +Qrx aJC aJC aJC @@ -97919,7 +97925,7 @@ aGL aIg aJH aKR -Qrx +Qry aMB aJC aRA From ec6b7770c912ddbebd4ba0ffebd455c68ca9349d Mon Sep 17 00:00:00 2001 From: deathride58 Date: Mon, 23 Oct 2017 15:47:43 -0400 Subject: [PATCH 102/227] merges #3577 --- _maps/map_files/Deltastation/DeltaStation2.dmm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm index 65c8fbe139..885a0926e8 100644 --- a/_maps/map_files/Deltastation/DeltaStation2.dmm +++ b/_maps/map_files/Deltastation/DeltaStation2.dmm @@ -54606,6 +54606,10 @@ dir = 6 }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/magnetic_controller{ + autolink = 1; + pixel_y = 3 + }, /turf/open/floor/plasteel, /area/security/range) "ckm" = ( @@ -77490,6 +77494,10 @@ pixel_y = 3 }, /obj/effect/turf_decal/delivery, +/obj/machinery/magnetic_controller{ + autolink = 1; + pixel_y = 3 + }, /turf/open/floor/plasteel, /area/science/misc_lab/range) "dhw" = ( From cfb6f98c3c553c80cab3a5751ab4706913ffde24 Mon Sep 17 00:00:00 2001 From: deathride58 Date: Mon, 23 Oct 2017 15:58:33 -0400 Subject: [PATCH 103/227] FIXES RWALL YES THIS IS NECESSARY FUCK --- _maps/map_files/BoxStation/BoxStation.dmm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index 43f3ad365b..de39134719 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -86337,7 +86337,7 @@ akj agj agj agj -aiX +agj aiX anQ aov From ed12370a73768350a81c5596b96fd39e31d05910 Mon Sep 17 00:00:00 2001 From: duncathan salt Date: Mon, 23 Oct 2017 15:29:36 -0600 Subject: [PATCH 104/227] Atmos construction rework again --- code/__DEFINES/pipe_construction.dm | 37 +-- code/game/machinery/pipe/construction.dm | 242 ++++++------------ code/game/machinery/pipe/pipe_dispenser.dm | 42 +-- code/game/objects/items/RPD.dm | 95 ++++--- .../atmospherics/machinery/atmosmachinery.dm | 7 +- .../components/binary_devices/passive_gate.dm | 4 +- .../components/binary_devices/pump.dm | 6 + .../components/binary_devices/valve.dm | 4 + .../components/binary_devices/volume_pump.dm | 6 + .../components/trinary_devices/filter.dm | 3 + .../components/trinary_devices/mixer.dm | 4 +- .../unary_devices/heat_exchanger.dm | 2 + .../unary_devices/outlet_injector.dm | 3 +- .../unary_devices/portables_connector.dm | 1 + .../components/unary_devices/unary_devices.dm | 1 + .../components/unary_devices/vent_pump.dm | 2 + .../components/unary_devices/vent_scrubber.dm | 2 + .../machinery/pipes/heat_exchange/junction.dm | 5 +- .../machinery/pipes/heat_exchange/manifold.dm | 8 +- .../machinery/pipes/heat_exchange/simple.dm | 5 +- .../machinery/pipes/layermanifold.dm | 14 +- .../atmospherics/machinery/pipes/manifold.dm | 5 +- .../machinery/pipes/manifold4w.dm | 5 +- .../atmospherics/machinery/pipes/simple.dm | 5 +- 24 files changed, 223 insertions(+), 285 deletions(-) diff --git a/code/__DEFINES/pipe_construction.dm b/code/__DEFINES/pipe_construction.dm index f5b513312d..a671b548ba 100644 --- a/code/__DEFINES/pipe_construction.dm +++ b/code/__DEFINES/pipe_construction.dm @@ -1,33 +1,10 @@ -/* -PIPE CONSTRUCTION DEFINES -Update these any time a path is changed -Construction breaks otherwise -*/ - -//Pipes -#define PIPE_SIMPLE /obj/machinery/atmospherics/pipe/simple -#define PIPE_MANIFOLD /obj/machinery/atmospherics/pipe/manifold -#define PIPE_4WAYMANIFOLD /obj/machinery/atmospherics/pipe/manifold4w -#define PIPE_HE /obj/machinery/atmospherics/pipe/heat_exchanging/simple -#define PIPE_HE_MANIFOLD /obj/machinery/atmospherics/pipe/heat_exchanging/manifold -#define PIPE_HE_4WAYMANIFOLD /obj/machinery/atmospherics/pipe/heat_exchanging/manifold4w -#define PIPE_JUNCTION /obj/machinery/atmospherics/pipe/heat_exchanging/junction -#define PIPE_LAYER_MANIFOLD /obj/machinery/atmospherics/pipe/layer_manifold -//Unary -#define PIPE_CONNECTOR /obj/machinery/atmospherics/components/unary/portables_connector -#define PIPE_UVENT /obj/machinery/atmospherics/components/unary/vent_pump -#define PIPE_SCRUBBER /obj/machinery/atmospherics/components/unary/vent_scrubber -#define PIPE_INJECTOR /obj/machinery/atmospherics/components/unary/outlet_injector -#define PIPE_HEAT_EXCHANGE /obj/machinery/atmospherics/components/unary/heat_exchanger -//Binary -#define PIPE_PUMP /obj/machinery/atmospherics/components/binary/pump -#define PIPE_PASSIVE_GATE /obj/machinery/atmospherics/components/binary/passive_gate -#define PIPE_VOLUME_PUMP /obj/machinery/atmospherics/components/binary/volume_pump -#define PIPE_MVALVE /obj/machinery/atmospherics/components/binary/valve -#define PIPE_DVALVE /obj/machinery/atmospherics/components/binary/valve/digital -//Trinary -#define PIPE_GAS_FILTER /obj/machinery/atmospherics/components/trinary/filter -#define PIPE_GAS_MIXER /obj/machinery/atmospherics/components/trinary/mixer +//Construction Categories +#define PIPE_BINARY 0 //2 directions: N/S, E/W +#define PIPE_BENDABLE 1 //6 directions: N/S, E/W, N/E, N/W, S/E, S/W +#define PIPE_TRINARY 2 //4 directions: N/E/S, E/S/W, S/W/N, W/N/E +#define PIPE_TRIN_M 3 //8 directions: N->S+E, S->N+E, N->S+W, S->N+W, E->W+S, W->E+S, E->W+N, W->E+N +#define PIPE_UNARY 4 //4 directions: N, S, E, W +#define PIPE_QUAD 5 //1 directions: N/S/E/W //Disposal piping numbers - do NOT hardcode these, use the defines #define DISP_PIPE_STRAIGHT 0 diff --git a/code/game/machinery/pipe/construction.dm b/code/game/machinery/pipe/construction.dm index 9207d39f1b..5d529defea 100644 --- a/code/game/machinery/pipe/construction.dm +++ b/code/game/machinery/pipe/construction.dm @@ -10,7 +10,7 @@ Buildable meters /obj/item/pipe name = "pipe" desc = "A pipe." - var/pipe_type = 0 + var/pipe_type var/pipename force = 7 throwforce = 7 @@ -19,35 +19,22 @@ Buildable meters item_state = "buildpipe" w_class = WEIGHT_CLASS_NORMAL level = 2 - var/flipped = FALSE - var/is_bent = FALSE var/piping_layer = PIPING_LAYER_DEFAULT + var/RPD_type //TEMP: kill this once RPDs get a rewrite pls - var/static/list/pipe_types = list( - PIPE_SIMPLE, \ - PIPE_LAYER_MANIFOLD, \ - PIPE_MANIFOLD, \ - PIPE_4WAYMANIFOLD, \ - PIPE_HE, \ - PIPE_HE_MANIFOLD, \ - PIPE_HE_4WAYMANIFOLD, \ - PIPE_JUNCTION, \ - \ - PIPE_CONNECTOR, \ - PIPE_UVENT, \ - PIPE_SCRUBBER, \ - PIPE_INJECTOR, \ - PIPE_HEAT_EXCHANGE, \ - \ - PIPE_PUMP, \ - PIPE_PASSIVE_GATE, \ - PIPE_VOLUME_PUMP, \ - PIPE_MVALVE, \ - PIPE_DVALVE, \ - \ - PIPE_GAS_FILTER, \ - PIPE_GAS_MIXER, \ - ) +/obj/item/pipe/directional + RPD_type = PIPE_UNARY +/obj/item/pipe/binary + RPD_type = PIPE_BINARY +/obj/item/pipe/binary/bendable + RPD_type = PIPE_BENDABLE +/obj/item/pipe/trinary + RPD_type = PIPE_TRINARY +/obj/item/pipe/trinary/flippable + RPD_type = PIPE_TRIN_M + var/flipped = FALSE +/obj/item/pipe/quaternary + RPD_type = PIPE_QUAD /obj/item/pipe/examine(mob/user) ..() @@ -55,35 +42,27 @@ Buildable meters /obj/item/pipe/Initialize(mapload, _pipe_type, _dir, obj/machinery/atmospherics/make_from) if(make_from) - setDir(make_from.dir) - pipename = make_from.name - add_atom_colour(make_from.color, FIXED_COLOUR_PRIORITY) - - if(make_from.type in pipe_types) - pipe_type = make_from.type - setPipingLayer(make_from.piping_layer) - else //make pipe_type a value we can work with - for(var/P in pipe_types) - if(istype(make_from, P)) - pipe_type = P - break - - var/obj/machinery/atmospherics/components/trinary/triP = make_from - if(istype(triP) && triP.flipped) - flipped = TRUE - setDir(turn(dir, -45)) + make_from_existing(make_from) else pipe_type = _pipe_type setDir(_dir) - if(_dir in GLOB.diagonals) - is_bent = TRUE - update() - pixel_x = rand(-5, 5) - pixel_y = rand(-5, 5) + pixel_x += rand(-5, 5) + pixel_y += rand(-5, 5) return ..() +/obj/item/pipe/proc/make_from_existing(obj/machinery/atmospherics/make_from) + setDir(make_from.dir) + pipename = make_from.name + add_atom_colour(make_from.color, FIXED_COLOUR_PRIORITY) + pipe_type = make_from.type + +/obj/item/pipe/trinary/flippable/make_from_existing(obj/machinery/atmospherics/components/trinary/make_from) + ..() + if(make_from.flipped) + do_a_flip() + /obj/item/pipe/dropped() if(loc) setPipingLayer(piping_layer) @@ -91,73 +70,19 @@ Buildable meters /obj/item/pipe/proc/setPipingLayer(new_layer = PIPING_LAYER_DEFAULT) var/obj/machinery/atmospherics/fakeA = get_pipe_cache(pipe_type) - var/nolayer = (fakeA.pipe_flags & PIPING_ALL_LAYER) - if(nolayer) + + if(fakeA.pipe_flags & PIPING_ALL_LAYER) new_layer = PIPING_LAYER_DEFAULT piping_layer = new_layer - if(pipe_type != PIPE_LAYER_MANIFOLD) - pixel_x = (piping_layer - PIPING_LAYER_DEFAULT) * PIPING_LAYER_P_X - pixel_y = (piping_layer - PIPING_LAYER_DEFAULT) * PIPING_LAYER_P_Y - layer = initial(layer) + ((piping_layer - PIPING_LAYER_DEFAULT) * PIPING_LAYER_LCHANGE) -//update the name and icon of the pipe item depending on the type -GLOBAL_LIST_INIT(pipeID2State, list( - "[PIPE_SIMPLE]" = "simple", \ - "[PIPE_MANIFOLD]" = "manifold", \ - "[PIPE_LAYER_MANIFOLD]" = "layer_manifold", \ - "[PIPE_4WAYMANIFOLD]" = "manifold4w", \ - "[PIPE_HE]" = "he", \ - "[PIPE_HE_MANIFOLD]" = "he_manifold", \ - "[PIPE_HE_4WAYMANIFOLD]" = "he_manifold4w", \ - "[PIPE_JUNCTION]" = "junction", \ - \ - "[PIPE_CONNECTOR]" = "connector", \ - "[PIPE_UVENT]" = "uvent", \ - "[PIPE_SCRUBBER]" = "scrubber", \ - "[PIPE_INJECTOR]" = "injector", \ - "[PIPE_HEAT_EXCHANGE]" = "heunary", \ - \ - "[PIPE_PUMP]" = "pump", \ - "[PIPE_PASSIVE_GATE]" = "passivegate", \ - "[PIPE_VOLUME_PUMP]" = "volumepump", \ - "[PIPE_MVALVE]" = "mvalve", \ - "[PIPE_DVALVE]" = "dvalve", \ - \ - "[PIPE_GAS_FILTER]" = "filter", \ - "[PIPE_GAS_MIXER]" = "mixer", \ -)) + pixel_x += (piping_layer - PIPING_LAYER_DEFAULT) * PIPING_LAYER_P_X + pixel_y += (piping_layer - PIPING_LAYER_DEFAULT) * PIPING_LAYER_P_Y + layer = initial(layer) + ((piping_layer - PIPING_LAYER_DEFAULT) * PIPING_LAYER_LCHANGE) /obj/item/pipe/proc/update() - var/list/nlist = list(\ - "[PIPE_SIMPLE]" = "pipe", \ - "[PIPE_SIMPLE]_b" = "bent pipe", \ - "[PIPE_MANIFOLD]" = "manifold", \ - "[PIPE_LAYER_MANIFOLD]" = "layer manifold", \ - "[PIPE_4WAYMANIFOLD]" = "4-way manifold", \ - "[PIPE_HE]" = "h/e pipe", \ - "[PIPE_HE]_b" = "bent h/e pipe", \ - "[PIPE_HE_MANIFOLD]" = "h/e manifold", \ - "[PIPE_HE_4WAYMANIFOLD]"= "h/e 4-way manifold", \ - "[PIPE_JUNCTION]" = "junction", \ - \ - "[PIPE_CONNECTOR]" = "connector", \ - "[PIPE_UVENT]" = "vent", \ - "[PIPE_SCRUBBER]" = "scrubber", \ - "[PIPE_INJECTOR]" = "injector", \ - "[PIPE_HEAT_EXCHANGE]" = "heat exchanger", \ - \ - "[PIPE_PUMP]" = "pump", \ - "[PIPE_PASSIVE_GATE]" = "passive gate", \ - "[PIPE_VOLUME_PUMP]" = "volume pump", \ - "[PIPE_MVALVE]" = "manual valve", \ - "[PIPE_DVALVE]" = "digital valve", \ - \ - "[PIPE_GAS_FILTER]" = "gas filter", \ - "[PIPE_GAS_MIXER]" = "gas mixer", \ - ) - //fix_pipe_type() - name = nlist["[pipe_type][is_bent ? "_b" : ""]"] + " fitting" - icon_state = GLOB.pipeID2State["[pipe_type]"] + var/obj/machinery/atmospherics/A = get_pipe_cache(pipe_type) + name = "[A.name] fitting" + icon_state = A.pipe_state // rotate the pipe item clockwise @@ -170,11 +95,8 @@ GLOBAL_LIST_INIT(pipeID2State, list( return setDir(turn(dir, -90)) - fixdir() - return - /obj/item/pipe/verb/flip() set category = "Object" set name = "Flip Pipe" @@ -183,16 +105,15 @@ GLOBAL_LIST_INIT(pipeID2State, list( if ( usr.stat || usr.restrained() || !usr.canmove ) return - if (pipe_type in list(PIPE_GAS_FILTER, PIPE_GAS_MIXER)) - setDir(turn(dir, flipped )? 45 : -45) - flipped = !flipped - return + do_a_flip() +/obj/item/pipe/proc/do_a_flip() setDir(turn(dir, -180)) - fixdir() - return +/obj/item/pipe/trinary/flippable/do_a_flip() + setDir(turn(dir, flipped ? 45 : -45)) + flipped = !flipped /obj/item/pipe/AltClick(mob/user) ..() @@ -207,21 +128,21 @@ GLOBAL_LIST_INIT(pipeID2State, list( /obj/item/pipe/Move() var/old_dir = dir ..() - setDir(old_dir )//pipes changing direction when moved is just annoying and buggy - -/obj/item/pipe/proc/unflip(direction) - if(direction in GLOB.diagonals) - return turn(direction, 45) - - return direction + setDir(old_dir) //pipes changing direction when moved is just annoying and buggy //Helper to clean up dir /obj/item/pipe/proc/fixdir() - if((pipe_type in list (PIPE_SIMPLE, PIPE_HE, PIPE_MVALVE, PIPE_DVALVE, PIPE_LAYER_MANIFOLD)) && !is_bent) - if(dir==SOUTH) - setDir(NORTH) - else if(dir==WEST) - setDir(EAST) + return + +/obj/item/pipe/binary/fixdir() + if(dir == SOUTH) + setDir(NORTH) + else if(dir == WEST) + setDir(EAST) + +/obj/item/pipe/trinary/flippable/fixdir() + if(dir in GLOB.diagonals) + setDir(turn(dir, 45)) /obj/item/pipe/attack_self(mob/user) return rotate() @@ -245,16 +166,14 @@ GLOBAL_LIST_INIT(pipeID2State, list( add_fingerprint(user) fixdir() - if(pipe_type in list(PIPE_GAS_MIXER, PIPE_GAS_FILTER)) - setDir(unflip(dir)) var/obj/machinery/atmospherics/fakeA = get_pipe_cache(pipe_type, dir) for(var/obj/machinery/atmospherics/M in loc) - if((M.pipe_flags & PIPING_ONE_PER_TURF) && (fakeA.pipe_flags & PIPING_ONE_PER_TURF)) //Only one dense/requires density object per tile, eg connectors/cryo/heater/coolers. + if((M.pipe_flags & fakeA.pipe_flags & PIPING_ONE_PER_TURF)) //Only one dense/requires density object per tile, eg connectors/cryo/heater/coolers. to_chat(user, "Something is hogging the tile!") return TRUE - if((M.piping_layer != piping_layer) && !((M.pipe_flags & PIPING_ALL_LAYER) || (pipe_type == PIPE_LAYER_MANIFOLD))) + if((M.piping_layer != piping_layer) && !((M.pipe_flags | fakeA.pipe_flags) & PIPING_ALL_LAYER)) //don't continue if either pipe goes across all layers continue if(M.GetInitDirections() & fakeA.GetInitDirections()) // matches at least one direction on either type of pipe to_chat(user, "There is already a pipe at that location!") @@ -262,16 +181,8 @@ GLOBAL_LIST_INIT(pipeID2State, list( // no conflicts found var/obj/machinery/atmospherics/A = new pipe_type(loc) - A.setDir(dir) - A.SetInitDirections() - - if(pipename) - A.name = pipename - - var/obj/machinery/atmospherics/components/trinary/T = A - if(istype(T)) - T.flipped = flipped - A.on_construction(pipe_type, color, piping_layer) + build_pipe(A) + A.on_construction(color, piping_layer) playsound(src, W.usesound, 50, 1) user.visible_message( \ @@ -281,20 +192,28 @@ GLOBAL_LIST_INIT(pipeID2State, list( qdel(src) -/obj/item/pipe/suicide_act(mob/user) - if(pipe_type in list(PIPE_PUMP, PIPE_PASSIVE_GATE, PIPE_VOLUME_PUMP)) - user.visible_message("[user] shoves [src] in [user.p_their()] mouth and turns it on! It looks like [user.p_theyre()] trying to commit suicide!") - if(iscarbon(user)) - var/mob/living/carbon/C = user - for(var/i=1 to 20) - C.vomit(0, TRUE, FALSE, 4, FALSE) - if(prob(20)) - C.spew_organ() - sleep(5) - C.blood_volume = 0 - return(OXYLOSS|BRUTELOSS) - else - return ..() +/obj/item/pipe/proc/build_pipe(obj/machinery/atmospherics/A) + A.setDir(dir) + A.SetInitDirections() + + if(pipename) + A.name = pipename + +/obj/item/pipe/trinary/flippable/build_pipe(obj/machinery/atmospherics/components/trinary/T) + ..() + T.flipped = flipped + +/obj/item/pipe/directional/suicide_act(mob/user) + user.visible_message("[user] shoves [src] in [user.p_their()] mouth and turns it on! It looks like [user.p_theyre()] trying to commit suicide!") + if(iscarbon(user)) + var/mob/living/carbon/C = user + for(var/i=1 to 20) + C.vomit(0, TRUE, FALSE, 4, FALSE) + if(prob(20)) + C.spew_organ() + sleep(5) + C.blood_volume = 0 + return(OXYLOSS|BRUTELOSS) /obj/item/pipe_meter name = "meter" @@ -332,4 +251,3 @@ GLOBAL_LIST_INIT(pipeID2State, list( piping_layer = new_layer pixel_x = (new_layer - PIPING_LAYER_DEFAULT) * PIPING_LAYER_P_X pixel_y = (new_layer - PIPING_LAYER_DEFAULT) * PIPING_LAYER_P_Y - diff --git a/code/game/machinery/pipe/pipe_dispenser.dm b/code/game/machinery/pipe/pipe_dispenser.dm index c224097b36..fda66624b7 100644 --- a/code/game/machinery/pipe/pipe_dispenser.dm +++ b/code/game/machinery/pipe/pipe_dispenser.dm @@ -17,30 +17,30 @@ var/dat = {" PIPING LAYER: --[piping_layer]++
Pipes:
-Pipe
-Bent Pipe
-Manifold
-Layer Manifold
-4-Way Manifold
-Manual Valve
-Digital Valve
+Pipe
+Bent Pipe
+Manifold
+Layer Manifold
+4-Way Manifold
+Manual Valve
+Digital Valve
Devices:
-Connector
-Vent
-Gas Pump
-Passive Gate
-Volume Pump
-Scrubber
+Connector
+Vent
+Gas Pump
+Passive Gate
+Volume Pump
+Scrubber
Meter
-Gas Filter
-Gas Mixer
+Gas Filter
+Gas Mixer
Heat exchange:
-Pipe
-Bent Pipe
-Manifold
-4-Way Manifold
-Junction
-Heat Exchanger
+Pipe
+Bent Pipe
+Manifold
+4-Way Manifold
+Junction
+Heat Exchanger
"} diff --git a/code/game/objects/items/RPD.dm b/code/game/objects/items/RPD.dm index e0890ee094..585f632f80 100644 --- a/code/game/objects/items/RPD.dm +++ b/code/game/objects/items/RPD.dm @@ -4,12 +4,6 @@ CONTAINS: RPD */ -#define PIPE_BINARY 0 -#define PIPE_BENDABLE 1 -#define PIPE_TRINARY 2 -#define PIPE_TRIN_M 3 -#define PIPE_UNARY 4 -#define PIPE_QUAD 5 #define PAINT_MODE -2 #define EATING_MODE -1 @@ -22,23 +16,29 @@ RPD /datum/pipe_info var/id=-1 - var/categoryId = CATEGORY_ATMOS + var/categoryId var/dir=SOUTH var/dirtype = PIPE_BENDABLE - var/icon = 'icons/obj/atmospherics/pipes/pipe_item.dmi' - var/icon_state="" + var/icon + var/icon_state var/selected=0 -/datum/pipe_info/New(pid,direction,dt) - id=pid - icon_state=GLOB.pipeID2State["[pid]"] - dir = direction - dirtype=dt +/datum/pipe_info/pipe + categoryId = CATEGORY_ATMOS + icon = 'icons/obj/atmospherics/pipes/pipe_item.dmi' + +/datum/pipe_info/pipe/New(obj/machinery/atmospherics/path) + id = path + icon_state = initial(path.pipe_state) + dirtype = initial(path.construction_type) /datum/pipe_info/proc/Render(dispenser,label) + +/datum/pipe_info/pipe/Render(dispenser,label,dir=NORTH) return "
  • [label]
  • " /datum/pipe_info/meter + categoryId = CATEGORY_ATMOS icon = 'icons/obj/atmospherics/pipes/simple.dmi' icon_state = "meterX" @@ -64,7 +64,6 @@ GLOBAL_LIST_INIT(disposalpipeID2State, list( /datum/pipe_info/disposal categoryId = CATEGORY_DISPOSALS icon = 'icons/obj/atmospherics/pipes/disposal.dmi' - icon_state = "meterX" /datum/pipe_info/disposal/New(var/pid,var/dt) id=pid @@ -80,33 +79,31 @@ GLOBAL_LIST_INIT(disposalpipeID2State, list( //find these defines in code\game\machinery\pipe\consruction.dm GLOBAL_LIST_INIT(RPD_recipes, list( "Pipes" = list( - "Pipe" = new /datum/pipe_info(PIPE_SIMPLE, 1, PIPE_BENDABLE), - //"Bent Pipe" = new /datum/pipe_info(PIPE_SIMPLE, 5, PIPE_BENT), - "Manifold" = new /datum/pipe_info(PIPE_MANIFOLD, 1, PIPE_TRINARY), - "Manual Valve" = new /datum/pipe_info(PIPE_MVALVE, 1, PIPE_BINARY), - "Digital Valve" = new /datum/pipe_info(PIPE_DVALVE, 1, PIPE_BINARY), - "4-Way Manifold" = new /datum/pipe_info(PIPE_4WAYMANIFOLD, 1, PIPE_QUAD), - "Layer Manifold" = new /datum/pipe_info(PIPE_LAYER_MANIFOLD, 1, PIPE_BINARY), + "Pipe" = new /datum/pipe_info/pipe(/obj/machinery/atmospherics/pipe/simple), + "Manifold" = new /datum/pipe_info/pipe(/obj/machinery/atmospherics/pipe/manifold), + "Manual Valve" = new /datum/pipe_info/pipe(/obj/machinery/atmospherics/components/binary/valve), + "Digital Valve" = new /datum/pipe_info/pipe(/obj/machinery/atmospherics/components/binary/valve/digital), + "4-Way Manifold" = new /datum/pipe_info/pipe(/obj/machinery/atmospherics/pipe/manifold4w), + "Layer Manifold" = new /datum/pipe_info/pipe(/obj/machinery/atmospherics/pipe/layer_manifold), ), - "Devices"=list( - "Connector" = new /datum/pipe_info(PIPE_CONNECTOR, 1, PIPE_UNARY), - "Unary Vent" = new /datum/pipe_info(PIPE_UVENT, 1, PIPE_UNARY), - "Gas Pump" = new /datum/pipe_info(PIPE_PUMP, 1, PIPE_UNARY), - "Passive Gate" = new /datum/pipe_info(PIPE_PASSIVE_GATE, 1, PIPE_UNARY), - "Volume Pump" = new /datum/pipe_info(PIPE_VOLUME_PUMP, 1, PIPE_UNARY), - "Scrubber" = new /datum/pipe_info(PIPE_SCRUBBER, 1, PIPE_UNARY), - "Injector" = new /datum/pipe_info(PIPE_INJECTOR, 1, PIPE_UNARY), + "Devices" = list( + "Connector" = new /datum/pipe_info/pipe(/obj/machinery/atmospherics/components/unary/portables_connector), + "Unary Vent" = new /datum/pipe_info/pipe(/obj/machinery/atmospherics/components/unary/vent_pump), + "Gas Pump" = new /datum/pipe_info/pipe(/obj/machinery/atmospherics/components/binary/pump), + "Passive Gate" = new /datum/pipe_info/pipe(/obj/machinery/atmospherics/components/binary/passive_gate), + "Volume Pump" = new /datum/pipe_info/pipe(/obj/machinery/atmospherics/components/binary/volume_pump), + "Scrubber" = new /datum/pipe_info/pipe(/obj/machinery/atmospherics/components/unary/vent_scrubber), + "Injector" = new /datum/pipe_info/pipe(/obj/machinery/atmospherics/components/unary/outlet_injector), "Meter" = new /datum/pipe_info/meter(), - "Gas Filter" = new /datum/pipe_info(PIPE_GAS_FILTER, 1, PIPE_TRIN_M), - "Gas Mixer" = new /datum/pipe_info(PIPE_GAS_MIXER, 1, PIPE_TRIN_M), + "Gas Filter" = new /datum/pipe_info/pipe(/obj/machinery/atmospherics/components/trinary/filter), + "Gas Mixer" = new /datum/pipe_info/pipe(/obj/machinery/atmospherics/components/trinary/mixer), ), "Heat Exchange" = list( - "Pipe" = new /datum/pipe_info(PIPE_HE, 1, PIPE_BENDABLE), - //"Bent Pipe" = new /datum/pipe_info(PIPE_HE, 5, PIPE_BENT), - "Manifold" = new /datum/pipe_info(PIPE_HE_MANIFOLD, 1, PIPE_TRINARY), - "4-Way Manifold" = new /datum/pipe_info(PIPE_HE_4WAYMANIFOLD, 1, PIPE_QUAD), - "Junction" = new /datum/pipe_info(PIPE_JUNCTION, 1, PIPE_UNARY), - "Heat Exchanger" = new /datum/pipe_info(PIPE_HEAT_EXCHANGE, 1, PIPE_UNARY), + "Pipe" = new /datum/pipe_info/pipe(/obj/machinery/atmospherics/pipe/heat_exchanging/simple), + "Manifold" = new /datum/pipe_info/pipe(/obj/machinery/atmospherics/pipe/heat_exchanging/manifold), + "4-Way Manifold" = new /datum/pipe_info/pipe(/obj/machinery/atmospherics/pipe/heat_exchanging/manifold4w), + "Junction" = new /datum/pipe_info/pipe(/obj/machinery/atmospherics/pipe/heat_exchanging/junction), + "Heat Exchanger" = new /datum/pipe_info/pipe(/obj/machinery/atmospherics/components/unary/heat_exchanger), ), "Disposal Pipes" = list( "Pipe" = new /datum/pipe_info/disposal(DISP_PIPE_STRAIGHT, PIPE_BINARY), @@ -120,6 +117,7 @@ GLOBAL_LIST_INIT(RPD_recipes, list( "Sort Junction" = new /datum/pipe_info/disposal(DISP_SORTJUNCTION, PIPE_TRINARY), ) )) + /obj/item/pipe_dispenser name = "Rapid Piping Device (RPD)" desc = "A device used to rapidly pipe things." @@ -137,7 +135,7 @@ GLOBAL_LIST_INIT(RPD_recipes, list( resistance_flags = FIRE_PROOF var/datum/effect_system/spark_spread/spark_system var/working = 0 - var/p_type = PIPE_SIMPLE + var/p_type = /obj/machinery/atmospherics/pipe/simple var/p_conntype = PIPE_BENDABLE var/p_dir = 1 var/p_flipped = 0 @@ -201,7 +199,7 @@ GLOBAL_LIST_INIT(RPD_recipes, list( if(screen == CATEGORY_ATMOS) dat += "Atmospherics Disposals
    " else if(screen == CATEGORY_DISPOSALS) - dat += "Atmospherics Disposals
    " + dat += "Atmospherics Disposals
    " var/generated_layer_list = "" var/layers_total = PIPING_LAYER_MAX - PIPING_LAYER_MIN + 1 for(var/iter = PIPING_LAYER_MIN, iter <= layers_total, iter++) @@ -220,9 +218,9 @@ GLOBAL_LIST_INIT(RPD_recipes, list( var/datum/pipe_info/I = cat[label] var/found=0 if(I.id == p_type) - if((p_class == ATMOS_MODE || p_class == METER_MODE) && (I.type == /datum/pipe_info || I.type == /datum/pipe_info/meter)) + if((p_class == ATMOS_MODE || p_class == METER_MODE) && (istype(I, /datum/pipe_info/pipe) || istype(I, /datum/pipe_info/meter))) found=1 - else if(p_class == DISPOSALS_MODE && I.type==/datum/pipe_info/disposal) + else if(p_class == DISPOSALS_MODE && istype(I, /datum/pipe_info/disposal)) found=1 if(found) preview=new /icon(I.icon,I.icon_state) @@ -510,7 +508,8 @@ GLOBAL_LIST_INIT(RPD_recipes, list( if(href_list["makepipe"]) p_type = text2path(href_list["makepipe"]) p_dir = text2num(href_list["dir"]) - p_conntype = text2num(href_list["type"]) + var/obj/item/pipe/path = text2path(href_list["type"]) + p_conntype = initial(path.RPD_type) p_class = ATMOS_MODE spark_system.start() playsound(get_turf(src), 'sound/effects/pop.ogg', 50, 0) @@ -581,7 +580,9 @@ GLOBAL_LIST_INIT(RPD_recipes, list( if(do_after(user, 2, target = A)) activate() var/obj/item/pipe/P = new(A, queued_p_type, queued_p_dir) - P.flipped = queued_p_flipped + if(queued_p_flipped) + var/obj/item/pipe/trinary/flippable/F = P + F.flipped = queued_p_flipped P.update() P.add_fingerprint(usr) if(!isnull(temp_piping_layer)) @@ -627,12 +628,6 @@ GLOBAL_LIST_INIT(RPD_recipes, list( /obj/item/pipe_dispenser/proc/activate() playsound(get_turf(src), 'sound/items/deconstruct.ogg', 50, 1) -#undef PIPE_BINARY -#undef PIPE_BENT -#undef PIPE_TRINARY -#undef PIPE_TRIN_M -#undef PIPE_UNARY -#undef PIPE_QUAD #undef PAINT_MODE #undef EATING_MODE #undef ATMOS_MODE diff --git a/code/modules/atmospherics/machinery/atmosmachinery.dm b/code/modules/atmospherics/machinery/atmosmachinery.dm index 4eb43d6d11..6c335bf896 100644 --- a/code/modules/atmospherics/machinery/atmosmachinery.dm +++ b/code/modules/atmospherics/machinery/atmosmachinery.dm @@ -36,6 +36,9 @@ Pipelines + Other Objects -> Pipe network var/device_type = 0 var/list/obj/machinery/atmospherics/nodes + var/construction_type + var/pipe_state //icon_state as a pipe item + /obj/machinery/atmospherics/examine(mob/user) ..() if(is_type_in_list(src, GLOB.ventcrawl_machinery) && isliving(user)) @@ -239,7 +242,7 @@ Pipelines + Other Objects -> Pipe network /obj/machinery/atmospherics/deconstruct(disassembled = TRUE) if(!(flags_1 & NODECONSTRUCT_1)) if(can_unwrench) - var/obj/item/pipe/stored = new(loc, piping_layer, dir, src) + var/obj/item/pipe/stored = new construction_type(loc, null, dir, src) stored.setPipingLayer(piping_layer) if(!disassembled) stored.obj_integrity = stored.max_integrity * 0.5 @@ -271,7 +274,7 @@ Pipelines + Other Objects -> Pipe network if(unconnected & direction) underlays += getpipeimage('icons/obj/atmospherics/components/binary_devices.dmi', "pipe_exposed", direction) -/obj/machinery/atmospherics/on_construction(pipe_type, obj_color, set_layer) +/obj/machinery/atmospherics/on_construction(obj_color, set_layer) if(can_unwrench) add_atom_colour(obj_color, FIXED_COLOUR_PRIORITY) pipe_color = obj_color diff --git a/code/modules/atmospherics/machinery/components/binary_devices/passive_gate.dm b/code/modules/atmospherics/machinery/components/binary_devices/passive_gate.dm index 158c272543..86c5375d07 100644 --- a/code/modules/atmospherics/machinery/components/binary_devices/passive_gate.dm +++ b/code/modules/atmospherics/machinery/components/binary_devices/passive_gate.dm @@ -21,6 +21,9 @@ Passive gate is similar to the regular pump except: var/id = null var/datum/radio_frequency/radio_connection + construction_type = /obj/item/pipe/directional + pipe_state = "passivegate" + /obj/machinery/atmospherics/components/binary/passive_gate/Destroy() SSradio.remove_object(src,frequency) return ..() @@ -167,4 +170,3 @@ Passive gate is similar to the regular pump except: if(. && on) to_chat(user, "You cannot unwrench [src], turn it off first!") return FALSE - diff --git a/code/modules/atmospherics/machinery/components/binary_devices/pump.dm b/code/modules/atmospherics/machinery/components/binary_devices/pump.dm index c5242fb5cc..cf3c6ad551 100644 --- a/code/modules/atmospherics/machinery/components/binary_devices/pump.dm +++ b/code/modules/atmospherics/machinery/components/binary_devices/pump.dm @@ -26,6 +26,9 @@ Thus, the two variables affect pump operation are set in New(): var/id = null var/datum/radio_frequency/radio_connection + construction_type = /obj/item/pipe/directional + pipe_state = "pump" + /obj/machinery/atmospherics/components/binary/pump/on on = TRUE @@ -175,7 +178,10 @@ Thus, the two variables affect pump operation are set in New(): if(. && on && is_operational()) to_chat(user, "You cannot unwrench [src], turn it off first!") return FALSE +<<<<<<< HEAD else investigate_log("Pump, [src.name], was unwrenched by [key_name(usr)] at [x], [y], [z], [A]", INVESTIGATE_ATMOS) message_admins("Pump, [src.name], was unwrenched by [ADMIN_LOOKUPFLW(user)] at [A]") return TRUE +======= +>>>>>>> e8c2109... Atmos construction rework again (#31944) diff --git a/code/modules/atmospherics/machinery/components/binary_devices/valve.dm b/code/modules/atmospherics/machinery/components/binary_devices/valve.dm index dbe1343667..e613012e82 100644 --- a/code/modules/atmospherics/machinery/components/binary_devices/valve.dm +++ b/code/modules/atmospherics/machinery/components/binary_devices/valve.dm @@ -15,6 +15,9 @@ It's like a regular ol' straight pipe, but you can turn it on and off. var/open = FALSE var/valve_type = "m" //lets us have a nice, clean, OOP update_icon_nopipes() + construction_type = /obj/item/pipe/binary + pipe_state = "mvalve" + /obj/machinery/atmospherics/components/binary/valve/open open = TRUE @@ -65,6 +68,7 @@ It's like a regular ol' straight pipe, but you can turn it on and off. desc = "A digitally controlled valve." icon_state = "dvalve_map" valve_type = "d" + pipe_state = "dvalve" /obj/machinery/atmospherics/components/binary/valve/digital/attack_ai(mob/user) return src.attack_hand(user) diff --git a/code/modules/atmospherics/machinery/components/binary_devices/volume_pump.dm b/code/modules/atmospherics/machinery/components/binary_devices/volume_pump.dm index 227c34d9ca..16f1f8e10d 100644 --- a/code/modules/atmospherics/machinery/components/binary_devices/volume_pump.dm +++ b/code/modules/atmospherics/machinery/components/binary_devices/volume_pump.dm @@ -26,6 +26,9 @@ Thus, the two variables affect pump operation are set in New(): var/id = null var/datum/radio_frequency/radio_connection + construction_type = /obj/item/pipe/directional + pipe_state = "volumepump" + /obj/machinery/atmospherics/components/binary/volume_pump/Destroy() SSradio.remove_object(src,frequency) return ..() @@ -171,7 +174,10 @@ Thus, the two variables affect pump operation are set in New(): if(. && on && is_operational()) to_chat(user, "You cannot unwrench [src], turn it off first!") return FALSE +<<<<<<< HEAD else investigate_log("Volume Pump, [src.name], was unwrenched by [key_name(usr)] at [x], [y], [z], [A]", INVESTIGATE_ATMOS) message_admins("Volume Pump, [src.name], was unwrenched by [ADMIN_LOOKUPFLW(usr)] at [A]") return +======= +>>>>>>> e8c2109... Atmos construction rework again (#31944) diff --git a/code/modules/atmospherics/machinery/components/trinary_devices/filter.dm b/code/modules/atmospherics/machinery/components/trinary_devices/filter.dm index 68814e38b9..d0cba4d581 100644 --- a/code/modules/atmospherics/machinery/components/trinary_devices/filter.dm +++ b/code/modules/atmospherics/machinery/components/trinary_devices/filter.dm @@ -10,6 +10,9 @@ var/frequency = 0 var/datum/radio_frequency/radio_connection + construction_type = /obj/item/pipe/trinary/flippable + pipe_state = "filter" + /obj/machinery/atmospherics/components/trinary/filter/flipped icon_state = "filter_off_f" flipped = TRUE diff --git a/code/modules/atmospherics/machinery/components/trinary_devices/mixer.dm b/code/modules/atmospherics/machinery/components/trinary_devices/mixer.dm index 1fb8b072c6..b706cd3cd9 100644 --- a/code/modules/atmospherics/machinery/components/trinary_devices/mixer.dm +++ b/code/modules/atmospherics/machinery/components/trinary_devices/mixer.dm @@ -12,6 +12,9 @@ var/node1_concentration = 0.5 var/node2_concentration = 0.5 + construction_type = /obj/item/pipe/trinary/flippable + pipe_state = "mixer" + //node 3 is the outlet, nodes 1 & 2 are intakes /obj/machinery/atmospherics/components/trinary/mixer/flipped @@ -171,4 +174,3 @@ if(. && on && is_operational()) to_chat(user, "You cannot unwrench [src], turn it off first!") return FALSE - diff --git a/code/modules/atmospherics/machinery/components/unary_devices/heat_exchanger.dm b/code/modules/atmospherics/machinery/components/unary_devices/heat_exchanger.dm index 1b1a470315..c8daf29ad3 100644 --- a/code/modules/atmospherics/machinery/components/unary_devices/heat_exchanger.dm +++ b/code/modules/atmospherics/machinery/components/unary_devices/heat_exchanger.dm @@ -12,6 +12,8 @@ var/obj/machinery/atmospherics/components/unary/heat_exchanger/partner = null var/update_cycle + pipe_state = "heunary" + /obj/machinery/atmospherics/components/unary/heat_exchanger/update_icon() if(NODE1) icon_state = "he_intact" diff --git a/code/modules/atmospherics/machinery/components/unary_devices/outlet_injector.dm b/code/modules/atmospherics/machinery/components/unary_devices/outlet_injector.dm index b7db6e3eb5..37bfb5d952 100644 --- a/code/modules/atmospherics/machinery/components/unary_devices/outlet_injector.dm +++ b/code/modules/atmospherics/machinery/components/unary_devices/outlet_injector.dm @@ -18,6 +18,8 @@ level = 1 layer = GAS_SCRUBBER_LAYER + pipe_state = "injector" + /obj/machinery/atmospherics/components/unary/outlet_injector/Destroy() SSradio.remove_object(src,frequency) return ..() @@ -188,4 +190,3 @@ if(. && on && is_operational()) to_chat(user, "You cannot unwrench [src], turn it off first!") return FALSE - diff --git a/code/modules/atmospherics/machinery/components/unary_devices/portables_connector.dm b/code/modules/atmospherics/machinery/components/unary_devices/portables_connector.dm index ee48889041..051f3136ee 100644 --- a/code/modules/atmospherics/machinery/components/unary_devices/portables_connector.dm +++ b/code/modules/atmospherics/machinery/components/unary_devices/portables_connector.dm @@ -9,6 +9,7 @@ level = 0 layer = GAS_FILTER_LAYER pipe_flags = PIPING_ONE_PER_TURF + pipe_state = "connector" /obj/machinery/atmospherics/components/unary/portables_connector/New() ..() diff --git a/code/modules/atmospherics/machinery/components/unary_devices/unary_devices.dm b/code/modules/atmospherics/machinery/components/unary_devices/unary_devices.dm index f629020d74..a335fd2f59 100644 --- a/code/modules/atmospherics/machinery/components/unary_devices/unary_devices.dm +++ b/code/modules/atmospherics/machinery/components/unary_devices/unary_devices.dm @@ -4,6 +4,7 @@ initialize_directions = SOUTH device_type = UNARY pipe_flags = PIPING_ONE_PER_TURF + construction_type = /obj/item/pipe/directional /obj/machinery/atmospherics/components/unary/SetInitDirections() initialize_directions = dir diff --git a/code/modules/atmospherics/machinery/components/unary_devices/vent_pump.dm b/code/modules/atmospherics/machinery/components/unary_devices/vent_pump.dm index 28a76f0a2d..82482b562f 100644 --- a/code/modules/atmospherics/machinery/components/unary_devices/vent_pump.dm +++ b/code/modules/atmospherics/machinery/components/unary_devices/vent_pump.dm @@ -31,6 +31,8 @@ var/radio_filter_out var/radio_filter_in + pipe_state = "uvent" + /obj/machinery/atmospherics/components/unary/vent_pump/on on = TRUE icon_state = "vent_map_on" diff --git a/code/modules/atmospherics/machinery/components/unary_devices/vent_scrubber.dm b/code/modules/atmospherics/machinery/components/unary_devices/vent_scrubber.dm index 7665f93af3..3ee3c3b761 100644 --- a/code/modules/atmospherics/machinery/components/unary_devices/vent_scrubber.dm +++ b/code/modules/atmospherics/machinery/components/unary_devices/vent_scrubber.dm @@ -34,6 +34,8 @@ var/radio_filter_out var/radio_filter_in + pipe_state = "scrubber" + /obj/machinery/atmospherics/components/unary/vent_scrubber/New() ..() if(!id_tag) diff --git a/code/modules/atmospherics/machinery/pipes/heat_exchange/junction.dm b/code/modules/atmospherics/machinery/pipes/heat_exchange/junction.dm index 2645e0f9fa..67186f09f5 100644 --- a/code/modules/atmospherics/machinery/pipes/heat_exchange/junction.dm +++ b/code/modules/atmospherics/machinery/pipes/heat_exchange/junction.dm @@ -13,6 +13,9 @@ initialize_directions_he = SOUTH device_type = BINARY + + construction_type = /obj/item/pipe/directional + pipe_state = "junction" /obj/machinery/atmospherics/pipe/heat_exchanging/junction/SetInitDirections() switch(dir) @@ -43,4 +46,4 @@ return 0 init_dir = H.initialize_directions_he if(init_dir & get_dir(target,src)) - return 1 \ No newline at end of file + return 1 diff --git a/code/modules/atmospherics/machinery/pipes/heat_exchange/manifold.dm b/code/modules/atmospherics/machinery/pipes/heat_exchange/manifold.dm index d305bf1064..e4df82073b 100644 --- a/code/modules/atmospherics/machinery/pipes/heat_exchange/manifold.dm +++ b/code/modules/atmospherics/machinery/pipes/heat_exchange/manifold.dm @@ -10,6 +10,9 @@ device_type = TRINARY + construction_type = /obj/item/pipe/trinary + pipe_state = "he_manifold" + /obj/machinery/atmospherics/pipe/heat_exchanging/manifold/SetInitDirections() switch(dir) if(NORTH) @@ -44,6 +47,9 @@ device_type = QUATERNARY + construction_type = /obj/item/pipe/quaternary + pipe_state = "he_manifold4w" + /obj/machinery/atmospherics/pipe/heat_exchanging/manifold4w/SetInitDirections() initialize_directions_he = initial(initialize_directions_he) @@ -57,4 +63,4 @@ //Add non-broken pieces for(DEVICE_TYPE_LOOP) if(NODE_I) - add_overlay(getpipeimage('icons/obj/atmospherics/pipes/heat.dmi', "manifold_intact[invis]", get_dir(src, NODE_I))) \ No newline at end of file + add_overlay(getpipeimage('icons/obj/atmospherics/pipes/heat.dmi', "manifold_intact[invis]", get_dir(src, NODE_I))) diff --git a/code/modules/atmospherics/machinery/pipes/heat_exchange/simple.dm b/code/modules/atmospherics/machinery/pipes/heat_exchange/simple.dm index e69e30f327..637d55306f 100644 --- a/code/modules/atmospherics/machinery/pipes/heat_exchange/simple.dm +++ b/code/modules/atmospherics/machinery/pipes/heat_exchange/simple.dm @@ -9,6 +9,9 @@ device_type = BINARY + construction_type = /obj/item/pipe/binary/bendable + pipe_state = "he" + /obj/machinery/atmospherics/pipe/heat_exchanging/simple/SetInitDirections() if(dir in GLOB.diagonals) initialize_directions_he = dir @@ -30,4 +33,4 @@ /obj/machinery/atmospherics/pipe/heat_exchanging/simple/update_icon() normalize_dir() - ..() \ No newline at end of file + ..() diff --git a/code/modules/atmospherics/machinery/pipes/layermanifold.dm b/code/modules/atmospherics/machinery/pipes/layermanifold.dm index cc9ef36678..fee00baf50 100644 --- a/code/modules/atmospherics/machinery/pipes/layermanifold.dm +++ b/code/modules/atmospherics/machinery/pipes/layermanifold.dm @@ -11,6 +11,8 @@ volume = 260 var/list/front_nodes var/list/back_nodes + construction_type = /obj/item/pipe/binary + pipe_state = "layer_manifold" /obj/machinery/atmospherics/pipe/layer_manifold/Initialize() front_nodes = list() @@ -31,17 +33,7 @@ A.build_network() /obj/machinery/atmospherics/pipe/layer_manifold/proc/get_all_connected_nodes() - var/list/obj/machinery/atmospherics/all_connected = list() - for(var/obj/machinery/atmospherics/I in front_nodes) - all_connected[I] = I - for(var/obj/machinery/atmospherics/I in back_nodes) - all_connected[I] = I - for(var/obj/machinery/atmospherics/I in nodes) - all_connected[I] = I - var/list/obj/machinery/atmospherics/returnlist = list() - for(var/obj/machinery/atmospherics/A in all_connected) - returnlist += all_connected[A] - return returnlist + return front_nodes + back_nodes + nodes /obj/machinery/atmospherics/pipe/layer_manifold/update_icon() //HEAVILY WIP FOR UPDATE ICONS!! layer = (initial(layer) + (PIPING_LAYER_MAX * PIPING_LAYER_LCHANGE)) //This is above everything else. diff --git a/code/modules/atmospherics/machinery/pipes/manifold.dm b/code/modules/atmospherics/machinery/pipes/manifold.dm index 5be4b63d88..8560addc3a 100644 --- a/code/modules/atmospherics/machinery/pipes/manifold.dm +++ b/code/modules/atmospherics/machinery/pipes/manifold.dm @@ -13,6 +13,9 @@ device_type = TRINARY + construction_type = /obj/item/pipe/trinary + pipe_state = "manifold" + /obj/machinery/atmospherics/pipe/manifold/SetInitDirections() switch(dir) if(NORTH) @@ -168,4 +171,4 @@ layer = GAS_PIPE_VISIBLE_LAYER /obj/machinery/atmospherics/pipe/manifold/brown/hidden - level = PIPE_HIDDEN_LEVEL \ No newline at end of file + level = PIPE_HIDDEN_LEVEL diff --git a/code/modules/atmospherics/machinery/pipes/manifold4w.dm b/code/modules/atmospherics/machinery/pipes/manifold4w.dm index fa21275ca3..f368c6bb0f 100644 --- a/code/modules/atmospherics/machinery/pipes/manifold4w.dm +++ b/code/modules/atmospherics/machinery/pipes/manifold4w.dm @@ -12,6 +12,9 @@ device_type = QUATERNARY + construction_type = /obj/item/pipe/quaternary + pipe_state = "manifold4w" + /obj/machinery/atmospherics/pipe/manifold4w/SetInitDirections() initialize_directions = initial(initialize_directions) @@ -160,4 +163,4 @@ layer = GAS_PIPE_VISIBLE_LAYER /obj/machinery/atmospherics/pipe/manifold4w/brown/hidden - level = PIPE_HIDDEN_LEVEL \ No newline at end of file + level = PIPE_HIDDEN_LEVEL diff --git a/code/modules/atmospherics/machinery/pipes/simple.dm b/code/modules/atmospherics/machinery/pipes/simple.dm index e8d82c611c..0d6537b3d1 100644 --- a/code/modules/atmospherics/machinery/pipes/simple.dm +++ b/code/modules/atmospherics/machinery/pipes/simple.dm @@ -16,6 +16,9 @@ The regular pipe you see everywhere, including bent ones. device_type = BINARY + construction_type = /obj/item/pipe/binary/bendable + pipe_state = "simple" + /obj/machinery/atmospherics/pipe/simple/SetInitDirections() normalize_cardinal_directions() if(dir in GLOB.diagonals) @@ -158,4 +161,4 @@ The regular pipe you see everywhere, including bent ones. layer = GAS_PIPE_VISIBLE_LAYER /obj/machinery/atmospherics/pipe/simple/brown/hidden - level = PIPE_HIDDEN_LEVEL \ No newline at end of file + level = PIPE_HIDDEN_LEVEL From 0a3f908a7b1ca36a3d8437dc5c25995bfbed201d Mon Sep 17 00:00:00 2001 From: deathride58 Date: Mon, 23 Oct 2017 17:33:04 -0400 Subject: [PATCH 105/227] FUCK - fixes brig wiring --- _maps/map_files/BoxStation/BoxStation.dmm | 1365 +++++++++++---------- 1 file changed, 726 insertions(+), 639 deletions(-) diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index de39134719..e647f1d0a2 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -4455,6 +4455,9 @@ /obj/structure/cable{ icon_state = "1-8" }, +/obj/structure/cable{ + icon_state = "2-8" + }, /turf/open/floor/plasteel/red/corner{ dir = 8 }, @@ -4542,6 +4545,9 @@ /area/security/brig) "aks" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, /turf/open/floor/plasteel/red/side{ dir = 5 }, @@ -4686,11 +4692,21 @@ "akM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-4" + }, /turf/open/floor/plating, /area/security/brig) "akN" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, /turf/open/floor/plating, /area/security/brig) "akO" = ( @@ -4699,6 +4715,9 @@ name = "Cell 1" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, /turf/open/floor/plasteel/red/side, /area/security/brig) "akP" = ( @@ -4707,15 +4726,16 @@ name = "Cell 2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, /turf/open/floor/plasteel/red/side, /area/security/brig) "akQ" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 3"; - name = "Cell 3" +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/red/side, +/turf/closed/wall, /area/security/brig) "akR" = ( /obj/machinery/door/window/brigdoor/security/cell{ @@ -4733,11 +4753,20 @@ name = "Cell 4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, /turf/open/floor/plasteel/red/side, /area/security/brig) "akT" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, /turf/open/floor/plating, /area/security/brig) "akU" = ( @@ -4745,10 +4774,22 @@ name = "Brig Desk"; req_access_txt = "1" }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, /turf/open/floor/plasteel/black, /area/security/brig) "akV" = ( /obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, /turf/open/floor/plating, /area/security/brig) "akW" = ( @@ -4791,6 +4832,9 @@ name = "Brig"; req_access_txt = "63" }, +/obj/structure/cable{ + icon_state = "1-8" + }, /turf/open/floor/plasteel/red/side{ dir = 5 }, @@ -5007,6 +5051,9 @@ pixel_x = -28; pixel_y = -8 }, +/obj/structure/cable{ + icon_state = "1-2" + }, /turf/open/floor/plasteel/black, /area/security/brig) "alA" = ( @@ -5269,6 +5316,9 @@ pixel_y = 5; req_access_txt = "63" }, +/obj/structure/cable{ + icon_state = "1-2" + }, /turf/open/floor/plasteel/black, /area/security/brig) "amm" = ( @@ -5517,6 +5567,9 @@ pixel_y = 8; req_access_txt = "2" }, +/obj/structure/cable{ + icon_state = "1-4" + }, /turf/open/floor/plasteel/black, /area/security/brig) "amU" = ( @@ -5531,6 +5584,9 @@ /turf/open/floor/plating, /area/security/brig) "amV" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, /turf/open/floor/plasteel/black, /area/security/brig) "amW" = ( @@ -58336,6 +58392,28 @@ /turf/open/floor/plasteel/red/corner, /area/security/brig) "QpN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/brig) +"QpO" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 3"; + name = "Cell 3" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/red/side, +/area/security/brig) +"QpP" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ cyclelinkeddir = 2; @@ -58347,11 +58425,14 @@ id = "seclobby"; name = "security shutters" }, +/obj/structure/cable{ + icon_state = "4-8" + }, /turf/open/floor/plasteel/red/side{ dir = 9 }, /area/security/brig) -"QpO" = ( +"QpQ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -58360,25 +58441,25 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"QpP" = ( +"QpR" = ( /turf/open/floor/plasteel/red/side{ dir = 1 }, /area/hallway/primary/fore) -"QpQ" = ( +"QpS" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"QpR" = ( +"QpT" = ( /obj/machinery/flasher{ id = "Cell 2"; pixel_x = -28 }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"QpS" = ( +"QpU" = ( /obj/machinery/flasher{ id = "Cell 3"; pixel_x = -28 @@ -58388,14 +58469,14 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"QpT" = ( +"QpV" = ( /obj/machinery/flasher{ id = "Cell 4"; pixel_x = -28 }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"QpU" = ( +"QpW" = ( /obj/structure/table/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "briggate"; @@ -58407,44 +58488,44 @@ }, /turf/open/floor/plasteel/black, /area/security/brig) -"QpV" = ( +"QpX" = ( /turf/open/floor/plasteel/red/side{ dir = 8 }, /area/hallway/primary/fore) -"QpW" = ( -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/hallway/primary/fore) -"QpX" = ( -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/hallway/primary/fore) "QpY" = ( /turf/open/floor/plasteel/red/side{ - dir = 6 + dir = 1 }, /area/hallway/primary/fore) "QpZ" = ( /turf/open/floor/plasteel/red/side{ - dir = 10 + dir = 1 }, /area/hallway/primary/fore) "Qqa" = ( +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/hallway/primary/fore) +"Qqb" = ( +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/hallway/primary/fore) +"Qqc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/red/side{ dir = 4 }, /area/hallway/primary/fore) -"Qqb" = ( +"Qqd" = ( /obj/machinery/vending/cigarette, /turf/open/floor/plasteel/red/side{ dir = 4 }, /area/hallway/primary/fore) -"Qqc" = ( +"Qqe" = ( /obj/structure/table/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "briggate"; @@ -58456,30 +58537,36 @@ name = "Brig Desk"; req_access_txt = "1" }, +/obj/structure/cable{ + icon_state = "1-4" + }, /turf/open/floor/plasteel/black, /area/security/brig) -"Qqd" = ( +"Qqf" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "seclobby"; name = "security shutters" }, +/obj/structure/cable{ + icon_state = "0-8" + }, /turf/open/floor/plating, /area/security/brig) -"Qqe" = ( +"Qqg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/red/side{ dir = 4 }, /area/hallway/primary/fore) -"Qqf" = ( +"Qqh" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, /turf/open/floor/plasteel/red/side{ dir = 4 }, /area/hallway/primary/fore) -"Qqg" = ( +"Qqi" = ( /obj/machinery/light{ dir = 1 }, @@ -58487,7 +58574,7 @@ dir = 1 }, /area/hallway/primary/fore) -"Qqh" = ( +"Qqj" = ( /obj/structure/sign/securearea{ pixel_y = 32 }, @@ -58495,7 +58582,7 @@ dir = 4 }, /area/hallway/primary/fore) -"Qqi" = ( +"Qqk" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ cyclelinkeddir = 1; @@ -58507,31 +58594,31 @@ dir = 1 }, /area/hallway/primary/fore) -"Qqj" = ( +"Qql" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/red/side{ dir = 10 }, /area/hallway/primary/fore) -"Qqk" = ( -/turf/open/floor/plasteel/red/side, -/area/hallway/primary/fore) -"Qql" = ( -/turf/open/floor/plasteel/red/side, -/area/hallway/primary/fore) "Qqm" = ( +/turf/open/floor/plasteel/red/side, +/area/hallway/primary/fore) +"Qqn" = ( +/turf/open/floor/plasteel/red/side, +/area/hallway/primary/fore) +"Qqo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/red/side{ dir = 6 }, /area/hallway/primary/fore) -"Qqn" = ( +"Qqp" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/red/side{ dir = 4 }, /area/hallway/primary/fore) -"Qqo" = ( +"Qqq" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ cyclelinkeddir = 1; @@ -58541,12 +58628,12 @@ }, /turf/open/floor/plasteel/red/side, /area/hallway/primary/fore) -"Qqp" = ( +"Qqr" = ( /turf/open/floor/plasteel/red/side{ dir = 6 }, /area/hallway/primary/fore) -"Qqq" = ( +"Qqs" = ( /obj/machinery/flasher{ id = "brigentry"; pixel_x = 0; @@ -58558,34 +58645,34 @@ }, /turf/open/floor/plasteel/red/side, /area/hallway/primary/fore) -"Qqr" = ( +"Qqt" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/fore/secondary) -"Qqs" = ( +"Qqu" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/disposalpipe/segment, /turf/closed/wall, /area/maintenance/fore/secondary) -"Qqt" = ( +"Qqv" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/open/floor/plating, /area/maintenance/fore/secondary) -"Qqu" = ( +"Qqw" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, /turf/open/floor/plating, /area/maintenance/fore) -"Qqv" = ( +"Qqx" = ( /obj/structure/chair/wood{ dir = 4 }, @@ -58593,11 +58680,11 @@ icon_state = "wood-broken6" }, /area/maintenance/bar/cafe) -"Qqw" = ( +"Qqy" = ( /obj/structure/table/wood, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"Qqx" = ( +"Qqz" = ( /obj/structure/chair/wood{ dir = 8 }, @@ -58605,22 +58692,12 @@ icon_state = "wood-broken7" }, /area/maintenance/bar/cafe) -"Qqy" = ( +"QqA" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"Qqz" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) -"QqA" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/bar/cafe) "QqB" = ( /obj/structure/table/wood, -/obj/machinery/chem_dispenser/drinks/beer, /turf/open/floor/wood, /area/maintenance/bar/cafe) "QqC" = ( @@ -58629,12 +58706,22 @@ }, /area/maintenance/bar/cafe) "QqD" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks/beer, +/turf/open/floor/wood, +/area/maintenance/bar/cafe) +"QqE" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/maintenance/bar/cafe) +"QqF" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QqE" = ( +"QqG" = ( /obj/structure/chair/wood{ dir = 4 }, @@ -58643,7 +58730,7 @@ }, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QqF" = ( +"QqH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -58653,7 +58740,7 @@ }, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QqG" = ( +"QqI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -58663,14 +58750,14 @@ }, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QqH" = ( +"QqJ" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /obj/structure/chair/stool/bar, /turf/open/floor/wood{ icon_state = "wood-broken7" }, /area/maintenance/bar/cafe) -"QqI" = ( +"QqK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -58679,22 +58766,22 @@ icon_state = "wood-broken6" }, /area/maintenance/bar/cafe) -"QqJ" = ( +"QqL" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QqK" = ( +"QqM" = ( /obj/structure/table/wood, /obj/machinery/chem_dispenser/drinks, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QqL" = ( +"QqN" = ( /obj/structure/chair/wood{ dir = 4 }, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QqM" = ( +"QqO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, @@ -58704,7 +58791,7 @@ icon_state = "wood-broken" }, /area/maintenance/bar/cafe) -"QqN" = ( +"QqP" = ( /obj/machinery/power/apc{ areastring = "/area/crew_quarters/theatre/mime"; dir = 2; @@ -58726,7 +58813,7 @@ icon_state = "wood-broken6" }, /area/maintenance/bar/cafe) -"QqO" = ( +"QqQ" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable{ icon_state = "2-4" @@ -58736,7 +58823,7 @@ }, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QqP" = ( +"QqR" = ( /obj/machinery/power/apc{ areastring = "/area/crew_quarters/theatre/mime"; dir = 2; @@ -58755,7 +58842,7 @@ icon_state = "wood-broken6" }, /area/maintenance/bar/cafe) -"QqQ" = ( +"QqS" = ( /obj/machinery/light/small, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 @@ -58764,7 +58851,7 @@ icon_state = "wood-broken" }, /area/maintenance/bar/cafe) -"QqR" = ( +"QqT" = ( /obj/structure/table/wood, /obj/item/storage/box/drinkingglasses, /obj/machinery/light_switch{ @@ -58772,14 +58859,14 @@ }, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QqS" = ( +"QqU" = ( /turf/closed/wall, /area/crew_quarters/theatre/mime) -"QqT" = ( +"QqV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall, /area/crew_quarters/theatre/mime) -"QqU" = ( +"QqW" = ( /obj/structure/barricade/wooden, /obj/structure/grille, /obj/structure/cable{ @@ -58787,17 +58874,17 @@ }, /turf/open/floor/wood, /area/maintenance/fore) -"QqV" = ( +"QqX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall, /area/crew_quarters/theatre/clown) -"QqW" = ( +"QqY" = ( /obj/machinery/vending/autodrobe, /turf/open/floor/plasteel/white/side{ dir = 1 }, /area/crew_quarters/theatre/mime) -"QqX" = ( +"QqZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light{ dir = 1 @@ -58806,7 +58893,7 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"QqY" = ( +"Qra" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/bed, /obj/item/bedsheet/mime, @@ -58814,12 +58901,12 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"QqZ" = ( +"Qrb" = ( /obj/structure/closet/secure_closet/freezer/cream_pie, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qra" = ( +"Qrc" = ( /obj/structure/closet/crate/wooden/toy, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light{ @@ -58827,18 +58914,18 @@ }, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qrb" = ( +"Qrd" = ( /obj/machinery/vending/autodrobe, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qrc" = ( +"Qre" = ( /obj/machinery/recharger{ pixel_y = 4 }, /obj/structure/table, /turf/open/floor/plasteel/red/side, /area/security/checkpoint/customs) -"Qrd" = ( +"Qrf" = ( /obj/structure/table, /obj/item/reagent_containers/food/snacks/baguette, /obj/item/toy/dummy, @@ -58849,7 +58936,7 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qre" = ( +"Qrg" = ( /obj/effect/landmark/start/mime, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 @@ -58858,7 +58945,7 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qrf" = ( +"Qrh" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/camera{ c_tag = "Mime's Office"; @@ -58868,7 +58955,7 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qrg" = ( +"Qri" = ( /obj/structure/mirror{ pixel_x = -28 }, @@ -58880,14 +58967,14 @@ }, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qrh" = ( +"Qrj" = ( /obj/effect/landmark/start/clown, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qri" = ( +"Qrk" = ( /obj/structure/bed, /obj/item/bedsheet/clown, /obj/machinery/airalarm{ @@ -58896,7 +58983,7 @@ }, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qrj" = ( +"Qrl" = ( /obj/structure/table, /obj/item/lipstick/random{ pixel_x = -2; @@ -58914,26 +59001,26 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qrk" = ( +"Qrm" = ( /turf/open/floor/plasteel/white/side{ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qrl" = ( +"Qrn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/white/side{ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qrm" = ( +"Qro" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qrn" = ( +"Qrp" = ( /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qro" = ( +"Qrq" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -58944,7 +59031,7 @@ /obj/item/bikehorn, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qrp" = ( +"Qrr" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = 1; @@ -58955,7 +59042,7 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qrq" = ( +"Qrs" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -58963,7 +59050,7 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qrr" = ( +"Qrt" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -58971,7 +59058,7 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qrs" = ( +"Qru" = ( /obj/structure/table, /obj/item/device/flashlight/lamp/bananalamp, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -58985,55 +59072,49 @@ }, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qrt" = ( +"Qrv" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qru" = ( +"Qrw" = ( /obj/structure/statue/bananium/clown, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qrv" = ( +"Qrx" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/crew_quarters/theatre/clown) -"Qrw" = ( +"Qry" = ( /obj/machinery/door/airlock/clown{ name = "Clown's Office"; req_access_txt = "46" }, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qrx" = ( +"Qrz" = ( /obj/machinery/door/airlock{ name = "Bar Storage"; req_access_txt = "25" }, /turf/open/floor/wood, /area/crew_quarters/bar) -"Qry" = ( +"QrA" = ( /obj/structure/reagent_dispensers/beerkeg, /turf/open/floor/wood, /area/crew_quarters/bar) -"Qrz" = ( +"QrB" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" }, /turf/open/floor/plating, /area/bridge/meeting_room) -"QrA" = ( -/turf/open/floor/plating, -/area/maintenance/department/bridge) -"QrB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/bridge) "QrC" = ( /turf/open/floor/plating, /area/maintenance/department/bridge) "QrD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/maintenance/department/bridge) "QrE" = ( @@ -59046,32 +59127,38 @@ /turf/open/floor/plating, /area/maintenance/department/bridge) "QrH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/department/bridge) "QrI" = ( /turf/open/floor/plating, /area/maintenance/department/bridge) "QrJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/bridge) +"QrK" = ( +/turf/open/floor/plating, +/area/maintenance/department/bridge) +"QrL" = ( /obj/machinery/door/airlock/maintenance{ name = "bridge maintenance access"; req_access_txt = "20" }, /turf/open/floor/plating, /area/crew_quarters/heads/captain) -"QrK" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/bridge) -"QrL" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/bridge) "QrM" = ( +/turf/closed/wall/r_wall, +/area/maintenance/department/bridge) +"QrN" = ( +/turf/closed/wall/r_wall, +/area/maintenance/department/bridge) +"QrO" = ( /obj/machinery/light_switch{ pixel_y = 28 }, /turf/open/floor/circuit, /area/ai_monitored/nuke_storage) -"QrN" = ( +"QrP" = ( /obj/machinery/power/apc{ dir = 1; name = "Vault APC"; @@ -59083,38 +59170,38 @@ }, /turf/open/floor/circuit, /area/ai_monitored/nuke_storage) -"QrO" = ( +"QrQ" = ( /obj/structure/cable{ icon_state = "2-4" }, /turf/open/floor/circuit, /area/ai_monitored/nuke_storage) -"QrP" = ( +"QrR" = ( /obj/structure/cable{ icon_state = "1-8" }, /turf/open/floor/circuit, /area/ai_monitored/nuke_storage) -"QrQ" = ( +"QrS" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/closed/wall/r_wall, /area/ai_monitored/nuke_storage) -"QrR" = ( +"QrT" = ( /obj/structure/sign/securearea, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/closed/wall/r_wall, /area/ai_monitored/nuke_storage) -"QrS" = ( +"QrU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /turf/closed/wall/r_wall, /area/ai_monitored/nuke_storage) -"QrT" = ( +"QrV" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ @@ -59122,10 +59209,10 @@ }, /turf/open/floor/plating, /area/security/checkpoint/checkpoint2) -"QrU" = ( +"QrW" = ( /turf/closed/wall/r_wall, /area/security/checkpoint/checkpoint2) -"QrV" = ( +"QrX" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ icon_state = "2-4" @@ -59140,7 +59227,7 @@ dir = 5 }, /area/security/checkpoint/checkpoint2) -"QrW" = ( +"QrY" = ( /obj/structure/closet/secure_closet/security, /obj/machinery/power/apc{ areastring = "/area/security/checkpoint/checkpoint2"; @@ -59156,7 +59243,7 @@ dir = 9 }, /area/security/checkpoint/checkpoint2) -"QrX" = ( +"QrZ" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_y = 30 }, @@ -59167,7 +59254,7 @@ dir = 1 }, /area/security/checkpoint/checkpoint2) -"QrY" = ( +"Qsa" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "2-8" @@ -59179,7 +59266,7 @@ dir = 1 }, /area/security/checkpoint/checkpoint2) -"QrZ" = ( +"Qsb" = ( /obj/structure/cable{ icon_state = "1-8" }, @@ -59187,13 +59274,13 @@ dir = 1 }, /area/security/checkpoint/checkpoint2) -"Qsa" = ( +"Qsc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/red/side{ dir = 1 }, /area/security/checkpoint/checkpoint2) -"Qsb" = ( +"Qsd" = ( /obj/machinery/requests_console{ department = "Security"; departmentType = 5; @@ -59203,13 +59290,13 @@ dir = 1 }, /area/security/checkpoint/checkpoint2) -"Qsc" = ( +"Qse" = ( /obj/machinery/computer/security, /turf/open/floor/plasteel/red/side{ dir = 5 }, /area/security/checkpoint/checkpoint2) -"Qsd" = ( +"Qsf" = ( /obj/structure/closet/wardrobe/red, /obj/machinery/light{ dir = 8 @@ -59218,10 +59305,10 @@ dir = 8 }, /area/security/checkpoint/checkpoint2) -"Qse" = ( +"Qsg" = ( /turf/open/floor/plasteel, /area/security/checkpoint/checkpoint2) -"Qsf" = ( +"Qsh" = ( /obj/machinery/computer/secure_data, /obj/machinery/light{ dir = 4 @@ -59230,7 +59317,7 @@ dir = 4 }, /area/security/checkpoint/checkpoint2) -"Qsg" = ( +"Qsi" = ( /obj/machinery/airalarm{ dir = 4; pixel_x = -22 @@ -59252,7 +59339,7 @@ dir = 10 }, /area/security/checkpoint/checkpoint2) -"Qsh" = ( +"Qsj" = ( /obj/item/paper_bin{ pixel_x = 1; pixel_y = 9 @@ -59261,7 +59348,7 @@ /obj/structure/table, /turf/open/floor/plasteel/red/side, /area/security/checkpoint/checkpoint2) -"Qsi" = ( +"Qsk" = ( /obj/item/device/radio/off, /obj/item/crowbar, /obj/item/device/assembly/flash/handheld, @@ -59275,7 +59362,7 @@ dir = 6 }, /area/security/checkpoint/checkpoint2) -"Qsj" = ( +"Qsl" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "vault"; @@ -59289,7 +59376,7 @@ }, /turf/open/floor/plating, /area/security/checkpoint/checkpoint2) -"Qsk" = ( +"Qsm" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -59298,32 +59385,32 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"Qsl" = ( +"Qsn" = ( /obj/effect/spawner/lootdrop/grille_or_trash, /turf/open/floor/plating{ icon_state = "platingdmg3" }, /area/maintenance/port/aft) -"Qsm" = ( +"Qso" = ( /obj/machinery/door/airlock{ id_tag = "MaintDorm2"; name = "Maintenance Dorm 2" }, /turf/open/floor/wood, /area/maintenance/port/aft) -"Qsn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"Qso" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/wood, -/area/maintenance/port/aft) "Qsp" = ( -/obj/structure/closet/secure_closet/personal, +/obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/wood, /area/maintenance/port/aft) "Qsq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"Qsr" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"Qss" = ( /obj/machinery/light/small, /obj/structure/table/wood, /obj/machinery/atmospherics/pipe/simple/general/hidden{ @@ -59331,7 +59418,7 @@ }, /turf/open/floor/wood, /area/maintenance/port/aft) -"Qsr" = ( +"Qst" = ( /obj/structure/bed, /obj/item/bedsheet, /obj/machinery/atmospherics/pipe/simple/general/hidden{ @@ -59339,26 +59426,20 @@ }, /turf/open/floor/wood, /area/maintenance/port/aft) -"Qss" = ( -/turf/closed/wall, -/area/maintenance/bar) -"Qst" = ( -/turf/closed/wall, -/area/maintenance/bar) "Qsu" = ( /turf/closed/wall, /area/maintenance/bar) "Qsv" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - req_access_txt = "0" - }, -/turf/open/floor/plating, +/turf/closed/wall, /area/maintenance/bar) "Qsw" = ( /turf/closed/wall, /area/maintenance/bar) "Qsx" = ( -/turf/closed/wall, +/obj/machinery/door/airlock/maintenance/abandoned{ + req_access_txt = "0" + }, +/turf/open/floor/plating, /area/maintenance/bar) "Qsy" = ( /turf/closed/wall, @@ -59367,21 +59448,27 @@ /turf/closed/wall, /area/maintenance/bar) "QsA" = ( -/turf/open/floor/wood, +/turf/closed/wall, /area/maintenance/bar) "QsB" = ( +/turf/closed/wall, +/area/maintenance/bar) +"QsC" = ( +/turf/open/floor/wood, +/area/maintenance/bar) +"QsD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/open/floor/wood, /area/maintenance/bar) -"QsC" = ( +"QsE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/wood, /area/maintenance/bar) -"QsD" = ( +"QsF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -59389,7 +59476,7 @@ icon_state = "wood-broken5" }, /area/maintenance/bar) -"QsE" = ( +"QsG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -59398,7 +59485,7 @@ }, /turf/open/floor/wood, /area/maintenance/bar) -"QsF" = ( +"QsH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -59410,7 +59497,7 @@ }, /turf/open/floor/plating, /area/maintenance/bar) -"QsG" = ( +"QsI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -59419,30 +59506,30 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"QsH" = ( +"QsJ" = ( /turf/closed/wall, /area/maintenance/bar) -"QsI" = ( +"QsK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood{ icon_state = "wood-broken7" }, /area/maintenance/bar) -"QsJ" = ( +"QsL" = ( /obj/structure/chair/stool/bar, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, /turf/open/floor/wood, /area/maintenance/bar) -"QsK" = ( +"QsM" = ( /obj/structure/table/wood, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/wood, /area/maintenance/bar) -"QsL" = ( +"QsN" = ( /obj/structure/table/wood, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -59457,18 +59544,6 @@ icon_state = "wood-broken7" }, /area/maintenance/bar) -"QsM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/bar) -"QsN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/bar) "QsO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -59482,15 +59557,27 @@ /turf/closed/wall, /area/maintenance/bar) "QsQ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/closed/wall, /area/maintenance/bar) "QsR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, /turf/closed/wall, /area/maintenance/bar) "QsS" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/bar) +"QsT" = ( +/turf/closed/wall, +/area/maintenance/bar) +"QsU" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -59499,7 +59586,7 @@ }, /turf/open/floor/wood, /area/maintenance/bar) -"QsT" = ( +"QsV" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -59507,38 +59594,38 @@ icon_state = "wood-broken6" }, /area/maintenance/bar) -"QsU" = ( +"QsW" = ( /obj/structure/chair/stool/bar, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, /area/maintenance/bar) -"QsV" = ( +"QsX" = ( /obj/structure/table/wood, /turf/open/floor/wood{ icon_state = "wood-broken5" }, /area/maintenance/bar) -"QsW" = ( +"QsY" = ( /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/wood, /area/maintenance/bar) -"QsX" = ( +"QsZ" = ( /obj/machinery/chem_dispenser/drinks/beer, /obj/structure/table/wood, /turf/open/floor/wood, /area/maintenance/bar) -"QsY" = ( +"Qta" = ( /turf/closed/wall, /area/maintenance/bar) -"QsZ" = ( +"Qtb" = ( /obj/item/restraints/handcuffs/fake, /obj/effect/decal/cleanable/blood/old, /obj/effect/spawner/lootdrop/minor/kittyears_or_rabbitears, /turf/open/floor/plating, /area/maintenance/bar) -"Qta" = ( +"Qtc" = ( /obj/item/shard, /obj/item/wirecutters, /obj/item/wallframe/camera, @@ -59546,14 +59633,14 @@ icon_state = "panelscorched" }, /area/maintenance/bar) -"Qtb" = ( +"Qtd" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"Qtc" = ( +"Qte" = ( /turf/closed/wall, /area/maintenance/bar) -"Qtd" = ( +"Qtf" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -59564,22 +59651,22 @@ icon_state = "wood-broken" }, /area/maintenance/bar) -"Qte" = ( +"Qtg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/maintenance/bar) -"Qtf" = ( +"Qth" = ( /obj/structure/chair/stool/bar, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood{ icon_state = "wood-broken7" }, /area/maintenance/bar) -"Qtg" = ( +"Qti" = ( /obj/structure/table/wood, /turf/open/floor/wood, /area/maintenance/bar) -"Qth" = ( +"Qtj" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -59587,14 +59674,14 @@ icon_state = "wood-broken7" }, /area/maintenance/bar) -"Qti" = ( +"Qtk" = ( /obj/machinery/vending/boozeomat, /turf/open/floor/wood, /area/maintenance/bar) -"Qtj" = ( +"Qtl" = ( /turf/closed/wall, /area/maintenance/bar) -"Qtk" = ( +"Qtm" = ( /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; name = "2maintenance loot spawner" @@ -59603,7 +59690,7 @@ /obj/item/device/electropack/shockcollar, /turf/open/floor/plating, /area/maintenance/bar) -"Qtl" = ( +"Qtn" = ( /obj/structure/bed, /obj/item/bedsheet/grey, /obj/effect/decal/cleanable/semen{ @@ -59615,11 +59702,11 @@ icon_state = "platingdmg3" }, /area/maintenance/bar) -"Qtm" = ( +"Qto" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"Qtn" = ( +"Qtp" = ( /obj/machinery/door/airlock/maintenance/abandoned{ name = "Incinerator Access"; req_access_txt = "12" @@ -59629,30 +59716,30 @@ }, /turf/open/floor/plating, /area/maintenance/bar) -"Qto" = ( +"Qtq" = ( /turf/open/floor/wood, /area/maintenance/bar) -"Qtp" = ( +"Qtr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood{ icon_state = "wood-broken5" }, /area/maintenance/bar) -"Qtq" = ( +"Qts" = ( /obj/structure/chair/stool/bar, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, /turf/open/floor/wood, /area/maintenance/bar) -"Qtr" = ( +"Qtt" = ( /obj/structure/table/wood, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/wood, /area/maintenance/bar) -"Qts" = ( +"Qtu" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, @@ -59661,15 +59748,15 @@ }, /turf/open/floor/wood, /area/maintenance/bar) -"Qtt" = ( +"Qtv" = ( /obj/machinery/chem_dispenser/drinks, /obj/structure/table/wood, /turf/open/floor/wood, /area/maintenance/bar) -"Qtu" = ( +"Qtw" = ( /turf/closed/wall, /area/maintenance/bar) -"Qtv" = ( +"Qtx" = ( /obj/item/lighter/greyscale, /obj/effect/decal/cleanable/semen{ desc = "Blech."; @@ -59679,32 +59766,32 @@ icon_state = "panelscorched" }, /area/maintenance/bar) -"Qtw" = ( +"Qty" = ( /obj/effect/spawner/lootdrop/maintenance, /obj/effect/decal/cleanable/blood/old, /obj/item/device/assembly/signaler, /turf/open/floor/plating, /area/maintenance/bar) -"Qtx" = ( +"Qtz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"Qty" = ( +"QtA" = ( /turf/closed/wall, /area/maintenance/bar) -"Qtz" = ( +"QtB" = ( /obj/effect/spawner/lootdrop/keg, /turf/open/floor/wood, /area/maintenance/bar) -"QtA" = ( +"QtC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/maintenance/bar) -"QtB" = ( +"QtD" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, /area/maintenance/bar) -"QtC" = ( +"QtE" = ( /obj/machinery/power/apc{ areastring = "/area/maintenance/bar"; dir = 2; @@ -59717,37 +59804,37 @@ icon_state = "wood-broken7" }, /area/maintenance/bar) -"QtD" = ( -/turf/closed/wall, -/area/maintenance/bar) -"QtE" = ( -/turf/closed/wall, -/area/maintenance/bar) "QtF" = ( -/obj/structure/falsewall, -/turf/open/floor/plating, +/turf/closed/wall, /area/maintenance/bar) "QtG" = ( /turf/closed/wall, /area/maintenance/bar) "QtH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, +/obj/structure/falsewall, +/turf/open/floor/plating, /area/maintenance/bar) "QtI" = ( /turf/closed/wall, /area/maintenance/bar) "QtJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) "QtK" = ( +/turf/closed/wall, +/area/maintenance/bar) +"QtL" = ( +/turf/closed/wall, +/area/maintenance/bar) +"QtM" = ( /obj/machinery/door/airlock/maintenance/abandoned{ req_access_txt = "0" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/maintenance/bar) -"QtL" = ( +"QtN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/airlock/maintenance/abandoned{ req_access_txt = "0" @@ -59756,49 +59843,49 @@ icon_state = "wood-broken" }, /area/maintenance/bar) -"QtM" = ( +"QtO" = ( /obj/structure/sign/poster/official/no_erp, /turf/closed/wall, /area/maintenance/bar) -"QtN" = ( -/turf/closed/wall, -/area/maintenance/bar) -"QtO" = ( -/obj/machinery/vending/clothing, -/turf/open/floor/wood, -/area/maintenance/bar) "QtP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) "QtQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/vending/clothing, /turf/open/floor/wood, /area/maintenance/bar) "QtR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, +/turf/closed/wall, /area/maintenance/bar) "QtS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/maintenance/bar) +"QtT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/maintenance/bar) +"QtU" = ( /obj/structure/chair/stool, /turf/open/floor/wood{ icon_state = "wood-broken6" }, /area/maintenance/bar) -"QtT" = ( +"QtV" = ( /turf/open/floor/wood{ icon_state = "wood-broken6" }, /area/maintenance/bar) -"QtU" = ( +"QtW" = ( /obj/machinery/vending/autodrobe, /turf/open/floor/wood, /area/maintenance/bar) -"QtV" = ( +"QtX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"QtW" = ( +"QtY" = ( /obj/structure/sign/poster/random{ pixel_x = -32 }, @@ -59809,34 +59896,34 @@ icon_state = "wood-broken7" }, /area/maintenance/bar) -"QtX" = ( +"QtZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/maintenance/bar) -"QtY" = ( +"Qua" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood{ icon_state = "wood-broken" }, /area/maintenance/bar) -"QtZ" = ( +"Qub" = ( /obj/structure/table/wood/poker, /turf/open/floor/wood{ icon_state = "wood-broken7" }, /area/maintenance/bar) -"Qua" = ( +"Quc" = ( /obj/structure/table/wood/poker, /obj/item/storage/pill_bottle/dice, /turf/open/floor/wood, /area/maintenance/bar) -"Qub" = ( +"Qud" = ( /turf/open/floor/wood{ icon_state = "wood-broken5" }, /area/maintenance/bar) -"Quc" = ( +"Que" = ( /obj/structure/table/wood/bar, /obj/item/paper_bin{ pixel_x = -3; @@ -59848,37 +59935,23 @@ }, /turf/open/floor/wood, /area/maintenance/bar) -"Qud" = ( +"Quf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"Que" = ( +"Qug" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/wood, /area/maintenance/bar) -"Quf" = ( +"Quh" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/open/floor/wood, /area/maintenance/bar) -"Qug" = ( -/obj/structure/table/wood/poker, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"Quh" = ( -/obj/structure/table/wood/poker, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/bar) "Qui" = ( /obj/structure/table/wood/poker, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -59887,19 +59960,33 @@ /turf/open/floor/wood, /area/maintenance/bar) "Quj" = ( -/obj/structure/chair/stool, +/obj/structure/table/wood/poker, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/wood, /area/maintenance/bar) "Quk" = ( +/obj/structure/table/wood/poker, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"Qul" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"Qum" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/open/floor/wood, /area/maintenance/bar) -"Qul" = ( +"Qun" = ( /obj/structure/table/wood/bar, /obj/machinery/light{ dir = 4 @@ -59908,21 +59995,21 @@ icon_state = "wood-broken6" }, /area/maintenance/bar) -"Qum" = ( +"Quo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"Qun" = ( +"Qup" = ( /turf/open/floor/wood{ icon_state = "wood-broken5" }, /area/maintenance/bar) -"Quo" = ( +"Quq" = ( /obj/structure/table/wood/poker, /obj/item/coin/iron, /turf/open/floor/wood, /area/maintenance/bar) -"Qup" = ( +"Qur" = ( /obj/structure/table/wood/bar, /obj/item/reagent_containers/spray/cleaner, /obj/structure/sign/poster/random{ @@ -59930,29 +60017,29 @@ }, /turf/open/floor/wood, /area/maintenance/bar) -"Quq" = ( +"Qus" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"Qur" = ( +"Qut" = ( /obj/effect/spawner/lootdrop/keg, /turf/open/floor/wood{ icon_state = "wood-broken7" }, /area/maintenance/bar) -"Qus" = ( +"Quu" = ( /obj/structure/sign/poster/random{ pixel_y = -32 }, /turf/open/floor/wood, /area/maintenance/bar) -"Qut" = ( +"Quv" = ( /obj/structure/chair/stool, /turf/open/floor/wood{ icon_state = "wood-broken" }, /area/maintenance/bar) -"Quu" = ( +"Quw" = ( /obj/structure/chair/stool, /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; @@ -59960,7 +60047,7 @@ }, /turf/open/floor/wood, /area/maintenance/bar) -"Quv" = ( +"Qux" = ( /obj/structure/sign/poster/random{ pixel_y = -32 }, @@ -59968,35 +60055,35 @@ icon_state = "wood-broken7" }, /area/maintenance/bar) -"Quw" = ( +"Quy" = ( /obj/machinery/vending/kink, /turf/open/floor/wood, /area/maintenance/bar) -"Qux" = ( +"Quz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"Quy" = ( +"QuA" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/closed/wall/r_wall, /area/engine/engine_smes) -"Quz" = ( +"QuB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "1-2" }, /turf/closed/wall/r_wall, /area/engine/engine_smes) -"QuA" = ( +"QuC" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "1-2" }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QuB" = ( +"QuD" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; @@ -60009,7 +60096,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuC" = ( +"QuE" = ( /obj/machinery/camera{ c_tag = "Gravity Generator Foyer" }, @@ -60025,17 +60112,17 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuD" = ( +"QuF" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "1-2" }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QuE" = ( +"QuG" = ( /turf/closed/wall, /area/space) -"QuF" = ( +"QuH" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -60048,11 +60135,11 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuG" = ( +"QuI" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuH" = ( +"QuJ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -60064,7 +60151,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuI" = ( +"QuK" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, @@ -60073,30 +60160,30 @@ }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QuJ" = ( +"QuL" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "1-2" }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QuK" = ( +"QuM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QuL" = ( +"QuN" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QuM" = ( +"QuO" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuN" = ( +"QuP" = ( /obj/item/device/radio/intercom{ broadcasting = 0; listening = 1; @@ -60108,19 +60195,19 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuO" = ( +"QuQ" = ( /obj/machinery/power/terminal, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /obj/structure/cable, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QuP" = ( +"QuR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QuQ" = ( +"QuS" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -24 @@ -60132,11 +60219,11 @@ /obj/item/pen/blue, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuR" = ( +"QuT" = ( /obj/machinery/holopad, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuS" = ( +"QuU" = ( /obj/machinery/power/smes{ charge = 5e+006 }, @@ -60145,7 +60232,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuT" = ( +"QuV" = ( /obj/machinery/power/apc{ dir = 8; name = "Gravity Generator APC"; @@ -60164,20 +60251,6 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuU" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"QuV" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) "QuW" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/cable{ @@ -60186,6 +60259,20 @@ /turf/open/floor/plasteel, /area/engine/gravity_generator) "QuX" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"QuY" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"QuZ" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 }, @@ -60201,7 +60288,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuY" = ( +"Qva" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; @@ -60214,27 +60301,6 @@ }, /turf/open/floor/plating, /area/engine/gravity_generator) -"QuZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/engine/gravity_generator) -"Qva" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Gravity Generator"; - req_access_txt = "11"; - req_one_access_txt = "0" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/black, -/area/engine/gravity_generator) "Qvb" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ @@ -60246,6 +60312,27 @@ /turf/open/floor/plating, /area/engine/gravity_generator) "Qvc" = ( +/obj/machinery/door/airlock/glass_engineering{ + name = "Gravity Generator"; + req_access_txt = "11"; + req_one_access_txt = "0" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/black, +/area/engine/gravity_generator) +"Qvd" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/engine/gravity_generator) +"Qve" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; @@ -60259,19 +60346,19 @@ /obj/structure/cable, /turf/open/floor/plating, /area/engine/gravity_generator) -"Qvd" = ( +"Qvf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"Qve" = ( +"Qvg" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/floor/plasteel/black, /area/engine/gravity_generator) -"Qvf" = ( +"Qvh" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -60282,7 +60369,7 @@ }, /turf/open/floor/plasteel/black, /area/engine/gravity_generator) -"Qvg" = ( +"Qvi" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -74534,7 +74621,7 @@ auT aBI aDf aEK -Qrc +Qre aHy ayl aKk @@ -79467,7 +79554,7 @@ bCq bJP bCq bTs -Qsp +Qsr bCq cbj bLv @@ -79723,8 +79810,8 @@ aaa bCq bHE bCq -Qsn -Qsq +Qsp +Qss bCq cbk bLv @@ -79981,7 +80068,7 @@ bLv bPR bRc bSo -Qsr +Qst bCq bVy bLv @@ -80183,14 +80270,14 @@ apQ avY axo ayB -Qqv -QqC -QqL -QqS -QqW -Qrd -Qrj -Qrp +Qqx +QqE +QqN +QqU +QqY +Qrf +Qrl +Qrr aKu aLF aLF @@ -80440,14 +80527,14 @@ aoV avY axo ayB -Qqw -QqD -QqM -QqT -QqX -Qre -Qrk -Qrq +Qqy +QqF +QqO +QqV +QqZ +Qrg +Qrm +Qrs aKt aLE bDe @@ -80697,14 +80784,14 @@ apQ avY axo ayB -Qqx -QqE -QqN +Qqz +QqG +QqP aDs -QqY -Qrf -Qrl -Qrr +Qra +Qrh +Qrn +Qrt aKu aLE aLE @@ -80751,7 +80838,7 @@ aaa bCq bPV bCq -Qso +Qsq bTw bCq bVD @@ -80955,7 +81042,7 @@ avZ axo ayC azH -QqF +QqH aBS aDr aDr @@ -81007,7 +81094,7 @@ aoV aoV bCq bPW -Qsm +Qso bSp bTv bCq @@ -81208,13 +81295,13 @@ aqR aGh aqR aqR -Qqu +Qqw axq ayA -Qqy -QqG -QqO -QqU +QqA +QqI +QqQ +QqW apS apS apS @@ -81263,7 +81350,7 @@ bGi aoV aoV bCq -Qsl +Qsn bCq bCq bTu @@ -81469,7 +81556,7 @@ avZ axp ayD azI -QqH +QqJ aBU aDt aDt @@ -81725,15 +81812,15 @@ aag avY axo ayB -Qqz -QqI -QqP +QqB +QqK +QqR aDv -QqZ -Qrg -Qrm -Qrs -Qrv +Qrb +Qri +Qro +Qru +Qrx aLE aMS aOt @@ -81780,14 +81867,14 @@ bCq bPY cOw bCq -Qss -Qsz -QsH -QsR -Qtc -Qtn -Qty -QtI +Qsu +QsB +QsJ +QsT +Qte +Qtp +QtA +QtK cjn cjn cjn @@ -81982,15 +82069,15 @@ aag avY axo ayB -QqA -QqJ -QqQ -QqV -Qra -Qrh -Qrn -Qrt -Qrw +QqC +QqL +QqS +QqX +Qrc +Qrj +Qrp +Qrv +Qry aLE aMS aOi @@ -82037,19 +82124,19 @@ bCq bPX bRg bRg -Qst -QsA +Qsv +QsC bVG -QsS -Qtd -Qto -Qtz -QtJ +QsU +Qtf +Qtq +QtB +QtL bcU -QtW +QtY bVG bcU -Qur +Qut cjn bUs bLv @@ -82065,16 +82152,16 @@ aaa aaa aaf aaf -QuE +QuG aaa -QuK +QuM bij bij bij bij bij bij -Qvd +Qvf btG btG aaa @@ -82239,14 +82326,14 @@ aag avY axo ayB -QqB -QqK -QqR +QqD +QqM +QqT aDt -Qrb -Qri -Qro -Qru +Qrd +Qrk +Qrq +Qrw aKx aLE aMS @@ -82294,19 +82381,19 @@ bLv bQa bHE bHE -Qsu -QsB -QsI -QsT -Qte -Qtp -QtA -QtK -QtQ -QtX -Que -Qun -Qus +Qsw +QsD +QsK +QsV +Qtg +Qtr +QtC +QtM +QtS +QtZ +Qug +Qup +Quu cjn bUs bLv @@ -82319,19 +82406,19 @@ cjJ cjJ cjJ cjJ -Quy +QuA bij bij crn bij -QuL -QuQ -QuT -QuY +QuN +QuS +QuV +Qva bkI bgN bgN -Qve +Qvg bgN btG Qoi @@ -82551,17 +82638,17 @@ bLv bPZ bHE bHE -Qsv -QsC -QsJ -QsU -Qtf -Qtq -QtB -QtL -QtR -QtY -Quf +Qsx +QsE +QsL +QsW +Qth +Qts +QtD +QtN +QtT +Qua +Quh bdV bcU cjn @@ -82578,13 +82665,13 @@ cov cpj cpS btG -QuB -QuF +QuD +QuH btG -QuM +QuO bsc -QuU -QuZ +QuW +Qvb bgN bih big @@ -82808,19 +82895,19 @@ bLv bHE bHE bSs -Qsw -QsD -QsK -QsV -Qtg -Qtr +Qsy +QsF +QsM +QsX +Qti +Qtt bcU -QtM -QtS +QtO +QtU cCa -Qug +Qui cCa -Qut +Quv cjn bUs bLv @@ -82836,12 +82923,12 @@ cpl cpU btF bsc -QuG +QuI btF bsc -QuR -QuV -Qva +QuT +QuX +Qvc bgN big bgN @@ -83065,19 +83152,19 @@ bCq bHE bRh bSr -Qsx -QsE -QsL -QsW -Qth -Qts -QtC -QtN +Qsz +QsG +QsN +QsY +Qtj +Qtu +QtE +QtP bdV -QtZ -Quh +Qub +Quj cCa -Quu +Quw cjn bUs bLv @@ -83092,13 +83179,13 @@ cow cpk cpT btG -QuC -QuH +QuE +QuJ btG -QuN +QuP bsc -QuW -Qvb +QuY +Qvd bgN bii big @@ -83322,18 +83409,18 @@ bCq bOK bCq bCq -Qsy -QsF -QsM -QsX -Qti -Qtt -QtD +QsA +QsH +QsO +QsZ +Qtk +Qtv +QtF cjn bdV -Qua -Qui -Quo +Quc +Quk +Quq bdV cjn bUs @@ -83347,19 +83434,19 @@ cnq cnP coz cpn -Quz -QuA -QuD -QuI -QuJ -QuO -QuS -QuX -Qvc +QuB +QuC +QuF +QuK +QuL +QuQ +QuU +QuZ +Qve bmw bgN bgN -Qvf +Qvh bgN btG aaa @@ -83580,18 +83667,18 @@ bHE bLv aaa bLv -QsG -QsN -QsY -Qtj -Qtu -QtE +QsI +QsP +Qta +Qtl +Qtw +QtG bcU bcU bdV -Quj +Qul bdV -Quv +Qux cjn bUs bLv @@ -83609,14 +83696,14 @@ aaf aaf Qol aaa -QuP +QuR bgO bgO bgO bgO bgO bgO -Qvg +Qvi btG btG Qoi @@ -83838,15 +83925,15 @@ bLv aaf bLv bUt -QsO -QsZ -Qtk -Qtv -QtF +QsQ +Qtb +Qtm +Qtx +QtH bcU -QtT -Qub -Quk +QtV +Qud +Qum bcU bcU cjn @@ -84095,17 +84182,17 @@ bCq aaa bLv bUt -QsP -Qta -Qtl -Qtw -QtG -QtO -QtU -Quc -Qul -Qup -Quw +QsR +Qtc +Qtn +Qty +QtI +QtQ +QtW +Que +Qun +Qur +Quy cjn bUs bCq @@ -84352,17 +84439,17 @@ aaa aaa bTB bUv -QsQ -Qtb -Qtm -Qtx -QtH -QtP -QtV -Qud -Qum -Quq -Qux +QsS +Qtd +Qto +Qtz +QtJ +QtR +QtX +Quf +Quo +Qus +Quz car bUs bCq @@ -86850,7 +86937,7 @@ auj akl akO alx -QpQ +QpS amg aiX anw @@ -87105,7 +87192,7 @@ aid agj aiZ akk -agj +akQ agj agj agj @@ -87362,9 +87449,9 @@ aiF agj ajD akm -akM +QpN aly -QpR +QpT amQ aiX anw @@ -87876,7 +87963,7 @@ agP aiz ajg QpL -agj +akQ agj agj agj @@ -87918,7 +88005,7 @@ bbk bbk bbk bfs -Qrz +QrB aZM aZM aaf @@ -88135,7 +88222,7 @@ ajb ajF akN alw -QpS +QpU amQ aiX anw @@ -88175,15 +88262,15 @@ bce bdf beb aYv -QrA -QrK +QrC +QrM aaf aaf Qoi aaa Qoi aaa -QrU +QrW bsb bsb bsb @@ -88390,12 +88477,12 @@ agn ajc QpJ akv -akQ QpO +QpQ aww amk aiX -Qqg +Qqi aov aph aqb @@ -88432,18 +88519,18 @@ aZR bbm bec bfu -QrB +QrD aBb aBb bmu aBb aBb -QrQ +QrS aaa bsb -QrW -Qsd -Qsg +QrY +Qsf +Qsi bsb aXf aJq @@ -88647,7 +88734,7 @@ aiI aiH ajB QpM -agj +akQ agj agj agj @@ -88689,7 +88776,7 @@ aZR aZR aZR bft -QrC +QrE aBa aBT bmv @@ -88698,13 +88785,13 @@ aGb bpg aaa bsb -QrX +QrZ buP bwm bxH aXf aJq -Qsk +Qsm bCs bCs bCs @@ -88906,7 +88993,7 @@ QpK akm akT aly -QpT +QpV amQ aiX anw @@ -88946,16 +89033,16 @@ bbm bdh bee bfv -QrD +QrF aBa -QrM +QrO aEM aEM aGa bph bqF bsd -QrY +Qsa buQ bwn bxI @@ -89203,19 +89290,19 @@ bcf bdg bed bfv -QrE +QrG aBa aBV alu -QrO +QrQ bnU aHG bqE -QrV -QrZ -Qse -Qsh +QrX +Qsb +Qsg Qsj +Qsl aNr bAf bBp @@ -89418,12 +89505,12 @@ aiL ajc ajI akq -agj +akQ agj agj agj aiX -Qqh +Qqj aoz apm aqd @@ -89460,16 +89547,16 @@ bbm bdh bef bfv -QrF +QrH aBa -QrN -aEO QrP -bnV +aEO QrR +bnV QrT +QrV bsf -Qsa +Qsc buS bwp bxK @@ -89680,8 +89767,8 @@ alz aml amT aiX -Qqi -Qqo +Qqk +Qqq apl aqc aqc @@ -89717,7 +89804,7 @@ aZR aZR aZR bfw -QrG +QrI aBa aBW bjy @@ -89726,7 +89813,7 @@ aGe bpi aaa bsb -Qsb +Qsd buR aFM bxJ @@ -89936,9 +90023,9 @@ akV alB amn amV -Qqc +Qqe anB -Qqp +Qqr aod aqf ahT @@ -89974,18 +90061,18 @@ aZR bbm beh bfx -QrH +QrJ aBc aBc bgR aBc aBc -QrS +QrU aaa bsb -Qsc -Qsf -Qsi +Qse +Qsh +Qsk bsb aJq aJq @@ -90189,11 +90276,11 @@ aIF ajc ajI akp -aiX +amS alA -QpU +QpW amm -Qqd +Qqf anT anT aod @@ -90231,8 +90318,8 @@ bcg aZU beg aYB -QrI -QrL +QrK +QrN aaf aaf Qoi @@ -90446,9 +90533,9 @@ agn aje ajJ akr -aiX +amS alC -QpV +QpX amX amX amX @@ -90488,7 +90575,7 @@ bbp bbp bbp bfz -QrJ +QrL aZV aZV aaf @@ -90703,15 +90790,15 @@ agn ajd ajI akp -aiX -QpP +amS +QpR amo amX amX -Qqj -Qqq -Qqr +Qql +Qqs Qqt +Qqv arf apY ate @@ -90960,12 +91047,12 @@ adR aiQ ajI akt -QpN +QpP anw -QpW QpY +Qqa anB -Qqk +Qqm aoD aod aqe @@ -91219,10 +91306,10 @@ ajK aks akY anA -QpX QpZ +Qqb amo -Qql +Qqn aoC aod aqe @@ -91477,9 +91564,9 @@ akp aiX akz alf -Qqa -Qqe -Qqm +Qqc +Qqg +Qqo aoF apo aqh @@ -91734,11 +91821,11 @@ aku aiX alE amq -Qqb -Qqf -Qqn +Qqd +Qqh +Qqp aoE -Qqs +Qqu aqg aun asf @@ -96640,7 +96727,7 @@ aGJ aIe aJC aJC -Qrx +Qrz aJC aJC aJC @@ -97925,7 +98012,7 @@ aGL aIg aJH aKR -Qry +QrA aMB aJC aRA From 2fc363636019d5bb9f03090c2df6069feba1030b Mon Sep 17 00:00:00 2001 From: deathride58 Date: Mon, 23 Oct 2017 18:12:26 -0400 Subject: [PATCH 106/227] FUCK part 3 - fixes gravity generator assmos and also makes nonlethal armory look less like ass while im at it --- _maps/map_files/BoxStation/BoxStation.dmm | 1554 ++++++++++----------- 1 file changed, 765 insertions(+), 789 deletions(-) diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index e647f1d0a2..1dfc193284 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -1248,9 +1248,7 @@ /turf/open/floor/carpet, /area/crew_quarters/heads/hos) "adi" = ( -/obj/structure/table, -/obj/item/storage/box/firingpins, -/obj/item/storage/box/firingpins, +/obj/machinery/flasher/portable, /turf/open/floor/plasteel/vault{ dir = 8 }, @@ -48115,15 +48113,13 @@ /area/engine/engine_smes) "cnO" = ( /obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, /obj/structure/cable{ icon_state = "1-4" }, /obj/structure/cable{ icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, /turf/open/floor/plasteel/black, /area/engine/engine_smes) "cnP" = ( @@ -48134,6 +48130,9 @@ /obj/structure/cable/yellow{ icon_state = "0-8" }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, /turf/open/floor/plasteel/black, /area/engine/engine_smes) "cnQ" = ( @@ -48336,12 +48335,12 @@ /turf/open/floor/plasteel, /area/engine/engine_smes) "cox" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, /turf/open/floor/plasteel, /area/engine/engine_smes) "coy" = ( @@ -48370,6 +48369,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/engine/engine_smes) "coA" = ( @@ -48576,6 +48576,7 @@ /turf/open/floor/plasteel, /area/engine/engine_smes) "cpl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/engine/engine_smes) "cpm" = ( @@ -48600,6 +48601,7 @@ /obj/structure/cable{ icon_state = "2-4" }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/engine/engine_smes) "cpo" = ( @@ -57878,46 +57880,6 @@ /turf/closed/wall, /area/space) "QoK" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/bot{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"QoL" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/bot{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"QoM" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/bot{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"QoN" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/bot{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"QoO" = ( /obj/structure/table, /obj/item/grenade/barrier{ pixel_x = 4 @@ -57933,7 +57895,7 @@ dir = 8 }, /area/ai_monitored/security/armory) -"QoP" = ( +"QoL" = ( /obj/structure/rack, /obj/item/gun/energy/e_gun/dragnet, /obj/item/gun/energy/e_gun/dragnet, @@ -57941,7 +57903,7 @@ dir = 8 }, /area/ai_monitored/security/armory) -"QoQ" = ( +"QoM" = ( /obj/structure/rack, /obj/item/clothing/suit/armor/bulletproof{ pixel_x = -3; @@ -57969,7 +57931,7 @@ dir = 8 }, /area/ai_monitored/security/armory) -"QoR" = ( +"QoN" = ( /obj/structure/rack, /obj/item/clothing/suit/armor/riot{ pixel_x = -3; @@ -58002,54 +57964,60 @@ dir = 8 }, /area/ai_monitored/security/armory) -"QoS" = ( +"QoO" = ( /obj/effect/landmark/secequipment, /obj/effect/turf_decal/bot{ dir = 2 }, /turf/open/floor/plasteel/showroomfloor, /area/security/main) -"QoT" = ( +"QoP" = ( /obj/structure/closet/secure_closet/security/sec, /obj/effect/turf_decal/bot{ dir = 2 }, /turf/open/floor/plasteel/showroomfloor, /area/security/main) -"QoU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, +"QoQ" = ( /obj/machinery/camera/motion{ c_tag = "Non-Lethal Armory Motion Sensor"; dir = 4 }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"QoV" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"QoW" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"QoX" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/corner{ +/obj/effect/turf_decal/stripes/end{ dir = 8 }, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) -"QoY" = ( +"QoR" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"QoS" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"QoT" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"QoU" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) -"QoZ" = ( +"QoV" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -58058,14 +58026,14 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) -"Qpa" = ( +"QoW" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) -"Qpb" = ( +"QoX" = ( /obj/machinery/door/poddoor/shutters{ id = "lowsecarmory"; name = "Non-Lethal Armoury Shutter" @@ -58079,26 +58047,26 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) -"Qpc" = ( +"QoY" = ( /obj/effect/landmark/secequipment, /obj/effect/turf_decal/bot{ dir = 2 }, /turf/open/floor/plasteel/showroomfloor, /area/security/main) -"Qpd" = ( +"QoZ" = ( /obj/machinery/suit_storage_unit/security, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/ai_monitored/security/armory) -"Qpe" = ( +"Qpa" = ( /obj/machinery/suit_storage_unit/security, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/ai_monitored/security/armory) -"Qpf" = ( +"Qpb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -58107,7 +58075,7 @@ dir = 8 }, /area/ai_monitored/security/armory) -"Qpg" = ( +"Qpc" = ( /obj/machinery/suit_storage_unit/security, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -58116,7 +58084,7 @@ dir = 8 }, /area/ai_monitored/security/armory) -"Qph" = ( +"Qpd" = ( /obj/machinery/suit_storage_unit/security, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -58125,7 +58093,7 @@ dir = 8 }, /area/ai_monitored/security/armory) -"Qpi" = ( +"Qpe" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, @@ -58138,14 +58106,14 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) -"Qpj" = ( +"Qpf" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/cable{ icon_state = "4-8" }, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) -"Qpk" = ( +"Qpg" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ @@ -58153,7 +58121,7 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) -"Qpl" = ( +"Qph" = ( /obj/machinery/firealarm{ pixel_y = 24 }, @@ -58162,7 +58130,7 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) -"Qpm" = ( +"Qpi" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -58176,7 +58144,7 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) -"Qpn" = ( +"Qpj" = ( /obj/machinery/light{ dir = 1 }, @@ -58188,7 +58156,7 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) -"Qpo" = ( +"Qpk" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 }, @@ -58206,7 +58174,7 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) -"Qpp" = ( +"Qpl" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -58215,24 +58183,32 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) -"Qpq" = ( +"Qpm" = ( /obj/structure/closet/secure_closet/lethalshots, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/ai_monitored/security/armory) -"Qpr" = ( +"Qpn" = ( +/obj/structure/table, +/obj/item/storage/box/firingpins, +/obj/item/storage/box/firingpins, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"Qpo" = ( /obj/structure/table, /obj/item/storage/toolbox/drone, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/ai_monitored/security/armory) -"Qps" = ( +"Qpp" = ( /obj/structure/falsewall, /turf/open/floor/plating, /area/security/execution/transfer) -"Qpt" = ( +"Qpq" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 }, @@ -58242,7 +58218,7 @@ }, /turf/open/floor/plating, /area/security/execution/transfer) -"Qpu" = ( +"Qpr" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, @@ -58254,7 +58230,7 @@ }, /turf/open/floor/plating, /area/security/execution/transfer) -"Qpv" = ( +"Qps" = ( /obj/structure/sign/securearea{ pixel_y = 32 }, @@ -58263,7 +58239,7 @@ }, /turf/open/floor/plating, /area/security/execution/transfer) -"Qpw" = ( +"Qpt" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 @@ -58277,26 +58253,26 @@ }, /turf/open/floor/plating, /area/security/execution/transfer) -"Qpx" = ( +"Qpu" = ( /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plasteel/floorgrime, /area/security/execution/transfer) -"Qpy" = ( +"Qpv" = ( /turf/open/floor/plasteel/floorgrime, /area/security/execution/transfer) -"Qpz" = ( +"Qpw" = ( /obj/effect/decal/cleanable/cobweb{ icon_state = "cobweb2" }, /turf/open/floor/plasteel/floorgrime, /area/security/execution/transfer) -"QpA" = ( +"Qpx" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/plating, /area/security/execution/transfer) -"QpB" = ( +"Qpy" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -58308,7 +58284,7 @@ }, /turf/open/floor/plating, /area/security/execution/transfer) -"QpC" = ( +"Qpz" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 }, @@ -58328,16 +58304,16 @@ /obj/machinery/door/firedoor, /turf/open/floor/plating, /area/security/execution/transfer) -"QpD" = ( +"QpA" = ( /turf/open/floor/plasteel/floorgrime, /area/security/execution/transfer) -"QpE" = ( +"QpB" = ( /obj/structure/bed, /obj/item/clothing/suit/straight_jacket, /obj/item/clothing/mask/muzzle, /turf/open/floor/plasteel/floorgrime, /area/security/execution/transfer) -"QpF" = ( +"QpC" = ( /obj/machinery/flasher{ id = "highseccell"; pixel_x = 28 @@ -58347,28 +58323,28 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/execution/transfer) +"QpD" = ( +/turf/open/floor/plasteel/floorgrime, +/area/security/execution/transfer) +"QpE" = ( +/turf/open/floor/plasteel/floorgrime, +/area/security/execution/transfer) +"QpF" = ( +/turf/open/floor/plasteel/floorgrime, +/area/security/execution/transfer) "QpG" = ( -/turf/open/floor/plasteel/floorgrime, -/area/security/execution/transfer) +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) "QpH" = ( -/turf/open/floor/plasteel/floorgrime, -/area/security/execution/transfer) +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) "QpI" = ( -/turf/open/floor/plasteel/floorgrime, -/area/security/execution/transfer) -"QpJ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"QpK" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"QpL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -58380,7 +58356,7 @@ /obj/machinery/light, /turf/open/floor/plasteel/red/corner, /area/security/brig) -"QpM" = ( +"QpJ" = ( /obj/machinery/door_timer{ id = "Cell 3"; name = "Cell 3"; @@ -58391,7 +58367,7 @@ }, /turf/open/floor/plasteel/red/corner, /area/security/brig) -"QpN" = ( +"QpK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ @@ -58402,7 +58378,7 @@ }, /turf/open/floor/plating, /area/security/brig) -"QpO" = ( +"QpL" = ( /obj/machinery/door/window/brigdoor/security/cell{ id = "Cell 3"; name = "Cell 3" @@ -58413,7 +58389,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/brig) -"QpP" = ( +"QpM" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ cyclelinkeddir = 2; @@ -58432,7 +58408,7 @@ dir = 9 }, /area/security/brig) -"QpQ" = ( +"QpN" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -58441,25 +58417,25 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"QpR" = ( +"QpO" = ( /turf/open/floor/plasteel/red/side{ dir = 1 }, /area/hallway/primary/fore) -"QpS" = ( +"QpP" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"QpT" = ( +"QpQ" = ( /obj/machinery/flasher{ id = "Cell 2"; pixel_x = -28 }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"QpU" = ( +"QpR" = ( /obj/machinery/flasher{ id = "Cell 3"; pixel_x = -28 @@ -58469,14 +58445,14 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"QpV" = ( +"QpS" = ( /obj/machinery/flasher{ id = "Cell 4"; pixel_x = -28 }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"QpW" = ( +"QpT" = ( /obj/structure/table/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "briggate"; @@ -58488,44 +58464,44 @@ }, /turf/open/floor/plasteel/black, /area/security/brig) -"QpX" = ( +"QpU" = ( /turf/open/floor/plasteel/red/side{ dir = 8 }, /area/hallway/primary/fore) -"QpY" = ( +"QpV" = ( /turf/open/floor/plasteel/red/side{ dir = 1 }, /area/hallway/primary/fore) -"QpZ" = ( +"QpW" = ( /turf/open/floor/plasteel/red/side{ dir = 1 }, /area/hallway/primary/fore) -"Qqa" = ( +"QpX" = ( /turf/open/floor/plasteel/red/side{ dir = 6 }, /area/hallway/primary/fore) -"Qqb" = ( +"QpY" = ( /turf/open/floor/plasteel/red/side{ dir = 10 }, /area/hallway/primary/fore) -"Qqc" = ( +"QpZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/red/side{ dir = 4 }, /area/hallway/primary/fore) -"Qqd" = ( +"Qqa" = ( /obj/machinery/vending/cigarette, /turf/open/floor/plasteel/red/side{ dir = 4 }, /area/hallway/primary/fore) -"Qqe" = ( +"Qqb" = ( /obj/structure/table/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "briggate"; @@ -58542,7 +58518,7 @@ }, /turf/open/floor/plasteel/black, /area/security/brig) -"Qqf" = ( +"Qqc" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "seclobby"; @@ -58553,20 +58529,20 @@ }, /turf/open/floor/plating, /area/security/brig) -"Qqg" = ( +"Qqd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/red/side{ dir = 4 }, /area/hallway/primary/fore) -"Qqh" = ( +"Qqe" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, /turf/open/floor/plasteel/red/side{ dir = 4 }, /area/hallway/primary/fore) -"Qqi" = ( +"Qqf" = ( /obj/machinery/light{ dir = 1 }, @@ -58574,7 +58550,7 @@ dir = 1 }, /area/hallway/primary/fore) -"Qqj" = ( +"Qqg" = ( /obj/structure/sign/securearea{ pixel_y = 32 }, @@ -58582,7 +58558,7 @@ dir = 4 }, /area/hallway/primary/fore) -"Qqk" = ( +"Qqh" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ cyclelinkeddir = 1; @@ -58594,31 +58570,31 @@ dir = 1 }, /area/hallway/primary/fore) -"Qql" = ( +"Qqi" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/red/side{ dir = 10 }, /area/hallway/primary/fore) -"Qqm" = ( +"Qqj" = ( /turf/open/floor/plasteel/red/side, /area/hallway/primary/fore) -"Qqn" = ( +"Qqk" = ( /turf/open/floor/plasteel/red/side, /area/hallway/primary/fore) -"Qqo" = ( +"Qql" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/red/side{ dir = 6 }, /area/hallway/primary/fore) -"Qqp" = ( +"Qqm" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/red/side{ dir = 4 }, /area/hallway/primary/fore) -"Qqq" = ( +"Qqn" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ cyclelinkeddir = 1; @@ -58628,12 +58604,12 @@ }, /turf/open/floor/plasteel/red/side, /area/hallway/primary/fore) -"Qqr" = ( +"Qqo" = ( /turf/open/floor/plasteel/red/side{ dir = 6 }, /area/hallway/primary/fore) -"Qqs" = ( +"Qqp" = ( /obj/machinery/flasher{ id = "brigentry"; pixel_x = 0; @@ -58645,34 +58621,34 @@ }, /turf/open/floor/plasteel/red/side, /area/hallway/primary/fore) -"Qqt" = ( +"Qqq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/fore/secondary) -"Qqu" = ( +"Qqr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/disposalpipe/segment, /turf/closed/wall, /area/maintenance/fore/secondary) -"Qqv" = ( +"Qqs" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/open/floor/plating, /area/maintenance/fore/secondary) -"Qqw" = ( +"Qqt" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, /turf/open/floor/plating, /area/maintenance/fore) -"Qqx" = ( +"Qqu" = ( /obj/structure/chair/wood{ dir = 4 }, @@ -58680,11 +58656,11 @@ icon_state = "wood-broken6" }, /area/maintenance/bar/cafe) -"Qqy" = ( +"Qqv" = ( /obj/structure/table/wood, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"Qqz" = ( +"Qqw" = ( /obj/structure/chair/wood{ dir = 8 }, @@ -58692,36 +58668,36 @@ icon_state = "wood-broken7" }, /area/maintenance/bar/cafe) -"QqA" = ( +"Qqx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QqB" = ( +"Qqy" = ( /obj/structure/table/wood, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QqC" = ( +"Qqz" = ( /turf/open/floor/wood{ icon_state = "wood-broken5" }, /area/maintenance/bar/cafe) -"QqD" = ( +"QqA" = ( /obj/structure/table/wood, /obj/machinery/chem_dispenser/drinks/beer, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QqE" = ( +"QqB" = ( /turf/open/floor/wood{ icon_state = "wood-broken5" }, /area/maintenance/bar/cafe) -"QqF" = ( +"QqC" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QqG" = ( +"QqD" = ( /obj/structure/chair/wood{ dir = 4 }, @@ -58730,7 +58706,7 @@ }, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QqH" = ( +"QqE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -58740,7 +58716,7 @@ }, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QqI" = ( +"QqF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -58750,14 +58726,14 @@ }, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QqJ" = ( +"QqG" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /obj/structure/chair/stool/bar, /turf/open/floor/wood{ icon_state = "wood-broken7" }, /area/maintenance/bar/cafe) -"QqK" = ( +"QqH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -58766,22 +58742,22 @@ icon_state = "wood-broken6" }, /area/maintenance/bar/cafe) -"QqL" = ( +"QqI" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QqM" = ( +"QqJ" = ( /obj/structure/table/wood, /obj/machinery/chem_dispenser/drinks, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QqN" = ( +"QqK" = ( /obj/structure/chair/wood{ dir = 4 }, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QqO" = ( +"QqL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, @@ -58791,7 +58767,7 @@ icon_state = "wood-broken" }, /area/maintenance/bar/cafe) -"QqP" = ( +"QqM" = ( /obj/machinery/power/apc{ areastring = "/area/crew_quarters/theatre/mime"; dir = 2; @@ -58813,7 +58789,7 @@ icon_state = "wood-broken6" }, /area/maintenance/bar/cafe) -"QqQ" = ( +"QqN" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable{ icon_state = "2-4" @@ -58823,7 +58799,7 @@ }, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QqR" = ( +"QqO" = ( /obj/machinery/power/apc{ areastring = "/area/crew_quarters/theatre/mime"; dir = 2; @@ -58842,7 +58818,7 @@ icon_state = "wood-broken6" }, /area/maintenance/bar/cafe) -"QqS" = ( +"QqP" = ( /obj/machinery/light/small, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 @@ -58851,7 +58827,7 @@ icon_state = "wood-broken" }, /area/maintenance/bar/cafe) -"QqT" = ( +"QqQ" = ( /obj/structure/table/wood, /obj/item/storage/box/drinkingglasses, /obj/machinery/light_switch{ @@ -58859,14 +58835,14 @@ }, /turf/open/floor/wood, /area/maintenance/bar/cafe) -"QqU" = ( +"QqR" = ( /turf/closed/wall, /area/crew_quarters/theatre/mime) -"QqV" = ( +"QqS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall, /area/crew_quarters/theatre/mime) -"QqW" = ( +"QqT" = ( /obj/structure/barricade/wooden, /obj/structure/grille, /obj/structure/cable{ @@ -58874,17 +58850,17 @@ }, /turf/open/floor/wood, /area/maintenance/fore) -"QqX" = ( +"QqU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall, /area/crew_quarters/theatre/clown) -"QqY" = ( +"QqV" = ( /obj/machinery/vending/autodrobe, /turf/open/floor/plasteel/white/side{ dir = 1 }, /area/crew_quarters/theatre/mime) -"QqZ" = ( +"QqW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light{ dir = 1 @@ -58893,7 +58869,7 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qra" = ( +"QqX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/bed, /obj/item/bedsheet/mime, @@ -58901,12 +58877,12 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qrb" = ( +"QqY" = ( /obj/structure/closet/secure_closet/freezer/cream_pie, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qrc" = ( +"QqZ" = ( /obj/structure/closet/crate/wooden/toy, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light{ @@ -58914,18 +58890,18 @@ }, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qrd" = ( +"Qra" = ( /obj/machinery/vending/autodrobe, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qre" = ( +"Qrb" = ( /obj/machinery/recharger{ pixel_y = 4 }, /obj/structure/table, /turf/open/floor/plasteel/red/side, /area/security/checkpoint/customs) -"Qrf" = ( +"Qrc" = ( /obj/structure/table, /obj/item/reagent_containers/food/snacks/baguette, /obj/item/toy/dummy, @@ -58936,7 +58912,7 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qrg" = ( +"Qrd" = ( /obj/effect/landmark/start/mime, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 @@ -58945,7 +58921,7 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qrh" = ( +"Qre" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/camera{ c_tag = "Mime's Office"; @@ -58955,7 +58931,7 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qri" = ( +"Qrf" = ( /obj/structure/mirror{ pixel_x = -28 }, @@ -58967,14 +58943,14 @@ }, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qrj" = ( +"Qrg" = ( /obj/effect/landmark/start/clown, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qrk" = ( +"Qrh" = ( /obj/structure/bed, /obj/item/bedsheet/clown, /obj/machinery/airalarm{ @@ -58983,7 +58959,7 @@ }, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qrl" = ( +"Qri" = ( /obj/structure/table, /obj/item/lipstick/random{ pixel_x = -2; @@ -59001,26 +58977,26 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qrm" = ( +"Qrj" = ( /turf/open/floor/plasteel/white/side{ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qrn" = ( +"Qrk" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/white/side{ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qro" = ( +"Qrl" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qrp" = ( +"Qrm" = ( /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qrq" = ( +"Qrn" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -59031,7 +59007,7 @@ /obj/item/bikehorn, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qrr" = ( +"Qro" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = 1; @@ -59042,7 +59018,7 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qrs" = ( +"Qrp" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -59050,7 +59026,7 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qrt" = ( +"Qrq" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -59058,7 +59034,7 @@ dir = 1 }, /area/crew_quarters/theatre/mime) -"Qru" = ( +"Qrr" = ( /obj/structure/table, /obj/item/device/flashlight/lamp/bananalamp, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -59072,49 +59048,58 @@ }, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qrv" = ( +"Qrs" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qrw" = ( +"Qrt" = ( /obj/structure/statue/bananium/clown, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qrx" = ( +"Qru" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/crew_quarters/theatre/clown) -"Qry" = ( +"Qrv" = ( /obj/machinery/door/airlock/clown{ name = "Clown's Office"; req_access_txt = "46" }, /turf/open/floor/plasteel/redyellow, /area/crew_quarters/theatre/clown) -"Qrz" = ( +"Qrw" = ( /obj/machinery/door/airlock{ name = "Bar Storage"; req_access_txt = "25" }, /turf/open/floor/wood, /area/crew_quarters/bar) -"QrA" = ( +"Qrx" = ( /obj/structure/reagent_dispensers/beerkeg, /turf/open/floor/wood, /area/crew_quarters/bar) -"QrB" = ( +"Qry" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" }, /turf/open/floor/plating, /area/bridge/meeting_room) +"Qrz" = ( +/turf/open/floor/plating, +/area/maintenance/department/bridge) +"QrA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/bridge) +"QrB" = ( +/turf/open/floor/plating, +/area/maintenance/department/bridge) "QrC" = ( /turf/open/floor/plating, /area/maintenance/department/bridge) "QrD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/maintenance/department/bridge) "QrE" = ( @@ -59124,41 +59109,32 @@ /turf/open/floor/plating, /area/maintenance/department/bridge) "QrG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/department/bridge) "QrH" = ( /turf/open/floor/plating, /area/maintenance/department/bridge) "QrI" = ( -/turf/open/floor/plating, -/area/maintenance/department/bridge) -"QrJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/bridge) -"QrK" = ( -/turf/open/floor/plating, -/area/maintenance/department/bridge) -"QrL" = ( /obj/machinery/door/airlock/maintenance{ name = "bridge maintenance access"; req_access_txt = "20" }, /turf/open/floor/plating, /area/crew_quarters/heads/captain) -"QrM" = ( +"QrJ" = ( /turf/closed/wall/r_wall, /area/maintenance/department/bridge) -"QrN" = ( +"QrK" = ( /turf/closed/wall/r_wall, /area/maintenance/department/bridge) -"QrO" = ( +"QrL" = ( /obj/machinery/light_switch{ pixel_y = 28 }, /turf/open/floor/circuit, /area/ai_monitored/nuke_storage) -"QrP" = ( +"QrM" = ( /obj/machinery/power/apc{ dir = 1; name = "Vault APC"; @@ -59170,38 +59146,38 @@ }, /turf/open/floor/circuit, /area/ai_monitored/nuke_storage) -"QrQ" = ( +"QrN" = ( /obj/structure/cable{ icon_state = "2-4" }, /turf/open/floor/circuit, /area/ai_monitored/nuke_storage) -"QrR" = ( +"QrO" = ( /obj/structure/cable{ icon_state = "1-8" }, /turf/open/floor/circuit, /area/ai_monitored/nuke_storage) -"QrS" = ( +"QrP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/closed/wall/r_wall, /area/ai_monitored/nuke_storage) -"QrT" = ( +"QrQ" = ( /obj/structure/sign/securearea, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/closed/wall/r_wall, /area/ai_monitored/nuke_storage) -"QrU" = ( +"QrR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /turf/closed/wall/r_wall, /area/ai_monitored/nuke_storage) -"QrV" = ( +"QrS" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ @@ -59209,10 +59185,10 @@ }, /turf/open/floor/plating, /area/security/checkpoint/checkpoint2) -"QrW" = ( +"QrT" = ( /turf/closed/wall/r_wall, /area/security/checkpoint/checkpoint2) -"QrX" = ( +"QrU" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ icon_state = "2-4" @@ -59227,7 +59203,7 @@ dir = 5 }, /area/security/checkpoint/checkpoint2) -"QrY" = ( +"QrV" = ( /obj/structure/closet/secure_closet/security, /obj/machinery/power/apc{ areastring = "/area/security/checkpoint/checkpoint2"; @@ -59243,7 +59219,7 @@ dir = 9 }, /area/security/checkpoint/checkpoint2) -"QrZ" = ( +"QrW" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_y = 30 }, @@ -59254,7 +59230,7 @@ dir = 1 }, /area/security/checkpoint/checkpoint2) -"Qsa" = ( +"QrX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "2-8" @@ -59266,7 +59242,7 @@ dir = 1 }, /area/security/checkpoint/checkpoint2) -"Qsb" = ( +"QrY" = ( /obj/structure/cable{ icon_state = "1-8" }, @@ -59274,13 +59250,13 @@ dir = 1 }, /area/security/checkpoint/checkpoint2) -"Qsc" = ( +"QrZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/red/side{ dir = 1 }, /area/security/checkpoint/checkpoint2) -"Qsd" = ( +"Qsa" = ( /obj/machinery/requests_console{ department = "Security"; departmentType = 5; @@ -59290,13 +59266,13 @@ dir = 1 }, /area/security/checkpoint/checkpoint2) -"Qse" = ( +"Qsb" = ( /obj/machinery/computer/security, /turf/open/floor/plasteel/red/side{ dir = 5 }, /area/security/checkpoint/checkpoint2) -"Qsf" = ( +"Qsc" = ( /obj/structure/closet/wardrobe/red, /obj/machinery/light{ dir = 8 @@ -59305,10 +59281,10 @@ dir = 8 }, /area/security/checkpoint/checkpoint2) -"Qsg" = ( +"Qsd" = ( /turf/open/floor/plasteel, /area/security/checkpoint/checkpoint2) -"Qsh" = ( +"Qse" = ( /obj/machinery/computer/secure_data, /obj/machinery/light{ dir = 4 @@ -59317,7 +59293,7 @@ dir = 4 }, /area/security/checkpoint/checkpoint2) -"Qsi" = ( +"Qsf" = ( /obj/machinery/airalarm{ dir = 4; pixel_x = -22 @@ -59339,7 +59315,7 @@ dir = 10 }, /area/security/checkpoint/checkpoint2) -"Qsj" = ( +"Qsg" = ( /obj/item/paper_bin{ pixel_x = 1; pixel_y = 9 @@ -59348,7 +59324,7 @@ /obj/structure/table, /turf/open/floor/plasteel/red/side, /area/security/checkpoint/checkpoint2) -"Qsk" = ( +"Qsh" = ( /obj/item/device/radio/off, /obj/item/crowbar, /obj/item/device/assembly/flash/handheld, @@ -59362,7 +59338,7 @@ dir = 6 }, /area/security/checkpoint/checkpoint2) -"Qsl" = ( +"Qsi" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "vault"; @@ -59376,7 +59352,7 @@ }, /turf/open/floor/plating, /area/security/checkpoint/checkpoint2) -"Qsm" = ( +"Qsj" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -59385,32 +59361,32 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"Qsn" = ( +"Qsk" = ( /obj/effect/spawner/lootdrop/grille_or_trash, /turf/open/floor/plating{ icon_state = "platingdmg3" }, /area/maintenance/port/aft) -"Qso" = ( +"Qsl" = ( /obj/machinery/door/airlock{ id_tag = "MaintDorm2"; name = "Maintenance Dorm 2" }, /turf/open/floor/wood, /area/maintenance/port/aft) -"Qsp" = ( +"Qsm" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/wood, /area/maintenance/port/aft) -"Qsq" = ( +"Qsn" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/wood, /area/maintenance/port/aft) -"Qsr" = ( +"Qso" = ( /obj/structure/closet/secure_closet/personal, /turf/open/floor/wood, /area/maintenance/port/aft) -"Qss" = ( +"Qsp" = ( /obj/machinery/light/small, /obj/structure/table/wood, /obj/machinery/atmospherics/pipe/simple/general/hidden{ @@ -59418,7 +59394,7 @@ }, /turf/open/floor/wood, /area/maintenance/port/aft) -"Qst" = ( +"Qsq" = ( /obj/structure/bed, /obj/item/bedsheet, /obj/machinery/atmospherics/pipe/simple/general/hidden{ @@ -59426,9 +59402,21 @@ }, /turf/open/floor/wood, /area/maintenance/port/aft) -"Qsu" = ( +"Qsr" = ( /turf/closed/wall, /area/maintenance/bar) +"Qss" = ( +/turf/closed/wall, +/area/maintenance/bar) +"Qst" = ( +/turf/closed/wall, +/area/maintenance/bar) +"Qsu" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/maintenance/bar) "Qsv" = ( /turf/closed/wall, /area/maintenance/bar) @@ -59436,39 +59424,27 @@ /turf/closed/wall, /area/maintenance/bar) "Qsx" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - req_access_txt = "0" - }, -/turf/open/floor/plating, +/turf/closed/wall, /area/maintenance/bar) "Qsy" = ( /turf/closed/wall, /area/maintenance/bar) "Qsz" = ( -/turf/closed/wall, -/area/maintenance/bar) -"QsA" = ( -/turf/closed/wall, -/area/maintenance/bar) -"QsB" = ( -/turf/closed/wall, -/area/maintenance/bar) -"QsC" = ( /turf/open/floor/wood, /area/maintenance/bar) -"QsD" = ( +"QsA" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/open/floor/wood, /area/maintenance/bar) -"QsE" = ( +"QsB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/wood, /area/maintenance/bar) -"QsF" = ( +"QsC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -59476,7 +59452,7 @@ icon_state = "wood-broken5" }, /area/maintenance/bar) -"QsG" = ( +"QsD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -59485,7 +59461,7 @@ }, /turf/open/floor/wood, /area/maintenance/bar) -"QsH" = ( +"QsE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -59497,7 +59473,7 @@ }, /turf/open/floor/plating, /area/maintenance/bar) -"QsI" = ( +"QsF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -59506,30 +59482,30 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"QsJ" = ( +"QsG" = ( /turf/closed/wall, /area/maintenance/bar) -"QsK" = ( +"QsH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood{ icon_state = "wood-broken7" }, /area/maintenance/bar) -"QsL" = ( +"QsI" = ( /obj/structure/chair/stool/bar, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, /turf/open/floor/wood, /area/maintenance/bar) -"QsM" = ( +"QsJ" = ( /obj/structure/table/wood, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/wood, /area/maintenance/bar) -"QsN" = ( +"QsK" = ( /obj/structure/table/wood, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -59544,6 +59520,24 @@ icon_state = "wood-broken7" }, /area/maintenance/bar) +"QsL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/bar) +"QsM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/bar) +"QsN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/bar) "QsO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -59551,33 +59545,15 @@ /turf/closed/wall, /area/maintenance/bar) "QsP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/bar) -"QsQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/bar) -"QsR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/bar) -"QsS" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, /turf/closed/wall, /area/maintenance/bar) -"QsT" = ( +"QsQ" = ( /turf/closed/wall, /area/maintenance/bar) -"QsU" = ( +"QsR" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -59586,7 +59562,7 @@ }, /turf/open/floor/wood, /area/maintenance/bar) -"QsV" = ( +"QsS" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -59594,38 +59570,38 @@ icon_state = "wood-broken6" }, /area/maintenance/bar) -"QsW" = ( +"QsT" = ( /obj/structure/chair/stool/bar, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, /area/maintenance/bar) -"QsX" = ( +"QsU" = ( /obj/structure/table/wood, /turf/open/floor/wood{ icon_state = "wood-broken5" }, /area/maintenance/bar) -"QsY" = ( +"QsV" = ( /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/wood, /area/maintenance/bar) -"QsZ" = ( +"QsW" = ( /obj/machinery/chem_dispenser/drinks/beer, /obj/structure/table/wood, /turf/open/floor/wood, /area/maintenance/bar) -"Qta" = ( +"QsX" = ( /turf/closed/wall, /area/maintenance/bar) -"Qtb" = ( +"QsY" = ( /obj/item/restraints/handcuffs/fake, /obj/effect/decal/cleanable/blood/old, /obj/effect/spawner/lootdrop/minor/kittyears_or_rabbitears, /turf/open/floor/plating, /area/maintenance/bar) -"Qtc" = ( +"QsZ" = ( /obj/item/shard, /obj/item/wirecutters, /obj/item/wallframe/camera, @@ -59633,14 +59609,14 @@ icon_state = "panelscorched" }, /area/maintenance/bar) -"Qtd" = ( +"Qta" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"Qte" = ( +"Qtb" = ( /turf/closed/wall, /area/maintenance/bar) -"Qtf" = ( +"Qtc" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -59651,22 +59627,22 @@ icon_state = "wood-broken" }, /area/maintenance/bar) -"Qtg" = ( +"Qtd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/maintenance/bar) -"Qth" = ( +"Qte" = ( /obj/structure/chair/stool/bar, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood{ icon_state = "wood-broken7" }, /area/maintenance/bar) -"Qti" = ( +"Qtf" = ( /obj/structure/table/wood, /turf/open/floor/wood, /area/maintenance/bar) -"Qtj" = ( +"Qtg" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -59674,14 +59650,14 @@ icon_state = "wood-broken7" }, /area/maintenance/bar) -"Qtk" = ( +"Qth" = ( /obj/machinery/vending/boozeomat, /turf/open/floor/wood, /area/maintenance/bar) -"Qtl" = ( +"Qti" = ( /turf/closed/wall, /area/maintenance/bar) -"Qtm" = ( +"Qtj" = ( /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; name = "2maintenance loot spawner" @@ -59690,7 +59666,7 @@ /obj/item/device/electropack/shockcollar, /turf/open/floor/plating, /area/maintenance/bar) -"Qtn" = ( +"Qtk" = ( /obj/structure/bed, /obj/item/bedsheet/grey, /obj/effect/decal/cleanable/semen{ @@ -59702,11 +59678,11 @@ icon_state = "platingdmg3" }, /area/maintenance/bar) -"Qto" = ( +"Qtl" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"Qtp" = ( +"Qtm" = ( /obj/machinery/door/airlock/maintenance/abandoned{ name = "Incinerator Access"; req_access_txt = "12" @@ -59716,30 +59692,30 @@ }, /turf/open/floor/plating, /area/maintenance/bar) -"Qtq" = ( +"Qtn" = ( /turf/open/floor/wood, /area/maintenance/bar) -"Qtr" = ( +"Qto" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood{ icon_state = "wood-broken5" }, /area/maintenance/bar) -"Qts" = ( +"Qtp" = ( /obj/structure/chair/stool/bar, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, /turf/open/floor/wood, /area/maintenance/bar) -"Qtt" = ( +"Qtq" = ( /obj/structure/table/wood, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/wood, /area/maintenance/bar) -"Qtu" = ( +"Qtr" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, @@ -59748,15 +59724,15 @@ }, /turf/open/floor/wood, /area/maintenance/bar) -"Qtv" = ( +"Qts" = ( /obj/machinery/chem_dispenser/drinks, /obj/structure/table/wood, /turf/open/floor/wood, /area/maintenance/bar) -"Qtw" = ( +"Qtt" = ( /turf/closed/wall, /area/maintenance/bar) -"Qtx" = ( +"Qtu" = ( /obj/item/lighter/greyscale, /obj/effect/decal/cleanable/semen{ desc = "Blech."; @@ -59766,32 +59742,32 @@ icon_state = "panelscorched" }, /area/maintenance/bar) -"Qty" = ( +"Qtv" = ( /obj/effect/spawner/lootdrop/maintenance, /obj/effect/decal/cleanable/blood/old, /obj/item/device/assembly/signaler, /turf/open/floor/plating, /area/maintenance/bar) -"Qtz" = ( +"Qtw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"QtA" = ( +"Qtx" = ( /turf/closed/wall, /area/maintenance/bar) -"QtB" = ( +"Qty" = ( /obj/effect/spawner/lootdrop/keg, /turf/open/floor/wood, /area/maintenance/bar) -"QtC" = ( +"Qtz" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/maintenance/bar) -"QtD" = ( +"QtA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, /area/maintenance/bar) -"QtE" = ( +"QtB" = ( /obj/machinery/power/apc{ areastring = "/area/maintenance/bar"; dir = 2; @@ -59804,37 +59780,37 @@ icon_state = "wood-broken7" }, /area/maintenance/bar) +"QtC" = ( +/turf/closed/wall, +/area/maintenance/bar) +"QtD" = ( +/turf/closed/wall, +/area/maintenance/bar) +"QtE" = ( +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/maintenance/bar) "QtF" = ( /turf/closed/wall, /area/maintenance/bar) "QtG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) "QtH" = ( -/obj/structure/falsewall, -/turf/open/floor/plating, +/turf/closed/wall, /area/maintenance/bar) "QtI" = ( /turf/closed/wall, /area/maintenance/bar) "QtJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) -"QtK" = ( -/turf/closed/wall, -/area/maintenance/bar) -"QtL" = ( -/turf/closed/wall, -/area/maintenance/bar) -"QtM" = ( /obj/machinery/door/airlock/maintenance/abandoned{ req_access_txt = "0" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/maintenance/bar) -"QtN" = ( +"QtK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/airlock/maintenance/abandoned{ req_access_txt = "0" @@ -59843,49 +59819,49 @@ icon_state = "wood-broken" }, /area/maintenance/bar) -"QtO" = ( +"QtL" = ( /obj/structure/sign/poster/official/no_erp, /turf/closed/wall, /area/maintenance/bar) -"QtP" = ( +"QtM" = ( /turf/closed/wall, /area/maintenance/bar) -"QtQ" = ( +"QtN" = ( /obj/machinery/vending/clothing, /turf/open/floor/wood, /area/maintenance/bar) -"QtR" = ( +"QtO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"QtS" = ( +"QtP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/maintenance/bar) -"QtT" = ( +"QtQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, /area/maintenance/bar) -"QtU" = ( +"QtR" = ( /obj/structure/chair/stool, /turf/open/floor/wood{ icon_state = "wood-broken6" }, /area/maintenance/bar) -"QtV" = ( +"QtS" = ( /turf/open/floor/wood{ icon_state = "wood-broken6" }, /area/maintenance/bar) -"QtW" = ( +"QtT" = ( /obj/machinery/vending/autodrobe, /turf/open/floor/wood, /area/maintenance/bar) -"QtX" = ( +"QtU" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"QtY" = ( +"QtV" = ( /obj/structure/sign/poster/random{ pixel_x = -32 }, @@ -59896,34 +59872,34 @@ icon_state = "wood-broken7" }, /area/maintenance/bar) -"QtZ" = ( +"QtW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/maintenance/bar) -"Qua" = ( +"QtX" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood{ icon_state = "wood-broken" }, /area/maintenance/bar) -"Qub" = ( +"QtY" = ( /obj/structure/table/wood/poker, /turf/open/floor/wood{ icon_state = "wood-broken7" }, /area/maintenance/bar) -"Quc" = ( +"QtZ" = ( /obj/structure/table/wood/poker, /obj/item/storage/pill_bottle/dice, /turf/open/floor/wood, /area/maintenance/bar) -"Qud" = ( +"Qua" = ( /turf/open/floor/wood{ icon_state = "wood-broken5" }, /area/maintenance/bar) -"Que" = ( +"Qub" = ( /obj/structure/table/wood/bar, /obj/item/paper_bin{ pixel_x = -3; @@ -59935,58 +59911,58 @@ }, /turf/open/floor/wood, /area/maintenance/bar) -"Quf" = ( +"Quc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"Qug" = ( +"Qud" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/wood, /area/maintenance/bar) -"Quh" = ( +"Que" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/open/floor/wood, /area/maintenance/bar) +"Quf" = ( +/obj/structure/table/wood/poker, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"Qug" = ( +/obj/structure/table/wood/poker, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"Quh" = ( +/obj/structure/table/wood/poker, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/bar) "Qui" = ( -/obj/structure/table/wood/poker, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"Quj" = ( -/obj/structure/table/wood/poker, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"Quk" = ( -/obj/structure/table/wood/poker, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qul" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/wood, /area/maintenance/bar) -"Qum" = ( +"Quj" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/open/floor/wood, /area/maintenance/bar) -"Qun" = ( +"Quk" = ( /obj/structure/table/wood/bar, /obj/machinery/light{ dir = 4 @@ -59995,21 +59971,21 @@ icon_state = "wood-broken6" }, /area/maintenance/bar) -"Quo" = ( +"Qul" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"Qup" = ( +"Qum" = ( /turf/open/floor/wood{ icon_state = "wood-broken5" }, /area/maintenance/bar) -"Quq" = ( +"Qun" = ( /obj/structure/table/wood/poker, /obj/item/coin/iron, /turf/open/floor/wood, /area/maintenance/bar) -"Qur" = ( +"Quo" = ( /obj/structure/table/wood/bar, /obj/item/reagent_containers/spray/cleaner, /obj/structure/sign/poster/random{ @@ -60017,29 +59993,29 @@ }, /turf/open/floor/wood, /area/maintenance/bar) -"Qus" = ( +"Qup" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"Qut" = ( +"Quq" = ( /obj/effect/spawner/lootdrop/keg, /turf/open/floor/wood{ icon_state = "wood-broken7" }, /area/maintenance/bar) -"Quu" = ( +"Qur" = ( /obj/structure/sign/poster/random{ pixel_y = -32 }, /turf/open/floor/wood, /area/maintenance/bar) -"Quv" = ( +"Qus" = ( /obj/structure/chair/stool, /turf/open/floor/wood{ icon_state = "wood-broken" }, /area/maintenance/bar) -"Quw" = ( +"Qut" = ( /obj/structure/chair/stool, /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; @@ -60047,7 +60023,7 @@ }, /turf/open/floor/wood, /area/maintenance/bar) -"Qux" = ( +"Quu" = ( /obj/structure/sign/poster/random{ pixel_y = -32 }, @@ -60055,35 +60031,35 @@ icon_state = "wood-broken7" }, /area/maintenance/bar) -"Quy" = ( +"Quv" = ( /obj/machinery/vending/kink, /turf/open/floor/wood, /area/maintenance/bar) -"Quz" = ( +"Quw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/bar) -"QuA" = ( +"Qux" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/closed/wall/r_wall, /area/engine/engine_smes) -"QuB" = ( +"Quy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "1-2" }, /turf/closed/wall/r_wall, /area/engine/engine_smes) -"QuC" = ( +"Quz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "1-2" }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QuD" = ( +"QuA" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; @@ -60096,7 +60072,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuE" = ( +"QuB" = ( /obj/machinery/camera{ c_tag = "Gravity Generator Foyer" }, @@ -60112,17 +60088,17 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuF" = ( +"QuC" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "1-2" }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QuG" = ( +"QuD" = ( /turf/closed/wall, /area/space) -"QuH" = ( +"QuE" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -60135,11 +60111,11 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuI" = ( +"QuF" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuJ" = ( +"QuG" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -60151,7 +60127,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuK" = ( +"QuH" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, @@ -60160,30 +60136,30 @@ }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QuL" = ( +"QuI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "1-2" }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QuM" = ( +"QuJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QuN" = ( +"QuK" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QuO" = ( +"QuL" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuP" = ( +"QuM" = ( /obj/item/device/radio/intercom{ broadcasting = 0; listening = 1; @@ -60195,19 +60171,19 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuQ" = ( +"QuN" = ( /obj/machinery/power/terminal, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /obj/structure/cable, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QuR" = ( +"QuO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"QuS" = ( +"QuP" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -24 @@ -60219,11 +60195,11 @@ /obj/item/pen/blue, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuT" = ( +"QuQ" = ( /obj/machinery/holopad, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuU" = ( +"QuR" = ( /obj/machinery/power/smes{ charge = 5e+006 }, @@ -60232,7 +60208,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"QuV" = ( +"QuS" = ( /obj/machinery/power/apc{ dir = 8; name = "Gravity Generator APC"; @@ -60251,28 +60227,28 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) +"QuT" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"QuU" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"QuV" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) "QuW" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"QuX" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"QuY" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"QuZ" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 }, @@ -60288,7 +60264,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"Qva" = ( +"QuX" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; @@ -60301,7 +60277,7 @@ }, /turf/open/floor/plating, /area/engine/gravity_generator) -"Qvb" = ( +"QuY" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ icon_state = "0-8" @@ -60311,7 +60287,7 @@ }, /turf/open/floor/plating, /area/engine/gravity_generator) -"Qvc" = ( +"QuZ" = ( /obj/machinery/door/airlock/glass_engineering{ name = "Gravity Generator"; req_access_txt = "11"; @@ -60322,7 +60298,7 @@ }, /turf/open/floor/plasteel/black, /area/engine/gravity_generator) -"Qvd" = ( +"Qva" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ icon_state = "0-8" @@ -60332,7 +60308,7 @@ }, /turf/open/floor/plating, /area/engine/gravity_generator) -"Qve" = ( +"Qvb" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; @@ -60346,19 +60322,19 @@ /obj/structure/cable, /turf/open/floor/plating, /area/engine/gravity_generator) -"Qvf" = ( +"Qvc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"Qvg" = ( +"Qvd" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/floor/plasteel/black, /area/engine/gravity_generator) -"Qvh" = ( +"Qve" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -60369,7 +60345,7 @@ }, /turf/open/floor/plasteel/black, /area/engine/gravity_generator) -"Qvi" = ( +"Qvf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -74621,7 +74597,7 @@ auT aBI aDf aEK -Qre +Qrb aHy ayl aKk @@ -79554,7 +79530,7 @@ bCq bJP bCq bTs -Qsr +Qso bCq cbj bLv @@ -79810,8 +79786,8 @@ aaa bCq bHE bCq +Qsm Qsp -Qss bCq cbk bLv @@ -80068,7 +80044,7 @@ bLv bPR bRc bSo -Qst +Qsq bCq bVy bLv @@ -80270,14 +80246,14 @@ apQ avY axo ayB -Qqx -QqE -QqN -QqU -QqY -Qrf -Qrl -Qrr +Qqu +QqB +QqK +QqR +QqV +Qrc +Qri +Qro aKu aLF aLF @@ -80527,14 +80503,14 @@ aoV avY axo ayB -Qqy -QqF -QqO -QqV -QqZ -Qrg -Qrm -Qrs +Qqv +QqC +QqL +QqS +QqW +Qrd +Qrj +Qrp aKt aLE bDe @@ -80784,14 +80760,14 @@ apQ avY axo ayB -Qqz -QqG -QqP +Qqw +QqD +QqM aDs -Qra -Qrh -Qrn -Qrt +QqX +Qre +Qrk +Qrq aKu aLE aLE @@ -80838,7 +80814,7 @@ aaa bCq bPV bCq -Qsq +Qsn bTw bCq bVD @@ -81042,7 +81018,7 @@ avZ axo ayC azH -QqH +QqE aBS aDr aDr @@ -81094,7 +81070,7 @@ aoV aoV bCq bPW -Qso +Qsl bSp bTv bCq @@ -81295,13 +81271,13 @@ aqR aGh aqR aqR -Qqw +Qqt axq ayA -QqA -QqI -QqQ -QqW +Qqx +QqF +QqN +QqT apS apS apS @@ -81350,7 +81326,7 @@ bGi aoV aoV bCq -Qsn +Qsk bCq bCq bTu @@ -81556,7 +81532,7 @@ avZ axp ayD azI -QqJ +QqG aBU aDt aDt @@ -81812,15 +81788,15 @@ aag avY axo ayB -QqB -QqK -QqR +Qqy +QqH +QqO aDv -Qrb -Qri -Qro +QqY +Qrf +Qrl +Qrr Qru -Qrx aLE aMS aOt @@ -81867,14 +81843,14 @@ bCq bPY cOw bCq -Qsu -QsB -QsJ -QsT -Qte -Qtp -QtA -QtK +Qsr +Qsy +QsG +QsQ +Qtb +Qtm +Qtx +QtH cjn cjn cjn @@ -82069,15 +82045,15 @@ aag avY axo ayB -QqC -QqL -QqS -QqX -Qrc -Qrj -Qrp +Qqz +QqI +QqP +QqU +QqZ +Qrg +Qrm +Qrs Qrv -Qry aLE aMS aOi @@ -82124,19 +82100,19 @@ bCq bPX bRg bRg -Qsv -QsC +Qss +Qsz bVG -QsU -Qtf -Qtq -QtB -QtL +QsR +Qtc +Qtn +Qty +QtI bcU -QtY +QtV bVG bcU -Qut +Quq cjn bUs bLv @@ -82152,16 +82128,16 @@ aaa aaa aaf aaf -QuG +QuD aaa -QuM +QuJ bij bij bij bij bij bij -Qvf +Qvc btG btG aaa @@ -82326,14 +82302,14 @@ aag avY axo ayB -QqD -QqM -QqT +QqA +QqJ +QqQ aDt -Qrd -Qrk -Qrq -Qrw +Qra +Qrh +Qrn +Qrt aKx aLE aMS @@ -82381,19 +82357,19 @@ bLv bQa bHE bHE -Qsw -QsD -QsK -QsV -Qtg -Qtr -QtC -QtM -QtS -QtZ -Qug -Qup -Quu +Qst +QsA +QsH +QsS +Qtd +Qto +Qtz +QtJ +QtP +QtW +Qud +Qum +Qur cjn bUs bLv @@ -82406,19 +82382,19 @@ cjJ cjJ cjJ cjJ -QuA +Qux bij bij crn bij -QuN +QuK +QuP QuS -QuV -Qva +QuX bkI bgN bgN -Qvg +Qvd bgN btG Qoi @@ -82638,17 +82614,17 @@ bLv bPZ bHE bHE -Qsx -QsE -QsL -QsW -Qth -Qts -QtD -QtN -QtT -Qua -Quh +Qsu +QsB +QsI +QsT +Qte +Qtp +QtA +QtK +QtQ +QtX +Que bdV bcU cjn @@ -82665,13 +82641,13 @@ cov cpj cpS btG -QuD -QuH +QuA +QuE btG -QuO +QuL bsc -QuW -Qvb +QuT +QuY bgN bih big @@ -82895,19 +82871,19 @@ bLv bHE bHE bSs -Qsy -QsF -QsM -QsX -Qti -Qtt +Qsv +QsC +QsJ +QsU +Qtf +Qtq bcU -QtO -QtU +QtL +QtR cCa -Qui +Quf cCa -Quv +Qus cjn bUs bLv @@ -82923,12 +82899,12 @@ cpl cpU btF bsc -QuI +QuF btF bsc -QuT -QuX -Qvc +QuQ +QuU +QuZ bgN big bgN @@ -83152,19 +83128,19 @@ bCq bHE bRh bSr -Qsz -QsG -QsN -QsY -Qtj -Qtu -QtE -QtP +Qsw +QsD +QsK +QsV +Qtg +Qtr +QtB +QtM bdV -Qub -Quj +QtY +Qug cCa -Quw +Qut cjn bUs bLv @@ -83179,13 +83155,13 @@ cow cpk cpT btG -QuE -QuJ +QuB +QuG btG -QuP +QuM bsc -QuY -Qvd +QuV +Qva bgN bii big @@ -83409,18 +83385,18 @@ bCq bOK bCq bCq -QsA -QsH -QsO -QsZ -Qtk -Qtv -QtF +Qsx +QsE +QsL +QsW +Qth +Qts +QtC cjn bdV -Quc -Quk -Quq +QtZ +Quh +Qun bdV cjn bUs @@ -83434,19 +83410,19 @@ cnq cnP coz cpn -QuB +Quy +Quz QuC -QuF -QuK -QuL -QuQ -QuU -QuZ -Qve +QuH +QuI +QuN +QuR +QuW +Qvb bmw bgN bgN -Qvh +Qve bgN btG aaa @@ -83586,10 +83562,10 @@ abc aea aeH aft -Qps -Qpt -Qpu -QpA +Qpp +Qpq +Qpr +Qpx abc Qoi Qoi @@ -83667,18 +83643,18 @@ bHE bLv aaa bLv -QsI -QsP -Qta -Qtl -Qtw -QtG +QsF +QsM +QsX +Qti +Qtt +QtD bcU bcU bdV -Qul +Qui bdV -Qux +Quu cjn bUs bLv @@ -83696,14 +83672,14 @@ aaf aaf Qol aaa -QuR +QuO bgO bgO bgO bgO bgO bgO -Qvi +Qvf btG btG Qoi @@ -83845,8 +83821,8 @@ aeJ afw abc abc -Qpv -QpB +Qps +Qpy abc Qoi aaf @@ -83925,15 +83901,15 @@ bLv aaf bLv bUt -QsQ -Qtb -Qtm -Qtx -QtH +QsN +QsY +Qtj +Qtu +QtE bcU -QtV -Qud -Qum +QtS +Qua +Quj bcU bcU cjn @@ -84102,8 +84078,8 @@ aeI afv agf afA -Qpw -QpC +Qpt +Qpz afA aiV aiT @@ -84182,17 +84158,17 @@ bCq aaa bLv bUt -QsR -Qtc -Qtn -Qty -QtI -QtQ -QtW -Que -Qun -Qur -Quy +QsO +QsZ +Qtk +Qtv +QtF +QtN +QtT +Qub +Quk +Quo +Quv cjn bUs bCq @@ -84359,9 +84335,9 @@ aeL afy agh afA -Qpx +Qpu +QpA QpD -QpG aiV ajs akb @@ -84439,17 +84415,17 @@ aaa aaa bTB bUv -QsS -Qtd -Qto -Qtz -QtJ -QtR -QtX -Quf -Quo -Qus -Quz +QsP +Qta +Qtl +Qtw +QtG +QtO +QtU +Quc +Qul +Qup +Quw car bUs bCq @@ -84616,9 +84592,9 @@ aeK afx agg afA -Qpy +Qpv +QpB QpE -QpH aiV ajr aka @@ -84873,9 +84849,9 @@ aeN afA afA afA -Qpz +Qpw +QpC QpF -QpI aiV aju akd @@ -86937,7 +86913,7 @@ auj akl akO alx -QpS +QpP amg aiX anw @@ -87449,9 +87425,9 @@ aiF agj ajD akm -QpN +QpK aly -QpT +QpQ amQ aiX anw @@ -87962,7 +87938,7 @@ agP agP aiz ajg -QpL +QpI akQ agj agj @@ -88005,7 +87981,7 @@ bbk bbk bbk bfs -QrB +Qry aZM aZM aaf @@ -88222,7 +88198,7 @@ ajb ajF akN alw -QpU +QpR amQ aiX anw @@ -88262,15 +88238,15 @@ bce bdf beb aYv -QrC -QrM +Qrz +QrJ aaf aaf Qoi aaa Qoi aaa -QrW +QrT bsb bsb bsb @@ -88475,14 +88451,14 @@ agn agR agn ajc -QpJ +QpG akv -QpO -QpQ +QpL +QpN aww amk aiX -Qqi +Qqf aov aph aqb @@ -88519,18 +88495,18 @@ aZR bbm bec bfu -QrD +QrA aBb aBb bmu aBb aBb -QrS +QrP aaa bsb -QrY +QrV +Qsc Qsf -Qsi bsb aXf aJq @@ -88717,14 +88693,14 @@ aaf Qow aaf aaZ -QoK -QoU -Qpd +adi +QoQ +QoZ aaZ cpg -Qpq +Qpm acv -adi +Qpn aaZ aeW agQ @@ -88733,7 +88709,7 @@ ahQ aiI aiH ajB -QpM +QpJ akQ agj agj @@ -88776,7 +88752,7 @@ aZR aZR aZR bft -QrE +QrB aBa aBT bmv @@ -88785,13 +88761,13 @@ aGb bpg aaa bsb -QrZ +QrW buP bwm bxH aXf aJq -Qsm +Qsj bCs bCs bCs @@ -88974,14 +88950,14 @@ aaf Qox aaf aaZ -QoL -QoV -Qpe +adi +QoR +Qpa aaZ acl cxA acL -Qpr +Qpo aaZ agp agT @@ -88989,11 +88965,11 @@ ahx ahS aiK ajc -QpK +QpH akm akT aly -QpV +QpS amQ aiX anw @@ -89033,16 +89009,16 @@ bbm bdh bee bfv -QrF +QrC aBa -QrO +QrL aEM aEM aGa bph bqF bsd -Qsa +QrX buQ bwn bxI @@ -89231,11 +89207,11 @@ aaf Qoy aaf aaZ -QoM -QoW -Qpf +adi +QoS +Qpb aaZ -Qpl +Qph adk adK cqG @@ -89290,19 +89266,19 @@ bcf bdg bed bfv -QrG +QrD aBa aBV alu -QrQ +QrN bnU aHG bqE -QrX -Qsb +QrU +QrY +Qsd Qsg -Qsj -Qsl +Qsi aNr bAf bBp @@ -89488,11 +89464,11 @@ aaf Qoz aaf aaZ -QoN -QoX -Qpg +adi +QoT +Qpc aaZ -Qpm +Qpi acM adQ cwM @@ -89510,7 +89486,7 @@ agj agj agj aiX -Qqj +Qqg aoz apm aqd @@ -89547,16 +89523,16 @@ bbm bdh bef bfv -QrH +QrE aBa -QrP +QrM aEO -QrR +QrO bnV -QrT -QrV +QrQ +QrS bsf -Qsc +QrZ buS bwp bxK @@ -89745,11 +89721,11 @@ aaf QoA aaf aaZ -QoO -QoY -Qph +QoK +QoU +Qpd aaZ -Qpn +Qpj coS aet cxA @@ -89767,8 +89743,8 @@ alz aml amT aiX -Qqk -Qqq +Qqh +Qqn apl aqc aqc @@ -89804,7 +89780,7 @@ aZR aZR aZR bfw -QrI +QrF aBa aBW bjy @@ -89813,7 +89789,7 @@ aGe bpi aaa bsb -Qsd +Qsa buR aFM bxJ @@ -90002,11 +89978,11 @@ aaf QoB aaf aaZ -QoP -QoZ -Qpi +QoL +QoV +Qpe abQ -Qpo +Qpk adj arc blT @@ -90023,9 +89999,9 @@ akV alB amn amV -Qqe +Qqb anB -Qqr +Qqo aod aqf ahT @@ -90061,18 +90037,18 @@ aZR bbm beh bfx -QrJ +QrG aBc aBc bgR aBc aBc -QrU +QrR aaa bsb +Qsb Qse Qsh -Qsk bsb aJq aJq @@ -90259,11 +90235,11 @@ aaf QoC aaf aaZ -QoQ +QoM ack -Qpj +Qpf abN -Qpp +Qpl bkA acF aes @@ -90278,9 +90254,9 @@ ajI akp amS alA -QpW +QpT amm -Qqf +Qqc anT anT aod @@ -90318,8 +90294,8 @@ bcg aZU beg aYB +QrH QrK -QrN aaf aaf Qoi @@ -90516,9 +90492,9 @@ aaf QoD aaf aaZ -QoR -Qpa -Qpk +QoN +QoW +Qpg aci acm cpA @@ -90535,7 +90511,7 @@ ajJ akr amS alC -QpX +QpU amX amX amX @@ -90575,7 +90551,7 @@ bbp bbp bbp bfz -QrL +QrI aZV aZV aaf @@ -90774,7 +90750,7 @@ aaZ aaZ aaZ aaZ -Qpb +QoX avB aaZ aaZ @@ -90791,14 +90767,14 @@ ajd ajI akp amS -QpR +QpO amo amX amX -Qql +Qqi +Qqp +Qqq Qqs -Qqt -Qqv arf apY ate @@ -91047,12 +91023,12 @@ adR aiQ ajI akt -QpP +QpM anw -QpY -Qqa +QpV +QpX anB -Qqm +Qqj aoD aod aqe @@ -91306,10 +91282,10 @@ ajK aks akY anA -QpZ -Qqb +QpW +QpY amo -Qqn +Qqk aoC aod aqe @@ -91544,8 +91520,8 @@ aaa abp abO abO -QoS -Qpc +QoO +QoY acq acq acq @@ -91564,9 +91540,9 @@ akp aiX akz alf -Qqc -Qqg -Qqo +QpZ +Qqd +Qql aoF apo aqh @@ -91821,11 +91797,11 @@ aku aiX alE amq -Qqd -Qqh -Qqp +Qqa +Qqe +Qqm aoE -Qqu +Qqr aqg aun asf @@ -92058,7 +92034,7 @@ aaa abp aco QoI -QoT +QoP abR abP abP @@ -96727,7 +96703,7 @@ aGJ aIe aJC aJC -Qrz +Qrw aJC aJC aJC @@ -98012,7 +97988,7 @@ aGL aIg aJH aKR -QrA +Qrx aMB aJC aRA From 6199191dd82dc514e2628aa6a14bdb44e4847d54 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Mon, 23 Oct 2017 20:36:44 -0400 Subject: [PATCH 107/227] Merge pull request #32007 from lzimann/poll Selecting multiple choice polls with 1 choice now become a single option poll --- code/modules/admin/create_poll.dm | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/code/modules/admin/create_poll.dm b/code/modules/admin/create_poll.dm index d93b21d7f8..b1cda46ece 100644 --- a/code/modules/admin/create_poll.dm +++ b/code/modules/admin/create_poll.dm @@ -6,7 +6,7 @@ if(!SSdbcore.Connect()) to_chat(src, "Failed to establish database connection.") return - var/polltype = input("Choose poll type.","Poll Type") in list("Single Option","Text Reply","Rating","Multiple Choice", "Instant Runoff Voting")|null + var/polltype = input("Choose poll type.","Poll Type") as null|anything in list("Single Option","Text Reply","Rating","Multiple Choice", "Instant Runoff Voting") var/choice_amount = 0 switch(polltype) if("Single Option") @@ -18,10 +18,14 @@ if("Multiple Choice") polltype = POLLTYPE_MULTI choice_amount = input("How many choices should be allowed?","Select choice amount") as num|null - if(choice_amount == 0) - to_chat(src, "Multiple choice poll must have at least one choice allowed.") - else if (choice_amount == null) - return + switch(choice_amount) + if(0) + to_chat(src, "Multiple choice poll must have at least one choice allowed.") + return + if(1) + polltype = POLLTYPE_OPTION + if(null) + return if ("Instant Runoff Voting") polltype = POLLTYPE_IRV else From 94826620fa710862a1ebc7b43c0a7a379fcf0ba6 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Mon, 23 Oct 2017 21:07:41 -0400 Subject: [PATCH 109/227] Late join antagonists will try to target late join players (#31560) --- code/datums/mind.dm | 1 + code/game/gamemodes/objective.dm | 13 +++++++++++++ code/modules/mob/dead/new_player/new_player.dm | 1 + 3 files changed, 15 insertions(+) diff --git a/code/datums/mind.dm b/code/datums/mind.dm index 4036aaaf45..dd389d46d4 100644 --- a/code/datums/mind.dm +++ b/code/datums/mind.dm @@ -64,6 +64,7 @@ var/mob/living/enslaved_to //If this mind's master is another mob (i.e. adamantine golems) var/datum/language_holder/language_holder var/unconvertable = FALSE + var/late_joiner = FALSE /datum/mind/New(var/key) src.key = key diff --git a/code/game/gamemodes/objective.dm b/code/game/gamemodes/objective.dm index 77e26f026a..cd3b2ba2b2 100644 --- a/code/game/gamemodes/objective.dm +++ b/code/game/gamemodes/objective.dm @@ -54,9 +54,22 @@ /datum/objective/proc/find_target() var/list/datum/mind/owners = get_owners() var/list/possible_targets = list() + var/try_target_late_joiners = FALSE + for(var/I in owners) + var/datum/mind/O = I + if(O.late_joiner) + try_target_late_joiners = TRUE for(var/datum/mind/possible_target in get_crewmember_minds()) if(!(possible_target in owners) && ishuman(possible_target.current) && (possible_target.current.stat != DEAD) && is_unique_objective(possible_target)) possible_targets += possible_target + if(try_target_late_joiners) + var/list/all_possible_targets = possible_targets.Copy() + for(var/I in all_possible_targets) + var/datum/mind/PT = I + if(!PT.late_joiner) + possible_targets -= PT + if(!possible_targets.len) + possible_targets = all_possible_targets if(possible_targets.len > 0) target = pick(possible_targets) update_explanation_text() diff --git a/code/modules/mob/dead/new_player/new_player.dm b/code/modules/mob/dead/new_player/new_player.dm index 3839c87f08..2ef2077cde 100644 --- a/code/modules/mob/dead/new_player/new_player.dm +++ b/code/modules/mob/dead/new_player/new_player.dm @@ -488,6 +488,7 @@ . = H new_character = . if(transfer_after) + mind.late_joiner = TRUE transfer_character() /mob/dead/new_player/proc/transfer_character() From 1ca797a53eb1649809e29696c39d23a79e5dd05f Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 23 Oct 2017 22:02:25 -0500 Subject: [PATCH 111/227] Automatic changelog generation for PR #3575 [ci skip] --- html/changelogs/AutoChangeLog-pr-3575.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3575.yml diff --git a/html/changelogs/AutoChangeLog-pr-3575.yml b/html/changelogs/AutoChangeLog-pr-3575.yml new file mode 100644 index 0000000000..1c9c3fbd31 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3575.yml @@ -0,0 +1,13 @@ +author: "deathride58" +delete-after: True +changes: + - tweak: "All maps have been hard synced with upstream. Thank upstream for messing with the cables. Refer to upstream map changelogs for details." + - tweak: "Map changes from prior to the sync have been re-added." + - tweak: "Boxstation security's equipment room is now two tiles larger. The security vendor, biohazard locker, and bomb suit locker are now on the same wall as the rest of the sec equipment lockers." + - tweak: "Boxstation's security equipment room is now equipped with two secways." + - tweak: "Security on all maps no longer contain chem dispensers or chemmasters." + - tweak: "All maps now share the same vulnerability involving the security desk that Boxstation does." + - tweak: "Deltastation's map changes have been restored after the previous sync." + - tweak: "Boxstation's security lobby disposals has been fixed" + - tweak: "Fixed stray r-wall between the evidence room and cell 1 in Boxstation." + - tweak: "Replaced the blast doors in Boxstation's security lobby with shutters." From 9848da0544439ed739b07f4fb74f67c5e1de562a Mon Sep 17 00:00:00 2001 From: jughu Date: Tue, 24 Oct 2017 05:53:38 +0200 Subject: [PATCH 112/227] Blacklists holo injectors from surplus crates (#32001) * Update uplink_item.dm * Update uplink_item.dm --- code/modules/uplink/uplink_item.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/uplink/uplink_item.dm b/code/modules/uplink/uplink_item.dm index 4cf6700544..6aad347e2a 100644 --- a/code/modules/uplink/uplink_item.dm +++ b/code/modules/uplink/uplink_item.dm @@ -375,6 +375,7 @@ GLOBAL_LIST_EMPTY(uplink_items) // Global list so we only initialize this once. organic host as a home base and source of fuel." item = /obj/item/storage/box/syndie_kit/guardian cost = 18 + surplus = 0 exclude_modes = list(/datum/game_mode/nuclear) player_minimum = 25 From 95cb834389970600e76e1303eecb82e378da5985 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Mon, 23 Oct 2017 23:34:15 -0500 Subject: [PATCH 114/227] dupe item state for donation item --- code/citadel/custom_loadout/custom_items.dm | 2 +- icons/obj/custom.dmi | Bin 6881 -> 6886 bytes 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/code/citadel/custom_loadout/custom_items.dm b/code/citadel/custom_loadout/custom_items.dm index 95bb54a550..68996999d9 100644 --- a/code/citadel/custom_loadout/custom_items.dm +++ b/code/citadel/custom_loadout/custom_items.dm @@ -168,7 +168,7 @@ desc = "Smells like reactor four." icon = 'icons/obj/custom.dmi' item_state = "stalker" - icon_state = "stalker" + icon_state = "stalker-w" flags_1 = BLOCK_GAS_SMOKE_EFFECT_1 | MASKINTERNALS_1 flags_inv = HIDEEARS|HIDEEYES|HIDEFACE|HIDEFACIALHAIR w_class = WEIGHT_CLASS_NORMAL diff --git a/icons/obj/custom.dmi b/icons/obj/custom.dmi index 41ebe61b53c964bb6830afb9bf12bafc55ca026f..cca6f3fa7931bb731e98edf230b9a30cd6d2936e 100644 GIT binary patch delta 191 zcmV;w06_oYHRd&tB!8-UR9JLGWpiV4X>fFDZ*Bkpc$}qKq`gVWKP z4yo;QEuvl#97Hu<=g68Hv4DevH4XbauK5M=EJA*0f|q_17Boc+xQR`u^%#QZM3iaz tXOMn7;zN)8!(ktK=P$UbID%%F+j1>4;tB3TFU?c delta 186 zcmV;r07d`iHQ_aoB!8uPR9JLGWpiV4X>fFDZ*Bkpc$}rqy9$Fq5CzbB_bUdi6Y{X# zCMdx||6!w}4z3So#^m=?2q^+$Al5$q^*COf_!9i5vV~MP(i3J>-t!dZ~xaJSyMTGp=1TXzA7B58%xXWhLY6`*gL6m9! o=OEb{;zN)8!{9Hs^^eAOo5hfoDWpYi-#4yvC7a)cbg|bD8WhZ1m;e9( From af71944d71bc65aad06ae32c48058548bc9953b2 Mon Sep 17 00:00:00 2001 From: ShizCalev Date: Tue, 24 Oct 2017 01:04:01 -0400 Subject: [PATCH 115/227] Fixes xenobio sentience giving the wrong name (#32016) --- code/modules/research/xenobiology/xenobiology.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/research/xenobiology/xenobiology.dm b/code/modules/research/xenobiology/xenobiology.dm index 8093a9670a..cca88a0dda 100644 --- a/code/modules/research/xenobiology/xenobiology.dm +++ b/code/modules/research/xenobiology/xenobiology.dm @@ -194,7 +194,7 @@ SM.mind.enslave_mind_to_creator(user) SM.sentience_act() to_chat(SM, "All at once it makes sense: you know what you are and who you are! Self awareness is yours!") - to_chat(SM, "You are grateful to be self aware and owe [user] a great debt. Serve [user], and assist [user.p_them()] in completing [user.p_their()] goals at any cost.") + to_chat(SM, "You are grateful to be self aware and owe [user.real_name] a great debt. Serve [user.real_name], and assist [user.p_them()] in completing [user.p_their()] goals at any cost.") to_chat(user, "[SM] accepts [src] and suddenly becomes attentive and aware. It worked!") qdel(src) else From 889d2ba74e9a6db849608352e565f2fa309d7acd Mon Sep 17 00:00:00 2001 From: ShizCalev Date: Tue, 24 Oct 2017 01:04:58 -0400 Subject: [PATCH 117/227] Moves opened firedoors underneath opened airlocks --- code/__DEFINES/layers.dm | 1 + code/game/machinery/doors/firedoor.dm | 1 + code/game/machinery/doors/shutters.dm | 13 +++++++++++++ 3 files changed, 15 insertions(+) diff --git a/code/__DEFINES/layers.dm b/code/__DEFINES/layers.dm index ee9e97cbd9..c92cb5f5a7 100644 --- a/code/__DEFINES/layers.dm +++ b/code/__DEFINES/layers.dm @@ -33,6 +33,7 @@ #define HIGH_SIGIL_LAYER 2.56 #define BELOW_OPEN_DOOR_LAYER 2.6 +#define SHUTTER_LAYER 2.65 //Prevents shutters from being placed above doors. It's overridden by /obj/machinery/door/New() & poddoor/shutters/New() #define OPEN_DOOR_LAYER 2.7 #define PROJECTILE_HIT_THRESHHOLD_LAYER 2.75 //projectiles won't hit objects at or below this layer if possible #define TABLE_LAYER 2.8 diff --git a/code/game/machinery/doors/firedoor.dm b/code/game/machinery/doors/firedoor.dm index 37500b2589..63da575fc1 100644 --- a/code/game/machinery/doors/firedoor.dm +++ b/code/game/machinery/doors/firedoor.dm @@ -19,6 +19,7 @@ sub_door = TRUE explosion_block = 1 safe = FALSE + layer = BELOW_OPEN_DOOR_LAYER closingLayer = CLOSED_FIREDOOR_LAYER assemblytype = /obj/structure/firelock_frame armor = list(melee = 30, bullet = 30, laser = 20, energy = 20, bomb = 10, bio = 100, rad = 100, fire = 95, acid = 70) diff --git a/code/game/machinery/doors/shutters.dm b/code/game/machinery/doors/shutters.dm index 174e4fbd14..03e975866f 100644 --- a/code/game/machinery/doors/shutters.dm +++ b/code/game/machinery/doors/shutters.dm @@ -1,3 +1,4 @@ +<<<<<<< HEAD /obj/machinery/door/poddoor/shutters gender = PLURAL name = "shutters" @@ -8,6 +9,18 @@ /obj/machinery/door/poddoor/shutters/preopen icon_state = "open" +======= +/obj/machinery/door/poddoor/shutters + gender = PLURAL + name = "shutters" + desc = "Heavy duty metal shutters that opens mechanically." + icon = 'icons/obj/doors/shutters.dmi' + layer = SHUTTER_LAYER + damage_deflection = 20 + +/obj/machinery/door/poddoor/shutters/preopen + icon_state = "open" +>>>>>>> ca7adb4... Moves opened firedoors underneath opened airlocks (#32018) density = FALSE opacity = 0 From aa420067ba42ad47b9dc60060f32978a600e1961 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Tue, 24 Oct 2017 00:09:11 -0500 Subject: [PATCH 118/227] Revert "[MIRROR] Late join antagonists will try to target late join players" --- code/datums/mind.dm | 1 - code/game/gamemodes/objective.dm | 13 ------------- code/modules/mob/dead/new_player/new_player.dm | 1 - 3 files changed, 15 deletions(-) diff --git a/code/datums/mind.dm b/code/datums/mind.dm index dd389d46d4..4036aaaf45 100644 --- a/code/datums/mind.dm +++ b/code/datums/mind.dm @@ -64,7 +64,6 @@ var/mob/living/enslaved_to //If this mind's master is another mob (i.e. adamantine golems) var/datum/language_holder/language_holder var/unconvertable = FALSE - var/late_joiner = FALSE /datum/mind/New(var/key) src.key = key diff --git a/code/game/gamemodes/objective.dm b/code/game/gamemodes/objective.dm index cd3b2ba2b2..77e26f026a 100644 --- a/code/game/gamemodes/objective.dm +++ b/code/game/gamemodes/objective.dm @@ -54,22 +54,9 @@ /datum/objective/proc/find_target() var/list/datum/mind/owners = get_owners() var/list/possible_targets = list() - var/try_target_late_joiners = FALSE - for(var/I in owners) - var/datum/mind/O = I - if(O.late_joiner) - try_target_late_joiners = TRUE for(var/datum/mind/possible_target in get_crewmember_minds()) if(!(possible_target in owners) && ishuman(possible_target.current) && (possible_target.current.stat != DEAD) && is_unique_objective(possible_target)) possible_targets += possible_target - if(try_target_late_joiners) - var/list/all_possible_targets = possible_targets.Copy() - for(var/I in all_possible_targets) - var/datum/mind/PT = I - if(!PT.late_joiner) - possible_targets -= PT - if(!possible_targets.len) - possible_targets = all_possible_targets if(possible_targets.len > 0) target = pick(possible_targets) update_explanation_text() diff --git a/code/modules/mob/dead/new_player/new_player.dm b/code/modules/mob/dead/new_player/new_player.dm index 2ef2077cde..3839c87f08 100644 --- a/code/modules/mob/dead/new_player/new_player.dm +++ b/code/modules/mob/dead/new_player/new_player.dm @@ -488,7 +488,6 @@ . = H new_character = . if(transfer_after) - mind.late_joiner = TRUE transfer_character() /mob/dead/new_player/proc/transfer_character() From 0986857f18fdd1b5cee4c250ba4c03600e86f3b9 Mon Sep 17 00:00:00 2001 From: kevinz000 Date: Tue, 24 Oct 2017 06:07:03 -0700 Subject: [PATCH 119/227] Update crayons.dm (#32024) --- code/game/objects/items/crayons.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/crayons.dm b/code/game/objects/items/crayons.dm index 3b24626737..1765ecf902 100644 --- a/code/game/objects/items/crayons.dm +++ b/code/game/objects/items/crayons.dm @@ -316,13 +316,15 @@ if(actually_paints) switch(paint_mode) if(PAINT_NORMAL) - new /obj/effect/decal/cleanable/crayon(target, paint_color, drawing, temp, graf_rot) + var/obj/effect/decal/cleanable/crayon/C = new(target, paint_color, drawing, temp, graf_rot) + C.add_hiddenprint(user) affected_turfs += target if(PAINT_LARGE_HORIZONTAL) var/turf/left = locate(target.x-1,target.y,target.z) var/turf/right = locate(target.x+1,target.y,target.z) if(is_type_in_list(left, validSurfaces) && is_type_in_list(right, validSurfaces)) - new /obj/effect/decal/cleanable/crayon(left, paint_color, drawing, temp, graf_rot, PAINT_LARGE_HORIZONTAL_ICON) + var/obj/effect/decal/cleanable/crayon/C = new(left, paint_color, drawing, temp, graf_rot, PAINT_LARGE_HORIZONTAL_ICON) + C.add_hiddenprint(user) affected_turfs += left affected_turfs += right affected_turfs += target From f4bac0619b68ca2eda604bdc332f001793b4645e Mon Sep 17 00:00:00 2001 From: kevinz000 Date: Tue, 24 Oct 2017 08:54:06 -0700 Subject: [PATCH 121/227] fixes pentetic acid dealing radiation damage instead of healing it (#32027) * Update medicine_reagents.dm * sorry i alughed so hard i hit a key --- code/modules/reagents/chemistry/reagents/medicine_reagents.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/chemistry/reagents/medicine_reagents.dm b/code/modules/reagents/chemistry/reagents/medicine_reagents.dm index 818ea3d17f..b83e651eda 100644 --- a/code/modules/reagents/chemistry/reagents/medicine_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/medicine_reagents.dm @@ -466,7 +466,7 @@ metabolization_rate = 0.5 * REAGENTS_METABOLISM /datum/reagent/medicine/pen_acid/on_mob_life(mob/living/M) - M.radiation -= min(M.radiation-RAD_MOB_SAFE, 0)/100 + M.radiation -= max(M.radiation-RAD_MOB_SAFE, 0)/100 M.adjustToxLoss(-2*REM, 0) for(var/datum/reagent/R in M.reagents.reagent_list) if(R != src) From 0090a71beac37f901dd433f71e113cc8e9a59275 Mon Sep 17 00:00:00 2001 From: Armhulen Date: Tue, 24 Oct 2017 09:24:05 -0700 Subject: [PATCH 123/227] adds logging to ripley gibs (#32032) * maybe this works, and maybe it doesn't * cyberfriend * oh right --- code/game/mecha/equipment/tools/mining_tools.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/mecha/equipment/tools/mining_tools.dm b/code/game/mecha/equipment/tools/mining_tools.dm index d0a1310e8e..c99814148d 100644 --- a/code/game/mecha/equipment/tools/mining_tools.dm +++ b/code/game/mecha/equipment/tools/mining_tools.dm @@ -81,6 +81,7 @@ "[chassis] drills [target] with [src].") add_logs(user, target, "attacked", "[name]", "(INTENT: [uppertext(user.a_intent)]) (DAMTYPE: [uppertext(damtype)])") if(target.stat == DEAD) + add_logs(user, target, "gibbed", name) if(target.butcher_results) target.harvest(chassis)//Butcher the mob with our drill. else From cb30805b04bc1539704ad1eaecbb327e5cdb50e9 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Tue, 24 Oct 2017 11:25:30 -0500 Subject: [PATCH 125/227] Update custom_items.dm --- code/citadel/custom_loadout/custom_items.dm | 1 - 1 file changed, 1 deletion(-) diff --git a/code/citadel/custom_loadout/custom_items.dm b/code/citadel/custom_loadout/custom_items.dm index 68996999d9..89ebd8008d 100644 --- a/code/citadel/custom_loadout/custom_items.dm +++ b/code/citadel/custom_loadout/custom_items.dm @@ -172,7 +172,6 @@ flags_1 = BLOCK_GAS_SMOKE_EFFECT_1 | MASKINTERNALS_1 flags_inv = HIDEEARS|HIDEEYES|HIDEFACE|HIDEFACIALHAIR w_class = WEIGHT_CLASS_NORMAL - item_state = "gas_alt" gas_transfer_coefficient = 0.01 permeability_coefficient = 0.01 flags_cover = MASKCOVERSEYES | MASKCOVERSMOUTH From 14ed0d84e888fe4e417c2c0c98e01baa1aee09dd Mon Sep 17 00:00:00 2001 From: LetterJay Date: Tue, 24 Oct 2017 11:57:08 -0500 Subject: [PATCH 126/227] kill-me --- code/citadel/custom_loadout/custom_items.dm | 10 +--------- icons/mob/mask.dmi | Bin 43368 -> 44077 bytes icons/obj/clothing/masks.dmi | Bin 32220 -> 33654 bytes 3 files changed, 1 insertion(+), 9 deletions(-) diff --git a/code/citadel/custom_loadout/custom_items.dm b/code/citadel/custom_loadout/custom_items.dm index 89ebd8008d..2c83912d0a 100644 --- a/code/citadel/custom_loadout/custom_items.dm +++ b/code/citadel/custom_loadout/custom_items.dm @@ -166,16 +166,8 @@ /obj/item/clothing/mask/gas/stalker name = "S.T.A.L.K.E.R. mask" desc = "Smells like reactor four." - icon = 'icons/obj/custom.dmi' item_state = "stalker" - icon_state = "stalker-w" - flags_1 = BLOCK_GAS_SMOKE_EFFECT_1 | MASKINTERNALS_1 - flags_inv = HIDEEARS|HIDEEYES|HIDEFACE|HIDEFACIALHAIR - w_class = WEIGHT_CLASS_NORMAL - gas_transfer_coefficient = 0.01 - permeability_coefficient = 0.01 - flags_cover = MASKCOVERSEYES | MASKCOVERSMOUTH - resistance_flags = 0 + icon_state = "stalker" /*Sylas*/ diff --git a/icons/mob/mask.dmi b/icons/mob/mask.dmi index 92a74b0afacb9b90072ab1b8080b2bb7841cfbb8..3854f252eb96eda2c6f76bf25f2f8d9e3ad6f107 100644 GIT binary patch delta 8523 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 delta 7808 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 IsoI477pEL&lK=n! diff --git a/icons/obj/clothing/masks.dmi b/icons/obj/clothing/masks.dmi index dfb51a9caa27fdd31b9e039f58bccbe8692339a7..786a8c7fd06c361c3fe272dfcc581a058386f981 100644 GIT binary patch delta 12958 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 KzEIA{@Baaop$we> delta 11513 zcmaL7cU%)s^!K}=D;<HS+`%B{@H#PY?G`2uQ&N2u4|@C=Ji9G(jd z1icpWe*NKh=0P;vF8t1i2M18MgXPnK!-0&O>I`HBm#(OhsWZe0vDHWb>Oml7?u>lA zt@4Jy<*xMM_y>7~0EfgCc3u5h9ywXrfH|yxnalb<6;z~xl+Ikr}e z&`!zo3I$qyA!I8NbV2Wo71fBN5-~!=hgrsRftU%^%Y3oGt8}`k!(*uB?*5^kDrIvN zL{wB%nN=D{dhy~4Jc)h14dfiFI%mbpUctJ8c7daOiOVZ(6DmiWHAyO}88SL+pT zQK9l&2iP|UDuj=!zehfKJI+Hd>h`Om`e7Q1DJ1Jk7tnQR-nn1VUt|-$@`gKA&5#9> zTCqajmR`bKg{9@~A6dHhp?MqWSlf4y_v$AhH0t{3?kf~xaPSSdq8fcxBSuh3Y(8TR z5!^fLT|uEbO=%yYu zHWxTK@#a;mBSHMfPr7L`ZDR~;6i+t|`!=rr05QLy$*1QoPn!wBG4yzm^|TlCQRn9z zZw@KNgsC(bX@DOsUXg8*1F3`PMr_0OW_7C_^TaFvpMLi4ZLQb?eR)I59o6)bY`EL` zPZ%zB>r?V6!iQMJsTcVPe3bnMVa<4@4ql|Px2-w~e*V9$TeBZgoo5|Ke?4w&#)Rb{ z1cqM>peL{k^dJB{crOKs>?b|hq_~Mvog)~v;T>zEuO8-Y@nX=rV`*BEE|wtSa@xob!WOBv3anV;DoIB>In|UU1IJkNOQohfE?$Z zCpqJPk)QX`c?y9#(u5Cu*j|y$X=p58O-w%mG0{jv4A-vfRJNC5_^4us$%wA!qtal$ z0iz-wALawsh{xM865X0)1DWqpQFcG)`w!_ywq#=Yu(2dbds#!Vy@A}9uf_5;#wN@s zNqk^B}FQ1%yM7mD>PY7po(WuzoBW)A1Ix`K+dqhT-5PQ zBZ+Uh((6>_?W^IY(O@Q~2>T#@EfkEZ;s!T|iBqmK>v?!Vk^Z}?hgq_xGYRFnaJF#% z$VzMF2ExAT`An6tdVtL4y+tc-B z=+ojaUpkz=QlFjfP!Zc^Jy9CLBTDU{9$&VONz~;_r!j?P>iZ#?sMG8{i<@sHY&XpL z%C2fqvr1gSS=V{3@8NBgd1)kFB;A;yA@LYY)-K&*{8smX^$)5A0bArmBfjeCicHAh zjZbVs8he60Iw2P3V3^PGp|t{Hf_(Et$IOgHU+*Dge#8IsmoJ4?Rgb(d)m2sRt@y97 zvI=j87lj426OD}*u7k1-*O>r}+0cM@~9PXcM84Tq4&W4mQjE&}FX*Wc6LbGq` zZ?xU5zNDk}XOM=DdsMlTNm4*t{%4Eq@~1(OFBw!iHZ!$KoJSf%w0kzXVa8 z-ogs;(R6}0qXCK&tZfSHx&( zX%|_Q@7%cx+f1q`D1dzZ`qhbacz8H}Dt-Q_hQboj-=1gp@{uxcOvW+euWuqcb8_Xq z`^JvHwwTi@jK>^jpReDPhmHr&r=JW;-!{FvulW= zW9sb9Ad0wMXXQV5LjcGxX<%D_Mp>qKrI=hm$0dRr!X|yq}eBqEF{3(b&wD&E=+ z+=T*Xn=5nCO;?KPIIXC>9?bqo}bg!pK$@n?&@RWyBU*6#Gx1j{wdN{_tMc2xtkZjKx7C`(w- z(q=bMiV|kHbziUcmooL+D%!(G`)#DLb1|G>isvDKFurpkmt6l}zx5kcf+^BVJ1X-e zH?iV)(2AD7YwE_D$C=>eYtkew zdy9uCJsB)QoKoXd`8sIrm9IQ)pt`47QidubyUS^ySl2=vpJbi1gi^Wh?#M#aUsmp3 zc+Z^kZZ3vrPL)EV02rRR59HAQp5xV^cMtpMS#qLf$xR$MJDr{qM5D_~tM30{ z_aFI94?BMaPFFhjcAwvmj6w4Z3#2{hS&lpefF`*tW4}@@t^iKit~KQR?zR6*WZ)0m{yU}EP&s#)}7Ssk|1m0YcsGs`}BmP+Y{;Qn*BiwY}Q<`>;11x;Z3GeT#mzf5v{9$=(G(;Hz=OemKIFcv9+Ne86Y=UjWej z8e|f9S-E&%e!$s{O71fh*%(Oj?f$+*xq$f>!6jM2T5RTv^ixeqyQ~>qebrLbZXTFe zjvIjNHw0t(qWtD-#44W9Q~Bkf7&U~XWtpD6cKS2varNCLRLtKE2&CK(!j~JEiNBg_ zLJB$_Xbyesjpl(V*9lqIB7rfv+J&#hA?1QM5Csgal5vzXkv5NOI z3^W*sqXzSvH*ZSGhl#@#&8{kqH5z0|QqGEAwknvY@qVI``5rc}a6ahtwKJcL4w+M8GjFo17MpB8eeR;51~!@i~o&YWF%>dgsD?EG>UZQF*7ByyMT0 z*(EnR$9nGhGsQ{?zT+qgwO;kUXK-m?U7YP!v*b8o^s0=mK5X(HH-~jLV6$*IEWR%v zv?$y?I})h&;dNldhv-Fr5bM=4E#nw{9kXG2wfv?;k1i6whMvyrAElT_s=l2kj>r2I zx8r1+tC`_!a+mFMN;@8D-yca0D%mzSp(GDXD`gUa5&c*-GmV^wIBTf$*&wsp6X%w28D_i_t0x7(+5Bmr{nA&a>wNj z$p$y(J~A~kOFjnila)(OyZURimoohSy0rWHbRvAQt*q4_4Gswew)g!tYrWtAF#YC2uD`0%yHx)#P2J0gh$}Ir_&(u|9m~jhewL^ z|KU_U{qOE(JZ*ttJo_kGJZ28Mo470pz5F~9t~Rooti3)(+@jR?I^UE*7}_^rqiO-APH z;_6y?Q-Fz)lTnBcu6J7SjqBxiv#9WIW^W?+9+a^NkzmCHApU>0j|&QZ$Ltzd0X2Ck zri~z1M>uc3@(U$Ry_b6OBxw@wyBBF9u;>%`5xWW)wJLsll3Pu~UTJ@3HFtt^W2}tz z^v>dnAvd(*?ul}6DoOmO#ew%|*WSlFIIpRi=l#)V5(&#vpLN#LiISszF_M59GUl0$ z>#s=qH-mK9-|C!3g;q2HARr}XJ;T;f0OV`Qv!)p^YZtxkaY1fGT)4+0OEK|*^*Lg9 z>LV#1>l5+8WE;XD=ZM{K1}}~>URTa}?N?+s+(bvPu&z?OHiECYf;6E$_d z#1<^%W*s%4gp^ex1SqeQBZC{Fk91NS49tIhNCMQbF$IrQZ*L_Nr;qr%mfMQ;e0uVZ`4_R_-YcBPe1+nsM_#CbBfoj)r5gaepQX`V2$ z^`kl-G}BI)#kSvyx}4@i2R>)@i%+S5t#2t5&5SH4uU}OqPSe`Yd=CRf|0Pb3H@!@F z@#|h-{Hxg*iYC(iKMRWwEzn)#^go4jrw4L8ePU6YE&O!t%0K-tpSujbthyX6g|p1& zQuxt%@ZwXEPZ}pD=d(HE{iaRu^*e>ox! zyY&%n)oXrq{(mBF-&Pp@+q0L2R4#9{Z;+VTcit90m(is$U+JC5%Cr6*p{>0%M6m3R zZtzw<|2h>L$r}Ye3c6Pj#Fyj87j0`!Ck>mMyA$utp>oeGMs)|yjw)}e>O8Qs$M$ZX zrKhJucBMu$5$t=n;QNa@G_1b4}XuwiOrbB3WyoAh|W@$~2Q zbF3rVXcSU9j)Xr>9{hI^ zV)7c?iqsSegzTZis=Lb9VN|hugR3Yr88G4jacKh}#PYx5I|y!(yGRtth-o4t*jZ4` zcYxCPbVY+q9k`+vN7->_;V%`{9b^_Cn3R&1vJ?fdkka?moAdR%e1k4f8&VRB<#mOuh5KY)R%n0bpYU~)6-Hn zm2b*`H)X2B`bHRw`qeWSsNj{vLWfEOj}n^>T<%t8qvrNjsw+bu|I9?A5;$8aHe0}T z|4qzAa!M?jMhYMf{}t@Tb*v0>dlXZ0OBS*@h2?^e`w?nZbPKKHEBj_F-%s=nOUsB# z%r$V`yA<{!4;R8!tT%hcN2hK3KLuM#bT^io*%EVOEic*W&5r0?6e`i8;wk;S2GA@K zu4JDgLv>Osp&u%d1`fJK+Lp=K@GS@5`Fn1^VKS;mOl^VLMg3WE4h4uvif>K1s1+vC z1Hc?4^yw<|X{i1A)c7+HB?GXjLY3Z1+V4yR`8+ME|L2vb|JI)OGW@k``sVI8F?^=F z9-OuDo9O*>QXI|lS&<5ub00(QD-~>4jzl&VeTMe~Q$H6$S@h!;ZZIr55qa1Dc(!^n zj*Z*RE6hHmTL9ifsBE$&kcpti&>*n#Q;ba&aX8WMeMG)Gl+&LZzREuE;TC04Q4!Ea z;!XA$@4&(P6F<~9@|ZmnO_|JrS5qOqjtwADOSOLvP>olZ0%S|(ic#3(PY&3nrLGimRxGxg^J5f3;OT~y8f;m zNnvDly12MhxrjeEwlez?1Yoqp;Vjd<0}vP!Q~|;_Az9D(_M#so>dp{{Q3)W+IkJMs zNY9^pk+R3p!sB+Ebd3e~{IQ~xFljI3S;n58i0Ep0W5NTrG#!0Yd^#7KoqzQ*n(gNh?r+|AHEv<$>$7j24R-( zi31L2@3s5@CQ9M_&y$7j^lE#%idz8>Tg0T7p#Ww%F%@cuC>UH-dmppuKP@?I>AY2T zu#JSSWq#{l{g$sN) z5qpaR(D&yCVA2k~?Hp0qXXM0rv?BBlbp3bwJ;T(la?RR#dAi!}J~Ti^DDS*exS1hP z%YOm}eEy_5kl#6^dFR*N4J+O4?X(mbK8e2hI$Vd$ojRmjwe&&?`^Mh>is^L4V+@(5 z;eMoSYXMrnALN_S*kX|bcED+gR?+^hdNO8Ggc-NV7oRg9+z z3+*C60|UBzn^onRwT|$O)m;&?h(}BMP}Ue4$k$rjTmnqv-{Hb8EvHW=!%H~AbvN5A)^N9a zg&bEWUEb@Wdj{VLm+a()YcqYZ8|Nh2Te)c@9uj3Qe)eV#n(@19{F`Ox1EGvXU6maE z+i_N>+{p_7JPhK@|akxWP$!0k$9M3^WWu2Ai*4BKn|RsY>pP-CNk9H{Ih1K-}y}FVH;C`t~>ou9o{4 zbu8I-a}{Y0+4@&anaf({?d=_JP^@X01z}OKtCdELtQNeh0Uv==1gkU9KM4)qz(Q?l z&l3}UoUe!E8|sj>LFg!-*`X8{5dHw$ut%_31U*3%7^V1a^DBxUTcb zch?Vqb^d-8xj>l?IDkC=H~|}Yhi}cZGKGp?@$xOF;5T;-<6vsH7r_r>=jRpaGjq9~ z545J2p8K~`0=IgEo!_2R-z}g|9tiW^^Ug00f)weB|s4$Bs z>GL7{aP0hXGS9fB97dM$QfJ`3JT39?t>Ii^a$DAP%$i!i-;;la2U%6^@N3PV99G8k z`acWILClz`Z7V*Sj()c1ezI-#z~$`n8ICW3g>7G(_9ma7F|8!#Dd9fJ*r4)0EB`oJ zzDJ{%O7&coXu=0v;mm8_zcBZjIt7izJO$ZHyHWPfM4hM7xbcB=mkxi;C7-?%v+UrB z+EdrkitAkPE1EkSJ0TqntPH@t?MO;WD(L8%1m$FvD1aN^&tRbQT<3X9D$$%591OHg&*HmOYYcD4 z{TmWE({^?txC2xlkQ;yxdrlG|J2biegSp_%9YlYBr|)hH=ZDea#kcz=mFt7`5FiEI zeXnTRIM;kt;eGuz%J1H0+9Im|8PK~M3Jgx}sXVz291qIcuzz|Mo~a))>iWDvMkg`w zI~^OX(a}tzB>2#nJK?jIqZZuV<+IL$SHbmVsH6OV$CHnk!B0%m(GQq>8pVvS5*9iW z(=#$Uw?Vo3SEK7cFz<+shd}Yy!Bs@AP`R9++O=`~4o~yxoUT)7_J2W(Yp>9wdK6OL z@RFUDwcJ>ikM7}0d4Fr> z8jpkk^r}BEt(FPT|9N8HGnEJ(EjSo#a#kF0rg(J`F>rgb8PaPK;%|wb1?H#gWVeWl z7}OF4av%4z=3|RR*dqOtdBW3)Wq1D(U(`X! zVJ>QS3jQ{P9-Mfok~1*g*3?N8l@G>PkBO>WxFC1E_N!ueQmf zRyTgGcH`Ny|F8bVKWm;=EH_^R4KABsiFayeP3COmerzBgzRm-D>^Q_m5sfjTSa%jD zg2QgA>(9*18{}$;K#!N0yL?%LXayoCiyrp`qJ~@nDJV8f%)Yg`e>3yxws|8>J0_k8 z|0|i-E#Qw_jXS{I?_&73nor?1Tts501^JFm^uYXcyG!tyUG*PGP{BX}zcY+K)zmqw zHprptI9JFq_)=}jF3)WdSUqa|_>hYC*ZEf&YM-5%pIaZEC{+ON)0)`FEDS#Pv&18OAH2uH=kgSiNkj!IK zW92|*C?TGZSsUd?FTqdGJpKR0kWykJz8g{eUV`;s>y^w@Z{U4kxqQ|nqHn%pG(uEv zI|ee=Vwn_`DGL&akoMfS=MdXvgdz18S$TIpo3UhGxShU~sDY}BJr@0g{=I+RA@8T0 z@?uy(N$GX{U9NfB2>B1pbcv+dLqO`1QKyZ0+s+e7N+8oB!;x!`#?!}NvCNbAPbeDC zEzvFTMEIVZii8Re?eXyqanVkqaX-AL!8(V=1;`uir||kJ%rr)1``z14bM}Z*Br+oZ zv+8@`)h4}cQ0AU!^j>)7>3^Q%!HO6WT)43!`?yKJ zR!{~2wj>WDJyKNmsxzD1HaKc$2igqRD1jSFr!d3N;)&Sme{lpX?Vb`6T&D<|#vCMH z-XijHdXM3al!}0o3nQ%ABdU;j5&1Q$uNsRpRgH>YL+$f6ixw|fmHrt2&iZXG8b=C) z;PRZ;*QMP(U&1=q)l5bev~;xEJ*s0#DRT_yThtRvk~nH=ggQOE;|JYzt+TkFVl4qR z<3JL5+lK0ISoI1}xxfGc(UYsI2B@@`M8jI5jWxzF=hsXZsN;MHp8k7`UZkH*msq_> zXP7s55r^4t&yk~FkK29uT#e5UPsH?ZOu<{Da|79E46fvrY6m^I9nsx$?RxDMz~L)* zY{@To0G1(5T-;1b_2=VI;@Ait=Iq$tUVl%$>q72u9R3@WgA4OxF2i#7RyLD|L>z9U zMk$_?h^*6pfjp9lioFEOeME?*1+Lc<)*C_CjaPM5CE8%gKtPUN$o|*a~nw6 zU;C9!&I)ei&^Lg9a_}S~Z{B!{2CBRSH(^1omE16(1L#8^LyKqlu6jkmkic6ijrpj^pb{dRE*4-Zd*_S0ni7EDmPkrrhk zyVqTN%6~#lo6iD$%CKb%Ua^8d0o-c|kTx$_0ZB+rLB-edx;8&ps5Ogx$XV1$ze`O)_Fl@nOhP38nKcB?SFv~LheY4dJU%yJz{Uqb?#}fq4Lu@3g`cZ{-{m$zn(y3^?)dVPx z3%Q#(>irdfH8%%gm%dvAQZurVtU-$09br5z%#qI*1ZPxm^3=x03rQ-WT-gSRQ&WeD zO#!Dn0xv-bdg~u40(q&nu1=$PwBXwyaF;g?caAi79jLDfzmaO+f!D*uWb22W*P`iP zh;$Xd+e2p%MvhtEDRmw1*5_WWM{7rb6sv3TccG_-QPlHRqq0%^754lzZNDIgrjzd_8mz?mMd!^1=WA@?qnHGvL)RyH&KvJYV% zh58SXRZna8N!1z_9N%WXj`N#~N&3Y$BZK2*pqS1+N98v*UIm6HCzJV&$K-9e>0#=< z>kjpI9i-MAzJfLVRj18Nu}59z60qMo0wM1*9i|W7l$0x{EqAeLbsdRZ8UFx|eg++Z zy|d!;%W>xcd>7ycJ@8zjgf&d|T0YVs>*)C8w>bF}iw-UK>|5DsB!zK1Dy22Ny~b6V z-1$C}0&BrcU7XRr@IydIi0g?+6CGb(215cZXF>~Qn!|3pzuFAm+aq3u5P z1*LOV7FKrD3uw&S9P$g^0U1JKXI>I>l>ccuv>l?T%z>yaw70Uy9uH>i52?CAevkr- zi^uY&S1DJ2EHouk#p$jUjQY=q=h!chV&o}nTz)g5=bzDEyLOF>F40rA^Z%sm&%^&G zWY2sT`d=-A%dAptNA8~F9i74R@}x%*xOgO5{#7{iOz;I5$ z0fn-6!f!oYj3A{HblTqCY0uh?77U?$1N)DVe^dD4pNacQFZbXi2r_)E-g=c z(ZGK8KX>nHr{ikLrWU&$J*k8LRKR7SF^c-6TV|s7^%2RcVy*+v>&!&64Je2!Az8B$ z{RMfdAhcLij0n&Q)(Gc~uO=2oritI!H*{TN9{BZn@=O z{y}H->%asZ0P~%m`azhT(ExlnX#pZktDPD?mO?LH(X;zsCZnOX>oTy2e-HQu^ zjRM)@m#P=f3ZK z{V6CZrH23JpM(}I9CbYQrXT_Vr(k!GBeY!i5vkmY|&E9boR*sU3dqP@rIuJyo1 z$!T#hT_vbtBA1aU?+=dZ2CQyb%<0+d#Xr6ds!<^&bkbCv+sq@Cn~5ApX}d4Q6;ez+ zvB>Dtr?S6;1cJDvc1mxC9jAFp^F`k{a%2Qx2Zb5{%zw|}GJh;zQVI-)fE+)(tm~OU z4%Xw8u1WzBlnkrxooyN-E!DS8*ca*w}oPu5fv!yZpz`ttrbzziHPA5?**~ zE(A8{W>U;Y6dC74_LubXQt*wt)}%}MT2Xtm?DAY{a20WP(!{FjJ5)=xIi}`jW(kwa zDr^z|*u1O>Qpd4Gk2Xp}uJ_oA5(dV=x&&wB$(x2H6mGaw&LPl;)`vSMc52*jruG0) z`ap}g+S${t>36V3kHNIm@2wBf`;BF8?jz*v*BE4?!fpfk-;1h?_Wl}`A!&q!BON2qI+8(iirMkdMRYHB`q0pLae~S{NYa?kk{Lvw&}51 zW&r{gBX4aMcdMw_AK}dT^uDY*gO;4o4?QYR)Q=kDi2`XKuCo)$;lE^n`wPy*_c0R= z{Zk61w2^w9y7wb`j6Of1(e@zR&K8%{&M9J1$-g*K9RV1{3}kY z`Lxd*^F^(Na1ebS{cmPR0xGY+pvgey@6Ry&h9RWYkN1{sdQ$Rh(5kEJI?0e#*LA_g zn&{g@SE9(X2A{9@%f<@=ae=Cjpp|#m-c*=JN Date: Tue, 24 Oct 2017 15:26:28 -0500 Subject: [PATCH 127/227] Update shutters.dm --- code/game/machinery/doors/shutters.dm | 49 ++++++++++----------------- 1 file changed, 18 insertions(+), 31 deletions(-) diff --git a/code/game/machinery/doors/shutters.dm b/code/game/machinery/doors/shutters.dm index 03e975866f..0cd33b1925 100644 --- a/code/game/machinery/doors/shutters.dm +++ b/code/game/machinery/doors/shutters.dm @@ -1,15 +1,3 @@ -<<<<<<< HEAD -/obj/machinery/door/poddoor/shutters - gender = PLURAL - name = "shutters" - desc = "Heavy duty metal shutters that opens mechanically." - icon = 'icons/obj/doors/shutters.dmi' - layer = CLOSED_DOOR_LAYER - damage_deflection = 20 - -/obj/machinery/door/poddoor/shutters/preopen - icon_state = "open" -======= /obj/machinery/door/poddoor/shutters gender = PLURAL name = "shutters" @@ -20,23 +8,22 @@ /obj/machinery/door/poddoor/shutters/preopen icon_state = "open" ->>>>>>> ca7adb4... Moves opened firedoors underneath opened airlocks (#32018) density = FALSE - opacity = 0 - - -//shutters look like ass with things on top of them. - -/obj/machinery/door/poddoor/shutters/New() - ..() - layer = CLOSED_DOOR_LAYER //to handle /obj/machinery/door/New() resetting the layer. - - -/obj/machinery/door/poddoor/shutters/open(ignorepower = 0) - ..() - layer = CLOSED_DOOR_LAYER - - -/obj/machinery/door/poddoor/shutters/close(ignorepower = 0) - ..() - layer = CLOSED_DOOR_LAYER \ No newline at end of file + opacity = 0 + + +//shutters look like ass with things on top of them. + +/obj/machinery/door/poddoor/shutters/New() + ..() + layer = CLOSED_DOOR_LAYER //to handle /obj/machinery/door/New() resetting the layer. + + +/obj/machinery/door/poddoor/shutters/open(ignorepower = 0) + ..() + layer = CLOSED_DOOR_LAYER + + +/obj/machinery/door/poddoor/shutters/close(ignorepower = 0) + ..() + layer = CLOSED_DOOR_LAYER From fa433109ce5380a9706022eaecc0f84de1031000 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Mon, 23 Oct 2017 16:22:08 -0400 Subject: [PATCH 128/227] Transit space blocks explosions --- code/game/turfs/space/transit.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/turfs/space/transit.dm b/code/game/turfs/space/transit.dm index cf611560c3..2ba08fa2a9 100644 --- a/code/game/turfs/space/transit.dm +++ b/code/game/turfs/space/transit.dm @@ -3,6 +3,7 @@ dir = SOUTH baseturf = /turf/open/space/transit flags_1 = NOJAUNT_1 //This line goes out to every wizard that ever managed to escape the den. I'm sorry. + explosion_block = INFINITY /turf/open/space/transit/get_smooth_underlay_icon(mutable_appearance/underlay_appearance, turf/asking_turf, adjacency_dir) . = ..() From 514533ddaf81b602020558c41b53ae5594e83a36 Mon Sep 17 00:00:00 2001 From: KorPhaeron Date: Tue, 24 Oct 2017 18:06:39 -0500 Subject: [PATCH 130/227] Ratvar summoning now ends the round/triggers mass proselytize (#31956) * Slight changes to ratvar ending * Tick check * T * Why Xhuis? * Lots of fire * That src made sense 10 minutes ago but no longer * More commits than line changes * Check Tick --- .../ark_of_the_clockwork_justicar.dm | 18 +++++++++++++++--- code/modules/mob/living/living_defense.dm | 15 ++++----------- 2 files changed, 19 insertions(+), 14 deletions(-) diff --git a/code/game/gamemodes/clock_cult/clock_structures/ark_of_the_clockwork_justicar.dm b/code/game/gamemodes/clock_cult/clock_structures/ark_of_the_clockwork_justicar.dm index 2d66739b4e..dbb748ef89 100644 --- a/code/game/gamemodes/clock_cult/clock_structures/ark_of_the_clockwork_justicar.dm +++ b/code/game/gamemodes/clock_cult/clock_structures/ark_of_the_clockwork_justicar.dm @@ -235,13 +235,25 @@ sleep(125) make_glow() animate(glow, transform = matrix() * 3, alpha = 0, time = 5) - var/turf/startpoint = get_turf(src) QDEL_IN(src, 3) sleep(3) GLOB.clockwork_gateway_activated = TRUE - var/obj/structure/destructible/clockwork/massive/ratvar/R = new(startpoint) var/turf/T = locate(round(world.maxx * 0.5, 1), round(world.maxy * 0.5, 1), ZLEVEL_STATION_PRIMARY) //approximate center of the station - R.forceMove(T) + new /obj/structure/destructible/clockwork/massive/ratvar(T) + SSticker.force_ending = TRUE + var/x0 = T.x + var/y0 = T.y + for(var/I in spiral_range_turfs(255, T, tick_checked = TRUE)) + var/turf/T2 = I + if(!T2) + continue + var/dist = cheap_hypotenuse(T2.x, T2.y, x0, y0) + if(dist < 100) + dist = TRUE + else + dist = FALSE + T.ratvar_act(dist) + CHECK_TICK diff --git a/code/modules/mob/living/living_defense.dm b/code/modules/mob/living/living_defense.dm index e3f7795f64..f77c65225f 100644 --- a/code/modules/mob/living/living_defense.dm +++ b/code/modules/mob/living/living_defense.dm @@ -338,18 +338,11 @@ /mob/living/ratvar_act() if(status_flags & GODMODE) return - if(stat != DEAD && !is_servant_of_ratvar(src)) - for(var/obj/item/implant/mindshield/M in implants) - qdel(M) - if(!add_servant_of_ratvar(src)) - to_chat(src, "A blinding light boils you alive! Run!") - adjustFireLoss(35) - if(src) - adjust_fire_stacks(1) - IgniteMob() - return FALSE - return TRUE + to_chat(src, "A blinding light boils you alive! Run!") + adjust_fire_stacks(20) + IgniteMob() + return FALSE //called when the mob receives a bright flash From e20664dad3ee0dbc840c8692aa463c2b7cc8449c Mon Sep 17 00:00:00 2001 From: LetterJay Date: Tue, 24 Oct 2017 18:18:20 -0500 Subject: [PATCH 132/227] Revert "Revert "[MIRROR] Late join antagonists will try to target late join players"" --- code/datums/mind.dm | 1 + code/game/gamemodes/objective.dm | 13 +++++++++++++ code/modules/mob/dead/new_player/new_player.dm | 1 + 3 files changed, 15 insertions(+) diff --git a/code/datums/mind.dm b/code/datums/mind.dm index 4036aaaf45..dd389d46d4 100644 --- a/code/datums/mind.dm +++ b/code/datums/mind.dm @@ -64,6 +64,7 @@ var/mob/living/enslaved_to //If this mind's master is another mob (i.e. adamantine golems) var/datum/language_holder/language_holder var/unconvertable = FALSE + var/late_joiner = FALSE /datum/mind/New(var/key) src.key = key diff --git a/code/game/gamemodes/objective.dm b/code/game/gamemodes/objective.dm index 77e26f026a..cd3b2ba2b2 100644 --- a/code/game/gamemodes/objective.dm +++ b/code/game/gamemodes/objective.dm @@ -54,9 +54,22 @@ /datum/objective/proc/find_target() var/list/datum/mind/owners = get_owners() var/list/possible_targets = list() + var/try_target_late_joiners = FALSE + for(var/I in owners) + var/datum/mind/O = I + if(O.late_joiner) + try_target_late_joiners = TRUE for(var/datum/mind/possible_target in get_crewmember_minds()) if(!(possible_target in owners) && ishuman(possible_target.current) && (possible_target.current.stat != DEAD) && is_unique_objective(possible_target)) possible_targets += possible_target + if(try_target_late_joiners) + var/list/all_possible_targets = possible_targets.Copy() + for(var/I in all_possible_targets) + var/datum/mind/PT = I + if(!PT.late_joiner) + possible_targets -= PT + if(!possible_targets.len) + possible_targets = all_possible_targets if(possible_targets.len > 0) target = pick(possible_targets) update_explanation_text() diff --git a/code/modules/mob/dead/new_player/new_player.dm b/code/modules/mob/dead/new_player/new_player.dm index 3839c87f08..2ef2077cde 100644 --- a/code/modules/mob/dead/new_player/new_player.dm +++ b/code/modules/mob/dead/new_player/new_player.dm @@ -488,6 +488,7 @@ . = H new_character = . if(transfer_after) + mind.late_joiner = TRUE transfer_character() /mob/dead/new_player/proc/transfer_character() From 72bd156589d821f32395eef5b28e3d4025021b7c Mon Sep 17 00:00:00 2001 From: LetterJay Date: Tue, 24 Oct 2017 18:19:49 -0500 Subject: [PATCH 133/227] Update new_player.dm --- code/modules/mob/dead/new_player/new_player.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/dead/new_player/new_player.dm b/code/modules/mob/dead/new_player/new_player.dm index 2ef2077cde..2870342422 100644 --- a/code/modules/mob/dead/new_player/new_player.dm +++ b/code/modules/mob/dead/new_player/new_player.dm @@ -480,6 +480,8 @@ client.prefs.copy_to(H) H.dna.update_dna_identity() if(mind) + if(transfer_after) + mind.late_joiner = TRUE mind.active = 0 //we wish to transfer the key manually mind.transfer_to(H) //won't transfer key since the mind is not active From 1011caced5b98a8d1a95ba2c858b1174cf6e49e4 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 24 Oct 2017 18:24:49 -0500 Subject: [PATCH 134/227] Automatic changelog generation for PR #3581 [ci skip] --- html/changelogs/AutoChangeLog-pr-3581.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3581.yml diff --git a/html/changelogs/AutoChangeLog-pr-3581.yml b/html/changelogs/AutoChangeLog-pr-3581.yml new file mode 100644 index 0000000000..be4fb833f3 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3581.yml @@ -0,0 +1,4 @@ +author: "Improvedname" +delete-after: True +changes: + - tweak: "Blacklists holoparasite's from surplus crates" From abd2c1054c252f1458d52e2451173bf71960a3b1 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 24 Oct 2017 18:28:35 -0500 Subject: [PATCH 135/227] Automatic changelog generation for PR #3582 [ci skip] --- html/changelogs/AutoChangeLog-pr-3582.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3582.yml diff --git a/html/changelogs/AutoChangeLog-pr-3582.yml b/html/changelogs/AutoChangeLog-pr-3582.yml new file mode 100644 index 0000000000..f9ebb4cecc --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3582.yml @@ -0,0 +1,4 @@ +author: "ShizCalev" +delete-after: True +changes: + - bugfix: "Creatures made via gold slime cores will now be given the proper name of their master." From 3822aa83a304ab50eb428603073c49386cfa4834 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Tue, 24 Oct 2017 19:49:38 -0500 Subject: [PATCH 136/227] Update new_player.dm --- code/modules/mob/dead/new_player/new_player.dm | 1 - 1 file changed, 1 deletion(-) diff --git a/code/modules/mob/dead/new_player/new_player.dm b/code/modules/mob/dead/new_player/new_player.dm index 2870342422..2b2c50ed17 100644 --- a/code/modules/mob/dead/new_player/new_player.dm +++ b/code/modules/mob/dead/new_player/new_player.dm @@ -490,7 +490,6 @@ . = H new_character = . if(transfer_after) - mind.late_joiner = TRUE transfer_character() /mob/dead/new_player/proc/transfer_character() From a664384e81c1709bc2feaeb2d99c98f471cd756c Mon Sep 17 00:00:00 2001 From: deathride58 Date: Wed, 25 Oct 2017 03:04:51 +0000 Subject: [PATCH 137/227] Bhijn's touching dogborg balance again everyone panic (#3432) * rebuffs everything and puts babyproof locks on scrubpup compactor * lets it compile, removes things from the blacklist * readds telegraphing due to popular vote, removes flash from scrubpups * does githubs text editor work for basic thing on mobile * reverts blacklist changes * keeps spoolup, removes sounds + anime prepounce effects --- code/citadel/dogborgstuff.dm | 22 +++++++++---------- .../mob/living/silicon/robot/robot_modules.dm | 7 +++--- 2 files changed, 13 insertions(+), 16 deletions(-) diff --git a/code/citadel/dogborgstuff.dm b/code/citadel/dogborgstuff.dm index ee67fe96a8..9a6a6581c9 100644 --- a/code/citadel/dogborgstuff.dm +++ b/code/citadel/dogborgstuff.dm @@ -768,8 +768,8 @@ icon_state = "compactor" inject_amount = 0 min_health = -100 - injection_chems = null - var/max_item_count = 48 + injection_chems = null //So they don't have all the same chems as the medihound! + var/max_item_count = 30 /obj/item/storage/attackby(obj/item/device/dogborg/sleeper/compactor, mob/user, proximity) //GIT CIRCUMVENTED YO! compactor.afterattack(src, user ,1) @@ -848,8 +848,8 @@ /mob/living/silicon/robot var/leaping = 0 var/pounce_cooldown = 0 - var/pounce_cooldown_time = 40 //Nearly doubled, u happy? - var/pounce_spoolup = 5 + var/pounce_cooldown_time = 50 //Nearly doubled, u happy? + var/pounce_spoolup = 3 var/leap_at var/disabler var/laser @@ -862,11 +862,10 @@ var/mob/living/silicon/robot/R = user if(R && !R.pounce_cooldown) R.pounce_cooldown = !R.pounce_cooldown - playsound(R, 'sound/items/jaws_pry.ogg', 50, 1) - playsound(R, 'sound/machines/buzz-sigh.ogg', 50, 1) to_chat(R, "Your targeting systems lock on to [A]...") - A.visible_message("[R]'s eyes flash brightly, staring directly at [A]!", "[R]'s eyes flash brightly, staring directly at you!'") addtimer(CALLBACK(R, /mob/living/silicon/robot.proc/leap_at, A), R.pounce_spoolup) + spawn(R.pounce_cooldown_time) + R.pounce_cooldown = !R.pounce_cooldown else if(R && R.pounce_cooldown) to_chat(R, "Your leg actuators are still recharging!") @@ -891,8 +890,6 @@ throw_at(A, MAX_K9_LEAP_DIST, 1, spin=0, diagonals_first = 1) cell.use(500) //Doubled the energy consumption weather_immunities -= "lava" - spawn(pounce_cooldown_time) - pounce_cooldown = !pounce_cooldown /mob/living/silicon/robot/throw_impact(atom/A) @@ -909,19 +906,20 @@ blocked = 1 if(!blocked) L.visible_message("[src] pounces on [L]!", "[src] pounces on you!") - L.Knockdown(40) + L.Knockdown(45) playsound(src, 'sound/weapons/Egloves.ogg', 50, 1) sleep(2)//Runtime prevention (infinite bump() calls on hulks) step_towards(src,L) else - Knockdown(40, 1, 1) + Knockdown(45, 1, 1) pounce_cooldown = !pounce_cooldown spawn(pounce_cooldown_time) //3s by default pounce_cooldown = !pounce_cooldown else if(A.density && !A.CanPass(src)) visible_message("[src] smashes into [A]!", "You smash into [A]!") - Knockdown(40, 1, 1) + playsound(src, 'sound/items/trayhit1.ogg', 50, 1) + Knockdown(45, 1, 1) if(leaping) leaping = 0 diff --git a/code/modules/mob/living/silicon/robot/robot_modules.dm b/code/modules/mob/living/silicon/robot/robot_modules.dm index e3d179b3ff..3758e73688 100644 --- a/code/modules/mob/living/silicon/robot/robot_modules.dm +++ b/code/modules/mob/living/silicon/robot/robot_modules.dm @@ -352,10 +352,9 @@ /obj/item/soap/tongue, /obj/item/device/analyzer/nose, /obj/item/device/dogborg/sleeper/K9, - /obj/item/pinpointer/crew) - emag_modules = list(/obj/item/gun/energy/laser/cyborg, /obj/item/gun/energy/disabler/cyborg, - /obj/item/pinpointer/nuke) + /obj/item/pinpointer/crew) + emag_modules = list(/obj/item/gun/energy/laser/cyborg) ratvar_modules = list(/obj/item/clockwork/slab/cyborg/security, /obj/item/clockwork/weapon/ratvarian_spear) cyborg_base_icon = "k9" @@ -408,7 +407,6 @@ /obj/item/robot_module/scrubpup name = "Janitor" basic_modules = list( - /obj/item/device/assembly/flash/cyborg, /obj/item/dogborg/jaws/small, /obj/item/device/analyzer/nose, /obj/item/soap/tongue/scrubpup, @@ -422,6 +420,7 @@ moduleselect_icon = "scrubpup" feedback_key = "cyborg_scrubpup" hat_offset = INFINITY + clean_on_move = TRUE /obj/item/robot_module/scrubpup/respawn_consumable(mob/living/silicon/robot/R, coeff = 1) ..() From d0a9c56f3b2311a7339b7b5a31031d4b270e2e64 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 24 Oct 2017 22:04:52 -0500 Subject: [PATCH 138/227] Automatic changelog generation for PR #3432 [ci skip] --- html/changelogs/AutoChangeLog-pr-3432.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3432.yml diff --git a/html/changelogs/AutoChangeLog-pr-3432.yml b/html/changelogs/AutoChangeLog-pr-3432.yml new file mode 100644 index 0000000000..8a1de4739e --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3432.yml @@ -0,0 +1,12 @@ +author: "deathride58" +delete-after: True +changes: + - balance: "Sec doggos have a disabler again" + - balance: "Sec doggos need 1 more second for their leg actuators to recharge after a pounce." + - balance: "Sec doggos no longer have a nuke pinpointer when emagged" + - balance: "Sechounds stun for half a second longer" + - balance: "Sechound pounce spoolup has been reduced from 0.5 seconds to 0.3 seconds." + - balance: "Scrubpups now have actual working mops on their feet instead of cheap plastic imitations" + - balance: "Scrubpups can eat normal-sized items again" + - balance: "Scrubpups can only carry 20 items now" + - balance: "Scrubpups no longer have flashes" From b237b8286a38589d225536b183d745f900406c5a Mon Sep 17 00:00:00 2001 From: JJRcop Date: Thu, 19 Oct 2017 14:35:16 -0400 Subject: [PATCH 139/227] heart of darkness revives non-shadow as shadowpeople --- .../carbon/human/species_types/shadowpeople.dm | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species_types/shadowpeople.dm b/code/modules/mob/living/carbon/human/species_types/shadowpeople.dm index 4347a8331c..d75d3f4679 100644 --- a/code/modules/mob/living/carbon/human/species_types/shadowpeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/shadowpeople.dm @@ -1,4 +1,5 @@ #define HEART_RESPAWN_THRESHHOLD 40 +#define HEART_SPECIAL_SHADOWIFY 2 /datum/species/shadow // Humans cursed to stay in the darkness, lest their life forces drain. They regain health in shadow and die in light. @@ -111,14 +112,15 @@ /obj/item/organ/heart/nightmare/Insert(mob/living/carbon/M, special = 0) ..() - blade = new/obj/item/light_eater - M.put_in_hands(blade) + if(special != HEART_SPECIAL_SHADOWIFY) + blade = new/obj/item/light_eater + M.put_in_hands(blade) START_PROCESSING(SSobj, src) /obj/item/organ/heart/nightmare/Remove(mob/living/carbon/M, special = 0) STOP_PROCESSING(SSobj, src) respawn_progress = 0 - if(blade) + if(blade && special != HEART_SPECIAL_SHADOWIFY) QDEL_NULL(blade) M.visible_message("\The [blade] disintegrates!") ..() @@ -141,6 +143,13 @@ playsound(owner,'sound/effects/singlebeat.ogg',40,1) if(respawn_progress >= HEART_RESPAWN_THRESHHOLD) owner.revive(full_heal = TRUE) + if(!(owner.dna.species.id == "shadow" || owner.dna.species.id == "nightmare")) + var/mob/living/carbon/old_owner = owner + Remove(owner, HEART_SPECIAL_SHADOWIFY) + old_owner.set_species(/datum/species/shadow) + Insert(old_owner, HEART_SPECIAL_SHADOWIFY) + to_chat(owner, "You feel the shadows invade your skin, leaping into the center of your chest! You're alive!") + SEND_SOUND(owner, sound('sound/effects/ghost.ogg')) owner.visible_message("[owner] staggers to their feet!") playsound(owner, 'sound/hallucinations/far_noise.ogg', 50, 1) respawn_progress = 0 @@ -193,4 +202,5 @@ O.burn() playsound(src, 'sound/items/welder.ogg', 50, 1) +#undef HEART_SPECIAL_SHADOWIFY #undef HEART_RESPAWN_THRESHHOLD \ No newline at end of file From 70a2c466f3bd53977859bcafaa36cff82e04bdca Mon Sep 17 00:00:00 2001 From: deathride58 Date: Wed, 25 Oct 2017 14:29:45 -0400 Subject: [PATCH 141/227] manual mirror of upstream robotic surgery pr --- code/game/machinery/computer/Operating.dm | 12 ++- code/modules/surgery/amputation.dm | 4 +- code/modules/surgery/eye_surgery.dm | 4 +- code/modules/surgery/helpers.dm | 27 ++++-- code/modules/surgery/implant_removal.dm | 14 ++- code/modules/surgery/mechanic_steps.dm | 85 +++++++++++++++++++ code/modules/surgery/organ_manipulation.dm | 74 +++++++++++----- .../{generic_steps.dm => organic_steps.dm} | 4 +- .../modules/surgery/prosthetic_replacement.dm | 2 +- code/modules/surgery/surgery.dm | 9 +- code/modules/surgery/surgery_step.dm | 14 ++- tgstation.dme | 3 +- 12 files changed, 207 insertions(+), 45 deletions(-) create mode 100644 code/modules/surgery/mechanic_steps.dm rename code/modules/surgery/{generic_steps.dm => organic_steps.dm} (99%) diff --git a/code/game/machinery/computer/Operating.dm b/code/game/machinery/computer/Operating.dm index a8e9c7bcca..ca2f6e1cb6 100644 --- a/code/game/machinery/computer/Operating.dm +++ b/code/game/machinery/computer/Operating.dm @@ -61,6 +61,14 @@ for(var/datum/surgery/procedure in patient.surgeries) dat += "[capitalize(procedure.name)]
    " var/datum/surgery_step/surgery_step = procedure.get_surgery_step() - dat += "Next step: [capitalize(surgery_step.name)]
    " + dat += "Next step: [capitalize(surgery_step.name)]" + if(surgery_step.repeatable) + dat += " or " + var/datum/surgery_step/next_step = procedure.get_surgery_next_step() + if(next_step) + dat += "[capitalize(next_step.name)]" + else + dat += "finish operation" + dat += "
    " dat += "" - return dat \ No newline at end of file + return dat diff --git a/code/modules/surgery/amputation.dm b/code/modules/surgery/amputation.dm index 7684484a42..f6a2c057d0 100644 --- a/code/modules/surgery/amputation.dm +++ b/code/modules/surgery/amputation.dm @@ -4,7 +4,7 @@ steps = list(/datum/surgery_step/incise, /datum/surgery_step/clamp_bleeders, /datum/surgery_step/retract_skin, /datum/surgery_step/saw, /datum/surgery_step/clamp_bleeders, /datum/surgery_step/sever_limb) species = list(/mob/living/carbon/human, /mob/living/carbon/monkey) possible_locs = list("r_arm", "l_arm", "l_leg", "r_leg", "head") - requires_organic_bodypart = 0 + requires_bodypart_type = 0 /datum/surgery_step/sever_limb @@ -22,4 +22,4 @@ var/obj/item/bodypart/target_limb = surgery.operated_bodypart target_limb.drop_limb() - return 1 \ No newline at end of file + return 1 diff --git a/code/modules/surgery/eye_surgery.dm b/code/modules/surgery/eye_surgery.dm index 2aeadffc65..ce1c4df56e 100644 --- a/code/modules/surgery/eye_surgery.dm +++ b/code/modules/surgery/eye_surgery.dm @@ -3,7 +3,7 @@ steps = list(/datum/surgery_step/incise, /datum/surgery_step/retract_skin, /datum/surgery_step/clamp_bleeders, /datum/surgery_step/fix_eyes, /datum/surgery_step/close) species = list(/mob/living/carbon/human, /mob/living/carbon/monkey) possible_locs = list("eyes") - requires_organic_bodypart = 0 + requires_bodypart_type = 0 //fix eyes /datum/surgery_step/fix_eyes @@ -35,4 +35,4 @@ target.adjustBrainLoss(100) else user.visible_message("[user] accidentally stabs [target] right in the brain! Or would have, if [target] had a brain.", "You accidentally stab [target] right in the brain! Or would have, if [target] had a brain.") - return FALSE \ No newline at end of file + return FALSE diff --git a/code/modules/surgery/helpers.dm b/code/modules/surgery/helpers.dm index 97426305b5..a4e9b16989 100644 --- a/code/modules/surgery/helpers.dm +++ b/code/modules/surgery/helpers.dm @@ -29,7 +29,7 @@ if(affecting) if(!S.requires_bodypart) continue - if(S.requires_organic_bodypart && affecting.status == BODYPART_ROBOTIC) + if(S.requires_bodypart_type && affecting.status == BODYPART_ROBOTIC) continue if(S.requires_real_bodypart && affecting.is_pseudopart) continue @@ -56,7 +56,7 @@ if(affecting) if(!S.requires_bodypart) return - if(S.requires_organic_bodypart && affecting.status == BODYPART_ROBOTIC) + if(S.requires_bodypart_type && affecting.status == BODYPART_ROBOTIC) return else if(C && S.requires_bodypart) return @@ -78,13 +78,23 @@ user.visible_message("[user] removes the drapes from [M]'s [parse_zone(selected_zone)].", \ "You remove the drapes from [M]'s [parse_zone(selected_zone)].") qdel(current_surgery) - else if(istype(user.get_inactive_held_item(), /obj/item/cautery) && current_surgery.can_cancel) - M.surgeries -= current_surgery - user.visible_message("[user] mends the incision and removes the drapes from [M]'s [parse_zone(selected_zone)].", \ - "You mend the incision and remove the drapes from [M]'s [parse_zone(selected_zone)].") - qdel(current_surgery) else if(current_surgery.can_cancel) - to_chat(user, "You need to hold a cautery in inactive hand to stop [M]'s surgery!") + if(current_surgery.requires_bodypart_type == BODYPART_ORGANIC) + if(istype(user.get_inactive_held_item(), /obj/item/cautery)) + M.surgeries -= current_surgery + user.visible_message("[user] mends the incision and removes the drapes from [M]'s [parse_zone(selected_zone)].", \ + "You mend the incision and remove the drapes from [M]'s [parse_zone(selected_zone)].") + qdel(current_surgery) + else + to_chat(user, "You need to hold a cautery in inactive hand to stop [M]'s surgery!") + else if(current_surgery.requires_bodypart_type == BODYPART_ROBOTIC) + if(istype(user.get_inactive_held_item(), /obj/item/screwdriver)) + M.surgeries -= current_surgery + user.visible_message("[user] screw the shell and removes the drapes from [M]'s [parse_zone(selected_zone)].", \ + "You screw the shell and remove the drapes from [M]'s [parse_zone(selected_zone)].") + qdel(current_surgery) + else + to_chat(user, "You need to hold a screwdriver in inactive hand to stop [M]'s surgery!") return 1 @@ -161,4 +171,3 @@ return 0 return 1 - diff --git a/code/modules/surgery/implant_removal.dm b/code/modules/surgery/implant_removal.dm index c459748a6c..4a1a8f98eb 100644 --- a/code/modules/surgery/implant_removal.dm +++ b/code/modules/surgery/implant_removal.dm @@ -3,7 +3,6 @@ steps = list(/datum/surgery_step/incise, /datum/surgery_step/clamp_bleeders, /datum/surgery_step/retract_skin, /datum/surgery_step/extract_implant, /datum/surgery_step/close) species = list(/mob/living/carbon/human, /mob/living/carbon/monkey) possible_locs = list("chest") - requires_organic_bodypart = 0 //extract implant @@ -43,4 +42,15 @@ else to_chat(user, "You can't find anything in [target]'s [target_zone]!") - return 1 \ No newline at end of file + return 1 + +/datum/surgery/implant_removal/mechanic + name = "implant removal" + requires_bodypart_type = BODYPART_ROBOTIC + steps = list( + /datum/surgery_step/mechanic_open, + /datum/surgery_step/open_hatch, + /datum/surgery_step/mechanic_unwrench, + /datum/surgery_step/extract_implant, + /datum/surgery_step/mechanic_wrench, + /datum/surgery_step/mechanic_close) diff --git a/code/modules/surgery/mechanic_steps.dm b/code/modules/surgery/mechanic_steps.dm new file mode 100644 index 0000000000..657564f112 --- /dev/null +++ b/code/modules/surgery/mechanic_steps.dm @@ -0,0 +1,85 @@ +//open shell +/datum/surgery_step/mechanic_open + name = "unscrew shell" + implements = list( + /obj/item/screwdriver = 100, + /obj/item/scalpel = 75, // med borgs could try to unskrew shell with scalpel + /obj/item/kitchen/knife = 50, + /obj/item = 10) // 10% success with any sharp item. + time = 24 + +/datum/surgery_step/mechanic_open/preop(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, datum/surgery/surgery) + user.visible_message("[user] begins to unscrew the shell of [target]'s [parse_zone(target_zone)].", + "You begin to unscrew the shell of [target]'s [parse_zone(target_zone)]...") + +/datum/surgery_step/mechanic_incise/tool_check(mob/user, obj/item/tool) + if(implement_type == /obj/item && !tool.is_sharp()) + return FALSE + + return TRUE + +//close shell +/datum/surgery_step/mechanic_close + name = "screw shell" + implements = list( + /obj/item/screwdriver = 100, + /obj/item/scalpel = 75, + /obj/item/kitchen/knife = 50, + /obj/item = 10) // 10% success with any sharp item. + time = 24 + +/datum/surgery_step/mechanic_close/preop(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, datum/surgery/surgery) + user.visible_message("[user] begins to screw the shell of [target]'s [parse_zone(target_zone)].", + "You begin to screw the shell of [target]'s [parse_zone(target_zone)]...") + +/datum/surgery_step/mechanic_close/tool_check(mob/user, obj/item/tool) + if(implement_type == /obj/item && !tool.is_sharp()) + return FALSE + + return TRUE + +//prepare electronics +/datum/surgery_step/prepare_electronics + name = "prepare electronics" + implements = list( + /obj/item/device/multitool = 100, + /obj/item/hemostat = 10) // try to reboot internal controllers via short circuit with some conductor + time = 24 + +/datum/surgery_step/prepare_electronics/preop(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, datum/surgery/surgery) + user.visible_message("[user] begins to prepare electronics in [target]'s [parse_zone(target_zone)].", + "You begin to prepare electronics in [target]'s [parse_zone(target_zone)]...") + +//unwrench +/datum/surgery_step/mechanic_unwrench + name = "unwrench bolts" + implements = list( + /obj/item/wrench = 100, + /obj/item/retractor = 10) + time = 24 + +/datum/surgery_step/mechanic_unwrench/preop(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, datum/surgery/surgery) + user.visible_message("[user] begins to unwrench some bolts in [target]'s [parse_zone(target_zone)].", + "You begin to unwrench some bolts in [target]'s [parse_zone(target_zone)]...") + +//wrench +/datum/surgery_step/mechanic_wrench + name = "wrench bolts" + implements = list( + /obj/item/wrench = 100, + /obj/item/retractor = 10) + time = 24 + +/datum/surgery_step/mechanic_wrench/preop(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, datum/surgery/surgery) + user.visible_message("[user] begins to wrench some bolts in [target]'s [parse_zone(target_zone)].", + "You begin to wrench some bolts in [target]'s [parse_zone(target_zone)]...") + +//open hatch +/datum/surgery_step/open_hatch + name = "open the hatch" + accept_hand = 1 + time = 10 + +/datum/surgery_step/open_hatch/preop(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, datum/surgery/surgery) + user.visible_message("[user] begins to open the hatch holders in [target]'s [parse_zone(target_zone)].", + "You begin to open the hatch holders in [target]'s [parse_zone(target_zone)]...") diff --git a/code/modules/surgery/organ_manipulation.dm b/code/modules/surgery/organ_manipulation.dm index a061628203..10e57babcd 100644 --- a/code/modules/surgery/organ_manipulation.dm +++ b/code/modules/surgery/organ_manipulation.dm @@ -1,38 +1,79 @@ /datum/surgery/organ_manipulation name = "organ manipulation" - steps = list(/datum/surgery_step/incise, /datum/surgery_step/retract_skin, /datum/surgery_step/saw, /datum/surgery_step/clamp_bleeders, - /datum/surgery_step/incise, /datum/surgery_step/manipulate_organs) species = list(/mob/living/carbon/human, /mob/living/carbon/monkey) possible_locs = list("chest", "head") - requires_organic_bodypart = FALSE - requires_real_bodypart = TRUE + requires_real_bodypart = 1 + steps = list( + /datum/surgery_step/incise, + /datum/surgery_step/retract_skin, + /datum/surgery_step/saw, + /datum/surgery_step/clamp_bleeders, + /datum/surgery_step/incise, + /datum/surgery_step/manipulate_organs, + //there should be bone fixing + /datum/surgery_step/close + ) /datum/surgery/organ_manipulation/soft possible_locs = list("groin", "eyes", "mouth", "l_arm", "r_arm") - steps = list(/datum/surgery_step/incise, /datum/surgery_step/retract_skin, /datum/surgery_step/clamp_bleeders, - /datum/surgery_step/incise, /datum/surgery_step/manipulate_organs) + steps = list( + /datum/surgery_step/incise, + /datum/surgery_step/retract_skin, + /datum/surgery_step/clamp_bleeders, + /datum/surgery_step/incise, + /datum/surgery_step/manipulate_organs, + /datum/surgery_step/close + ) /datum/surgery/organ_manipulation/alien name = "alien organ manipulation" possible_locs = list("chest", "head", "groin", "eyes", "mouth", "l_arm", "r_arm") species = list(/mob/living/carbon/alien/humanoid) - steps = list(/datum/surgery_step/saw, /datum/surgery_step/incise, /datum/surgery_step/retract_skin, /datum/surgery_step/saw, /datum/surgery_step/manipulate_organs) - + steps = list( + /datum/surgery_step/saw, + /datum/surgery_step/incise, + /datum/surgery_step/retract_skin, + /datum/surgery_step/saw, + /datum/surgery_step/manipulate_organs, + /datum/surgery_step/close + ) +/datum/surgery/organ_manipulation/mechanic + name = "prosthesis organ manipulation" + possible_locs = list("chest", "head") + requires_bodypart_type = BODYPART_ROBOTIC + steps = list( + /datum/surgery_step/mechanic_open, + /datum/surgery_step/open_hatch, + /datum/surgery_step/mechanic_unwrench, + /datum/surgery_step/prepare_electronics, + /datum/surgery_step/manipulate_organs, + /datum/surgery_step/mechanic_wrench, + /datum/surgery_step/mechanic_close + ) +/datum/surgery/organ_manipulation/mechanic/soft + possible_locs = list("groin", "eyes", "mouth", "l_arm", "r_arm") + steps = list( + /datum/surgery_step/mechanic_open, + /datum/surgery_step/open_hatch, + /datum/surgery_step/prepare_electronics, + /datum/surgery_step/manipulate_organs, + /datum/surgery_step/mechanic_close + ) /datum/surgery_step/manipulate_organs time = 64 name = "manipulate organs" + repeatable = 1 implements = list(/obj/item/organ = 100, /obj/item/reagent_containers/food/snacks/organ = 0, /obj/item/organ_storage = 100) var/implements_extract = list(/obj/item/hemostat = 100, /obj/item/crowbar = 55) - var/implements_mend = list(/obj/item/cautery = 100, /obj/item/weldingtool = 70, /obj/item/lighter = 45, /obj/item/match = 20) var/current_type var/obj/item/organ/I = null /datum/surgery_step/manipulate_organs/New() ..() - implements = implements + implements_extract + implements_mend + implements = implements + implements_extract /datum/surgery_step/manipulate_organs/tool_check(mob/user, obj/item/tool) if(istype(tool, /obj/item/weldingtool)) @@ -103,23 +144,12 @@ else return -1 - else if(implement_type in implements_mend) - current_type = "mend" - user.visible_message("[user] begins to mend the incision in [target]'s [parse_zone(target_zone)].", - "You begin to mend the incision in [target]'s [parse_zone(target_zone)]...") - else if(istype(tool, /obj/item/reagent_containers/food/snacks/organ)) to_chat(user, "[tool] was bitten by someone! It's too damaged to use!") return -1 /datum/surgery_step/manipulate_organs/success(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, datum/surgery/surgery) - if(current_type == "mend") - user.visible_message("[user] mends the incision in [target]'s [parse_zone(target_zone)].", - "You mend the incision in [target]'s [parse_zone(target_zone)].") - if(locate(/datum/surgery_step/saw) in surgery.steps) - target.heal_bodypart_damage(45,0) - return 1 - else if(current_type == "insert") + if(current_type == "insert") if(istype(tool, /obj/item/organ_storage)) I = tool.contents[1] tool.icon_state = "evidenceobj" diff --git a/code/modules/surgery/generic_steps.dm b/code/modules/surgery/organic_steps.dm similarity index 99% rename from code/modules/surgery/generic_steps.dm rename to code/modules/surgery/organic_steps.dm index 5e3c3f33ba..8a4c795c63 100644 --- a/code/modules/surgery/generic_steps.dm +++ b/code/modules/surgery/organic_steps.dm @@ -2,7 +2,7 @@ //make incision /datum/surgery_step/incise name = "make incision" - implements = list(/obj/item/scalpel = 100, /obj/item/melee/transforming/energy/sword = 75, /obj/item/kitchen/knife = 65, + implements = list(/obj/item/scalpel = 100, /obj/item/melee/transforming/energy/sword = 75, /obj/item/kitchen/knife = 65, /obj/item/shard = 45, /obj/item = 30) // 30% success with any sharp item. time = 16 @@ -87,7 +87,7 @@ //saw bone /datum/surgery_step/saw name = "saw bone" - implements = list(/obj/item/circular_saw = 100, /obj/item/melee/transforming/energy/sword/cyborg/saw = 100, + implements = list(/obj/item/circular_saw = 100, /obj/item/melee/transforming/energy/sword/cyborg/saw = 100, /obj/item/melee/arm_blade = 75, /obj/item/mounted_chainsaw = 65, /obj/item/twohanded/required/chainsaw = 50, /obj/item/twohanded/fireaxe = 50, /obj/item/hatchet = 35, /obj/item/kitchen/knife/butcher = 25) time = 54 diff --git a/code/modules/surgery/prosthetic_replacement.dm b/code/modules/surgery/prosthetic_replacement.dm index 2dddb95872..e55f3af009 100644 --- a/code/modules/surgery/prosthetic_replacement.dm +++ b/code/modules/surgery/prosthetic_replacement.dm @@ -4,6 +4,7 @@ species = list(/mob/living/carbon/human, /mob/living/carbon/monkey) possible_locs = list("r_arm", "l_arm", "l_leg", "r_leg", "head") requires_bodypart = FALSE //need a missing limb + requires_bodypart_type = 0 /datum/surgery/prosthetic_replacement/can_start(mob/user, mob/living/carbon/target) if(!iscarbon(target)) @@ -84,4 +85,3 @@ var/obj/item/melee/arm_blade/new_arm = new(target,TRUE,TRUE) target_zone == "r_arm" ? target.put_in_r_hand(new_arm) : target.put_in_l_hand(new_arm) return 1 - diff --git a/code/modules/surgery/surgery.dm b/code/modules/surgery/surgery.dm index 03beacf27b..e5c046fac1 100644 --- a/code/modules/surgery/surgery.dm +++ b/code/modules/surgery/surgery.dm @@ -6,7 +6,7 @@ var/can_cancel = 1 //Can cancel this surgery after step 1 with cautery var/list/species = list(/mob/living/carbon/human) //Acceptable Species var/location = "chest" //Surgery location - var/requires_organic_bodypart = 1 //Prevents you from performing an operation on robotic limbs + var/requires_bodypart_type = BODYPART_ORGANIC //Prevents you from performing an operation on robotic limbs var/list/possible_locs = list() //Multiple locations var/ignore_clothes = 0 //This surgery ignores clothes var/mob/living/carbon/target //Operation target mob @@ -53,6 +53,13 @@ var/step_type = steps[status] return new step_type +/datum/surgery/proc/get_surgery_next_step() + if(status < steps.len) + var/step_type = steps[status + 1] + return new step_type + else + return null + /datum/surgery/proc/complete() SSblackbox.add_details("surgeries_completed", "[type]") qdel(src) diff --git a/code/modules/surgery/surgery_step.dm b/code/modules/surgery/surgery_step.dm index 7047c50084..01bd4a1841 100644 --- a/code/modules/surgery/surgery_step.dm +++ b/code/modules/surgery/surgery_step.dm @@ -5,6 +5,7 @@ var/accept_hand = 0 //does the surgery step require an open hand? If true, ignores implements. Compatible with accept_any_item. var/accept_any_item = 0 //does the surgery step accept any item? If true, ignores implements. Compatible with require_hand. var/time = 10 //how long does the step take? + var/repeatable = 0 /datum/surgery_step/proc/try_op(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, datum/surgery/surgery) @@ -31,8 +32,19 @@ else to_chat(user, "You need to expose [target]'s [parse_zone(target_zone)] to perform surgery on it!") return 1 //returns 1 so we don't stab the guy in the dick or wherever. + + if(repeatable) + var/datum/surgery/next_step = surgery.get_surgery_next_step() + if(next_step) + surgery.status++ + if(next_step.try_op(user, target, user.zone_selected, user.get_active_held_item(), surgery)) + return 1 + else + surgery.status-- + if(iscyborg(user) && user.a_intent != INTENT_HARM) //to save asimov borgs a LOT of heartache return 1 + return 0 @@ -63,7 +75,7 @@ if(failure(user, target, target_zone, tool, surgery)) advance = 1 - if(advance) + if(advance && !repeatable) surgery.status++ if(surgery.status > surgery.steps.len) surgery.complete() diff --git a/tgstation.dme b/tgstation.dme index d6eea16986..912f3cc89e 100755 --- a/tgstation.dme +++ b/tgstation.dme @@ -2250,12 +2250,13 @@ #include "code\modules\surgery\core_removal.dm" #include "code\modules\surgery\dental_implant.dm" #include "code\modules\surgery\eye_surgery.dm" -#include "code\modules\surgery\generic_steps.dm" #include "code\modules\surgery\helpers.dm" #include "code\modules\surgery\implant_removal.dm" #include "code\modules\surgery\limb_augmentation.dm" #include "code\modules\surgery\lipoplasty.dm" +#include "code\modules\surgery\mechanic_steps.dm" #include "code\modules\surgery\organ_manipulation.dm" +#include "code\modules\surgery\organic_steps.dm" #include "code\modules\surgery\plastic_surgery.dm" #include "code\modules\surgery\prosthetic_replacement.dm" #include "code\modules\surgery\remove_embedded_object.dm" From d6735ad5b525d2433e7dc71630066cdd4a109160 Mon Sep 17 00:00:00 2001 From: deathride58 Date: Wed, 25 Oct 2017 14:40:40 -0400 Subject: [PATCH 142/227] Fuck --- code/modules/surgery/surgery_step.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/surgery/surgery_step.dm b/code/modules/surgery/surgery_step.dm index 01bd4a1841..577dc6547b 100644 --- a/code/modules/surgery/surgery_step.dm +++ b/code/modules/surgery/surgery_step.dm @@ -34,7 +34,7 @@ return 1 //returns 1 so we don't stab the guy in the dick or wherever. if(repeatable) - var/datum/surgery/next_step = surgery.get_surgery_next_step() + var/datum/surgery_step/next_step = surgery.get_surgery_next_step() if(next_step) surgery.status++ if(next_step.try_op(user, target, user.zone_selected, user.get_active_held_item(), surgery)) From b1bb0948b9bbaa0fa05ad6e1df6df04ee0c9d00a Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 25 Oct 2017 13:52:51 -0500 Subject: [PATCH 143/227] Automatic changelog generation for PR #3594 [ci skip] --- html/changelogs/AutoChangeLog-pr-3594.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3594.yml diff --git a/html/changelogs/AutoChangeLog-pr-3594.yml b/html/changelogs/AutoChangeLog-pr-3594.yml new file mode 100644 index 0000000000..bc014626a2 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3594.yml @@ -0,0 +1,4 @@ +author: "JJRcop" +delete-after: True +changes: + - rscadd: "The heart of darkness revives you as a shadowperson if you aren't one already." From 1f83d3cbb73aa243de10996bdfab40c2af898f37 Mon Sep 17 00:00:00 2001 From: Leo Date: Wed, 25 Oct 2017 11:40:10 -0200 Subject: [PATCH 144/227] Merge pull request #32071 from ShizCalev/heart-spam-fix Fixes heartbeat message spam --- code/modules/surgery/organs/heart.dm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/code/modules/surgery/organs/heart.dm b/code/modules/surgery/organs/heart.dm index 9308154c48..19bed38293 100644 --- a/code/modules/surgery/organs/heart.dm +++ b/code/modules/surgery/organs/heart.dm @@ -63,10 +63,9 @@ H.stop_sound_channel(CHANNEL_HEARTBEAT) beat = BEAT_NONE - if(H.jitteriness) - if(!beat || beat == BEAT_SLOW) - H.playsound_local(get_turf(H),fastbeat,40,0, channel = CHANNEL_HEARTBEAT) - beat = BEAT_FAST + if(H.jitteriness && H.health > HEALTH_THRESHOLD_FULLCRIT && (!beat || beat == BEAT_SLOW)) + H.playsound_local(get_turf(H),fastbeat,40,0, channel = CHANNEL_HEARTBEAT) + beat = BEAT_FAST /obj/item/organ/heart/cursed name = "cursed heart" From 6235c66517f2de5d9156d477e64ad8c4a0c9aa7e Mon Sep 17 00:00:00 2001 From: Leo Date: Wed, 25 Oct 2017 09:40:25 -0200 Subject: [PATCH 146/227] Merge pull request #32070 from ShizCalev/delta-vent Corrects disabled vent in delta toxins lab. --- _maps/map_files/Deltastation/DeltaStation2.dmm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm index 885a0926e8..2e41702eb7 100644 --- a/_maps/map_files/Deltastation/DeltaStation2.dmm +++ b/_maps/map_files/Deltastation/DeltaStation2.dmm @@ -81845,7 +81845,7 @@ }, /area/science/mixing) "dqG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump, +/obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/neutral, /area/science/mixing) "dqH" = ( From 7ad3afa3c028c29913346a16dab4765996f11398 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 25 Oct 2017 20:01:31 -0500 Subject: [PATCH 148/227] [MIRROR] Footprints no longer contain stupid amounts of blood (#3602) * Footprints no longer contain stupid amounts of blood (#32056) * Footprints no longer contain stupid amounts of blood --- code/__DEFINES/misc.dm | 1 + .../mob/living/carbon/human/human_movement.dm | 17 +++++++++-------- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/code/__DEFINES/misc.dm b/code/__DEFINES/misc.dm index 66c12adc72..0fdfbaca1c 100644 --- a/code/__DEFINES/misc.dm +++ b/code/__DEFINES/misc.dm @@ -204,6 +204,7 @@ GLOBAL_LIST_EMPTY(bloody_footprints_cache) #define BLOODY_FOOTPRINT_BASE_ALPHA 150 #define BLOOD_GAIN_PER_STEP 100 #define BLOOD_LOSS_PER_STEP 5 +#define BLOOD_LOSS_IN_SPREAD 20 #define BLOOD_FADEOUT_TIME 2 //Bloody shoe blood states diff --git a/code/modules/mob/living/carbon/human/human_movement.dm b/code/modules/mob/living/carbon/human/human_movement.dm index 4fba96df58..51de0c2d91 100644 --- a/code/modules/mob/living/carbon/human/human_movement.dm +++ b/code/modules/mob/living/carbon/human/human_movement.dm @@ -45,14 +45,15 @@ return else //No oldFP or it's a different kind of blood - S.bloody_shoes[S.blood_state] = max(0, S.bloody_shoes[S.blood_state]-BLOOD_LOSS_PER_STEP) - var/obj/effect/decal/cleanable/blood/footprints/FP = new /obj/effect/decal/cleanable/blood/footprints(T) - FP.blood_state = S.blood_state - FP.entered_dirs |= dir - FP.bloodiness = S.bloody_shoes[S.blood_state] - if(S.blood_DNA && S.blood_DNA.len) - FP.transfer_blood_dna(S.blood_DNA) - FP.update_icon() + S.bloody_shoes[S.blood_state] = max(0, S.bloody_shoes[S.blood_state] - BLOOD_LOSS_PER_STEP) + if (S.bloody_shoes[S.blood_state] > BLOOD_LOSS_IN_SPREAD) + var/obj/effect/decal/cleanable/blood/footprints/FP = new /obj/effect/decal/cleanable/blood/footprints(T) + FP.blood_state = S.blood_state + FP.entered_dirs |= dir + FP.bloodiness = S.bloody_shoes[S.blood_state] - BLOOD_LOSS_IN_SPREAD + if(S.blood_DNA && S.blood_DNA.len) + FP.transfer_blood_dna(S.blood_DNA) + FP.update_icon() update_inv_shoes() //End bloody footprints From 7ee7942aa4b0a5cbb9307ad9670e1fe3fb3288ab Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 25 Oct 2017 20:01:52 -0500 Subject: [PATCH 149/227] [MIRROR] [s] Fixes changling golem exploit (#3600) * Merge pull request #32061 from ShizCalev/ling-golem-exploit-fix Fixes changling golem exploit * [s] Fixes changling golem exploit --- .../mob/living/carbon/human/species_types/golems.dm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/code/modules/mob/living/carbon/human/species_types/golems.dm b/code/modules/mob/living/carbon/human/species_types/golems.dm index 97b88d7715..f6dac06eea 100644 --- a/code/modules/mob/living/carbon/human/species_types/golems.dm +++ b/code/modules/mob/living/carbon/human/species_types/golems.dm @@ -419,6 +419,7 @@ if(ishuman(C)) unstable_teleport = new unstable_teleport.Grant(C) + last_teleport = world.time /datum/species/golem/bluespace/on_species_loss(mob/living/carbon/C) if(unstable_teleport) @@ -479,6 +480,11 @@ var/banana_cooldown = 100 var/active = null +/datum/species/golem/bananium/on_species_gain(mob/living/carbon/C, datum/species/old_species) + ..() + last_banana = world.time + last_honk = world.time + /datum/species/golem/bananium/random_name(gender,unique,lastname) var/clown_name = pick(GLOB.clown_names) var/golem_name = "[uppertext(clown_name)]" @@ -553,10 +559,13 @@ . = ..() C.faction |= "cult" phase_shift = new + phase_shift.charge_counter = 0 C.AddSpell(phase_shift) abyssal_gaze = new + abyssal_gaze.charge_counter = 0 C.AddSpell(abyssal_gaze) dominate = new + dominate.charge_counter = 0 C.AddSpell(dominate) /datum/species/golem/runic/on_species_loss(mob/living/carbon/C) From 3a3a6f290392fb8bfec1f75111b47e4879f42dd0 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 25 Oct 2017 20:01:54 -0500 Subject: [PATCH 150/227] Automatic changelog generation for PR #3600 [ci skip] --- html/changelogs/AutoChangeLog-pr-3600.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3600.yml diff --git a/html/changelogs/AutoChangeLog-pr-3600.yml b/html/changelogs/AutoChangeLog-pr-3600.yml new file mode 100644 index 0000000000..638233d23f --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3600.yml @@ -0,0 +1,4 @@ +author: "ShizCalev" +delete-after: True +changes: + - bugfix: "Golem abilities will now be start on cooldown when they are made." From deaec385799c9336e088a40ba090ad16b34eae04 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 25 Oct 2017 20:02:09 -0500 Subject: [PATCH 151/227] [MIRROR] Fixes shades hearing heartbeats (#3599) * Merge pull request #32059 from ShizCalev/shade-heartbeat Fixes shades hearing heartbeats * Fixes shades hearing heartbeats --- code/game/gamemodes/wizard/soulstone.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/gamemodes/wizard/soulstone.dm b/code/game/gamemodes/wizard/soulstone.dm index b38ac384fb..776b5d6981 100644 --- a/code/game/gamemodes/wizard/soulstone.dm +++ b/code/game/gamemodes/wizard/soulstone.dm @@ -233,6 +233,7 @@ /obj/item/device/soulstone/proc/init_shade(mob/living/carbon/human/T, mob/U, vic = 0) new /obj/effect/decal/remains/human(T.loc) //Spawns a skeleton + T.stop_sound_channel(CHANNEL_HEARTBEAT) T.invisibility = INVISIBILITY_ABSTRACT T.dust_animation() var/mob/living/simple_animal/shade/S = new /mob/living/simple_animal/shade(src) From b6b6c27c3fe49b56caa9eb5d14cb6fde433eb1bc Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 25 Oct 2017 20:02:10 -0500 Subject: [PATCH 152/227] Automatic changelog generation for PR #3599 [ci skip] --- html/changelogs/AutoChangeLog-pr-3599.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3599.yml diff --git a/html/changelogs/AutoChangeLog-pr-3599.yml b/html/changelogs/AutoChangeLog-pr-3599.yml new file mode 100644 index 0000000000..19444ff4b3 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3599.yml @@ -0,0 +1,4 @@ +author: "ShizCalev" +delete-after: True +changes: + - bugfix: "Shades will no longer always hear a heartbeat." From 2f74805a461d5fa5ae7c8b9be7831f2b34428d93 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 25 Oct 2017 20:02:36 -0500 Subject: [PATCH 153/227] [MIRROR] Fixes teleporters not actually denying teleports from Centcom (#3598) * Merge pull request #32043 from tgstation/Cyberboss-patch-3 Fixes teleporters not actually denying teleports from Centcom * Fixes teleporters not actually denying teleports from Centcom --- code/game/machinery/teleporter.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/teleporter.dm b/code/game/machinery/teleporter.dm index 1c7268e6c6..be13cfdcff 100644 --- a/code/game/machinery/teleporter.dm +++ b/code/game/machinery/teleporter.dm @@ -44,10 +44,10 @@ /obj/machinery/teleport/hub/CollidedWith(atom/movable/AM) if(z == ZLEVEL_CENTCOM) to_chat(AM, "You can't use this here.") + return if(is_ready()) teleport(AM) use_power(5000) - return /obj/machinery/teleport/hub/attackby(obj/item/W, mob/user, params) if(default_deconstruction_screwdriver(user, "tele-o", "tele0", W)) From f6331eedf85cce51cb9edf58df3f37728dc1daf4 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 25 Oct 2017 20:03:11 -0500 Subject: [PATCH 154/227] [MIRROR] Shuttle navigation computers ignore the shuttle when placing a new location (#3596) * Shuttle navigation computers ignore the shuttle when placing a new location (#31722) * Fixed the shuttle navigation computer allowing you to move stationary docking ports * Made the shuttle navigation computer ignore the shuttle it controls when determining valid turfs * Removed a redundant list * Moved a var from stationary docking ports to mobile docking ports * Removed a sanity check * Shuttle navigation computers ignore the shuttle when placing a new location --- code/modules/shuttle/navigation_computer.dm | 27 ++++++++++----------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/code/modules/shuttle/navigation_computer.dm b/code/modules/shuttle/navigation_computer.dm index 4e2903ecf1..6af111506d 100644 --- a/code/modules/shuttle/navigation_computer.dm +++ b/code/modules/shuttle/navigation_computer.dm @@ -8,8 +8,9 @@ var/shuttlePortId = "" var/shuttlePortName = "" var/list/jumpto_ports = list() //hashset of ports to jump to and ignore for collision purposes - var/list/blacklisted_turfs - var/obj/docking_port/stationary/my_port + var/list/blacklisted_turfs //turfs we cannot go on, by default, any turf covered by a docking port that we did not place and cannot jump to + var/obj/docking_port/stationary/my_port //the custom docking port placed by this console + var/obj/docking_port/mobile/shuttle_port //the mobile docking port of the connected shuttle var/view_range = 7 var/x_offset = 0 var/y_offset = 0 @@ -31,21 +32,19 @@ actions += place_action /obj/machinery/computer/camera_advanced/shuttle_docker/CreateEye() - var/obj/docking_port/mobile/M = SSshuttle.getShuttle(shuttleId) - if(QDELETED(M)) + shuttle_port = SSshuttle.getShuttle(shuttleId) + if(QDELETED(shuttle_port)) + shuttle_port = null return + eyeobj = new /mob/camera/aiEye/remote/shuttle_docker() var/mob/camera/aiEye/remote/shuttle_docker/the_eye = eyeobj the_eye.origin = src - the_eye.dir = M.dir - - var/turf/origin = locate(M.x + x_offset, M.y + y_offset, M.z) - - for(var/i in M.shuttle_areas) - var/area/place = i - if(QDELETED(place)) - continue - for(var/turf/T in place) + the_eye.dir = shuttle_port.dir + var/turf/origin = locate(shuttle_port.x + x_offset, shuttle_port.y + y_offset, shuttle_port.z) + for(var/V in shuttle_port.shuttle_areas) + var/area/A = V + for(var/turf/T in A) if(T.z != origin.z) continue var/image/I = image('icons/effects/alphacolors.dmi', origin, "red") @@ -127,7 +126,7 @@ checkLandingSpot() /obj/machinery/computer/camera_advanced/shuttle_docker/proc/checkLandingTurf(turf/T) - return T && (!blacklisted_turfs || !blacklisted_turfs[T]) && (!space_turfs_only || isspaceturf(T)) && (T.x > 1 && T.y > 1 && T.x < world.maxx && T.y < world.maxy) + return T && (shuttle_port.shuttle_areas[T.loc] || (!blacklisted_turfs || !blacklisted_turfs[T]) && (!space_turfs_only || isspaceturf(T)) ) && (T.x > 1 && T.y > 1 && T.x < world.maxx && T.y < world.maxy) /obj/machinery/computer/camera_advanced/shuttle_docker/proc/generateBlacklistedTurfs() blacklisted_turfs = list() From 630b3328480b6cc06dc1ca5809c516275e88e777 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 25 Oct 2017 20:03:12 -0500 Subject: [PATCH 155/227] Automatic changelog generation for PR #3596 [ci skip] --- html/changelogs/AutoChangeLog-pr-3596.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3596.yml diff --git a/html/changelogs/AutoChangeLog-pr-3596.yml b/html/changelogs/AutoChangeLog-pr-3596.yml new file mode 100644 index 0000000000..91534c5dae --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3596.yml @@ -0,0 +1,4 @@ +author: "CitadelStationBot" +delete-after: True +changes: + - rscadd: "Shuttle navigation computers can now place new transit locations over the shuttle's current position." From dc5f011c48f53afb21b2c6d3a9b93b3afbad0bf5 Mon Sep 17 00:00:00 2001 From: Ashe Higgs Date: Wed, 25 Oct 2017 22:44:20 -0400 Subject: [PATCH 156/227] Fixes being able to stack stargazers on one tile (#32085) --- .../gamemodes/clock_cult/clock_scriptures/scripture_drivers.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/gamemodes/clock_cult/clock_scriptures/scripture_drivers.dm b/code/game/gamemodes/clock_cult/clock_scriptures/scripture_drivers.dm index a219d64666..a282ac3067 100644 --- a/code/game/gamemodes/clock_cult/clock_scriptures/scripture_drivers.dm +++ b/code/game/gamemodes/clock_cult/clock_scriptures/scripture_drivers.dm @@ -236,7 +236,7 @@ if(A.outdoors || A.map_name == "Space" || !A.blob_allowed) to_chat(invoker, "Stargazers can't be built off-station.") return - return TRUE + return ..() //Integration Cog: Creates an integration cog that can be inserted into APCs to passively siphon power. From 773b44e799bf610f67678616673af9c9bb344a56 Mon Sep 17 00:00:00 2001 From: Ashe Higgs Date: Wed, 25 Oct 2017 22:45:34 -0400 Subject: [PATCH 158/227] Cogscarab shells/construct chassis on spawn menu (#32048) --- code/datums/spawners_menu.dm | 8 ++++++-- .../gamemodes/clock_cult/clock_items/construct_chassis.dm | 6 +++++- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/code/datums/spawners_menu.dm b/code/datums/spawners_menu.dm index cc031d70bb..a9fd77d1e2 100644 --- a/code/datums/spawners_menu.dm +++ b/code/datums/spawners_menu.dm @@ -23,8 +23,12 @@ for(var/spawner_obj in GLOB.mob_spawners[spawner]) this["refs"] += "\ref[spawner_obj]" if(!this["desc"]) - var/obj/effect/mob_spawn/MS = spawner_obj - this["desc"] = MS.flavour_text + if(istype(spawner_obj, /obj/effect/mob_spawn)) + var/obj/effect/mob_spawn/MS = spawner_obj + this["desc"] = MS.flavour_text + else + var/obj/O = spawner_obj + this["desc"] = O.desc this["amount_left"] = LAZYLEN(GLOB.mob_spawners[spawner]) data["spawners"] += list(this) diff --git a/code/game/gamemodes/clock_cult/clock_items/construct_chassis.dm b/code/game/gamemodes/clock_cult/clock_items/construct_chassis.dm index 0b7738961a..ee782b1127 100644 --- a/code/game/gamemodes/clock_cult/clock_items/construct_chassis.dm +++ b/code/game/gamemodes/clock_cult/clock_items/construct_chassis.dm @@ -15,11 +15,14 @@ . = ..() var/area/A = get_area(src) if(A && construct_type) - notify_ghosts("A [construct_name] chassis has been created in [A.name]!", 'sound/magic/clockwork/fellowship_armory.ogg', source = src, action = NOTIFY_ORBIT, flashwindow = FALSE) + notify_ghosts("A [construct_name] chassis has been created in [A.name]!", 'sound/magic/clockwork/fellowship_armory.ogg', source = src, action = NOTIFY_ATTACK, flashwindow = FALSE) GLOB.poi_list += src + LAZYADD(GLOB.mob_spawners[name], src) /obj/item/clockwork/construct_chassis/Destroy() GLOB.poi_list -= src + var/list/spawners = GLOB.mob_spawners[name] + LAZYREMOVE(spawners, src) . = ..() /obj/item/clockwork/construct_chassis/examine(mob/user) @@ -37,6 +40,7 @@ if(!SSticker.mode) to_chat(user, "You cannot use that before the game has started.") return + user.forceMove(get_turf(src)) //If we attack through the alert, jump to the chassis so we know what we're getting into if(alert(user, "Become a [construct_name]? You can no longer be cloned!", construct_name, "Yes", "Cancel") == "Cancel") return if(QDELETED(src)) From 927dea03ce60d2ed8d4db808ae7c6aef535d154a Mon Sep 17 00:00:00 2001 From: Kyle Spier-Swenson Date: Wed, 25 Oct 2017 19:44:50 -0700 Subject: [PATCH 160/227] Fixes excessive overlay churn (#32065) * Fixes excessive overlay chern Adding an overlay on every cross and uncross of every player (with how bloody the station gets this is called on just about every fucking movement, some times multiple times if there are multiple types of stains (oil, blood, alien, etc) is an excessive as fuck amount of chern in the overlay subsystem. This is likely the cause of overlays being so high. * I APOLOGIZE FOR NOTHING! --- .../objects/effects/decals/cleanable/humans.dm | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/code/game/objects/effects/decals/cleanable/humans.dm b/code/game/objects/effects/decals/cleanable/humans.dm index 8861376e07..42aec1582e 100644 --- a/code/game/objects/effects/decals/cleanable/humans.dm +++ b/code/game/objects/effects/decals/cleanable/humans.dm @@ -135,9 +135,10 @@ var/obj/item/clothing/shoes/S = H.shoes if(S && S.bloody_shoes[blood_state]) S.bloody_shoes[blood_state] = max(S.bloody_shoes[blood_state] - BLOOD_LOSS_PER_STEP, 0) - entered_dirs|= H.dir - shoe_types |= H.shoes.type - update_icon() + shoe_types |= S.type + if (!(entered_dirs & H.dir)) + entered_dirs |= H.dir + update_icon() /obj/effect/decal/cleanable/blood/footprints/Uncrossed(atom/movable/O) ..() @@ -146,9 +147,11 @@ var/obj/item/clothing/shoes/S = H.shoes if(S && S.bloody_shoes[blood_state]) S.bloody_shoes[blood_state] = max(S.bloody_shoes[blood_state] - BLOOD_LOSS_PER_STEP, 0) - exited_dirs|= H.dir - shoe_types |= H.shoes.type - update_icon() + shoe_types |= S.type + if (!(exited_dirs & H.dir)) + exited_dirs |= H.dir + update_icon() + /obj/effect/decal/cleanable/blood/footprints/update_icon() cut_overlays() From ae86a75362f613328484586c71e2fc8687f0191b Mon Sep 17 00:00:00 2001 From: Emmett Gaines Date: Wed, 25 Oct 2017 22:46:38 -0400 Subject: [PATCH 162/227] Greyscale cables --- .../miniantags/abduction/abduction_gear.dm | 2 +- code/game/mecha/equipment/tools/work_tools.dm | 3 +- code/game/objects/items/handcuffs.dm | 48 +++---- code/game/objects/items/stacks/stack.dm | 7 +- code/modules/power/cable.dm | 119 +++++++----------- icons/obj/power_cond/cables.dmi | Bin 0 -> 1717 bytes icons/obj/power_cond/power_cond_blue.dmi | Bin 5977 -> 0 bytes icons/obj/power_cond/power_cond_cyan.dmi | Bin 5959 -> 0 bytes icons/obj/power_cond/power_cond_green.dmi | Bin 5830 -> 0 bytes icons/obj/power_cond/power_cond_orange.dmi | Bin 5903 -> 0 bytes icons/obj/power_cond/power_cond_pink.dmi | Bin 5986 -> 0 bytes icons/obj/power_cond/power_cond_red.dmi | Bin 5333 -> 0 bytes icons/obj/power_cond/power_cond_white.dmi | Bin 5956 -> 0 bytes icons/obj/power_cond/power_cond_yellow.dmi | Bin 5949 -> 0 bytes 14 files changed, 79 insertions(+), 100 deletions(-) create mode 100644 icons/obj/power_cond/cables.dmi delete mode 100644 icons/obj/power_cond/power_cond_blue.dmi delete mode 100644 icons/obj/power_cond/power_cond_cyan.dmi delete mode 100644 icons/obj/power_cond/power_cond_green.dmi delete mode 100644 icons/obj/power_cond/power_cond_orange.dmi delete mode 100644 icons/obj/power_cond/power_cond_pink.dmi delete mode 100644 icons/obj/power_cond/power_cond_red.dmi delete mode 100644 icons/obj/power_cond/power_cond_white.dmi delete mode 100644 icons/obj/power_cond/power_cond_yellow.dmi diff --git a/code/game/gamemodes/miniantags/abduction/abduction_gear.dm b/code/game/gamemodes/miniantags/abduction/abduction_gear.dm index 3a7f99bc8a..8fead855b2 100644 --- a/code/game/gamemodes/miniantags/abduction/abduction_gear.dm +++ b/code/game/gamemodes/miniantags/abduction/abduction_gear.dm @@ -491,7 +491,7 @@ Congratulations! You are now trained for invasive xenobiology research!"} /obj/item/restraints/handcuffs/energy name = "hard-light energy field" desc = "A hard-light field restraining the hands." - icon_state = "cuff_white" // Needs sprite + icon_state = "cuff" // Needs sprite lefthand_file = 'icons/mob/inhands/equipment/security_lefthand.dmi' righthand_file = 'icons/mob/inhands/equipment/security_righthand.dmi' breakouttime = 450 diff --git a/code/game/mecha/equipment/tools/work_tools.dm b/code/game/mecha/equipment/tools/work_tools.dm index d8de939514..2bc3d3eaff 100644 --- a/code/game/mecha/equipment/tools/work_tools.dm +++ b/code/game/mecha/equipment/tools/work_tools.dm @@ -408,8 +408,7 @@ return reset() if(!use_cable(1)) return reset() - var/obj/structure/cable/NC = new(new_turf) - NC.cableColor("red") + var/obj/structure/cable/NC = new(new_turf, "red") NC.d1 = 0 NC.d2 = fdirn NC.update_icon() diff --git a/code/game/objects/items/handcuffs.dm b/code/game/objects/items/handcuffs.dm index 6fb85e5ad5..93ea89445b 100644 --- a/code/game/objects/items/handcuffs.dm +++ b/code/game/objects/items/handcuffs.dm @@ -88,8 +88,9 @@ /obj/item/restraints/handcuffs/cable name = "cable restraints" desc = "Looks like some cables tied together. Could be used to tie something up." - icon_state = "cuff_red" - item_state = "coil_red" + icon_state = "cuff" + item_state = "coil" + item_color = "red" lefthand_file = 'icons/mob/inhands/equipment/tools_lefthand.dmi' righthand_file = 'icons/mob/inhands/equipment/tools_righthand.dmi' materials = list(MAT_METAL=150, MAT_GLASS=75) @@ -98,6 +99,18 @@ cuffsound = 'sound/weapons/cablecuff.ogg' var/datum/robot_energy_storage/wirestorage = null +/obj/item/restraints/handcuffs/cable/Initialize(mapload, param_color) + . = ..() + + var/list/cable_colors = GLOB.cable_colors + item_color = param_color || item_color || pick(cable_colors) + if(cable_colors[item_color]) + item_color = cable_colors[item_color] + update_icon() + +/obj/item/restraints/handcuffs/cable/update_icon() + add_atom_colour(item_color, FIXED_COLOUR_PRIORITY) + /obj/item/restraints/handcuffs/cable/attack(mob/living/carbon/C, mob/living/carbon/human/user) if(!istype(C)) return @@ -116,36 +129,28 @@ return ..() /obj/item/restraints/handcuffs/cable/red - icon_state = "cuff_red" - item_state = "coil_red" + item_color = "red" /obj/item/restraints/handcuffs/cable/yellow - icon_state = "cuff_yellow" - item_state = "coil_yellow" + item_color = "yellow" /obj/item/restraints/handcuffs/cable/blue - icon_state = "cuff_blue" - item_state = "coil_blue" + item_color = "blue" /obj/item/restraints/handcuffs/cable/green - icon_state = "cuff_green" - item_state = "coil_green" + item_color = "green" /obj/item/restraints/handcuffs/cable/pink - icon_state = "cuff_pink" - item_state = "coil_pink" + item_color = "pink" /obj/item/restraints/handcuffs/cable/orange - icon_state = "cuff_orange" - item_state = "coil_orange" + item_color = "orange" /obj/item/restraints/handcuffs/cable/cyan - icon_state = "cuff_cyan" - item_state = "coil_cyan" + item_color = "cyan" /obj/item/restraints/handcuffs/cable/white - icon_state = "cuff_white" - item_state = "coil_white" + item_color = "white" /obj/item/restraints/handcuffs/alien icon_state = "handcuffAlien" @@ -209,17 +214,18 @@ /obj/item/restraints/handcuffs/cable/zipties name = "zipties" desc = "Plastic, disposable zipties that can be used to restrain temporarily but are destroyed after use." - icon_state = "cuff_white" + icon_state = "cuff" lefthand_file = 'icons/mob/inhands/equipment/security_lefthand.dmi' righthand_file = 'icons/mob/inhands/equipment/security_righthand.dmi' materials = list() breakouttime = 450 //Deciseconds = 45s trashtype = /obj/item/restraints/handcuffs/cable/zipties/used + item_color = "white" /obj/item/restraints/handcuffs/cable/zipties/used desc = "A pair of broken zipties." - icon_state = "cuff_white_used" - item_state = "cuff_white" + icon_state = "cuff_used" + item_state = "cuff" /obj/item/restraints/handcuffs/cable/zipties/used/attack() return diff --git a/code/game/objects/items/stacks/stack.dm b/code/game/objects/items/stacks/stack.dm index a0f4b2a928..89fdc6d694 100644 --- a/code/game/objects/items/stacks/stack.dm +++ b/code/game/objects/items/stacks/stack.dm @@ -169,6 +169,11 @@ W.ini_dir = W.dir //END: oh fuck i'm so sorry + else if(istype(O, /obj/item/restraints/handcuffs/cable)) + var/obj/item/cuffs = O + cuffs.item_color = item_color + cuffs.update_icon() + if (QDELETED(O)) return //It's a stack and has already been merged @@ -261,7 +266,7 @@ if (user.get_inactive_held_item() == src) if(zero_amount()) return - change_stack(user,1) + return change_stack(user,1) else ..() diff --git a/code/modules/power/cable.dm b/code/modules/power/cable.dm index ec63a33568..ec23f5b7f8 100644 --- a/code/modules/power/cable.dm +++ b/code/modules/power/cable.dm @@ -1,3 +1,14 @@ +GLOBAL_LIST_INIT(cable_colors, list( + "yellow" = "#ffff00", + "green" = "#00aa00", + "blue" = "#1919c8", + "pink" = "#ff3cc8", + "orange" = "#ff8000", + "cyan" = "#00ffff", + "white" = "#ffffff", + "red" = "#ff0000" + )) + /////////////////////////////// //CABLE STRUCTURE /////////////////////////////// @@ -23,61 +34,52 @@ By design, d1 is the smallest direction and d2 is the highest */ /obj/structure/cable - level = 1 //is underfloor - anchored =1 - on_blueprints = TRUE - var/datum/powernet/powernet name = "power cable" desc = "A flexible, superconducting insulated cable for heavy-duty power transfer." - icon = 'icons/obj/power_cond/power_cond_red.dmi' + icon = 'icons/obj/power_cond/cables.dmi' icon_state = "0-1" + level = 1 //is underfloor + layer = WIRE_LAYER //Above hidden pipes, GAS_PIPE_HIDDEN_LAYER + anchored = TRUE + on_blueprints = TRUE var/d1 = 0 // cable direction 1 (see above) var/d2 = 1 // cable direction 2 (see above) - layer = WIRE_LAYER //Above hidden pipes, GAS_PIPE_HIDDEN_LAYER - var/cable_color = "red" + var/datum/powernet/powernet var/obj/item/stack/cable_coil/stored + var/cable_color = "red" + /obj/structure/cable/yellow cable_color = "yellow" - icon = 'icons/obj/power_cond/power_cond_yellow.dmi' /obj/structure/cable/green cable_color = "green" - icon = 'icons/obj/power_cond/power_cond_green.dmi' /obj/structure/cable/blue cable_color = "blue" - icon = 'icons/obj/power_cond/power_cond_blue.dmi' /obj/structure/cable/pink cable_color = "pink" - icon = 'icons/obj/power_cond/power_cond_pink.dmi' /obj/structure/cable/orange cable_color = "orange" - icon = 'icons/obj/power_cond/power_cond_orange.dmi' /obj/structure/cable/cyan cable_color = "cyan" - icon = 'icons/obj/power_cond/power_cond_cyan.dmi' /obj/structure/cable/white cable_color = "white" - icon = 'icons/obj/power_cond/power_cond_white.dmi' // the power cable object -/obj/structure/cable/Initialize() +/obj/structure/cable/Initialize(mapload, param_color) . = ..() // ensure d1 & d2 reflect the icon_state for entering and exiting cable var/dash = findtext(icon_state, "-") - d1 = text2num( copytext( icon_state, 1, dash ) ) - d2 = text2num( copytext( icon_state, dash+1 ) ) var/turf/T = get_turf(src) // hide if turf is not intact - if(level==1) hide(T.intact) GLOB.cable_list += src //add it to the global cable list @@ -87,6 +89,12 @@ By design, d1 is the smallest direction and d2 is the highest else stored = new/obj/item/stack/cable_coil(null,1,cable_color) + var/list/cable_colors = GLOB.cable_colors + cable_color = param_color || cable_color || pick(cable_colors) + if(cable_colors[cable_color]) + cable_color = cable_colors[cable_color] + update_icon() + /obj/structure/cable/Destroy() // called when a cable is deleted if(powernet) cut_cable_from_powernet() // update the powernets @@ -115,6 +123,7 @@ By design, d1 is the smallest direction and d2 is the highest icon_state = "[d1]-[d2]-f" else icon_state = "[d1]-[d2]" + add_atom_colour(cable_color, FIXED_COLOUR_PRIORITY) /obj/structure/cable/proc/handlecable(obj/item/W, mob/user, params) var/turf/T = get_turf(src) @@ -175,26 +184,6 @@ By design, d1 is the smallest direction and d2 is the highest if(current_size >= STAGE_FIVE) deconstruct() -/obj/structure/cable/proc/cableColor(colorC = "red") - cable_color = colorC - switch(colorC) - if("red") - icon = 'icons/obj/power_cond/power_cond_red.dmi' - if("yellow") - icon = 'icons/obj/power_cond/power_cond_yellow.dmi' - if("green") - icon = 'icons/obj/power_cond/power_cond_green.dmi' - if("blue") - icon = 'icons/obj/power_cond/power_cond_blue.dmi' - if("pink") - icon = 'icons/obj/power_cond/power_cond_pink.dmi' - if("orange") - icon = 'icons/obj/power_cond/power_cond_orange.dmi' - if("cyan") - icon = 'icons/obj/power_cond/power_cond_cyan.dmi' - if("white") - icon = 'icons/obj/power_cond/power_cond_white.dmi' - /obj/structure/cable/proc/update_stored(length = 1, colorC = "red") stored.amount = length stored.item_color = colorC @@ -456,8 +445,8 @@ GLOBAL_LIST_INIT(cable_coil_recipes, list (new/datum/stack_recipe("cable restrai name = "cable coil" gender = NEUTER //That's a cable coil sounds better than that's some cable coils icon = 'icons/obj/power.dmi' - icon_state = "coil_red" - item_state = "coil_red" + icon_state = "coil" + item_state = "coil" lefthand_file = 'icons/mob/inhands/equipment/tools_lefthand.dmi' righthand_file = 'icons/mob/inhands/equipment/tools_righthand.dmi' max_amount = MAXCOIL @@ -497,8 +486,12 @@ GLOBAL_LIST_INIT(cable_coil_recipes, list (new/datum/stack_recipe("cable restrai . = ..() if(new_amount) // MAXCOIL by default amount = new_amount - if(param_color) - item_color = param_color + + var/list/cable_colors = GLOB.cable_colors + item_color = param_color || item_color || pick(cable_colors) + if(cable_colors[item_color]) + item_color = cable_colors[item_color] + pixel_x = rand(-2,2) pixel_y = rand(-2,2) update_icon() @@ -528,18 +521,9 @@ GLOBAL_LIST_INIT(cable_coil_recipes, list (new/datum/stack_recipe("cable restrai /obj/item/stack/cable_coil/update_icon() - if(!item_color) - item_color = pick("red", "yellow", "blue", "green") - item_state = "coil_[item_color]" - if(amount == 1) - icon_state = "coil_[item_color]1" - name = "cable piece" - else if(amount == 2) - icon_state = "coil_[item_color]2" - name = "cable piece" - else - icon_state = "coil_[item_color]" - name = "cable coil" + icon_state = "[initial(item_state)][amount < 3 ? amount : ""]" + name = "cable [amount < 3 ? "piece" : "coil"]" + add_atom_colour(item_color, FIXED_COLOUR_PRIORITY) /obj/item/stack/cable_coil/attack_hand(mob/user) var/obj/item/stack/cable_coil/new_cable = ..() @@ -562,8 +546,8 @@ GLOBAL_LIST_INIT(cable_coil_recipes, list (new/datum/stack_recipe("cable restrai ////////////////////////////////////////////// /obj/item/stack/cable_coil/proc/get_new_cable(location) - var/path = "/obj/structure/cable" + (item_color == "red" ? "" : "/" + item_color) - return new path (location) + var/path = /obj/structure/cable + return new path(location, item_color) // called when cable_coil is clicked on a turf /obj/item/stack/cable_coil/proc/place_turf(turf/T, mob/user, dirnew) @@ -714,7 +698,7 @@ GLOBAL_LIST_INIT(cable_coil_recipes, list (new/datum/stack_recipe("cable restrai return - C.cableColor(item_color) + C.update_icon() C.d1 = nd1 C.d2 = nd2 @@ -750,11 +734,8 @@ GLOBAL_LIST_INIT(cable_coil_recipes, list (new/datum/stack_recipe("cable restrai // Misc. ///////////////////////////// -/obj/item/stack/cable_coil/cut - item_state = "coil_red2" - /obj/item/stack/cable_coil/cut/Initialize(mapload) - . =..() + . = ..() amount = rand(1,2) pixel_x = rand(-2,2) pixel_y = rand(-2,2) @@ -762,42 +743,30 @@ GLOBAL_LIST_INIT(cable_coil_recipes, list (new/datum/stack_recipe("cable restrai /obj/item/stack/cable_coil/red item_color = "red" - icon_state = "coil_red" /obj/item/stack/cable_coil/yellow item_color = "yellow" - icon_state = "coil_yellow" /obj/item/stack/cable_coil/blue item_color = "blue" - icon_state = "coil_blue" - item_state = "coil_blue" /obj/item/stack/cable_coil/green item_color = "green" - icon_state = "coil_green" /obj/item/stack/cable_coil/pink item_color = "pink" - icon_state = "coil_pink" /obj/item/stack/cable_coil/orange item_color = "orange" - icon_state = "coil_orange" /obj/item/stack/cable_coil/cyan item_color = "cyan" - icon_state = "coil_cyan" /obj/item/stack/cable_coil/white item_color = "white" - icon_state = "coil_white" - -/obj/item/stack/cable_coil/random/Initialize(mapload) - . = ..() - item_color = pick("red","orange","yellow","green","cyan","blue","pink","white") - icon_state = "coil_[item_color]" +/obj/item/stack/cable_coil/random + item_color = null /obj/item/stack/cable_coil/random/five amount = 5 diff --git a/icons/obj/power_cond/cables.dmi b/icons/obj/power_cond/cables.dmi new file mode 100644 index 0000000000000000000000000000000000000000..523947a3e7cec10a7cd482f65eb459446411bbf8 GIT binary patch literal 1717 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 diff --git a/icons/obj/power_cond/power_cond_orange.dmi b/icons/obj/power_cond/power_cond_orange.dmi deleted file mode 100644 index 4777ddd6654967083229ba2b07b2e746adca902f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5903 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 diff --git a/icons/obj/power_cond/power_cond_red.dmi b/icons/obj/power_cond/power_cond_red.dmi deleted file mode 100644 index ffa8eb2405f0fc00e8e79d5ac2ccdd55bf75fde8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5333 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 Date: Tue, 24 Oct 2017 11:25:50 -0400 Subject: [PATCH 163/227] Fixes braindead aliums --- code/modules/projectiles/projectile/magic.dm | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/code/modules/projectiles/projectile/magic.dm b/code/modules/projectiles/projectile/magic.dm index f3bc7ab9e0..108984495c 100644 --- a/code/modules/projectiles/projectile/magic.dm +++ b/code/modules/projectiles/projectile/magic.dm @@ -158,9 +158,15 @@ new_mob = new /mob/living/simple_animal/slime/random(M.loc) if("xeno") if(prob(50)) - new_mob = new /mob/living/carbon/alien/humanoid/hunter(M.loc) + if(!M.ckey) //spawn an AI alien if it isn't a player controlled mob. + new_mob = new /mob/living/simple_animal/hostile/alien(M.loc) + else + new_mob = new /mob/living/carbon/alien/humanoid/hunter(M.loc) else - new_mob = new /mob/living/carbon/alien/humanoid/sentinel(M.loc) + if(!M.ckey) + new_mob = new /mob/living/simple_animal/hostile/alien/sentinel(M.loc) + else + new_mob = new /mob/living/carbon/alien/humanoid/sentinel(M.loc) if("animal") var/path From 6316c0d989d979ec0dd7eb2298b2af22949ce1d3 Mon Sep 17 00:00:00 2001 From: ShizCalev Date: Tue, 24 Oct 2017 14:18:32 -0400 Subject: [PATCH 165/227] Fixes pipe runetime --- _maps/map_files/BoxStation/BoxStation.dmm | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index 1dfc193284..e580d6323f 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -39983,7 +39983,9 @@ /turf/open/floor/engine, /area/science/misc_lab) "bTm" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/atmospherics/components/trinary/mixer/flipped{ + dir = 1 + }, /turf/open/floor/engine, /area/science/misc_lab) "bTn" = ( @@ -48489,12 +48491,8 @@ }, /area/ai_monitored/security/armory) "coT" = ( -/obj/item/pipe{ - dir = 4; - icon_state = "mixer"; - name = "gas mixer fitting"; - pipe_type = 14 - }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/meter, /turf/open/floor/engine, /area/science/misc_lab) "coZ" = ( @@ -108055,7 +108053,7 @@ cBE bOE bEC bQV -bSi +coT bTm bUn bXr @@ -108312,8 +108310,8 @@ bNu bMv bEC bQT -bSh -coT +bSi +bUn bTl bXr bNZ From 671ae577f059593cdef48dadb7fcf891aba0f44b Mon Sep 17 00:00:00 2001 From: Kyle Spier-Swenson Date: Tue, 24 Oct 2017 14:44:49 -0700 Subject: [PATCH 167/227] Fixes light source qdel issues. --- code/modules/lighting/lighting_source.dm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/code/modules/lighting/lighting_source.dm b/code/modules/lighting/lighting_source.dm index dd5cd53690..178f091fb7 100644 --- a/code/modules/lighting/lighting_source.dm +++ b/code/modules/lighting/lighting_source.dm @@ -56,10 +56,11 @@ if (top_atom) LAZYREMOVE(top_atom.light_sources, src) - + + if (needs_update) + GLOB.lighting_update_lights -= src + . = ..() - if(!force) - return QDEL_HINT_IWILLGC // Yes this doesn't align correctly on anything other than 4 width tabs. // If you want it to go switch everybody to elastic tab stops. From 23871f764388ab95905d7a2d5b1e9873271a0225 Mon Sep 17 00:00:00 2001 From: nicbn Date: Fri, 20 Oct 2017 12:56:41 -0200 Subject: [PATCH 169/227] 1 --- icons/obj/chemical.dmi | Bin 36851 -> 36761 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/obj/chemical.dmi b/icons/obj/chemical.dmi index fe9e9eed05f4ab3561534a149041e5bdcdb505d8..3507d9db53c7d619ba21af329c779e56d95b229f 100644 GIT binary patch literal 36761 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

    YP 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 Date: Thu, 26 Oct 2017 00:36:08 -0400 Subject: [PATCH 171/227] Adds ambience to the SM and portable generators (#31945) * Adds aambience to the SM and portable generators * lowered pitch of supermatter * start and end fix --- code/datums/looping_sounds/machinery_sounds.dm | 17 ++++++++++++++++- code/modules/power/port_gen.dm | 11 +++++++++++ code/modules/power/supermatter/supermatter.dm | 10 +++++++++- sound/machines/generator/generator_end.ogg | Bin 0 -> 55104 bytes sound/machines/generator/generator_mid1.ogg | Bin 0 -> 61597 bytes sound/machines/generator/generator_mid2.ogg | Bin 0 -> 60913 bytes sound/machines/generator/generator_mid3.ogg | Bin 0 -> 62362 bytes sound/machines/generator/generator_start.ogg | Bin 0 -> 54419 bytes sound/machines/sm/supermatter1.ogg | Bin 0 -> 78984 bytes sound/machines/sm/supermatter2.ogg | Bin 0 -> 77464 bytes sound/machines/sm/supermatter3.ogg | Bin 0 -> 78516 bytes 11 files changed, 36 insertions(+), 2 deletions(-) create mode 100644 sound/machines/generator/generator_end.ogg create mode 100644 sound/machines/generator/generator_mid1.ogg create mode 100644 sound/machines/generator/generator_mid2.ogg create mode 100644 sound/machines/generator/generator_mid3.ogg create mode 100644 sound/machines/generator/generator_start.ogg create mode 100644 sound/machines/sm/supermatter1.ogg create mode 100644 sound/machines/sm/supermatter2.ogg create mode 100644 sound/machines/sm/supermatter3.ogg diff --git a/code/datums/looping_sounds/machinery_sounds.dm b/code/datums/looping_sounds/machinery_sounds.dm index 88b2b06878..e8c2f4f05e 100644 --- a/code/datums/looping_sounds/machinery_sounds.dm +++ b/code/datums/looping_sounds/machinery_sounds.dm @@ -6,4 +6,19 @@ end_sound = 'sound/machines/shower/shower_end.ogg' volume = 25 -/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// \ No newline at end of file +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +/datum/looping_sound/supermatter + mid_sounds = list('sound/machines/sm/supermatter1.ogg'=1,'sound/machines/sm/supermatter2.ogg'=1,'sound/machines/sm/supermatter3.ogg'=1) + mid_length = 6 + volume = 1 + +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +/datum/looping_sound/generator + start_sound = 'sound/machines/generator/generator_start.ogg' + start_length = 4 + mid_sounds = list('sound/machines/generator/generator_mid1.ogg'=1, 'sound/machines/generator/generator_mid2.ogg'=1, 'sound/machines/generator/generator_mid3.ogg'=1) + mid_length = 4 + end_sound = 'sound/machines/generator/generator_end.ogg' + volume = 40 \ No newline at end of file diff --git a/code/modules/power/port_gen.dm b/code/modules/power/port_gen.dm index d927b5c4f1..6031f6edab 100644 --- a/code/modules/power/port_gen.dm +++ b/code/modules/power/port_gen.dm @@ -15,6 +15,15 @@ var/power_output = 1 var/consumption = 0 var/base_icon = "portgen0" + var/datum/looping_sound/generator/soundloop + +/obj/machinery/power/port_gen/Initialize() + . = ..() + soundloop = new(list(src), active) + +/obj/machinery/power/port_gen/Destroy() + QDEL_NULL(soundloop) + return ..() /obj/machinery/power/port_gen/proc/HasFuel() //Placeholder for fuel check. return 1 @@ -36,11 +45,13 @@ add_avail(power_gen * power_output) UseFuel() src.updateDialog() + soundloop.start() else active = 0 handleInactive() update_icon() + soundloop.stop() /obj/machinery/power/port_gen/attack_hand(mob/user) if(..()) diff --git a/code/modules/power/supermatter/supermatter.dm b/code/modules/power/supermatter/supermatter.dm index d9aabd1197..94c91f0436 100644 --- a/code/modules/power/supermatter/supermatter.dm +++ b/code/modules/power/supermatter/supermatter.dm @@ -135,6 +135,8 @@ GLOBAL_DATUM(main_supermatter_engine, /obj/machinery/power/supermatter_shard) var/is_main_engine = FALSE + var/datum/looping_sound/supermatter/soundloop + /obj/machinery/power/supermatter_shard/Initialize() . = ..() SSair.atmos_machinery += src @@ -149,6 +151,8 @@ GLOBAL_DATUM(main_supermatter_engine, /obj/machinery/power/supermatter_shard) if(is_main_engine) GLOB.main_supermatter_engine = src + soundloop = new(list(src), TRUE) + /obj/machinery/power/supermatter_shard/Destroy() investigate_log("has been destroyed.", INVESTIGATE_SUPERMATTER) SSair.atmos_machinery -= src @@ -157,7 +161,8 @@ GLOBAL_DATUM(main_supermatter_engine, /obj/machinery/power/supermatter_shard) QDEL_NULL(countdown) if(is_main_engine && GLOB.main_supermatter_engine == src) GLOB.main_supermatter_engine = null - . = ..() + QDEL_NULL(soundloop) + return ..() /obj/machinery/power/supermatter_shard/examine(mob/user) ..() @@ -251,6 +256,9 @@ GLOBAL_DATUM(main_supermatter_engine, /obj/machinery/power/supermatter_shard) if(!istype(T)) //We are in a crate or somewhere that isn't turf, if we return to turf resume processing but for now. return //Yeah just stop. + if(power) + soundloop.volume = min(50, (round(power, 50)/50)+1) // 5 +1 volume per 20 power. 2500 power is max + //Ok, get the air from the turf var/datum/gas_mixture/env = T.return_air() diff --git a/sound/machines/generator/generator_end.ogg b/sound/machines/generator/generator_end.ogg new file mode 100644 index 0000000000000000000000000000000000000000..43979911677791f978556f6cf8938bd163829499 GIT binary patch literal 55104 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 literal 0 HcmV?d00001 diff --git a/sound/machines/generator/generator_mid1.ogg b/sound/machines/generator/generator_mid1.ogg new file mode 100644 index 0000000000000000000000000000000000000000..10a0d01a7e7fcb5e087fc84474013c28334672c5 GIT binary patch literal 61597 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 literal 0 HcmV?d00001 diff --git a/sound/machines/generator/generator_mid2.ogg b/sound/machines/generator/generator_mid2.ogg new file mode 100644 index 0000000000000000000000000000000000000000..77656772ccf869163eadcbb5cc21b2d0dae6f965 GIT binary patch literal 60913 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 Y$JDGA1#Nn;^!W3ITfXqtuU?%D0MtbLfB*mh literal 0 HcmV?d00001 diff --git a/sound/machines/generator/generator_mid3.ogg b/sound/machines/generator/generator_mid3.ogg new file mode 100644 index 0000000000000000000000000000000000000000..812a10e6fce5e4bda8dd3dbdda2f3b44f605e52d GIT binary patch literal 62362 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≶KkzthrWAQQD&}Z0> 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 z

    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 SJBR(diYgxdlb^M}xhDYKsX~?j literal 0 HcmV?d00001 diff --git a/sound/machines/sm/supermatter2.ogg b/sound/machines/sm/supermatter2.ogg new file mode 100644 index 0000000000000000000000000000000000000000..fb2d39fe26a1d8cc6c0e55c342a6e87619cdac70 GIT binary patch literal 77464 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%0D5erp{nwa^4IA$DYpgUP8tfE*xZ8Hf$#b5t% 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 z zAN7aSh$5-K^?Ysrohn(CtFEiQ6S6XC<%x$?Hj3nB==vlaS7+AK4fsBj?CP~ht1pH- zSM)%gzYQ|0RHw2h9v=orl9PB8&Z-Rjn-FTNKLyC}9*?cA)(pQ{-7|fYSk39CQC4B| z)l570kj(cda3?Pk691Z8Pd2z;Q#5!r-7N}~FBgCBeXmR}usUBEWsd}elDb;agnbHw zp_#h<_H?kFW;%)3&8wH((3>b&j>A5*i^i--s4*@N0kP{+ZYC0lKl-SwwCPl(T8QM+ zOSU0rQLT~)7csPst; zQ8rxNueZgJxcc-z@B6AMA|itUHfl2(d3P zea^RE_7N5HU2puc%nsm0Mv8{xWMpJ*jrsoi_v`@b6t#$)<|&DJN&o>es%`y=cj!8O z-}mp=pFe7d66ex3M+a*dR_Ej2@1ewEFTdu^e~-;9|F*oZP7m z_v=YfuhyE=>gsu&$3B!A`Nw&crl6tFwUzLeH2@VAZ@GQGe0z7^zy9{^-NZcg-^*fX zprWFp_y<%}aKbaLGg4F(GBWm~E1cTLKFyJ$UAtx+-NIPvrKdwhMVEm0puIevk7rj% zEwA%BYeU!bI_GsBT|k|ud77vBuoK6VuV22N91l6Ij#82Wctbz_tem8ioD+goL0BRN zMG%w-6EL`7gg_h>IcN2LKt{7POOu0;?6|&d#9n<@7|9YmU-AUx^#8->B|X3%S(QB3 zDKLFVgLThCKQ(tL3%Bp8iLtlQR0Luy4?OD0ngQzf*fkF9*j#qZB z^4B(=>*Zp2mX17Vin{Sxl-52wS5?j*Z#aH)#FU|-EANGvYeh#3jgO=><45CXZn);> z-BNnHwFU<-NR z60Eah?7pcr0)f7HS(w}5wecWXbgmQ2w$8FFq|yzOvw$nqXMdaZSG{UG?RZWsbC%BB zI$y2{4uWm1te9+?@?ujnR)GI*NX)tU-(p8gYhuPiH&*A+ zAa%5Xze>JV4r)(H&Z3Wg5uQYkS3r0k`|s^`?BP-{i|^u^&acYm->Y)C)tb+9-s9$; z>+;Jk?LVK6hhy8@KC6j?)Q^Ybw%h90YjA0`TCG;;wzdwB#~G|vD}Xu9U_2g=S*=zH E01ewvj{pDw literal 0 HcmV?d00001 diff --git a/sound/machines/sm/supermatter3.ogg b/sound/machines/sm/supermatter3.ogg new file mode 100644 index 0000000000000000000000000000000000000000..93ac3d505b60115dbe9406182404323709914663 GIT binary patch literal 78516 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

    |S5$9)^ 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 literal 151700 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

    AIEmWS3RP+;yl|eI`|F#9O9}#!gwN*foKJ*N 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

    G#2c2bnB@g?0wM{H{Y5W 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%0AZ?`l$ko07Eiscax13Bhy@B2bz;F{b6^Y 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%0ANs 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

    RrFMnYD(6BK{2~w^2RduQReb~V5zb4mx(R=1|)e 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 diff --git a/icons/obj/power.dmi b/icons/obj/power.dmi index e1604715ac5f9cbbe4a7f99346ce50df630942af..5482873c8a1aa454970817b9b02b07ad5741a0a1 100644 GIT binary patch literal 35925 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 z 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 Date: Fri, 27 Oct 2017 23:04:07 -0500 Subject: [PATCH 227/227] Automatic changelog generation for PR #3649 [ci skip] --- html/changelogs/AutoChangeLog-pr-3649.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3649.yml diff --git a/html/changelogs/AutoChangeLog-pr-3649.yml b/html/changelogs/AutoChangeLog-pr-3649.yml new file mode 100644 index 0000000000..04a9765da6 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3649.yml @@ -0,0 +1,4 @@ +author: "deathride58" +delete-after: True +changes: + - bugfix: "Cable coils will no longer appear as weirdly colored APCs"

    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 E0mtha!T Date: Tue, 24 Oct 2017 14:16:36 -0400 Subject: [PATCH 173/227] --no-edit --- code/game/objects/items/weaponry.dm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/code/game/objects/items/weaponry.dm b/code/game/objects/items/weaponry.dm index 90a0ec7f99..a8c80e5e83 100644 --- a/code/game/objects/items/weaponry.dm +++ b/code/game/objects/items/weaponry.dm @@ -601,12 +601,11 @@ if(ishuman(M)) var/mob/living/carbon/human/L = M L.endTailWag() - if(user.a_intent != INTENT_HARM) - var/aim_for_face = ((user.zone_selected == "mouth") || (user.zone_selected == "eyes") || (user.zone_selected == "head")) + if(user.a_intent != INTENT_HARM && ((user.zone_selected == "mouth") || (user.zone_selected == "eyes") || (user.zone_selected == "head"))) user.do_attack_animation(M) playsound(M, 'sound/weapons/slap.ogg', 50, 1, -1) - user.visible_message("[user] slaps [M] in the [(aim_for_face)?"face":user.zone_selected]!", - "You slap [M] in the [(aim_for_face)?"face":user.zone_selected]! ",\ + user.visible_message("[user] slaps [M]!", + "You slap [M]!",\ "You hear a slap.") return else From 1c1f39d1d389331a259f54a286c5a96122407d18 Mon Sep 17 00:00:00 2001 From: ACCount Date: Wed, 25 Oct 2017 06:53:06 +0300 Subject: [PATCH 175/227] Fixes a runtime on organ replacement --- code/modules/surgery/organs/organ_internal.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/surgery/organs/organ_internal.dm b/code/modules/surgery/organs/organ_internal.dm index 681dcb21cf..596cb0fbd3 100644 --- a/code/modules/surgery/organs/organ_internal.dm +++ b/code/modules/surgery/organs/organ_internal.dm @@ -22,7 +22,7 @@ if(replaced) replaced.Remove(M, special = 1) if(drop_if_replaced) - replaced.forceMove(get_turf(src)) + replaced.forceMove(get_turf(M)) else qdel(replaced) From dbba59e0b5228ef053c9a7361aef49b2bcfc31f4 Mon Sep 17 00:00:00 2001 From: ShizCalev Date: Mon, 23 Oct 2017 21:49:12 -0400 Subject: [PATCH 177/227] Makes luxurious emergency shuttle noteleport --- _maps/shuttles/emergency_luxury.dmm | 136 ++++++++++++++-------------- code/game/area/areas/shuttles.dm | 4 + 2 files changed, 72 insertions(+), 68 deletions(-) diff --git a/_maps/shuttles/emergency_luxury.dmm b/_maps/shuttles/emergency_luxury.dmm index cffad6bf58..a9aea3c632 100644 --- a/_maps/shuttles/emergency_luxury.dmm +++ b/_maps/shuttles/emergency_luxury.dmm @@ -4,20 +4,20 @@ /area/space) "ab" = ( /turf/closed/indestructible/riveted/uranium, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "ac" = ( /obj/machinery/door/airlock/external, /turf/open/floor/plating{ icon_state = "wood-broken2" }, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "ad" = ( /obj/machinery/door/airlock/gold, /obj/effect/forcefield/luxury_shuttle{ name = "Ticket Booth" }, /turf/open/floor/mineral/gold, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "ae" = ( /obj/docking_port/mobile/emergency{ dir = 2; @@ -32,75 +32,75 @@ name = "Ticket Booth" }, /turf/open/floor/mineral/gold, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "af" = ( /turf/open/floor/plating{ icon_state = "wood-broken3" }, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "ag" = ( /turf/open/floor/plating{ icon_state = "wood" }, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "ah" = ( /turf/open/floor/plating{ icon_state = "wood-broken" }, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "ai" = ( /turf/open/floor/plating{ icon_state = "wood-broken5" }, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "aj" = ( /turf/open/floor/mineral/gold, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "ak" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-10" }, /turf/open/floor/mineral/gold, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "al" = ( /obj/structure/mirror{ pixel_y = 32 }, /turf/open/floor/mineral/gold, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "am" = ( /turf/open/floor/plating{ icon_state = "wood-broken7" }, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "an" = ( /obj/machinery/light/small, /turf/open/floor/plating{ icon_state = "wood-broken2" }, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "ao" = ( /obj/machinery/light/small, /turf/open/floor/plating{ icon_state = "wood-broken6" }, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "ap" = ( /obj/structure/toilet{ dir = 4 }, /turf/open/floor/mineral/gold, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "aq" = ( /obj/machinery/door/airlock/gold, /turf/open/floor/mineral/gold, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "ar" = ( /obj/structure/shuttle/engine/propulsion{ dir = 8 }, /turf/open/floor/plating/airless, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "as" = ( /obj/structure/shuttle/engine/heater{ dir = 8 @@ -109,198 +109,198 @@ dir = 4 }, /turf/open/floor/plating/airless, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "at" = ( /turf/open/floor/carpet, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "au" = ( /obj/structure/chair/comfy, /turf/open/floor/carpet, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "av" = ( /obj/structure/chair/comfy{ dir = 4 }, /turf/open/floor/mineral/gold, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "aw" = ( /obj/machinery/computer/communications, /turf/open/floor/mineral/gold, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "ax" = ( /obj/structure/table/wood/fancy, /obj/item/reagent_containers/food/snacks/meatballspaghetti, /turf/open/floor/carpet, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "ay" = ( /obj/structure/table/wood/fancy, /obj/item/reagent_containers/food/snacks/notasandwich, /turf/open/floor/carpet, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "az" = ( /obj/structure/table/wood/fancy, /obj/item/reagent_containers/food/snacks/pastatomato, /turf/open/floor/carpet, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "aA" = ( /obj/structure/table/wood/fancy, /obj/item/reagent_containers/food/snacks/kebab/tofu, /turf/open/floor/carpet, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "aB" = ( /obj/structure/table/wood/fancy, /obj/item/reagent_containers/food/snacks/honkdae, /turf/open/floor/carpet, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "aC" = ( /obj/structure/table/wood/fancy, /obj/item/reagent_containers/food/snacks/enchiladas, /turf/open/floor/carpet, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "aD" = ( /obj/structure/table/wood/fancy, /obj/item/reagent_containers/food/snacks/candiedapple, /turf/open/floor/carpet, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "aE" = ( /obj/structure/table/wood/fancy, /obj/item/reagent_containers/food/snacks/burger/baconburger, /turf/open/floor/carpet, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "aF" = ( /obj/structure/table/wood/fancy, /obj/item/reagent_containers/food/snacks/benedict, /turf/open/floor/carpet, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "aG" = ( /obj/structure/table/wood/fancy, /obj/item/reagent_containers/food/snacks/cakeslice/chocolate, /turf/open/floor/carpet, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "aH" = ( /obj/structure/table/wood/fancy, /obj/item/reagent_containers/food/snacks/chowmein, /turf/open/floor/carpet, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "aI" = ( /obj/structure/table/wood/fancy, /obj/item/reagent_containers/food/snacks/dulcedebatataslice, /turf/open/floor/carpet, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "aJ" = ( /obj/structure/table/wood/fancy, /obj/item/reagent_containers/food/snacks/salad/validsalad, /turf/open/floor/carpet, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "aK" = ( /obj/structure/table/wood/fancy, /obj/item/reagent_containers/food/snacks/carneburrito, /turf/open/floor/carpet, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "aL" = ( /obj/structure/table/wood/fancy, /obj/item/reagent_containers/food/snacks/chawanmushi, /turf/open/floor/carpet, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "aM" = ( /obj/machinery/computer/emergency_shuttle, /turf/open/floor/mineral/gold, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "aN" = ( /obj/structure/table/wood/fancy, /obj/item/reagent_containers/food/snacks/melonfruitbowl, /turf/open/floor/carpet, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "aO" = ( /obj/structure/table/wood/fancy, /obj/item/reagent_containers/food/snacks/khachapuri, /turf/open/floor/carpet, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "aP" = ( /obj/structure/table/wood/fancy, /obj/item/reagent_containers/food/snacks/grilledcheese, /turf/open/floor/carpet, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "aQ" = ( /obj/structure/table/wood/fancy, /obj/item/reagent_containers/food/snacks/jelliedtoast/cherry, /turf/open/floor/carpet, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "aR" = ( /obj/structure/table/wood/fancy, /obj/item/reagent_containers/food/snacks/honeybun, /turf/open/floor/carpet, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "aS" = ( /obj/structure/table/wood/fancy, /obj/item/reagent_containers/food/snacks/eggplantparm, /turf/open/floor/carpet, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "aT" = ( /obj/structure/table/wood/fancy, /obj/item/reagent_containers/food/snacks/copypasta, /turf/open/floor/carpet, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "aU" = ( /obj/structure/table/wood/fancy, /obj/item/reagent_containers/food/snacks/bearsteak, /turf/open/floor/carpet, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "aV" = ( /obj/structure/table/wood/fancy, /obj/item/reagent_containers/food/snacks/boiledspaghetti, /turf/open/floor/carpet, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "aW" = ( /obj/structure/table/wood/fancy, /obj/item/reagent_containers/food/snacks/cherrycupcake, /turf/open/floor/carpet, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "aX" = ( /obj/structure/table/wood/fancy, /obj/item/reagent_containers/food/snacks/customizable/pizza, /turf/open/floor/carpet, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "aY" = ( /obj/structure/table/wood/fancy, /obj/item/reagent_containers/food/snacks/hotdog, /turf/open/floor/carpet, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "aZ" = ( /obj/structure/table/wood/fancy, /obj/item/reagent_containers/food/snacks/pie/grapetart, /turf/open/floor/carpet, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "ba" = ( /obj/structure/table/wood/fancy, /obj/item/reagent_containers/food/snacks/burger/superbite, /turf/open/floor/carpet, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "bb" = ( /obj/structure/table/wood/fancy, /obj/item/reagent_containers/food/snacks/cakeslice/slimecake, /turf/open/floor/carpet, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "bc" = ( /obj/machinery/computer/station_alert, /turf/open/floor/mineral/gold, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "bd" = ( /obj/structure/chair/comfy{ dir = 1 }, /turf/open/floor/carpet, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "be" = ( /obj/machinery/computer/crew, /turf/open/floor/mineral/gold, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "bf" = ( /obj/machinery/sleeper{ dir = 4 }, /turf/open/floor/mineral/gold, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "bg" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-21"; @@ -308,26 +308,26 @@ pixel_y = 3 }, /turf/open/floor/mineral/gold, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "bh" = ( /turf/open/floor/plating/beach/coastline_b, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "bi" = ( /obj/machinery/light, /turf/open/floor/mineral/gold, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "bj" = ( /obj/machinery/light{ dir = 8 }, /turf/open/floor/mineral/gold, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "bk" = ( /obj/machinery/light{ dir = 4 }, /turf/open/floor/mineral/gold, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "bl" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-10" @@ -336,25 +336,25 @@ dir = 8 }, /turf/open/floor/mineral/gold, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "bm" = ( /obj/machinery/light{ dir = 4 }, /turf/open/floor/mineral/gold, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "bn" = ( /obj/machinery/light{ dir = 8 }, /turf/open/floor/mineral/gold, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "bo" = ( /obj/machinery/light{ dir = 4 }, /turf/open/floor/mineral/gold, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "bp" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-21"; @@ -363,7 +363,7 @@ }, /obj/machinery/light, /turf/open/floor/mineral/gold, -/area/shuttle/escape) +/area/shuttle/escape/luxury) "bq" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-21"; @@ -372,7 +372,7 @@ }, /obj/machinery/light, /turf/open/floor/mineral/gold, -/area/shuttle/escape) +/area/shuttle/escape/luxury) (1,1,1) = {" aa diff --git a/code/game/area/areas/shuttles.dm b/code/game/area/areas/shuttles.dm index 68ab30478d..21f74972c9 100644 --- a/code/game/area/areas/shuttles.dm +++ b/code/game/area/areas/shuttles.dm @@ -72,6 +72,10 @@ /area/shuttle/escape name = "Emergency Shuttle" +/area/shuttle/escape/luxury + name = "Luxurious Emergency Shuttle" + noteleport = TRUE + /area/shuttle/transport name = "Transport Shuttle" blob_allowed = FALSE From 6fc3da14d4acefac45143f5e5d6b2d42d8d40d12 Mon Sep 17 00:00:00 2001 From: ShizCalev Date: Tue, 24 Oct 2017 12:07:26 -0400 Subject: [PATCH 179/227] Makes staff of change randomly assign a borg module --- code/modules/projectiles/projectile/magic.dm | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/code/modules/projectiles/projectile/magic.dm b/code/modules/projectiles/projectile/magic.dm index f3bc7ab9e0..40bc369bd0 100644 --- a/code/modules/projectiles/projectile/magic.dm +++ b/code/modules/projectiles/projectile/magic.dm @@ -132,16 +132,14 @@ if("monkey") new_mob = new /mob/living/carbon/monkey(M.loc) if("robot") - var/robot = pick("cyborg","syndiborg","drone") + var/robot = pick("random_cyborg","syndiborg","drone") + var/path switch(robot) - if("cyborg") - new_mob = new /mob/living/silicon/robot(M.loc) + if("random_cyborg") + path = pick(typesof(/mob/living/silicon/robot/modules) - typesof(/mob/living/silicon/robot/modules/syndicate)) + new_mob = new path(M.loc) if("syndiborg") - var/path - if(prob(50)) - path = /mob/living/silicon/robot/modules/syndicate - else - path = /mob/living/silicon/robot/modules/syndicate/medical + path = pick(typesof(/mob/living/silicon/robot/modules/syndicate)) new_mob = new path(M.loc) if("drone") new_mob = new /mob/living/simple_animal/drone/polymorphed(M.loc) From 6c89f2c8aa34a59b3688533a6ae78315922ccd4b Mon Sep 17 00:00:00 2001 From: AnturK Date: Tue, 24 Oct 2017 20:27:27 +0200 Subject: [PATCH 181/227] Fixes minor runtime --- code/datums/mind.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/datums/mind.dm b/code/datums/mind.dm index dd389d46d4..3690de2c04 100644 --- a/code/datums/mind.dm +++ b/code/datums/mind.dm @@ -233,8 +233,9 @@ /datum/mind/proc/remove_rev() var/datum/antagonist/rev/rev = has_antag_datum(/datum/antagonist/rev) - remove_antag_datum(rev.type) - special_role = null + if(rev) + remove_antag_datum(rev.type) + special_role = null /datum/mind/proc/remove_antag_equip() var/list/Mob_Contents = current.get_contents() From e92dec4e4cc7387e6f2950ef7f0fdebd369d4b69 Mon Sep 17 00:00:00 2001 From: ShizCalev Date: Thu, 26 Oct 2017 00:41:50 -0400 Subject: [PATCH 183/227] Fixes defib ghost prompt (#32019) * Fixes #32013 * proc instead. --- code/game/objects/items/defib.dm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/defib.dm b/code/game/objects/items/defib.dm index aa54f9ca36..c3ccd1a144 100644 --- a/code/game/objects/items/defib.dm +++ b/code/game/objects/items/defib.dm @@ -286,6 +286,7 @@ var/req_defib = 1 var/combat = 0 //If it penetrates armor and gives additional functionality var/grab_ghost = FALSE + var/tlimit = DEFIB_TIME_LIMIT * 10 /obj/item/twohanded/shockpaddles/proc/recharge(var/time) if(req_defib || !time) @@ -387,11 +388,14 @@ if((!req_defib && grab_ghost) || (req_defib && defib.grab_ghost)) H.notify_ghost_cloning("Your heart is being defibrillated!") H.grab_ghost() // Shove them back in their body. - else if(!H.suiciding && !(H.disabilities & NOCLONE)&& !H.hellbound) + else if(can_defib(H)) H.notify_ghost_cloning("Your heart is being defibrillated. Re-enter your corpse if you want to be revived!", source = src) do_help(H, user) +/obj/item/twohanded/shockpaddles/proc/can_defib(mob/living/carbon/human/H) + var/obj/item/organ/brain/BR = H.getorgan(/obj/item/organ/brain) + return (!H.suiciding && !(H.disabilities & NOCLONE) && !H.hellbound && ((world.time - H.timeofdeath) < tlimit) && (H.getBruteLoss() < 180) && (H.getFireLoss() < 180) && H.getorgan(/obj/item/organ/heart) && BR && !BR.damaged_brain) /obj/item/twohanded/shockpaddles/proc/do_disarm(mob/living/M, mob/living/user) if(req_defib && defib.safety) @@ -481,7 +485,6 @@ var/tplus = world.time - H.timeofdeath // past this much time the patient is unrecoverable // (in deciseconds) - var/tlimit = DEFIB_TIME_LIMIT * 10 // brain damage starts setting in on the patient after // some time left rotting var/tloss = DEFIB_TIME_LOSS * 10 From c016e1e830bb9f8f62be0e7f64c55225880d4c52 Mon Sep 17 00:00:00 2001 From: ShizCalev Date: Mon, 23 Oct 2017 21:54:41 -0400 Subject: [PATCH 185/227] Fixes lightgeist spawning --- .../mob/living/simple_animal/hostile/megafauna/colossus.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/modules/mob/living/simple_animal/hostile/megafauna/colossus.dm b/code/modules/mob/living/simple_animal/hostile/megafauna/colossus.dm index 7cf68dc401..a214895b83 100644 --- a/code/modules/mob/living/simple_animal/hostile/megafauna/colossus.dm +++ b/code/modules/mob/living/simple_animal/hostile/megafauna/colossus.dm @@ -616,7 +616,7 @@ Difficulty: Very Hard pass_flags = PASSTABLE | PASSGRILLE | PASSMOB ventcrawler = VENTCRAWLER_ALWAYS mob_size = MOB_SIZE_TINY - gold_core_spawnable = 0 + gold_core_spawnable = TRUE verb_say = "warps" verb_ask = "floats inquisitively" verb_exclaim = "zaps" @@ -634,7 +634,6 @@ Difficulty: Very Hard environment_smash = ENVIRONMENT_SMASH_NONE AIStatus = AI_OFF stop_automated_movement = 1 - gold_core_spawnable = TRUE var/heal_power = 5 /mob/living/simple_animal/hostile/lightgeist/Initialize() From 50f942ef4e2f172c8001564243dab132a67bdf79 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Mon, 23 Oct 2017 10:06:51 -0400 Subject: [PATCH 187/227] Allows components to qdel from Initialize --- code/__DEFINES/components.dm | 2 ++ code/datums/components/README.md | 6 ++++++ code/datums/components/_component.dm | 5 ++++- 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/code/__DEFINES/components.dm b/code/__DEFINES/components.dm index faf8238b6f..804ec2dc78 100644 --- a/code/__DEFINES/components.dm +++ b/code/__DEFINES/components.dm @@ -2,6 +2,8 @@ #define GET_COMPONENT_FROM(varname, path, target) var##path/##varname = ##target.GetComponent(##path) #define GET_COMPONENT(varname, path) GET_COMPONENT_FROM(varname, path, src) +#define COMPONENT_INCOMPATIBLE 1 + // How multiple components of the exact same type are handled in the same datum #define COMPONENT_DUPE_HIGHLANDER 0 //old component is deleted (default) diff --git a/code/datums/components/README.md b/code/datums/components/README.md index 81218700c1..8d37e15de3 100644 --- a/code/datums/components/README.md +++ b/code/datums/components/README.md @@ -24,6 +24,10 @@ Stands have a lot of procs which mimic mob procs. Rather than inserting hooks fo ## API +### Defines + +1. `COMPONENT_INCOMPATIBLE` Return this from `/datum/component/Initialize` to have the component be deleted if it's applied to an incorrect type. `parent` must not be modified if this is to be returned. + ### Vars 1. `/datum/var/list/datum_components` (private) @@ -60,6 +64,7 @@ Stands have a lot of procs which mimic mob procs. Rather than inserting hooks fo * Sends the `COMSIG_COMPONENT_ADDED` signal to the datum * All components a datum owns are deleted with the datum * Returns the component that was created. Or the old component in a dupe situation where `COMPONENT_DUPE_UNIQUE` was set + * If this tries to add an component to an incompatible type, the component will be deleted and the result will be `null`. This is very unperformant, try not to do it 1. `/datum/proc/LoadComponent(component_type(type), ...) -> datum/component` (public, final) * Equivalent to calling `GetComponent(component_type)` where, if the result would be `null`, returns `AddComponent(component_type, ...)` instead 1. `/datum/proc/ComponentActivated(datum/component/C)` (abstract, async) @@ -80,6 +85,7 @@ Stands have a lot of procs which mimic mob procs. Rather than inserting hooks fo * Component does not exist in `parent`'s `datum_components` list yet, although `parent` is set and may be used * Signals will not be recieved while this function is running * Component may be deleted after this function completes without being attached + * Do not call `qdel(src)` from this function 1. `/datum/component/Destroy()` (virtual, no-sleep) * Sends the `COMSIG_COMPONENT_REMOVING` signal to the parent datum if the `parent` isn't being qdeleted * Properly removes the component from `parent` and cleans up references diff --git a/code/datums/components/_component.dm b/code/datums/components/_component.dm index a4c85f7816..2f70713c32 100644 --- a/code/datums/components/_component.dm +++ b/code/datums/components/_component.dm @@ -9,7 +9,10 @@ parent = P var/list/arguments = args.Copy() arguments.Cut(1, 2) - Initialize(arglist(arguments)) + if(Initialize(arglist(arguments)) == COMPONENT_INCOMPATIBLE) + parent = null + qdel(src) + return var/dm = dupe_mode if(dm != COMPONENT_DUPE_ALLOWED) From 649fe581fd174fd57ebaba170d361263c1f6b79e Mon Sep 17 00:00:00 2001 From: Remie Richards Date: Thu, 26 Oct 2017 11:02:11 +0100 Subject: [PATCH 189/227] Actual performance improvements for GetAllContents (#32029) * Actual performance improvements for GetAllContents * Shaving off literal tens of clock cycles --- code/__HELPERS/unsorted.dm | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/code/__HELPERS/unsorted.dm b/code/__HELPERS/unsorted.dm index d94bfb4c5b..4a9588a685 100644 --- a/code/__HELPERS/unsorted.dm +++ b/code/__HELPERS/unsorted.dm @@ -504,21 +504,19 @@ Turf and target are separate in case you want to teleport some distance from a t return y /* -Recursively gets all contents of contents and returns them all in a list. - -recursive_depth is useful if you only want a turf and everything on it (recursive_depth=1) -Do not set recursive depth higher than MAX_PROC_DEPTH as byond breaks when that limit is reached. + Gets all contents of contents and returns them all in a list. */ -/atom/proc/GetAllContents(list/output=list(), recursive_depth=MAX_PROC_DEPTH, _current_depth=0) - . = output - output += src - if(_current_depth == recursive_depth) - if(_current_depth == MAX_PROC_DEPTH) - WARNING("Get all contents reached the max recursive depth of [MAX_PROC_DEPTH]. More and we would break shit. Offending atom: [src]") - return - for(var/i in 1 to contents.len) - var/atom/thing = contents[i] - thing.GetAllContents(output, recursive_depth, ++_current_depth) +/atom/proc/GetAllContents() + var/list/processing_list = list(src) + var/list/assembled = list() + while(processing_list.len) + var/atom/A = processing_list[1] + processing_list.Cut(1, 2) + //Byond does not allow things to be in multiple contents, or double parent-child hierarchies, so only += is needed + //This is also why we don't need to check against assembled as we go along + processing_list += A.contents + assembled += A + return assembled //Step-towards method of determining whether one atom can see another. Similar to viewers() /proc/can_see(atom/source, atom/target, length=5) // I couldnt be arsed to do actual raycasting :I This is horribly inaccurate. From 28053a603acb89e437224ee52365bc3761c295a8 Mon Sep 17 00:00:00 2001 From: oranges Date: Thu, 26 Oct 2017 23:03:21 +1300 Subject: [PATCH 191/227] Merge pull request #31991 from ShizCalev/reflector-stack-fix fixes reflectors dropping extra mats --- code/game/objects/structures/reflector.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/game/objects/structures/reflector.dm b/code/game/objects/structures/reflector.dm index 1f25c0dbbb..45f9c3614d 100644 --- a/code/game/objects/structures/reflector.dm +++ b/code/game/objects/structures/reflector.dm @@ -58,7 +58,8 @@ playsound(src.loc, W.usesound, 50, 1) to_chat(user, "You dismantle [src].") new framebuildstacktype(loc, framebuildstackamount) - new buildstacktype(loc, buildstackamount) + if(buildstackamount) + new buildstacktype(loc, buildstackamount) qdel(src) else if(istype(W, /obj/item/weldingtool)) var/obj/item/weldingtool/WT = W From 60102f9b7665080a512a59e29839a987665ec2b0 Mon Sep 17 00:00:00 2001 From: oranges Date: Thu, 26 Oct 2017 23:02:52 +1300 Subject: [PATCH 193/227] Merge pull request #32039 from Xhuis/marauders Rebalances clockwork marauders --- code/game/gamemodes/clock_cult/clock_mobs.dm | 6 ++ .../clock_mobs/clockwork_marauder.dm | 60 +++++++++++++------ 2 files changed, 47 insertions(+), 19 deletions(-) diff --git a/code/game/gamemodes/clock_cult/clock_mobs.dm b/code/game/gamemodes/clock_cult/clock_mobs.dm index 37933514f8..bd9c52b19f 100644 --- a/code/game/gamemodes/clock_cult/clock_mobs.dm +++ b/code/game/gamemodes/clock_cult/clock_mobs.dm @@ -54,8 +54,14 @@ else msg += "[t_He] look[t_s] severely dented!\n" msg += "" + var/addendum = examine_info() + if(addendum) + msg += "[addendum]\n" msg += "*---------*" to_chat(user, msg) +/mob/living/simple_animal/hostile/clockwork/proc/examine_info() //Override this on a by-mob basis to have unique examine info + return + /mob/living/simple_animal/hostile/clockwork/proc/update_values() //This is called by certain things to check GLOB.ratvar_awakens and GLOB.ratvar_approaches diff --git a/code/game/gamemodes/clock_cult/clock_mobs/clockwork_marauder.dm b/code/game/gamemodes/clock_cult/clock_mobs/clockwork_marauder.dm index a0396fdec2..1fabeeba3f 100644 --- a/code/game/gamemodes/clock_cult/clock_mobs/clockwork_marauder.dm +++ b/code/game/gamemodes/clock_cult/clock_mobs/clockwork_marauder.dm @@ -1,3 +1,6 @@ +#define MARAUDER_SLOWDOWN_PERCENTAGE 0.40 //Below this percentage of health, marauders will become slower +#define MARAUDER_SHIELD_REGEN_TIME 100 //In deciseconds, how long it takes for shields to regenerate after breaking + //Clockwork marauder: A well-rounded frontline construct. Only one can exist for every two human servants. /mob/living/simple_animal/hostile/clockwork/marauder name = "clockwork marauder" @@ -20,9 +23,26 @@ playstyle_string = "You are a clockwork marauder, a well-rounded frontline construct of Ratvar. Although you have no \ unique abilities, you're a fearsome fighter in one-on-one combat, and your shield protects from projectiles!

    Obey the Servants and do as they \ tell you. Your primary goal is to defend the Ark from destruction; they are your allies in this, and should be protected from harm.
    " - empower_string = "The Anima Bulwark's power flows through you! Your weapon will strike harder, your armor is sturdier, and your shield is considerably more \ - likely to deflect shots." + empower_string = "The Anima Bulwark's power flows through you! Your weapon will strike harder, your armor is sturdier, and your shield is more durable." var/deflect_chance = 40 //Chance to deflect any given projectile (non-damaging energy projectiles are always deflected) + var/max_shield_health = 3 + var/shield_health = 3 //Amount of projectiles that can be deflected within + var/shield_health_regen = 0 //When world.time equals this, shield health will regenerate + +/mob/living/simple_animal/hostile/clockwork/marauder/examine_info() + if(!shield_health) + return "Its shield has been destroyed!" + +/mob/living/simple_animal/hostile/clockwork/marauder/Life() + ..() + if(!GLOB.ratvar_awakens && health / maxHealth <= MARAUDER_SLOWDOWN_PERCENTAGE) + speed = initial(speed) + 1 //Yes, this slows them down + else + speed = initial(speed) + if(shield_health != max_shield_health && world.time >= shield_health_regen) + to_chat(src, "Your shield has recovered. [max_shield_health] blocks remaining!") + playsound_local(src, "shatter", 75, TRUE, frequency = -1) + shield_health = max_shield_health /mob/living/simple_animal/hostile/clockwork/marauder/update_values() if(GLOB.ratvar_awakens) //Massive attack damage bonuses and health increase, because Ratvar @@ -33,6 +53,7 @@ attacktext = "devastates" speed = -1 obj_damage = 100 + max_shield_health = INFINITY else if(GLOB.ratvar_approaches) //Hefty health bonus and slight attack damage increase health = 200 maxHealth = 200 @@ -40,6 +61,7 @@ melee_damage_lower = 15 attacktext = "carves" obj_damage = 50 + max_shield_health = 4 /mob/living/simple_animal/hostile/clockwork/marauder/death(gibbed) visible_message("[src]'s equipment clatters lifelessly to the ground as the red flames within dissipate.", \ @@ -64,21 +86,21 @@ return ..() /mob/living/simple_animal/hostile/clockwork/marauder/proc/deflect_projectile(obj/item/projectile/P) - var/final_deflection_chance = deflect_chance + if(!shield_health) + return var/energy_projectile = istype(P, /obj/item/projectile/energy) || istype(P, /obj/item/projectile/beam) - if(P.nodamage || P.damage_type == STAMINA) - final_deflection_chance = 100 - else if(!energy_projectile) //Flat 40% chance against energy projectiles; ballistic projectiles are 40% - (damage of projectile)%, min. 10% - final_deflection_chance = max(10, deflect_chance - P.damage) - if(GLOB.ratvar_awakens) - final_deflection_chance = 100 - else if(GLOB.ratvar_approaches) - final_deflection_chance = min(100, final_deflection_chance + 20) //20% bonus to deflection if the servants heralded Ratvar - if(prob(final_deflection_chance)) - visible_message("[src] deflects [P] with their shield!", \ - "You block [P] with your shield!") - if(energy_projectile) - playsound(src, 'sound/weapons/effects/searwall.ogg', 50, TRUE) - else - playsound(src, "ricochet", 50, TRUE) - . = TRUE + visible_message("[src] deflects [P] with their shield!", \ + "You block [P] with your shield! Blocks left: [shield_health - 1]") + if(energy_projectile) + playsound(src, 'sound/weapons/effects/searwall.ogg', 50, TRUE) + else + playsound(src, "ricochet", 50, TRUE) + shield_health-- + if(!shield_health) + visible_message("[src]'s shield breaks from deflecting the attack!", "Your shield breaks! Give it some time to recover...") + playsound(src, "shatter", 100, TRUE) + shield_health_regen = world.time + MARAUDER_SHIELD_REGEN_TIME + return TRUE + +#undef MARAUDER_SLOWDOWN_PERCENTAGE +#undef MARAUDER_SHIELD_REGEN_TIME From c3dbb8925ba146295e994edb17c02ebb8380ab28 Mon Sep 17 00:00:00 2001 From: oranges Date: Thu, 26 Oct 2017 23:03:52 +1300 Subject: [PATCH 195/227] Merge pull request #31987 from Cyberboss/InlineCO May as well shave some yaks --- .../subsystem/processing/overlays.dm | 34 +++++++++++-------- .../mob/dead/new_player/preferences_setup.dm | 2 +- 2 files changed, 21 insertions(+), 15 deletions(-) diff --git a/code/controllers/subsystem/processing/overlays.dm b/code/controllers/subsystem/processing/overlays.dm index fba4ebcaf0..c03b1eafb7 100644 --- a/code/controllers/subsystem/processing/overlays.dm +++ b/code/controllers/subsystem/processing/overlays.dm @@ -26,13 +26,32 @@ PROCESSING_SUBSYSTEM_DEF(overlays) overlay_icon_cache = SSoverlays.overlay_icon_cache processing = SSoverlays.processing +#define COMPILE_OVERLAYS(A)\ + var/list/oo = A.our_overlays;\ + var/list/po = A.priority_overlays;\ + if(LAZYLEN(po)){\ + if(LAZYLEN(oo)){\ + A.overlays = oo + po;\ + }\ + else{\ + A.overlays = po;\ + }\ + }\ + else if(LAZYLEN(oo)){\ + A.overlays = oo;\ + }\ + else{\ + A.overlays.Cut();\ + }\ + A.flags_1 &= ~OVERLAY_QUEUED_1 + /datum/controller/subsystem/processing/overlays/fire(resumed = FALSE, mc_check = TRUE) var/list/processing = src.processing while(processing.len) var/atom/thing = processing[processing.len] processing.len-- if(thing) - thing.compile_overlays() + COMPILE_OVERLAYS(thing) if(mc_check) if(MC_TICK_CHECK) break @@ -44,19 +63,6 @@ PROCESSING_SUBSYSTEM_DEF(overlays) testing("Flushing [processing.len] overlays") fire(mc_check = FALSE) //pair this thread up with the MC to get extra compile time -/atom/proc/compile_overlays() - var/list/oo = our_overlays - var/list/po = priority_overlays - if(LAZYLEN(po) && LAZYLEN(oo)) - overlays = oo + po - else if(LAZYLEN(oo)) - overlays = oo - else if(LAZYLEN(po)) - overlays = po - else - overlays.Cut() - flags_1 &= ~OVERLAY_QUEUED_1 - /proc/iconstate2appearance(icon, iconstate) var/static/image/stringbro = new() var/list/icon_states_cache = SSoverlays.overlay_icon_state_caches diff --git a/code/modules/mob/dead/new_player/preferences_setup.dm b/code/modules/mob/dead/new_player/preferences_setup.dm index 831fde141e..01c3e6d630 100644 --- a/code/modules/mob/dead/new_player/preferences_setup.dm +++ b/code/modules/mob/dead/new_player/preferences_setup.dm @@ -59,7 +59,7 @@ if(previewJob && !nude) mannequin.job = previewJob.title previewJob.equip(mannequin, TRUE) - mannequin.compile_overlays() + COMPILE_OVERLAYS(mannequin) CHECK_TICK preview_icon = icon('icons/effects/effects.dmi', "nothing") preview_icon.Scale(48+32, 16+32) From 76efd703da754729ef9d16ab3619cc85b2f12caa Mon Sep 17 00:00:00 2001 From: Kyle Spier-Swenson Date: Thu, 26 Oct 2017 03:07:26 -0700 Subject: [PATCH 197/227] Webhook processor no longer removes [tags] from titles (#32053) * Webhook processor no longer removes [tags] from titles This was shit * Does the oranges --- tools/WebhookProcessor/github_webhook_processor.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/tools/WebhookProcessor/github_webhook_processor.php b/tools/WebhookProcessor/github_webhook_processor.php index 40583d94c4..da5b037237 100644 --- a/tools/WebhookProcessor/github_webhook_processor.php +++ b/tools/WebhookProcessor/github_webhook_processor.php @@ -167,8 +167,6 @@ function check_tag_and_replace($payload, $title_tag, $label, &$array_to_add_labe $title = $payload['pull_request']['title']; if(stripos($title, $title_tag) !== FALSE){ $array_to_add_label_to[] = $label; - $title = trim(str_ireplace($title_tag, '', $title)); - apisend($payload['pull_request']['url'], 'PATCH', array('title' => $title)); return true; } return false; From 55cad46845217b4ab6b17756d0b2fe8b0831445f Mon Sep 17 00:00:00 2001 From: deathride58 Date: Thu, 26 Oct 2017 12:21:28 -0400 Subject: [PATCH 199/227] Adds a button to let people ahelping know their issue is being handled --- code/modules/admin/verbs/adminhelp.dm | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/code/modules/admin/verbs/adminhelp.dm b/code/modules/admin/verbs/adminhelp.dm index 3889872275..0135bfbfa0 100644 --- a/code/modules/admin/verbs/adminhelp.dm +++ b/code/modules/admin/verbs/adminhelp.dm @@ -237,6 +237,7 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new) . += " (
    IC)" . += " (CLOSE)" . += " (RSLVE)" + . += " (HANDLE)" //private /datum/admin_help/proc/LinkedReplyName(ref_src) @@ -382,6 +383,22 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new) AddInteraction("Marked as IC issue by [key_name]") Resolve(silent = TRUE) +//Let the initiator know their ahelp is being handled +/datum/admin_help/proc/HandleIssue(key_name = key_name_admin(usr)) + if(state != AHELP_ACTIVE) + return + + var/msg = "Your ticket is now being handled by an admin. Please be patient." + + if(initiator) + to_chat(initiator, msg) + + SSblackbox.inc("ahelp_handleissue") + msg = "Ticket [TicketHref("#[id]")] is being handled by [key_name]" + message_admins(msg) + log_admin_private(msg) + AddInteraction("Being handled by [key_name]") + //Show the ticket panel /datum/admin_help/proc/TicketPanel() var/list/dat = list("Ticket #[id]") @@ -442,6 +459,8 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new) Close() if("resolve") Resolve() + if("handleissue") + HandleIssue() if("reopen") Reopen() @@ -489,9 +508,9 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new) return if(handle_spam_prevention(msg,MUTE_ADMINHELP)) return - + msg = trim(msg) - + if(!msg) return From 1770341ee38776c117fcf9a4821bf0689095ff70 Mon Sep 17 00:00:00 2001 From: deathride58 Date: Thu, 26 Oct 2017 13:56:10 -0400 Subject: [PATCH 200/227] converts vore verbs to actual verbs --- code/modules/vore/eating/living_vr.dm | 10 +++++----- code/modules/vore/eating/vorepanel_vr.dm | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm index b7ace801cd..6c3b331126 100644 --- a/code/modules/vore/eating/living_vr.dm +++ b/code/modules/vore/eating/living_vr.dm @@ -13,12 +13,12 @@ // Hook for generic creation of stuff on new creatures // /hook/living_new/proc/vore_setup(mob/living/M) - M.verbs += /mob/living/proc/escapeOOC - M.verbs += /mob/living/proc/lick + M.verbs += /mob/living/verb/escapeOOC + M.verbs += /mob/living/verb/lick if(M.no_vore) //If the mob isn's supposed to have a stomach, let's not give it an insidepanel so it can make one for itself, or a stomach. M << "The creature that you are can not eat others." return TRUE - M.verbs += /mob/living/proc/insidePanel + M.verbs += /mob/living/verb/insidePanel //Tries to load prefs if a client is present otherwise gives freebie stomach if(!M.vore_organs || !M.vore_organs.len) @@ -289,7 +289,7 @@ // OOC Escape code for pref-breaking or AFK preds // -/mob/living/proc/escapeOOC() +/mob/living/verb/escapeOOC() set name = "Animal Escape" set category = "Vore" @@ -373,7 +373,7 @@ // // Clearly super important. Obviously. // -/mob/living/proc/lick(var/mob/living/tasted in oview(1)) +/mob/living/verb/lick(var/mob/living/tasted in oview(1)) set name = "Lick Someone" set category = "Vore" set desc = "Lick someone nearby!" diff --git a/code/modules/vore/eating/vorepanel_vr.dm b/code/modules/vore/eating/vorepanel_vr.dm index 0f01a4c9e3..ac367e3aad 100644 --- a/code/modules/vore/eating/vorepanel_vr.dm +++ b/code/modules/vore/eating/vorepanel_vr.dm @@ -8,7 +8,7 @@ #define BELLIES_DESC_MAX 1024 #define FLAVOR_MAX 40 -/mob/living/proc/insidePanel() +/mob/living/verb/insidePanel() set name = "Vore Panel" set category = "Vore" From 3f1857ce4f1c6a1b87ce24d73a9f08890441c00a Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 26 Oct 2017 13:21:50 -0500 Subject: [PATCH 201/227] Automatic changelog generation for PR #3614 [ci skip] --- html/changelogs/AutoChangeLog-pr-3614.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3614.yml diff --git a/html/changelogs/AutoChangeLog-pr-3614.yml b/html/changelogs/AutoChangeLog-pr-3614.yml new file mode 100644 index 0000000000..f14c2f29a5 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3614.yml @@ -0,0 +1,4 @@ +author: "ShizCalev" +delete-after: True +changes: + - bugfix: "You can no longer teleport past the ticket stands of the Luxury Emergency Shuttle." From e7c69850a13051f4f82fe9fa90223ade47040a8f Mon Sep 17 00:00:00 2001 From: deathride58 Date: Thu, 26 Oct 2017 14:31:55 -0400 Subject: [PATCH 202/227] Wait shit what am i doing - fixes voreverbs proper --- code/modules/mob/mob.dm | 3 ++- code/modules/vore/eating/living_vr.dm | 10 +++++----- code/modules/vore/eating/vorepanel_vr.dm | 2 +- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index beb64a9e6e..ddd1d3e2dc 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -31,6 +31,7 @@ continue var/datum/atom_hud/alternate_appearance/AA = v AA.onNewMob(src) + hook_vr("mob_new",list(src)) . = ..() /atom/proc/prepare_huds() @@ -389,7 +390,7 @@ pulling = null grab_state = 0 update_pull_hud_icon() - + if(isliving(ex_pulled)) var/mob/living/L = ex_pulled L.update_canmove()// mob gets up if it was lyng down in a chokehold diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm index 6c3b331126..b7ace801cd 100644 --- a/code/modules/vore/eating/living_vr.dm +++ b/code/modules/vore/eating/living_vr.dm @@ -13,12 +13,12 @@ // Hook for generic creation of stuff on new creatures // /hook/living_new/proc/vore_setup(mob/living/M) - M.verbs += /mob/living/verb/escapeOOC - M.verbs += /mob/living/verb/lick + M.verbs += /mob/living/proc/escapeOOC + M.verbs += /mob/living/proc/lick if(M.no_vore) //If the mob isn's supposed to have a stomach, let's not give it an insidepanel so it can make one for itself, or a stomach. M << "The creature that you are can not eat others." return TRUE - M.verbs += /mob/living/verb/insidePanel + M.verbs += /mob/living/proc/insidePanel //Tries to load prefs if a client is present otherwise gives freebie stomach if(!M.vore_organs || !M.vore_organs.len) @@ -289,7 +289,7 @@ // OOC Escape code for pref-breaking or AFK preds // -/mob/living/verb/escapeOOC() +/mob/living/proc/escapeOOC() set name = "Animal Escape" set category = "Vore" @@ -373,7 +373,7 @@ // // Clearly super important. Obviously. // -/mob/living/verb/lick(var/mob/living/tasted in oview(1)) +/mob/living/proc/lick(var/mob/living/tasted in oview(1)) set name = "Lick Someone" set category = "Vore" set desc = "Lick someone nearby!" diff --git a/code/modules/vore/eating/vorepanel_vr.dm b/code/modules/vore/eating/vorepanel_vr.dm index ac367e3aad..0f01a4c9e3 100644 --- a/code/modules/vore/eating/vorepanel_vr.dm +++ b/code/modules/vore/eating/vorepanel_vr.dm @@ -8,7 +8,7 @@ #define BELLIES_DESC_MAX 1024 #define FLAVOR_MAX 40 -/mob/living/verb/insidePanel() +/mob/living/proc/insidePanel() set name = "Vore Panel" set category = "Vore" From ad911c2b1b714a412c44b2e1e69f7134c10d613c Mon Sep 17 00:00:00 2001 From: ktccd Date: Thu, 26 Oct 2017 21:19:34 +0200 Subject: [PATCH 203/227] Undoes Borer HUDs Critical flaw in antag-HUD system prevented proper use, since automatic reverting of original PR is no longer possible, (Probably due to another antag-hud being added afterwards), this is a manual one. --- code/__DEFINES/atom_hud.dm | 3 +-- code/datums/hud.dm | 1 - code/game/gamemodes/antag_spawner_cit.dm | 2 +- code/game/gamemodes/miniantags/borer/borer.dm | 26 ------------------- 4 files changed, 2 insertions(+), 30 deletions(-) diff --git a/code/__DEFINES/atom_hud.dm b/code/__DEFINES/atom_hud.dm index d4b2dfb2db..3c3350d6ab 100644 --- a/code/__DEFINES/atom_hud.dm +++ b/code/__DEFINES/atom_hud.dm @@ -40,8 +40,7 @@ #define ANTAG_HUD_SINTOUCHED 16 #define ANTAG_HUD_SOULLESS 17 #define ANTAG_HUD_CLOCKWORK 18 -#define ANTAG_HUD_BORER 19 -#define ANTAG_HUD_BROTHER 20 +#define ANTAG_HUD_BROTHER 19 // Notification action types #define NOTIFY_JUMP "jump" diff --git a/code/datums/hud.dm b/code/datums/hud.dm index 60a53967ae..98d2c9258a 100644 --- a/code/datums/hud.dm +++ b/code/datums/hud.dm @@ -20,7 +20,6 @@ GLOBAL_LIST_INIT(huds, list( ANTAG_HUD_SINTOUCHED = new/datum/atom_hud/antag/hidden(), ANTAG_HUD_SOULLESS = new/datum/atom_hud/antag/hidden(), ANTAG_HUD_CLOCKWORK = new/datum/atom_hud/antag(), - ANTAG_HUD_BORER = new/datum/atom_hud/antag(), ANTAG_HUD_BROTHER = new/datum/atom_hud/antag/hidden(), )) diff --git a/code/game/gamemodes/antag_spawner_cit.dm b/code/game/gamemodes/antag_spawner_cit.dm index 34e72d9004..4cdc096072 100644 --- a/code/game/gamemodes/antag_spawner_cit.dm +++ b/code/game/gamemodes/antag_spawner_cit.dm @@ -26,7 +26,7 @@ obj/item/antag_spawner/syndi_borer/spawn_antag(client/C, turf/T, mob/owner) to_chat(B, "You are awake at last! Seek out whoever released you and aid them as best you can!") if(new_objective) to_chat(B, "Objective #[1]: [new_objective.explanation_text]") - SSticker.mode.update_borer_icons_added(B) + /obj/item/antag_spawner/syndi_borer/proc/check_usability(mob/user) if(used) to_chat(user, "[src] appears to be empty!") diff --git a/code/game/gamemodes/miniantags/borer/borer.dm b/code/game/gamemodes/miniantags/borer/borer.dm index aaeee27985..f80a5e3402 100644 --- a/code/game/gamemodes/miniantags/borer/borer.dm +++ b/code/game/gamemodes/miniantags/borer/borer.dm @@ -415,7 +415,6 @@ GLOBAL_VAR_INIT(total_borer_hosts_needed, 10) victim = C forceMove(victim) - SSticker.mode.update_borer_icons_added_host(victim.mind) RemoveBorerActions() GrantInfestActions() @@ -591,7 +590,6 @@ GLOBAL_VAR_INIT(total_borer_hosts_needed, 10) var/mob/living/V = victim V.verbs -= /mob/living/proc/borer_comm talk_to_borer_action.Remove(victim) - SSticker.mode.update_borer_icons_removed_host(victim.mind) victim = null return @@ -1099,27 +1097,3 @@ GLOBAL_VAR_INIT(total_borer_hosts_needed, 10) /datum/action/innate/borer/jumpstart_host/Activate() var/mob/living/simple_animal/borer/B = owner B.jumpstart() - - -//HUD STUFF -/datum/game_mode/proc/update_borer_icons_added(datum/mind/borer_mind) - var/datum/atom_hud/antag/borerhud = GLOB.huds[ANTAG_HUD_BORER] - borerhud.join_hud(borer_mind.current) - set_antag_hud(borer_mind.current, "hudbrainworm") - -/datum/game_mode/proc/update_borer_icons_removed(datum/mind/borer_mind) - var/datum/atom_hud/antag/borerhud = GLOB.huds[ANTAG_HUD_BORER] - borerhud.leave_hud(borer_mind.current) - set_antag_hud(borer_mind.current, null) - -/datum/game_mode/proc/update_borer_icons_added_host(datum/mind/host_mind) - var/datum/atom_hud/antag/hosthud = GLOB.huds[ANTAG_HUD_BORER] //Invisible to self - hosthud.self_visible = FALSE - hosthud.join_hud(host_mind.current) - set_antag_hud(host_mind.current, "hudbrainworm") - -/datum/game_mode/proc/update_borer_icons_removed_host(datum/mind/host_mind) - var/datum/atom_hud/antag/hosthud = GLOB.huds[ANTAG_HUD_BORER] //Invisible to self - hosthud.self_visible = FALSE //Probably not needed as we're deleting? - hosthud.leave_hud(host_mind.current) - set_antag_hud(host_mind.current, null) From 4fd775ee1d899a3c67369ac0ba368f19fd123d66 Mon Sep 17 00:00:00 2001 From: deathride58 Date: Thu, 26 Oct 2017 16:28:07 -0400 Subject: [PATCH 204/227] Fixes LOOC error messages not appearing --- code/modules/client/verbs/looc.dm | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/code/modules/client/verbs/looc.dm b/code/modules/client/verbs/looc.dm index 42c20a2dc6..5e07134d4f 100644 --- a/code/modules/client/verbs/looc.dm +++ b/code/modules/client/verbs/looc.dm @@ -4,12 +4,12 @@ set category = "OOC" if(GLOB.say_disabled) //This is here to try to identify lag problems - usr << " Speech is currently admin-disabled." + to_chat(usr, " Speech is currently admin-disabled.") return if(!mob) return if(IsGuestKey(key)) - src << "Guests may not use OOC." + to_chat(src, "Guests may not use OOC.") return msg = copytext(sanitize(msg), 1, MAX_MESSAGE_LEN) @@ -17,23 +17,23 @@ return if(!(prefs.toggles & CHAT_OOC)) - src << " You have OOC muted." + to_chat(src, " You have OOC muted.") return if(!holder) if(!GLOB.ooc_allowed) - src << " OOC is globally muted" + to_chat(src, " OOC is globally muted") return if(!GLOB.dooc_allowed && (mob.stat == DEAD)) - usr << " OOC for dead mobs has been turned off." + to_chat(usr, " OOC for dead mobs has been turned off.") return if(prefs.muted & MUTE_OOC) - src << " You cannot use OOC (muted)." + to_chat(src, " You cannot use OOC (muted).") return if(handle_spam_prevention(msg,MUTE_OOC)) return if(findtext(msg, "byond://")) - src << "Advertising other servers is not allowed." + to_chat(src, "Advertising other servers is not allowed.") log_admin("[key_name(src)] has attempted to advertise in LOOC: [msg]") return From 7e911565804f51f3c3a505b817b1d455f25c999d Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 26 Oct 2017 15:51:06 -0500 Subject: [PATCH 205/227] Automatic changelog generation for PR #3603 [ci skip] --- html/changelogs/AutoChangeLog-pr-3603.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3603.yml diff --git a/html/changelogs/AutoChangeLog-pr-3603.yml b/html/changelogs/AutoChangeLog-pr-3603.yml new file mode 100644 index 0000000000..502e536684 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3603.yml @@ -0,0 +1,4 @@ +author: "Xhuis" +delete-after: True +changes: + - bugfix: "You can no longer stack infinitely many stargazers on one tile." From 5e237e956ee4b0934f7191ef4371e26ad65b8914 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 26 Oct 2017 15:51:55 -0500 Subject: [PATCH 206/227] Automatic changelog generation for PR #3604 [ci skip] --- html/changelogs/AutoChangeLog-pr-3604.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3604.yml diff --git a/html/changelogs/AutoChangeLog-pr-3604.yml b/html/changelogs/AutoChangeLog-pr-3604.yml new file mode 100644 index 0000000000..d4bbd36f07 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3604.yml @@ -0,0 +1,4 @@ +author: "Xhuis" +delete-after: True +changes: + - bugfix: "Cogscarab shells and marauder armor now appear in the spawners menu." From 67c93bc430ea2c644a447774f44624633c0475d2 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 26 Oct 2017 15:53:10 -0500 Subject: [PATCH 207/227] Automatic changelog generation for PR #3606 [ci skip] --- html/changelogs/AutoChangeLog-pr-3606.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3606.yml diff --git a/html/changelogs/AutoChangeLog-pr-3606.yml b/html/changelogs/AutoChangeLog-pr-3606.yml new file mode 100644 index 0000000000..74fb1e3772 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3606.yml @@ -0,0 +1,6 @@ +author: "ninjanomnom & Wjohn" +delete-after: True +changes: + - bugfix: "Cable cuffs now inherit the color of the cables used to make them." + - bugfix: "Split cable stacks keep their color." + - tweak: "The blue cable color is now a better blue." From 3af668d69701cadf4db00a5e906a7eed3d5e0924 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 26 Oct 2017 15:54:34 -0500 Subject: [PATCH 208/227] Automatic changelog generation for PR #3610 [ci skip] --- html/changelogs/AutoChangeLog-pr-3610.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3610.yml diff --git a/html/changelogs/AutoChangeLog-pr-3610.yml b/html/changelogs/AutoChangeLog-pr-3610.yml new file mode 100644 index 0000000000..4d7996fd0c --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3610.yml @@ -0,0 +1,4 @@ +author: "nicbn" +delete-after: True +changes: + - imageadd: "Chemical heater and smoke machine resprited." From df3c60bce5ca261448f715b1a98d76f280d0c043 Mon Sep 17 00:00:00 2001 From: deathride58 Date: Thu, 26 Oct 2017 22:54:49 -0400 Subject: [PATCH 209/227] drunk coding is a horrible idea --- code/citadel/cit_miscreants.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/citadel/cit_miscreants.dm b/code/citadel/cit_miscreants.dm index ec5ff0156f..7238283dc6 100644 --- a/code/citadel/cit_miscreants.dm +++ b/code/citadel/cit_miscreants.dm @@ -7,7 +7,7 @@ return if(!crewMind.assigned_role) return - if(ROLE_MISCREANT in crewMind.current.client.prefs.be_special) + if(!(ROLE_MISCREANT in crewMind.current.client.prefs.be_special)) return if(jobban_isbanned(crewMind, "Syndicate")) return From eb4f6326d7d0bc581375bdac0c1e518180ef0ad3 Mon Sep 17 00:00:00 2001 From: as334 Date: Fri, 27 Oct 2017 00:11:56 -0400 Subject: [PATCH 210/227] Assmos part 1, #2 --- _maps/map_files/BoxStation/BoxStation.dmm | 4 +- .../map_files/Deltastation/DeltaStation2.dmm | 1 - _maps/map_files/MetaStation/MetaStation.dmm | 4 +- code/__DEFINES/atmospherics.dm | 25 +- code/game/objects/items/theft_tools.dm | 6 +- code/game/turfs/open.dm | 5 - .../atmospherics/environmental/LINDA_fire.dm | 10 +- .../atmospherics/gasmixtures/gas_mixture.dm | 5 +- .../atmospherics/gasmixtures/gas_types.dm | 44 ++- .../atmospherics/gasmixtures/reactions.dm | 303 +++++++++++++----- .../atmospherics/machinery/airalarm.dm | 86 +++-- .../components/unary_devices/tank.dm | 3 - .../components/unary_devices/vent_scrubber.dm | 68 ++-- .../atmospherics/machinery/other/miner.dm | 15 - .../machinery/portable/canister.dm | 39 ++- .../machinery/portable/scrubber.dm | 2 +- code/modules/cargo/packs.dm | 17 - code/modules/holodeck/turfs.dm | 2 +- code/modules/mob/living/carbon/life.dm | 10 + code/modules/power/supermatter/supermatter.dm | 18 +- .../chemistry/reagents/other_reagents.dm | 28 ++ .../chemistry/recipes/slime_extracts.dm | 2 +- code/modules/surgery/organs/lungs.dm | 37 ++- icons/effects/tile_effects.dmi | Bin 2861 -> 4199 bytes tgui/src/interfaces/airalarm/scrubbers.ract | 6 +- tgui/src/interfaces/atmos_filter.ract | 12 +- 26 files changed, 491 insertions(+), 261 deletions(-) diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index e580d6323f..988afb163f 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -53799,7 +53799,7 @@ /turf/open/floor/plasteel, /area/engine/engineering) "cCW" = ( -/obj/machinery/portable_atmospherics/canister/freon, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, /turf/open/floor/plating, /area/engine/engineering) "cCY" = ( @@ -86226,7 +86226,7 @@ bVI cay ccw chY -cCW +ciZ ciW ckB ckB diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm index 2e41702eb7..1308cf7c87 100644 --- a/_maps/map_files/Deltastation/DeltaStation2.dmm +++ b/_maps/map_files/Deltastation/DeltaStation2.dmm @@ -57403,7 +57403,6 @@ dir = 8 }, /obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/freon, /turf/open/floor/plasteel, /area/engine/engineering) "cqt" = ( diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm index aa5a62d079..1b1913ef26 100644 --- a/_maps/map_files/MetaStation/MetaStation.dmm +++ b/_maps/map_files/MetaStation/MetaStation.dmm @@ -77655,7 +77655,7 @@ /turf/open/floor/plating, /area/engine/engineering) "deZ" = ( -/obj/machinery/portable_atmospherics/canister/freon, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, /turf/open/floor/plating, /area/engine/engineering) "dfa" = ( @@ -120449,7 +120449,7 @@ aGS axY aJl aKx -deZ +aJu aNo axY aPW diff --git a/code/__DEFINES/atmospherics.dm b/code/__DEFINES/atmospherics.dm index 1273b5e3de..87f16da081 100644 --- a/code/__DEFINES/atmospherics.dm +++ b/code/__DEFINES/atmospherics.dm @@ -56,28 +56,16 @@ #define FIRE_MINIMUM_TEMPERATURE_TO_SPREAD 150+T0C #define FIRE_MINIMUM_TEMPERATURE_TO_EXIST 100+T0C #define FIRE_SPREAD_RADIOSITY_SCALE 0.85 -#define FIRE_CARBON_ENERGY_RELEASED 500000 //Amount of heat released per mole of burnt carbon into the tile -#define FIRE_PLASMA_ENERGY_RELEASED 3000000 //Amount of heat released per mole of burnt plasma into the tile #define FIRE_GROWTH_RATE 40000 //For small fires #define CARBON_LIFEFORM_FIRE_RESISTANCE 200+T0C //Resistance to fire damage #define CARBON_LIFEFORM_FIRE_DAMAGE 4 //Fire damage - //Plasma fire properties -#define OXYGEN_BURN_RATE_BASE 1.4 -#define PLASMA_BURN_RATE_DELTA 9 -#define PLASMA_MINIMUM_BURN_TEMPERATURE 100+T0C -#define PLASMA_UPPER_TEMPERATURE 1370+T0C -#define PLASMA_MINIMUM_OXYGEN_NEEDED 2 -#define PLASMA_MINIMUM_OXYGEN_PLASMA_RATIO 30 -#define PLASMA_OXYGEN_FULLBURN 10 #define MIN_TOXIC_GAS_DAMAGE 1 #define MAX_TOXIC_GAS_DAMAGE 10 -#define MOLES_PLASMA_VISIBLE 0.5 //Moles in a standard cell after which plasma is visible - //Plasma fusion properties -#define PLASMA_BINDING_ENERGY 3000000 -#define MAX_CARBON_EFFICENCY 9 -#define PLASMA_FUSED_COEFFICENT 0.08 -#define CARBON_CATALYST_COEFFICENT 0.01 -#define FUSION_PURITY_THRESHOLD 0.9 +#define MOLES_GAS_VISIBLE 0.5 //Moles in a standard cell after which gases are visible +#define STOP_REACTIONS 2 +#define PLASMA_MINIMUM_BURN_TEMPERATURE 100+T0C +#define GAS_STIM_MINIMUM 0.002 + // Pressure limits. #define HAZARD_HIGH_PRESSURE 550 //This determins at what pressure the ultra-high pressure red icon is displayed. (This one is set as a constant) #define WARNING_HIGH_PRESSURE 325 //This determins when the orange pressure icon is displayed (it is 0.7 * HAZARD_HIGH_PRESSURE) @@ -193,8 +181,7 @@ #define THERMAL_ENERGY(gas) (gas.temperature * gas.heat_capacity()) #define ADD_GAS(gas_id, out_list)\ - var/list/tmp_gaslist = GLOB.gaslist_cache[gas_id];\ - out_list[gas_id] = tmp_gaslist.Copy(); + var/list/tmp_gaslist = GLOB.gaslist_cache[gas_id]; out_list[gas_id] = tmp_gaslist.Copy(); //ASSERT_GAS(gas_id, gas_mixture) - used to guarantee that the gas list for this id exists in gas_mixture.gases. //Must be used before adding to a gas. May be used before reading from a gas. diff --git a/code/game/objects/items/theft_tools.dm b/code/game/objects/items/theft_tools.dm index 628b731197..5f3e493677 100644 --- a/code/game/objects/items/theft_tools.dm +++ b/code/game/objects/items/theft_tools.dm @@ -157,7 +157,7 @@ /obj/item/nuke_core_container/supermatter name = "supermatter bin" - desc = "A tiny receptacle that releases an inert freon mix upon sealing, allowing a sliver of a supermatter crystal to be safely stored.." + desc = "A tiny receptacle that releases an inert hyper-noblium mix upon sealing, allowing a sliver of a supermatter crystal to be safely stored.." var/obj/item/nuke_core/supermatter_sliver/sliver /obj/item/nuke_core_container/supermatter/Destroy() @@ -193,7 +193,7 @@ /obj/item/scalpel/supermatter name = "supermatter scalpel" - desc = "A scalpel with a tip of condensed freon gas, searingly cold to the touch, that can safely shave a sliver off a supermatter crystal." + desc = "A scalpel with a tip of condensed hyper-noblium gas, searingly cold to the touch, that can safely shave a sliver off a supermatter crystal." icon = 'icons/obj/nuke_tools.dmi' icon_state = "supermatter_scalpel" toolspeed = 0.5 @@ -202,7 +202,7 @@ /obj/item/hemostat/supermatter name = "supermatter extraction tongs" - desc = "A pair of tongs made from condensed freon gas, searingly cold to the touch, that can safely grip a supermatter sliver." + desc = "A pair of tongs made from condensed hyper-noblium gas, searingly cold to the touch, that can safely grip a supermatter sliver." icon = 'icons/obj/nuke_tools.dmi' icon_state = "supermatter_tongs" toolspeed = 0.75 diff --git a/code/game/turfs/open.dm b/code/game/turfs/open.dm index 3f5cb9b27f..d227710b32 100644 --- a/code/game/turfs/open.dm +++ b/code/game/turfs/open.dm @@ -177,11 +177,6 @@ for(var/obj/effect/O in src) if(is_cleanable(O)) qdel(O) - - var/obj/effect/hotspot/hotspot = (locate(/obj/effect/hotspot) in src) - if(hotspot && !isspaceturf(src)) - air.temperature = max(min(air.temperature-2000,air.temperature/2),0) - qdel(hotspot) return 1 /turf/open/handle_slip(mob/living/carbon/C, knockdown_amount, obj/O, lube) diff --git a/code/modules/atmospherics/environmental/LINDA_fire.dm b/code/modules/atmospherics/environmental/LINDA_fire.dm index 94b1b8ee45..025c05f6d4 100644 --- a/code/modules/atmospherics/environmental/LINDA_fire.dm +++ b/code/modules/atmospherics/environmental/LINDA_fire.dm @@ -14,10 +14,10 @@ var/oxy = air_contents.gases[/datum/gas/oxygen] ? air_contents.gases[/datum/gas/oxygen][MOLES] : 0 var/tox = air_contents.gases[/datum/gas/plasma] ? air_contents.gases[/datum/gas/plasma][MOLES] : 0 - + var/trit = air_contents.gases[/datum/gas/tritium] ? air_contents.gases[/datum/gas/tritium][MOLES] : 0 if(active_hotspot) if(soh) - if(tox > 0.5 && oxy > 0.5) + if((tox > 0.5 || trit > 0.5) && oxy > 0.5) if(active_hotspot.temperature < exposed_temperature) active_hotspot.temperature = exposed_temperature if(active_hotspot.volume < exposed_volume) @@ -26,11 +26,11 @@ var/igniting = 0 - if((exposed_temperature > PLASMA_MINIMUM_BURN_TEMPERATURE) && tox > 0.5) + if((exposed_temperature > PLASMA_MINIMUM_BURN_TEMPERATURE) && (tox > 0.5 || trit > 0.5)) igniting = 1 if(igniting) - if(oxy < 0.5 || tox < 0.5) + if(oxy < 0.5) return 0 active_hotspot = new /obj/effect/hotspot(src) @@ -112,7 +112,7 @@ qdel(src) return - if(!(location.air) || !location.air.gases[/datum/gas/plasma] || !location.air.gases[/datum/gas/oxygen] || location.air.gases[/datum/gas/plasma][MOLES] < 0.5 || location.air.gases[/datum/gas/oxygen][MOLES] < 0.5) + if(!(location.air) || !(location.air.gases[/datum/gas/plasma] || location.air.gases[/datum/gas/tritium]) || !location.air.gases[/datum/gas/oxygen] || (location.air.gases[/datum/gas/plasma][MOLES] < 0.5 && location.air.gases[/datum/gas/tritium][MOLES] < 0.5) || location.air.gases[/datum/gas/oxygen][MOLES] < 0.5) qdel(src) return diff --git a/code/modules/atmospherics/gasmixtures/gas_mixture.dm b/code/modules/atmospherics/gasmixtures/gas_mixture.dm index 9b5ea089c2..8ddde526a7 100644 --- a/code/modules/atmospherics/gasmixtures/gas_mixture.dm +++ b/code/modules/atmospherics/gasmixtures/gas_mixture.dm @@ -6,7 +6,6 @@ What are the archived variables for? #define MINIMUM_HEAT_CAPACITY 0.0003 #define QUANTIZE(variable) (round(variable,0.0000001))/*I feel the need to document what happens here. Basically this is used to catch most rounding errors, however it's previous value made it so that once gases got hot enough, most procedures wouldnt occur due to the fact that the mole counts would get rounded away. Thus, we lowered it a few orders of magnititude */ - GLOBAL_LIST_INIT(meta_gas_info, meta_gas_list()) //see ATMOSPHERICS/gas_types.dm GLOBAL_LIST_INIT(gaslist_cache, init_gaslist_cache()) @@ -401,6 +400,7 @@ GLOBAL_LIST_INIT(gaslist_cache, init_gaslist_cache()) /datum/gas_mixture/react(turf/open/dump_location) . = 0 + reaction_results = new var/list/cached_gases = gases @@ -438,6 +438,9 @@ GLOBAL_LIST_INIT(gaslist_cache, init_gaslist_cache()) */ . |= reaction.react(src, dump_location) + //to_chat(world,reaction.name) + if (. & STOP_REACTIONS) + break if(.) garbage_collect() if(temperature < TCMB) //just for safety diff --git a/code/modules/atmospherics/gasmixtures/gas_types.dm b/code/modules/atmospherics/gasmixtures/gas_types.dm index e8e25fb912..8296ab56f4 100644 --- a/code/modules/atmospherics/gasmixtures/gas_types.dm +++ b/code/modules/atmospherics/gasmixtures/gas_types.dm @@ -58,7 +58,7 @@ GLOBAL_LIST_INIT(hardcoded_gases, list(/datum/gas/oxygen, /datum/gas/nitrogen, / specific_heat = 200 name = "Plasma" gas_overlay = "plasma" - moles_visible = MOLES_PLASMA_VISIBLE + moles_visible = MOLES_GAS_VISIBLE dangerous = TRUE /datum/gas/water_vapor @@ -66,14 +66,14 @@ GLOBAL_LIST_INIT(hardcoded_gases, list(/datum/gas/oxygen, /datum/gas/nitrogen, / specific_heat = 40 name = "Water Vapor" gas_overlay = "water_vapor" - moles_visible = MOLES_PLASMA_VISIBLE + moles_visible = MOLES_GAS_VISIBLE -/datum/gas/freon - id = "freon" +/datum/gas/hypernoblium + id = "nob" specific_heat = 2000 - name = "Freon" + name = "Hyper-noblium" gas_overlay = "freon" - moles_visible = MOLES_PLASMA_VISIBLE + moles_visible = MOLES_GAS_VISIBLE dangerous = TRUE /datum/gas/nitrous_oxide @@ -84,15 +84,21 @@ GLOBAL_LIST_INIT(hardcoded_gases, list(/datum/gas/oxygen, /datum/gas/nitrogen, / moles_visible = 1 dangerous = TRUE -/datum/gas/oxygen_agent_b - id = "agent_b" - specific_heat = 300 - name = "Oxygen Agent B" +/datum/gas/brown_gas //This is nitric oxide, but given generic name to avoid confusion with nitrous oxide(N20 vs. NO2) + id = "browns" + specific_heat = 20 + name = "Brown Gas" + gas_overlay = "browns" + moles_visible = MOLES_GAS_VISIBLE + dangerous = TRUE -/datum/gas/volatile_fuel - id = "v_fuel" - specific_heat = 30 - name = "Volatile Fuel" +/datum/gas/tritium + id = "tritium" + specific_heat = 10 + name = "Tritium" + gas_overlay = "tritium" + moles_visible = MOLES_GAS_VISIBLE + dangerous = TRUE /datum/gas/bz id = "bz" @@ -100,6 +106,16 @@ GLOBAL_LIST_INIT(hardcoded_gases, list(/datum/gas/oxygen, /datum/gas/nitrogen, / name = "BZ" dangerous = TRUE +/datum/gas/stimulum + id = "stim" + specific_heat = 5 + name = "Stimulum" + +/datum/gas/pluoxium + id = "pluox" + specific_heat = 80 + name = "Pluoxium" + /obj/effect/overlay/gas icon = 'icons/effects/tile_effects.dmi' mouse_opacity = MOUSE_OPACITY_TRANSPARENT diff --git a/code/modules/atmospherics/gasmixtures/reactions.dm b/code/modules/atmospherics/gasmixtures/reactions.dm index d9389975bb..63b84832af 100644 --- a/code/modules/atmospherics/gasmixtures/reactions.dm +++ b/code/modules/atmospherics/gasmixtures/reactions.dm @@ -1,6 +1,33 @@ #define NO_REACTION 0 #define REACTING 1 - +//Plasma fire properties +#define OXYGEN_BURN_RATE_BASE 1.4 +#define PLASMA_BURN_RATE_DELTA 9 +#define PLASMA_UPPER_TEMPERATURE 1370+T0C +#define PLASMA_MINIMUM_OXYGEN_NEEDED 2 +#define PLASMA_MINIMUM_OXYGEN_PLASMA_RATIO 30 +#define PLASMA_OXYGEN_FULLBURN 10 +#define FIRE_CARBON_ENERGY_RELEASED 100000 //Amount of heat released per mole of burnt carbon into the tile +#define FIRE_PLASMA_ENERGY_RELEASED 3000000 //Amount of heat released per mole of burnt plasma into the tile +//General assmos defines. +#define WATER_VAPOR_FREEZE 200 +#define BROWNS_FORMATION_ENERGY 100000 +#define TRITIUM_BURN_OXY_FACTOR 100 +#define TRITIUM_BURN_TRIT_FACTOR 10 +#define SUPER_SATURATION_THRESHOLD 96 +#define STIMULUM_HEAT_SCALE 100000 +#define STIMULUM_FIRST_RISE 0.65 +#define STIMULUM_FIRST_DROP 0.065 +#define STIMULUM_SECOND_RISE 0.0009 +#define STIMULUM_ABSOLUTE_DROP 0.00000335 +#define REACTION_OPPRESSION_THRESHOLD 5 + //Plasma fusion properties +#define PLASMA_BINDING_ENERGY 3000000 +#define MAX_CATALYST_EFFICENCY 9 +#define PLASMA_FUSED_COEFFICENT 0.08 +#define CATALYST_COEFFICENT 0.01 +#define FUSION_PURITY_THRESHOLD 0.9 +#define FUSION_HEAT_DROPOFF 20000+T0C /datum/controller/subsystem/air/var/list/gas_reactions //this is our singleton of all reactions /proc/init_gas_reactions() @@ -35,48 +62,15 @@ /datum/gas_reaction/proc/react(datum/gas_mixture/air, atom/location) return NO_REACTION -//agent b: converts hot co2 and agent b to oxygen. requires plasma as a catalyst. endothermic -/datum/gas_reaction/agent_b - priority = 2 - name = "Agent B" - id = "agent_b" +/datum/gas_reaction/nobliumsupression + priority = INFINITY + name = "Hyper-Noblium Reaction Supression" + id = "nobstop" +/datum/gas_reaction/nobliumsupression/init_reqs() + min_requirements = list(/datum/gas/hypernoblium = REACTION_OPPRESSION_THRESHOLD) -/datum/gas_reaction/agent_b/init_reqs() - min_requirements = list( - "TEMP" = 900, - /datum/gas/oxygen_agent_b = MINIMUM_HEAT_CAPACITY, - /datum/gas/plasma = MINIMUM_HEAT_CAPACITY, - /datum/gas/carbon_dioxide = MINIMUM_HEAT_CAPACITY - ) - - -/datum/gas_reaction/agent_b/react(datum/gas_mixture/air) - var/list/cached_gases = air.gases - var/reaction_rate = min(cached_gases[/datum/gas/carbon_dioxide][MOLES]*0.75, cached_gases[/datum/gas/plasma][MOLES]*0.25, cached_gases[/datum/gas/oxygen_agent_b][MOLES]*0.05) - - cached_gases[/datum/gas/carbon_dioxide][MOLES] -= reaction_rate - cached_gases[/datum/gas/oxygen_agent_b][MOLES] -= reaction_rate*0.05 - - ASSERT_GAS(/datum/gas/oxygen, air) //only need to assert oxygen, as this reaction doesn't occur without the other gases existing - cached_gases[/datum/gas/oxygen][MOLES] += reaction_rate - - air.temperature -= (reaction_rate*20000)/air.heat_capacity() - - return REACTING - -//freon: does a freezy thing? -/datum/gas_reaction/freon - priority = 1 - name = "Freon" - id = "freon" - -/datum/gas_reaction/freon/init_reqs() - min_requirements = list(/datum/gas/freon = MOLES_PLASMA_VISIBLE) - -/datum/gas_reaction/freon/react(datum/gas_mixture/air, turf/open/location) - . = NO_REACTION - if(location && location.freon_gas_act()) - . = REACTING +/datum/gas_reaction/nobliumsupression/react() + return STOP_REACTIONS //water vapor: puts out fires? /datum/gas_reaction/water_vapor @@ -85,12 +79,15 @@ id = "vapor" /datum/gas_reaction/water_vapor/init_reqs() - min_requirements = list(/datum/gas/water_vapor = MOLES_PLASMA_VISIBLE) + min_requirements = list(/datum/gas/water_vapor = MOLES_GAS_VISIBLE) /datum/gas_reaction/water_vapor/react(datum/gas_mixture/air, turf/open/location) . = NO_REACTION - if(location && location.water_vapor_gas_act()) - air.gases[/datum/gas/water_vapor][MOLES] -= MOLES_PLASMA_VISIBLE + if (air.temperature <= WATER_VAPOR_FREEZE) + if(location && location.freon_gas_act()) + . = REACTING + else if(location && location.water_vapor_gas_act()) + air.gases[/datum/gas/water_vapor][MOLES] -= MOLES_GAS_VISIBLE . = REACTING //fire: combustion of plasma and volatile fuel (treated as hydrocarbons). creates hotspots. exothermic @@ -100,7 +97,7 @@ id = "fire" /datum/gas_reaction/fire/init_reqs() - min_requirements = list("TEMP" = FIRE_MINIMUM_TEMPERATURE_TO_EXIST) //doesn't include plasma reqs b/c of volatile fuel stuff - consider finally axing volatile fuel + min_requirements = list("TEMP" = FIRE_MINIMUM_TEMPERATURE_TO_EXIST) //doesn't include plasma reqs b/c of other, rarer, burning gases. /datum/gas_reaction/fire/react(datum/gas_mixture/air, turf/open/location) var/energy_released = 0 @@ -111,23 +108,23 @@ cached_results[id] = 0 //General volatile gas burn - if(cached_gases[/datum/gas/volatile_fuel] && cached_gases[/datum/gas/volatile_fuel][MOLES]) + if(cached_gases[/datum/gas/tritium] && cached_gases[/datum/gas/tritium][MOLES]) var/burned_fuel if(!cached_gases[/datum/gas/oxygen]) burned_fuel = 0 - else if(cached_gases[/datum/gas/oxygen][MOLES] < cached_gases[/datum/gas/volatile_fuel][MOLES]) - burned_fuel = cached_gases[/datum/gas/oxygen][MOLES] - cached_gases[/datum/gas/volatile_fuel][MOLES] -= burned_fuel - cached_gases[/datum/gas/oxygen][MOLES] = 0 + else if(cached_gases[/datum/gas/oxygen][MOLES] < cached_gases[/datum/gas/tritium][MOLES]) + burned_fuel = cached_gases[/datum/gas/oxygen][MOLES]/TRITIUM_BURN_OXY_FACTOR + cached_gases[/datum/gas/tritium][MOLES] -= burned_fuel else - burned_fuel = cached_gases[/datum/gas/volatile_fuel][MOLES] - cached_gases[/datum/gas/oxygen][MOLES] -= cached_gases[/datum/gas/volatile_fuel][MOLES] + burned_fuel = cached_gases[/datum/gas/tritium][MOLES]*TRITIUM_BURN_TRIT_FACTOR + cached_gases[/datum/gas/tritium][MOLES] -= cached_gases[/datum/gas/tritium][MOLES]/TRITIUM_BURN_TRIT_FACTOR + cached_gases[/datum/gas/oxygen][MOLES] -= cached_gases[/datum/gas/tritium][MOLES] if(burned_fuel) energy_released += FIRE_CARBON_ENERGY_RELEASED * burned_fuel ASSERT_GAS(/datum/gas/carbon_dioxide, air) - cached_gases[/datum/gas/carbon_dioxide][MOLES] += burned_fuel + cached_gases[/datum/gas/carbon_dioxide][MOLES] += burned_fuel/TRITIUM_BURN_OXY_FACTOR cached_results[id] += burned_fuel @@ -137,6 +134,7 @@ var/oxygen_burn_rate = 0 //more plasma released at higher temperatures var/temperature_scale + var/super_saturation if(temperature > PLASMA_UPPER_TEMPERATURE) temperature_scale = 1 else @@ -144,15 +142,25 @@ if(temperature_scale > 0) var/o2 = cached_gases[/datum/gas/oxygen] ? cached_gases[/datum/gas/oxygen][MOLES] : 0 oxygen_burn_rate = OXYGEN_BURN_RATE_BASE - temperature_scale + if (o2 > cached_gases[/datum/gas/plasma][MOLES]*PLASMA_OXYGEN_FULLBURN) + plasma_burn_rate = (cached_gases[/datum/gas/plasma][MOLES]*temperature_scale)/PLASMA_BURN_RATE_DELTA + if(o2 / cached_gases[/datum/gas/plasma][MOLES] > SUPER_SATURATION_THRESHOLD) //supersaturation. Form Tritium. + super_saturation = TRUE if(o2 > cached_gases[/datum/gas/plasma][MOLES]*PLASMA_OXYGEN_FULLBURN) plasma_burn_rate = (cached_gases[/datum/gas/plasma][MOLES]*temperature_scale)/PLASMA_BURN_RATE_DELTA else plasma_burn_rate = (temperature_scale*(o2/PLASMA_OXYGEN_FULLBURN))/PLASMA_BURN_RATE_DELTA + if(plasma_burn_rate > MINIMUM_HEAT_CAPACITY) ASSERT_GAS(/datum/gas/carbon_dioxide, air) //don't need to assert o2, since if it isn't present we'll never reach this point anyway cached_gases[/datum/gas/plasma][MOLES] = QUANTIZE(cached_gases[/datum/gas/plasma][MOLES] - plasma_burn_rate) cached_gases[/datum/gas/oxygen][MOLES] = QUANTIZE(cached_gases[/datum/gas/oxygen][MOLES] - (plasma_burn_rate * oxygen_burn_rate)) - cached_gases[/datum/gas/carbon_dioxide][MOLES] += plasma_burn_rate + if (super_saturation) + ASSERT_GAS(/datum/gas/tritium,air) + cached_gases[/datum/gas/tritium][MOLES] += plasma_burn_rate + else + ASSERT_GAS(/datum/gas/carbon_dioxide,air) + cached_gases[/datum/gas/carbon_dioxide][MOLES] += plasma_burn_rate energy_released += FIRE_PLASMA_ENERGY_RELEASED * (plasma_burn_rate) @@ -175,9 +183,9 @@ return cached_results[id] ? REACTING : NO_REACTION -//fusion: a terrible idea that was fun to try. turns co2 and plasma into REALLY HOT oxygen and nitrogen. super exothermic lol +//fusion: a terrible idea that was fun but broken. Now reworked to be less broken and more interesting. /datum/gas_reaction/fusion - exclude = TRUE + exclude = FALSE priority = 2 name = "Plasmic Fusion" id = "fusion" @@ -186,35 +194,37 @@ min_requirements = list( "ENER" = PLASMA_BINDING_ENERGY * 10, /datum/gas/plasma = MINIMUM_HEAT_CAPACITY, - /datum/gas/carbon_dioxide = MINIMUM_HEAT_CAPACITY + /datum/gas/tritium = MINIMUM_HEAT_CAPACITY ) /datum/gas_reaction/fusion/react(datum/gas_mixture/air) var/list/cached_gases = air.gases var/temperature = air.temperature - if((cached_gases[/datum/gas/plasma][MOLES]+cached_gases[/datum/gas/carbon_dioxide][MOLES])/air.total_moles() < FUSION_PURITY_THRESHOLD) - //Fusion wont occur if the level of impurities is too high. + if(((cached_gases[/datum/gas/plasma][MOLES]+cached_gases[/datum/gas/tritium][MOLES])/air.total_moles() < FUSION_PURITY_THRESHOLD) || air.return_pressure() < 10*ONE_ATMOSPHERE) + //Fusion wont occur if the level of impurities is too high or if there is too little pressure. return NO_REACTION var/old_heat_capacity = air.heat_capacity() - var/carbon_efficency = min(cached_gases[/datum/gas/plasma][MOLES]/cached_gases[/datum/gas/carbon_dioxide][MOLES],MAX_CARBON_EFFICENCY) + var/catalyst_efficency = max(min(cached_gases[/datum/gas/plasma][MOLES]/cached_gases[/datum/gas/tritium][MOLES],MAX_CATALYST_EFFICENCY)-(temperature/FUSION_HEAT_DROPOFF),1) var/reaction_energy = THERMAL_ENERGY(air) - var/moles_impurities = air.total_moles()-(cached_gases[/datum/gas/plasma][MOLES]+cached_gases[/datum/gas/carbon_dioxide][MOLES]) + var/moles_impurities = air.total_moles()-(cached_gases[/datum/gas/plasma][MOLES]+cached_gases[/datum/gas/tritium][MOLES]) - var/plasma_fused = (PLASMA_FUSED_COEFFICENT*carbon_efficency)*(temperature/PLASMA_BINDING_ENERGY) - var/carbon_catalyzed = (CARBON_CATALYST_COEFFICENT*carbon_efficency)*(temperature/PLASMA_BINDING_ENERGY) - var/oxygen_added = carbon_catalyzed - var/nitrogen_added = (plasma_fused-oxygen_added)-(THERMAL_ENERGY(air)/PLASMA_BINDING_ENERGY) + var/plasma_fused = (PLASMA_FUSED_COEFFICENT*catalyst_efficency)*(temperature/PLASMA_BINDING_ENERGY)*4 + var/tritium_catalyzed = (CATALYST_COEFFICENT*catalyst_efficency)*(temperature/PLASMA_BINDING_ENERGY) + var/oxygen_added = tritium_catalyzed + var/waste_added = (plasma_fused-oxygen_added)-((air.total_moles()*air.heat_capacity())/PLASMA_BINDING_ENERGY) + reaction_energy = max(reaction_energy+((catalyst_efficency*cached_gases[/datum/gas/plasma][MOLES])/((moles_impurities/catalyst_efficency)+2)*10)+((plasma_fused/((moles_impurities/catalyst_efficency)))*PLASMA_BINDING_ENERGY),0) - reaction_energy = max(reaction_energy+((carbon_efficency*cached_gases[/datum/gas/plasma][MOLES])/((moles_impurities/carbon_efficency)+2)*10)+((plasma_fused/(moles_impurities/carbon_efficency))*PLASMA_BINDING_ENERGY),0) - - air.assert_gases(/datum/gas/oxygen, /datum/gas/nitrogen) - - cached_gases[/datum/gas/plasma][MOLES] -= plasma_fused - cached_gases[/datum/gas/carbon_dioxide][MOLES] -= carbon_catalyzed + air.assert_gases(/datum/gas/oxygen, /datum/gas/nitrogen, /datum/gas/water_vapor, /datum/gas/nitrous_oxide, /datum/gas/brown_gas) + //Fusion produces an absurd amount of waste products now, requiring active filtration. + cached_gases[/datum/gas/plasma][MOLES] = max(cached_gases[/datum/gas/plasma][MOLES] - plasma_fused,0) + cached_gases[/datum/gas/tritium][MOLES] = max(cached_gases[/datum/gas/tritium][MOLES] - tritium_catalyzed,0) cached_gases[/datum/gas/oxygen][MOLES] += oxygen_added - cached_gases[/datum/gas/nitrogen][MOLES] += nitrogen_added + cached_gases[/datum/gas/nitrogen][MOLES] += waste_added + cached_gases[/datum/gas/water_vapor][MOLES] += waste_added + cached_gases[/datum/gas/nitrous_oxide][MOLES] += waste_added + cached_gases[/datum/gas/brown_gas][MOLES] += waste_added if(reaction_energy > 0) var/new_heat_capacity = air.heat_capacity() @@ -223,5 +233,152 @@ //Prevents whatever mechanism is causing it to hit negative temperatures. return REACTING +/datum/gas_reaction/brownsformation //The formation of brown gas. Endothermic. Requires N2O as a catalyst. + priority = 3 + name = "Brown Gas formation" + id = "brownsformation" + +/datum/gas_reaction/brownsformation/init_reqs() + min_requirements = list( + /datum/gas/oxygen = 20, + /datum/gas/nitrogen = 20, + /datum/gas/nitrous_oxide = 5, + "TEMP" = FIRE_MINIMUM_TEMPERATURE_TO_EXIST*400 + ) + +/datum/gas_reaction/brownsformation/react(datum/gas_mixture/air) + var/list/cached_gases = air.gases + var/temperature = air.temperature + + var/old_heat_capacity = air.heat_capacity() + var/heat_efficency = temperature/(FIRE_MINIMUM_TEMPERATURE_TO_EXIST*100) + var/energy_used = heat_efficency*BROWNS_FORMATION_ENERGY + ASSERT_GAS(/datum/gas/brown_gas,air) + + cached_gases[/datum/gas/oxygen][MOLES] -= heat_efficency + cached_gases[/datum/gas/nitrogen][MOLES] -= heat_efficency + cached_gases[/datum/gas/brown_gas][MOLES] += heat_efficency*2 + + if(energy_used > 0) + var/new_heat_capacity = air.heat_capacity() + if(new_heat_capacity > MINIMUM_HEAT_CAPACITY) + air.temperature = max(((temperature*old_heat_capacity - energy_used)/new_heat_capacity),TCMB) + return REACTING + +/datum/gas_reaction/bzformation //Formation of BZ by combining plasma and tritium at low pressures. Exothermic. + priority = 4 + name = "BZ Gas formation" + id = "bzformation" + +/datum/gas_reaction/bzformation/init_reqs() + min_requirements = list( + /datum/gas/tritium = 10, + /datum/gas/plasma = 10 + ) + + +/datum/gas_reaction/bzformation/react(datum/gas_mixture/air) + var/list/cached_gases = air.gases + var/temperature = air.temperature + var/pressure = air.return_pressure() + + var/old_heat_capacity = air.heat_capacity() + var/reaction_efficency = 1/((pressure/(0.1*ONE_ATMOSPHERE))*(max(cached_gases[/datum/gas/plasma][MOLES]/cached_gases[/datum/gas/tritium][MOLES],1))) + var/energy_released = 2*reaction_efficency*FIRE_CARBON_ENERGY_RELEASED + + ASSERT_GAS(/datum/gas/bz,air) + cached_gases[/datum/gas/bz][MOLES]+= reaction_efficency + cached_gases[/datum/gas/tritium][MOLES] = max(cached_gases[/datum/gas/tritium][MOLES]- 2*reaction_efficency,0) + cached_gases[/datum/gas/plasma][MOLES] = max(cached_gases[/datum/gas/plasma][MOLES] - reaction_efficency,0) + + + if(energy_released > 0) + var/new_heat_capacity = air.heat_capacity() + if(new_heat_capacity > MINIMUM_HEAT_CAPACITY) + air.temperature = max(((temperature*old_heat_capacity + energy_released)/new_heat_capacity),TCMB) + return REACTING + +/datum/gas_reaction/stimformation //Stimulum formation follows a strange pattern of how effective it will be at a given temperature, having some multiple peaks and some large dropoffs. Exo and endo thermic. + priority = 5 + name = "Stimulum formation" + id = "stimformation" +/datum/gas_reaction/stimformation/init_reqs() + min_requirements = list( + /datum/gas/tritium = 30, + /datum/gas/plasma = 10, + /datum/gas/bz = 20, + /datum/gas/brown_gas = 30, + "TEMP" = STIMULUM_HEAT_SCALE/2) + +/datum/gas_reaction/stimformation/react(datum/gas_mixture/air) + var/list/cached_gases = air.gases + + var/old_heat_capacity = air.heat_capacity() + var/heat_scale = air.temperature/STIMULUM_HEAT_SCALE + var/stim_energy_change + stim_energy_change =heat_scale + (STIMULUM_FIRST_RISE(heat_scale**2)) - (STIMULUM_FIRST_DROP(heat_scale**3)) + (STIMULUM_SECOND_RISE(heat_scale**4)) - (STIMULUM_ABSOLUTE_DROP(heat_scale**5)) + + ASSERT_GAS(/datum/gas/stimulum,air) + cached_gases[/datum/gas/stimulum][MOLES]+= heat_scale/10 + cached_gases[/datum/gas/tritium][MOLES] = max(cached_gases[/datum/gas/tritium][MOLES]- heat_scale,0) + cached_gases[/datum/gas/plasma][MOLES] = max(cached_gases[/datum/gas/plasma][MOLES]- heat_scale,0) + cached_gases[/datum/gas/brown_gas][MOLES] = max(cached_gases[/datum/gas/brown_gas][MOLES]- heat_scale,0) + + if(stim_energy_change) + var/new_heat_capacity = air.heat_capacity() + if(new_heat_capacity > MINIMUM_HEAT_CAPACITY) + air.temperature = max(((air.temperature*old_heat_capacity + stim_energy_change)/new_heat_capacity),TCMB) + return REACTING + +/datum/gas_reaction/nobliumformation //Hyper-Nobelium formation is extrememly endothermic, but requires high temperatures to start. Due to its high mass, hyper-nobelium uses large amounts of nitrogen and tritium. BZ can be used as a catalyst to make it less endothermic. + priority = 6 + name = "Hyper-Noblium condensation" + id = "nobformation" + +/datum/gas_reaction/nobliumformation/init_reqs() + min_requirements = list( + /datum/gas/nitrogen = 10, + /datum/gas/tritium = 5, + "TEMP" = 5000000) + +/datum/gas_reaction/nobliumformation/react(datum/gas_mixture/air) + var/list/cached_gases = air.gases + air.assert_gases(/datum/gas/hypernoblium,/datum/gas/bz) + var/old_heat_capacity = air.heat_capacity() + var/nob_formed = (cached_gases[/datum/gas/nitrogen][MOLES]*cached_gases[/datum/gas/tritium][MOLES])/100 + var/energy_taken = nob_formed*(10000000/(max(cached_gases[/datum/gas/bz][MOLES],1))) + cached_gases[/datum/gas/tritium][MOLES] = max(cached_gases[/datum/gas/tritium][MOLES]- 10*nob_formed,0) + cached_gases[/datum/gas/nitrogen][MOLES] = max(cached_gases[/datum/gas/nitrogen][MOLES]- 20*nob_formed,0) + cached_gases[/datum/gas/hypernoblium][MOLES]+= nob_formed + + + if (nob_formed) + var/new_heat_capacity = air.heat_capacity() + if(new_heat_capacity > MINIMUM_HEAT_CAPACITY) + air.temperature = max(((air.temperature*old_heat_capacity - energy_taken)/new_heat_capacity),TCMB) #undef REACTING #undef NO_REACTION +#undef OXYGEN_BURN_RATE_BASE +#undef PLASMA_BURN_RATE_DELTA +#undef PLASMA_UPPER_TEMPERATURE +#undef PLASMA_MINIMUM_OXYGEN_NEEDED +#undef PLASMA_MINIMUM_OXYGEN_PLASMA_RATIO +#undef PLASMA_OXYGEN_FULLBURN +#undef FIRE_CARBON_ENERGY_RELEASED +#undef FIRE_PLASMA_ENERGY_RELEASED +#undef WATER_VAPOR_FREEZE +#undef BROWNS_FORMATION_ENERGY +#undef TRITIUM_BURN_OXY_FACTOR +#undef SUPER_SATURATION_THRESHOLD +#undef STIMULUM_HEAT_SCALE +#undef STIMULUM_FIRST_RISE +#undef STIMULUM_FIRST_DROP +#undef STIMULUM_SECOND_RISE +#undef STIMULUM_ABSOLUTE_DROP +#undef REACTION_OPPRESSION_THRESHOLD +#undef PLASMA_BINDING_ENERGY +#undef MAX_CATALYST_EFFICENCY +#undef PLASMA_FUSED_COEFFICENT +#undef CATALYST_COEFFICENT +#undef FUSION_PURITY_THRESHOLD +#undef FUSION_HEAT_DROPOFF \ No newline at end of file diff --git a/code/modules/atmospherics/machinery/airalarm.dm b/code/modules/atmospherics/machinery/airalarm.dm index 18f88874e8..d2603208e5 100644 --- a/code/modules/atmospherics/machinery/airalarm.dm +++ b/code/modules/atmospherics/machinery/airalarm.dm @@ -5,10 +5,10 @@ var/max2 /datum/tlv/New(min2 as num, min1 as num, max1 as num, max2 as num) - src.min2 = min2 - src.min1 = min1 - src.max1 = max1 - src.max2 = max2 + if(min2) src.min2 = min2 + if(min1) src.min1 = min1 + if(max1) src.max1 = max1 + if(max2) src.max2 = max2 /datum/tlv/proc/get_danger_level(val as num) if(max2 != -1 && val >= max2) @@ -21,6 +21,18 @@ return 1 return 0 +/datum/tlv/no_checks + min2 = -1 + min1 = -1 + max1 = -1 + max2 = -1 + +/datum/tlv/dangerous + min2 = -1 + min1 = -1 + max1 = 0.2 + max2 = 0.5 + /obj/item/electronics/airalarm name = "air alarm electronics" icon_state = "airalarm_electronics" @@ -78,25 +90,33 @@ /datum/gas/oxygen = new/datum/tlv(16, 19, 135, 140), // Partial pressure, kpa /datum/gas/nitrogen = new/datum/tlv(-1, -1, 1000, 1000), // Partial pressure, kpa /datum/gas/carbon_dioxide = new/datum/tlv(-1, -1, 5, 10), // Partial pressure, kpa - /datum/gas/plasma = new/datum/tlv(-1, -1, 0.2, 0.5), // Partial pressure, kpa - /datum/gas/nitrous_oxide = new/datum/tlv(-1, -1, 0.2, 0.5), // Partial pressure, kpa - /datum/gas/bz = new/datum/tlv(-1, -1, 0.2, 0.5), - /datum/gas/freon = new/datum/tlv(-1, -1, 0.2, 0.5), - /datum/gas/water_vapor = new/datum/tlv(-1, -1, 0.2, 0.5) + /datum/gas/plasma = new/datum/tlv/dangerous, // Partial pressure, kpa + /datum/gas/nitrous_oxide = new/datum/tlv/dangerous, // Partial pressure, kpa + /datum/gas/bz = new/datum/tlv/dangerous, + /datum/gas/hypernoblium = new/datum/tlv/dangerous, + /datum/gas/water_vapor = new/datum/tlv/dangerous, + /datum/gas/tritium = new/datum/tlv/dangerous, + /datum/gas/stimulum = new/datum/tlv/dangerous, + /datum/gas/brown_gas = new/datum/tlv/dangerous, + /datum/gas/pluoxium = new/datum/tlv/dangerous ) /obj/machinery/airalarm/server // No checks here. TLV = list( - "pressure" = new/datum/tlv(-1, -1, -1, -1), - "temperature" = new/datum/tlv(-1, -1, -1, -1), - /datum/gas/oxygen = new/datum/tlv(-1, -1, -1, -1), - /datum/gas/nitrogen = new/datum/tlv(-1, -1, -1, -1), - /datum/gas/carbon_dioxide = new/datum/tlv(-1, -1, -1, -1), - /datum/gas/plasma = new/datum/tlv(-1, -1, -1, -1), - /datum/gas/nitrous_oxide = new/datum/tlv(-1, -1, -1, -1), - /datum/gas/bz = new/datum/tlv(-1, -1, -1, -1), - /datum/gas/freon = new/datum/tlv(-1, -1, -1, -1), - /datum/gas/water_vapor = new/datum/tlv(-1, -1, -1, -1) + "pressure" = new/datum/tlv/no_checks, + "temperature" = new/datum/tlv/no_checks, + /datum/gas/oxygen = new/datum/tlv/no_checks, + /datum/gas/nitrogen = new/datum/tlv/no_checks, + /datum/gas/carbon_dioxide = new/datum/tlv/no_checks, + /datum/gas/plasma = new/datum/tlv/no_checks, + /datum/gas/nitrous_oxide = new/datum/tlv/no_checks, + /datum/gas/bz = new/datum/tlv/no_checks, + /datum/gas/hypernoblium = new/datum/tlv/no_checks, + /datum/gas/water_vapor = new/datum/tlv/no_checks, + /datum/gas/tritium = new/datum/tlv/no_checks, + /datum/gas/stimulum = new/datum/tlv/no_checks, + /datum/gas/brown_gas = new/datum/tlv/no_checks, + /datum/gas/pluoxium = new/datum/tlv/no_checks ) /obj/machinery/airalarm/kitchen_cold_room // Copypasta: to check temperatures. @@ -106,11 +126,15 @@ /datum/gas/oxygen = new/datum/tlv(16, 19, 135, 140), // Partial pressure, kpa /datum/gas/nitrogen = new/datum/tlv(-1, -1, 1000, 1000), // Partial pressure, kpa /datum/gas/carbon_dioxide = new/datum/tlv(-1, -1, 5, 10), // Partial pressure, kpa - /datum/gas/plasma = new/datum/tlv(-1, -1, 0.2, 0.5), // Partial pressure, kpa - /datum/gas/nitrous_oxide = new/datum/tlv(-1, -1, 0.2, 0.5), // Partial pressure, kpa - /datum/gas/bz = new/datum/tlv(-1, -1, 0.2, 0.5), - /datum/gas/freon = new/datum/tlv(-1, -1, 0.2, 0.5), - /datum/gas/water_vapor = new/datum/tlv(-1, -1, 0.2, 0.5) + /datum/gas/plasma = new/datum/tlv/dangerous, // Partial pressure, kpa + /datum/gas/nitrous_oxide = new/datum/tlv/dangerous, // Partial pressure, kpa + /datum/gas/bz = new/datum/tlv/dangerous, + /datum/gas/hypernoblium = new/datum/tlv/dangerous, + /datum/gas/water_vapor = new/datum/tlv/dangerous, + /datum/gas/tritium = new/datum/tlv/dangerous, + /datum/gas/stimulum = new/datum/tlv/dangerous, + /datum/gas/brown_gas = new/datum/tlv/dangerous, + /datum/gas/pluoxium = new/datum/tlv/dangerous ) /obj/machinery/airalarm/engine @@ -256,8 +280,7 @@ "filter_co2" = info["filter_co2"], "filter_toxins" = info["filter_toxins"], "filter_n2o" = info["filter_n2o"], - "filter_bz" = info["filter_bz"], - "filter_freon" = info["filter_freon"], + "filter_rare" = info["filter_rare"], "filter_water_vapor" = info["filter_water_vapor"] )) data["mode"] = mode @@ -314,7 +337,7 @@ if(usr.has_unlimited_silicon_privilege && !wires.is_cut(WIRE_IDSCAN)) locked = !locked . = TRUE - if("power", "co2_scrub", "tox_scrub", "n2o_scrub", "bz_scrub", "freon_scrub","water_vapor_scrub", "widenet", "scrubbing") + if("power", "co2_scrub", "tox_scrub", "n2o_scrub", "rare_scrub","water_vapor_scrub", "widenet", "scrubbing") send_signal(device_id, list("[action]" = text2num(params["val"]))) . = TRUE if("excheck") @@ -433,8 +456,7 @@ "co2_scrub" = 1, "tox_scrub" = 0, "n2o_scrub" = 0, - "bz_scrub" = 0, - "freon_scrub"= 0, + "rare_scrub"= 0, "water_vapor_scrub"= 0, "scrubbing" = 1, "widenet" = 0, @@ -452,8 +474,7 @@ "co2_scrub" = 1, "tox_scrub" = 1, "n2o_scrub" = 1, - "bz_scrub" = 1, - "freon_scrub"= 1, + "rare_scrub"= 1, "water_vapor_scrub"= 1, "scrubbing" = 1, "widenet" = 1, @@ -484,8 +505,7 @@ "co2_scrub" = 1, "tox_scrub" = 0, "n2o_scrub" = 0, - "bz_scrub" = 0, - "freon_scrub"= 0, + "rare_scrub"= 0, "water_vapor_scrub"= 0, "scrubbing" = 1, "widenet" = 0, diff --git a/code/modules/atmospherics/machinery/components/unary_devices/tank.dm b/code/modules/atmospherics/machinery/components/unary_devices/tank.dm index 04f1068a00..ec1fcdfc52 100644 --- a/code/modules/atmospherics/machinery/components/unary_devices/tank.dm +++ b/code/modules/atmospherics/machinery/components/unary_devices/tank.dm @@ -28,9 +28,6 @@ icon_state = "orange" gas_type = /datum/gas/plasma -/obj/machinery/atmospherics/components/unary/tank/oxygen_agent_b - icon_state = "orange_2" - gas_type = /datum/gas/oxygen_agent_b /obj/machinery/atmospherics/components/unary/tank/oxygen icon_state = "blue" diff --git a/code/modules/atmospherics/machinery/components/unary_devices/vent_scrubber.dm b/code/modules/atmospherics/machinery/components/unary_devices/vent_scrubber.dm index 7665f93af3..5c8c31f793 100644 --- a/code/modules/atmospherics/machinery/components/unary_devices/vent_scrubber.dm +++ b/code/modules/atmospherics/machinery/components/unary_devices/vent_scrubber.dm @@ -20,8 +20,7 @@ var/scrub_CO2 = TRUE var/scrub_Toxins = FALSE var/scrub_N2O = FALSE - var/scrub_BZ = FALSE - var/scrub_Freon = FALSE + var/scrub_Rare = FALSE var/scrub_WaterVapor = FALSE @@ -70,9 +69,7 @@ amount += idle_power_usage if(scrub_N2O) amount += idle_power_usage - if(scrub_BZ) - amount += idle_power_usage - if(scrub_Freon) + if(scrub_Rare) amount += idle_power_usage if(scrub_WaterVapor) amount += idle_power_usage @@ -125,8 +122,7 @@ "filter_co2" = scrub_CO2, "filter_toxins" = scrub_Toxins, "filter_n2o" = scrub_N2O, - "filter_bz" = scrub_BZ, - "filter_freon" = scrub_Freon, + "filter_rare" =scrub_Rare, "filter_water_vapor" = scrub_WaterVapor, "sigtype" = "status" ) @@ -198,37 +194,52 @@ filtered_out.temperature = removed.temperature if(scrub_Toxins && removed_gases[/datum/gas/plasma]) - ADD_GAS(/datum/gas/plasma, filtered_out.gases) + ADD_GAS(/datum/gas/plasma, filtered_gases) filtered_gases[/datum/gas/plasma][MOLES] = removed_gases[/datum/gas/plasma][MOLES] removed_gases[/datum/gas/plasma][MOLES] = 0 if(scrub_CO2 && removed_gases[/datum/gas/carbon_dioxide]) - ADD_GAS(/datum/gas/carbon_dioxide, filtered_out.gases) + ADD_GAS(/datum/gas/carbon_dioxide, filtered_gases) filtered_gases[/datum/gas/carbon_dioxide][MOLES] = removed_gases[/datum/gas/carbon_dioxide][MOLES] removed_gases[/datum/gas/carbon_dioxide][MOLES] = 0 - if(removed_gases[/datum/gas/oxygen_agent_b]) - ADD_GAS(/datum/gas/oxygen_agent_b, filtered_out.gases) - filtered_gases[/datum/gas/oxygen_agent_b][MOLES] = removed_gases[/datum/gas/oxygen_agent_b][MOLES] - removed_gases[/datum/gas/oxygen_agent_b][MOLES] = 0 - if(scrub_N2O && removed_gases[/datum/gas/nitrous_oxide]) - ADD_GAS(/datum/gas/nitrous_oxide, filtered_out.gases) + ADD_GAS(/datum/gas/nitrous_oxide, filtered_gases) filtered_gases[/datum/gas/nitrous_oxide][MOLES] = removed_gases[/datum/gas/nitrous_oxide][MOLES] removed_gases[/datum/gas/nitrous_oxide][MOLES] = 0 - if(scrub_BZ && removed_gases[/datum/gas/bz]) - ADD_GAS(/datum/gas/bz, filtered_out.gases) + if(scrub_Rare && removed_gases[/datum/gas/bz]) + ADD_GAS(/datum/gas/bz, filtered_gases) filtered_gases[/datum/gas/bz][MOLES] = removed_gases[/datum/gas/bz][MOLES] removed_gases[/datum/gas/bz][MOLES] = 0 - if(scrub_Freon && removed_gases[/datum/gas/freon]) - ADD_GAS(/datum/gas/freon, filtered_out.gases) - filtered_gases[/datum/gas/freon][MOLES] = removed_gases[/datum/gas/freon][MOLES] - removed_gases[/datum/gas/freon][MOLES] = 0 + if(scrub_Rare && removed_gases[/datum/gas/hypernoblium]) + ADD_GAS(/datum/gas/hypernoblium, filtered_gases) + filtered_gases[/datum/gas/hypernoblium][MOLES] = removed_gases[/datum/gas/hypernoblium][MOLES] + removed_gases[/datum/gas/hypernoblium][MOLES] = 0 + + if(scrub_Rare && removed_gases[/datum/gas/stimulum]) + ADD_GAS(/datum/gas/stimulum, filtered_gases) + filtered_gases[/datum/gas/stimulum][MOLES] = removed_gases[/datum/gas/stimulum][MOLES] + removed_gases[/datum/gas/stimulum][MOLES] = 0 + + if(scrub_Rare && removed_gases[/datum/gas/pluoxium]) + ADD_GAS(/datum/gas/pluoxium, filtered_gases) + filtered_gases[/datum/gas/pluoxium][MOLES] = removed_gases[/datum/gas/pluoxium][MOLES] + removed_gases[/datum/gas/pluoxium][MOLES] = 0 + + if(scrub_Rare && removed_gases[/datum/gas/brown_gas]) + ADD_GAS(/datum/gas/brown_gas, filtered_gases) + filtered_gases[/datum/gas/brown_gas][MOLES] = removed_gases[/datum/gas/brown_gas][MOLES] + removed_gases[/datum/gas/brown_gas][MOLES] = 0 + + if(scrub_Rare && removed_gases[/datum/gas/tritium]) + ADD_GAS(/datum/gas/tritium, filtered_gases) + filtered_gases[/datum/gas/tritium][MOLES] = removed_gases[/datum/gas/tritium][MOLES] + removed_gases[/datum/gas/tritium][MOLES] = 0 if(scrub_WaterVapor && removed_gases[/datum/gas/water_vapor]) - ADD_GAS(/datum/gas/water_vapor, filtered_out.gases) + ADD_GAS(/datum/gas/water_vapor, filtered_gases) filtered_gases[/datum/gas/water_vapor][MOLES] = removed_gases[/datum/gas/water_vapor][MOLES] removed_gases[/datum/gas/water_vapor][MOLES] = 0 @@ -303,15 +314,10 @@ if("toggle_n2o_scrub" in signal.data) scrub_N2O = !scrub_N2O - if("bz_scrub" in signal.data) - scrub_BZ = text2num(signal.data["bz_scrub"]) - if("toggle_bz_scrub" in signal.data) - scrub_BZ = !scrub_BZ - - if("freon_scrub" in signal.data) - scrub_Freon = text2num(signal.data["freon_scrub"]) - if("toggle_freon_scrub" in signal.data) - scrub_Freon = !scrub_Freon + if("rare_scrub" in signal.data) + scrub_Rare = text2num(signal.data["rare_scrub"]) + if("toggle_rare_scrub" in signal.data) + scrub_Rare = !scrub_Rare if("water_vapor_scrub" in signal.data) scrub_WaterVapor = text2num(signal.data["water_vapor_scrub"]) diff --git a/code/modules/atmospherics/machinery/other/miner.dm b/code/modules/atmospherics/machinery/other/miner.dm index 99e6cda6af..cb28f17802 100644 --- a/code/modules/atmospherics/machinery/other/miner.dm +++ b/code/modules/atmospherics/machinery/other/miner.dm @@ -173,21 +173,6 @@ overlay_color = "#FAFF00" spawn_id = /datum/gas/bz -/obj/machinery/atmospherics/miner/freon - name = "\improper Freon Gas Miner" - overlay_color = "#00FFE5" - spawn_id = /datum/gas/freon - -/obj/machinery/atmospherics/miner/volatile_fuel - name = "\improper Volatile Fuel Gas Miner" - overlay_color = "#564040" - spawn_id = /datum/gas/volatile_fuel - -/obj/machinery/atmospherics/miner/agent_b - name = "\improper Agent B Gas Miner" - overlay_color = "#E81E24" - spawn_id = /datum/gas/oxygen_agent_b - /obj/machinery/atmospherics/miner/water_vapor name = "\improper Water Vapor Gas Miner" overlay_color = "#99928E" diff --git a/code/modules/atmospherics/machinery/portable/canister.dm b/code/modules/atmospherics/machinery/portable/canister.dm index 38c96a8ec9..0a7f43b383 100644 --- a/code/modules/atmospherics/machinery/portable/canister.dm +++ b/code/modules/atmospherics/machinery/portable/canister.dm @@ -43,7 +43,6 @@ "n2o" = /obj/machinery/portable_atmospherics/canister/nitrous_oxide, "bz" = /obj/machinery/portable_atmospherics/canister/bz, "air" = /obj/machinery/portable_atmospherics/canister/air, - "freon" = /obj/machinery/portable_atmospherics/canister/freon, "water vapor" = /obj/machinery/portable_atmospherics/canister/water_vapor, "caution" = /obj/machinery/portable_atmospherics/canister, ) @@ -79,11 +78,6 @@ icon_state = "orange" gas_type = /datum/gas/plasma -/obj/machinery/portable_atmospherics/canister/agent_b - name = "agent b canister" - desc = "Oxygen Agent B. You're not quite sure what it does." - gas_type = /datum/gas/oxygen_agent_b - /obj/machinery/portable_atmospherics/canister/bz name = "BZ canister" desc = "BZ, a powerful hallucinogenic nerve agent." @@ -101,12 +95,30 @@ desc = "Pre-mixed air." icon_state = "grey" -/obj/machinery/portable_atmospherics/canister/freon - name = "freon canister" - desc = "Freon. Great for the atmosphere!" - icon_state = "freon" - gas_type = /datum/gas/freon - starter_temp = 120 +/obj/machinery/portable_atmospherics/canister/tritium + name = "tritium canister" + desc = "Tritium. Inhalation might cause irradiation." + gas_type = /datum/gas/tritium + +/obj/machinery/portable_atmospherics/canister/nob + name = "hyper-noblium canister" + desc = "Hyper-Noblium. More noble than all other gases." + gas_type = /datum/gas/hypernoblium + +/obj/machinery/portable_atmospherics/canister/browns + name = "brown gas canister" + desc = "Browns gas. Feels great 'til the acid eats your lungs." + gas_type = /datum/gas/brown_gas + +/obj/machinery/portable_atmospherics/canister/stimulum + name = "stimulum canister" + desc = "Stimulum. High energy gas, high energy people." + gas_type = /datum/gas/stimulum + +/obj/machinery/portable_atmospherics/canister/pluoxium + name = "pluoxium canister" + desc = "Pluoxium. Like oxygen, but more bang for your buck." + gas_type = /datum/gas/pluoxium /obj/machinery/portable_atmospherics/canister/water_vapor name = "water vapor canister" @@ -115,6 +127,7 @@ gas_type = /datum/gas/water_vapor filled = 1 + /obj/machinery/portable_atmospherics/canister/proc/get_time_left() if(timing) . = round(max(0, valve_timer - world.time) / 10, 1) @@ -402,7 +415,7 @@ var/gas = air_contents.gases[id] if(!gas[GAS_META][META_GAS_DANGER]) continue - if(gas[MOLES] > (gas[GAS_META][META_GAS_MOLES_VISIBLE] || MOLES_PLASMA_VISIBLE)) //if moles_visible is undefined, default to plasma visibility + if(gas[MOLES] > (gas[GAS_META][META_GAS_MOLES_VISIBLE] || MOLES_GAS_VISIBLE)) //if moles_visible is undefined, default to default visibility danger[gas[GAS_META][META_GAS_NAME]] = gas[MOLES] //ex. "plasma" = 20 if(danger.len) diff --git a/code/modules/atmospherics/machinery/portable/scrubber.dm b/code/modules/atmospherics/machinery/portable/scrubber.dm index cd857d19a1..bb203fd6ee 100644 --- a/code/modules/atmospherics/machinery/portable/scrubber.dm +++ b/code/modules/atmospherics/machinery/portable/scrubber.dm @@ -7,7 +7,7 @@ var/volume_rate = 1000 volume = 1000 - var/list/scrubbing = list(/datum/gas/plasma, /datum/gas/carbon_dioxide, /datum/gas/nitrous_oxide, /datum/gas/oxygen_agent_b, /datum/gas/bz, /datum/gas/freon, /datum/gas/water_vapor) + var/list/scrubbing = list(/datum/gas/plasma, /datum/gas/carbon_dioxide, /datum/gas/nitrous_oxide, /datum/gas/bz, /datum/gas/brown_gas, /datum/gas/tritium, /datum/gas/hypernoblium, /datum/gas/water_vapor) /obj/machinery/portable_atmospherics/scrubber/Destroy() var/turf/T = get_turf(src) diff --git a/code/modules/cargo/packs.dm b/code/modules/cargo/packs.dm index c5b180d8a1..4269de6069 100644 --- a/code/modules/cargo/packs.dm +++ b/code/modules/cargo/packs.dm @@ -937,23 +937,6 @@ crate_type = /obj/structure/closet/crate/secure/science dangerous = TRUE -/datum/supply_pack/science/bz_canister - name = "BZ Canister" - cost = 2000 - access_any = list(ACCESS_RD, ACCESS_ATMOSPHERICS) - contains = list(/obj/machinery/portable_atmospherics/canister/bz) - crate_name = "bz canister crate" - crate_type = /obj/structure/closet/crate/secure/science - dangerous = TRUE - -/datum/supply_pack/science/freon_canister - name = "Freon Canister" - cost = 6000 - access_any = list(ACCESS_RD, ACCESS_ATMOSPHERICS) - contains = list(/obj/machinery/portable_atmospherics/canister/freon) - crate_name = "freon canister crate" - crate_type = /obj/structure/closet/crate/secure/science - dangerous = TRUE /datum/supply_pack/science/research name = "Machine Prototype Crate" diff --git a/code/modules/holodeck/turfs.dm b/code/modules/holodeck/turfs.dm index 80a7b7a545..680300b404 100644 --- a/code/modules/holodeck/turfs.dm +++ b/code/modules/holodeck/turfs.dm @@ -106,7 +106,7 @@ slowdown = 2 /turf/open/floor/holofloor/snow/cold - initial_gas_mix = "freon=7500;TEMP=0" + initial_gas_mix = "nob=7500;TEMP=2.7" /turf/open/floor/holofloor/asteroid name = "asteroid sand" diff --git a/code/modules/mob/living/carbon/life.dm b/code/modules/mob/living/carbon/life.dm index 31f8eb3f73..71a05eb1f9 100644 --- a/code/modules/mob/living/carbon/life.dm +++ b/code/modules/mob/living/carbon/life.dm @@ -203,6 +203,16 @@ hallucination += 20 else if(bz_partialpressure > 0.01) hallucination += 5//Removed at 2 per tick so this will slowly build up + //TRITIUM + if(breath_gases[/datum/gas/tritium]) + var/tritium_partialpressure = (breath_gases[/datum/gas/tritium][MOLES]/breath.total_moles())*breath_pressure + radiation += tritium_partialpressure/10 + //Brown Gas + if (breath_gases[/datum/gas/brown_gas]) + var/browns_partialpressure = (breath_gases[/datum/gas/brown_gas][MOLES]/breath.total_moles())*breath_pressure + adjustFireLoss(browns_partialpressure/4) + + breath.garbage_collect() diff --git a/code/modules/power/supermatter/supermatter.dm b/code/modules/power/supermatter/supermatter.dm index d9aabd1197..3a73ddf820 100644 --- a/code/modules/power/supermatter/supermatter.dm +++ b/code/modules/power/supermatter/supermatter.dm @@ -9,7 +9,6 @@ #define OXYGEN_TRANSMIT_MODIFIER 1.5 //Higher == Bigger bonus to power generation. #define PLASMA_TRANSMIT_MODIFIER 4 -#define FREON_TRANSMIT_PENALTY 0.75 // Scales how much freon reduces total power transmission. 1 equals 1% per 1% of freon in the mix. #define N2O_HEAT_RESISTANCE 6 //Higher == Gas makes the crystal more resistant against heat damage. @@ -30,7 +29,7 @@ #define THERMAL_RELEASE_MODIFIER 5 //Higher == less heat released during reaction, not to be confused with the above values #define PLASMA_RELEASE_MODIFIER 750 //Higher == less plasma released by reaction #define OXYGEN_RELEASE_MODIFIER 325 //Higher == less oxygen released at high temperature/power -#define FREON_BREEDING_MODIFIER 100 //Higher == less freon created + #define REACTION_POWER_MODIFIER 0.55 //Higher == more overall power #define MATTER_POWER_CONVERSION 10 //Crystal converts 1/this value of stored matter into energy. @@ -92,7 +91,6 @@ GLOBAL_DATUM(main_supermatter_engine, /obj/machinery/power/supermatter_shard) var/power = 0 var/n2comp = 0 // raw composition of each gas in the chamber, ranges from 0 to 1 - var/freoncomp = 0 var/plasmacomp = 0 var/o2comp = 0 @@ -107,7 +105,7 @@ GLOBAL_DATUM(main_supermatter_engine, /obj/machinery/power/supermatter_shard) var/powerloss_dynamic_scaling= 0 var/power_transmission_bonus = 0 var/mole_heat_penalty = 0 - var/freon_transmit_modifier = 1 + var/matter_power = 0 @@ -284,7 +282,7 @@ GLOBAL_DATUM(main_supermatter_engine, /obj/machinery/power/supermatter_shard) if(damage > damage_archived && prob(10)) playsound(get_turf(src), 'sound/effects/empulse.ogg', 50, 1) - removed.assert_gases(/datum/gas/oxygen, /datum/gas/plasma, /datum/gas/carbon_dioxide, /datum/gas/nitrous_oxide, /datum/gas/nitrogen, /datum/gas/freon) + removed.assert_gases(/datum/gas/oxygen, /datum/gas/plasma, /datum/gas/carbon_dioxide, /datum/gas/nitrous_oxide, /datum/gas/nitrogen) //calculating gas related values combined_gas = max(removed.total_moles(), 0) @@ -294,16 +292,15 @@ GLOBAL_DATUM(main_supermatter_engine, /obj/machinery/power/supermatter_shard) n2ocomp = max(removed.gases[/datum/gas/nitrous_oxide][MOLES]/combined_gas, 0) n2comp = max(removed.gases[/datum/gas/nitrogen][MOLES]/combined_gas, 0) - freoncomp = max(removed.gases[/datum/gas/freon][MOLES]/combined_gas, 0) - gasmix_power_ratio = min(max(plasmacomp + o2comp + co2comp - n2comp - freoncomp, 0), 1) + gasmix_power_ratio = min(max(plasmacomp + o2comp + co2comp - n2comp, 0), 1) dynamic_heat_modifier = max((plasmacomp * PLASMA_HEAT_PENALTY)+(o2comp * OXYGEN_HEAT_PENALTY)+(co2comp * CO2_HEAT_PENALTY)+(n2comp * NITROGEN_HEAT_MODIFIER), 0.5) dynamic_heat_resistance = max(n2ocomp * N2O_HEAT_RESISTANCE, 1) power_transmission_bonus = max((plasmacomp * PLASMA_TRANSMIT_MODIFIER) + (o2comp * OXYGEN_TRANSMIT_MODIFIER), 0) - freon_transmit_modifier = max(1-(freoncomp * FREON_TRANSMIT_PENALTY), 0) + //more moles of gases are harder to heat than fewer, so let's scale heat damage around them mole_heat_penalty = max(combined_gas / MOLE_HEAT_PENALTY, 0.25) @@ -332,7 +329,7 @@ GLOBAL_DATUM(main_supermatter_engine, /obj/machinery/power/supermatter_shard) power = max( (removed.temperature * temp_factor / T0C) * gasmix_power_ratio + power, 0) //Total laser power plus an overload if(prob(50)) - radiation_pulse(src, power * (1 + power_transmission_bonus/10 * freon_transmit_modifier)) + radiation_pulse(src, power * (1 + power_transmission_bonus/10)) var/device_energy = power * REACTION_POWER_MODIFIER @@ -352,9 +349,6 @@ GLOBAL_DATUM(main_supermatter_engine, /obj/machinery/power/supermatter_shard) removed.gases[/datum/gas/oxygen][MOLES] += max(((device_energy + removed.temperature * dynamic_heat_modifier) - T0C) / OXYGEN_RELEASE_MODIFIER, 0) - if(combined_gas < 50) - removed.gases[/datum/gas/freon][MOLES] = max((removed.gases[/datum/gas/freon][MOLES] + device_energy) * freoncomp / FREON_BREEDING_MODIFIER, 0) - if(produces_gas) env.merge(removed) air_update_turf() diff --git a/code/modules/reagents/chemistry/reagents/other_reagents.dm b/code/modules/reagents/chemistry/reagents/other_reagents.dm index 0a437f120e..7f764e933e 100644 --- a/code/modules/reagents/chemistry/reagents/other_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/other_reagents.dm @@ -1159,6 +1159,34 @@ M.confused = min(M.confused + 2, 5) ..() +/datum/reagent/stimulum + name = "Stimulum" + id = "stimulum" + description = "An unstable experimental gas that greatly increases the energy of those that inhale it" + reagent_state = GAS + metabolization_rate = 1.5 * REAGENTS_METABOLISM + color = "E1A116" + taste_description = "sourness" + +/datum/reagent/stimulum/on_mob_life(mob/living/M) // Has a speedup, and the anti-stun effects of nicotine. + M.status_flags |= GOTTAGOFAST + M.AdjustStun(-20, 0) + M.AdjustKnockdown(-20, 0) + M.AdjustUnconscious(-20, 0) + M.adjustStaminaLoss(-0.5*REM, 0) + +/datum/reagent/browngas + name = "Brown gas" + id = "brown_gas" + description = "A strange brown gas that makes you feel faster" + reagent_state = GAS + metabolization_rate = REAGENTS_METABOLISM + color = "90560B" + taste_description = "burning" + +/datum/reagent/browngas/on_mob_life(mob/living/M) //Has just a speedup + M.status_flags |= GOTTAGOFAST + /////////////////////////Coloured Crayon Powder//////////////////////////// //For colouring in /proc/mix_color_from_reagents diff --git a/code/modules/reagents/chemistry/recipes/slime_extracts.dm b/code/modules/reagents/chemistry/recipes/slime_extracts.dm index 62e5fd723d..27bf596df0 100644 --- a/code/modules/reagents/chemistry/recipes/slime_extracts.dm +++ b/code/modules/reagents/chemistry/recipes/slime_extracts.dm @@ -243,7 +243,7 @@ if(holder && holder.my_atom) var/turf/open/T = get_turf(holder.my_atom) if(istype(T)) - T.atmos_spawn_air("freon=50;TEMP=120") + T.atmos_spawn_air("nitrogen=50;TEMP=2.7") /datum/chemical_reaction/slime/slimefireproof name = "Slime Fireproof" diff --git a/code/modules/surgery/organs/lungs.dm b/code/modules/surgery/organs/lungs.dm index eb1be67af2..7fd1b9bf6d 100644 --- a/code/modules/surgery/organs/lungs.dm +++ b/code/modules/surgery/organs/lungs.dm @@ -95,10 +95,10 @@ var/list/breath_gases = breath.gases - breath.assert_gases(/datum/gas/oxygen, /datum/gas/plasma, /datum/gas/carbon_dioxide, /datum/gas/nitrous_oxide, /datum/gas/bz, /datum/gas/nitrogen) + breath.assert_gases(/datum/gas/oxygen, /datum/gas/plasma, /datum/gas/carbon_dioxide, /datum/gas/nitrous_oxide, /datum/gas/bz, /datum/gas/nitrogen, /datum/gas/tritium, /datum/gas/brown_gas, /datum/gas/pluoxium, /datum/gas/stimulum) //Partial pressures in our breath - var/O2_pp = breath.get_breath_partial_pressure(breath_gases[/datum/gas/oxygen][MOLES]) + var/O2_pp = breath.get_breath_partial_pressure(breath_gases[/datum/gas/oxygen][MOLES])+(8*breath.get_breath_partial_pressure(breath_gases[/datum/gas/pluoxium][MOLES])) var/N2_pp = breath.get_breath_partial_pressure(breath_gases[/datum/gas/nitrogen][MOLES]) var/Toxins_pp = breath.get_breath_partial_pressure(breath_gases[/datum/gas/plasma][MOLES]) var/CO2_pp = breath.get_breath_partial_pressure(breath_gases[/datum/gas/carbon_dioxide][MOLES]) @@ -252,9 +252,40 @@ H.adjustBrainLoss(3) else if(bz_pp > 0.01) H.hallucination += 5//Removed at 2 per tick so this will slowly build up + + + // Tritium + var/trit_pp = breath.get_breath_partial_pressure(breath_gases[/datum/gas/tritium][MOLES]) + if (trit_pp > 50) + H.radiation += trit_pp/2 //If you're breathing in half an atmosphere of radioactive gas, you fucked up. + else + H.radiation += trit_pp/10 + + //Brown Gas + var/brown_pp = breath.get_breath_partial_pressure(breath_gases[/datum/gas/brown_gas][MOLES]) + if (prob(brown_pp)) + to_chat(H, "Your mouth feels like it's burning!") + if (brown_pp >40) + H.emote("gasp") + H.adjustFireLoss(10) + if (prob(brown_pp/2)) + to_chat(H, "Your throat closes up!") + H.silent = max(H.silent, 3) + else + H.adjustFireLoss(brown_pp/4) + gas_breathed = breath_gases[/datum/gas/brown_gas][MOLES] + if (gas_breathed > GAS_STIM_MINIMUM) + H.reagents.add_reagent("brown_gas",1) + + breath_gases[/datum/gas/brown_gas][MOLES]-=gas_breathed + gas_breathed = 0 + //Stimulum + gas_breathed = breath_gases[/datum/gas/stimulum][MOLES] + if (gas_breathed > GAS_STIM_MINIMUM) + H.reagents.add_reagent("stimulum",1) + breath_gases[/datum/gas/stimulum][MOLES]-=gas_breathed handle_breath_temperature(breath, H) breath.garbage_collect() - return TRUE diff --git a/icons/effects/tile_effects.dmi b/icons/effects/tile_effects.dmi index 0bd03133ea129e9001c1543934cd92fca59c57b3..8111fef6dbea5c4fe0221f7b913148c16662afdd 100644 GIT binary patch literal 4199 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 YOh7oxnev;R`EvkRn%bCD8GFS34@zY86951J literal 2861 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 Plasma - BZ - Freon + Rare Gases Water Vapor diff --git a/tgui/src/interfaces/atmos_filter.ract b/tgui/src/interfaces/atmos_filter.ract index bb48a78891..f8b62f3908 100644 --- a/tgui/src/interfaces/atmos_filter.ract +++ b/tgui/src/interfaces/atmos_filter.ract @@ -23,8 +23,16 @@ action='filter' params='{"mode": "/datum/gas/nitrous_oxide"}'>N2O BZ - Freon + Hyper-Noblium + Brown Gas + Tritium + Stimulum + Pluoxium Water Vapor From 2b699d8d73b5a9e7e56e4b1b8e489a393b9004d9 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Fri, 27 Oct 2017 00:05:28 -0500 Subject: [PATCH 211/227] Update volume_pump.dm --- .../machinery/components/binary_devices/volume_pump.dm | 3 --- 1 file changed, 3 deletions(-) diff --git a/code/modules/atmospherics/machinery/components/binary_devices/volume_pump.dm b/code/modules/atmospherics/machinery/components/binary_devices/volume_pump.dm index 16f1f8e10d..b154c0d3e4 100644 --- a/code/modules/atmospherics/machinery/components/binary_devices/volume_pump.dm +++ b/code/modules/atmospherics/machinery/components/binary_devices/volume_pump.dm @@ -174,10 +174,7 @@ Thus, the two variables affect pump operation are set in New(): if(. && on && is_operational()) to_chat(user, "You cannot unwrench [src], turn it off first!") return FALSE -<<<<<<< HEAD else investigate_log("Volume Pump, [src.name], was unwrenched by [key_name(usr)] at [x], [y], [z], [A]", INVESTIGATE_ATMOS) message_admins("Volume Pump, [src.name], was unwrenched by [ADMIN_LOOKUPFLW(usr)] at [A]") return -======= ->>>>>>> e8c2109... Atmos construction rework again (#31944) From 4facc9c04eafe8a8afee57d83561638271aaee94 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Fri, 27 Oct 2017 00:23:13 -0500 Subject: [PATCH 212/227] Update pump.dm --- .../atmospherics/machinery/components/binary_devices/pump.dm | 3 --- 1 file changed, 3 deletions(-) diff --git a/code/modules/atmospherics/machinery/components/binary_devices/pump.dm b/code/modules/atmospherics/machinery/components/binary_devices/pump.dm index cf3c6ad551..97bba0e534 100644 --- a/code/modules/atmospherics/machinery/components/binary_devices/pump.dm +++ b/code/modules/atmospherics/machinery/components/binary_devices/pump.dm @@ -178,10 +178,7 @@ Thus, the two variables affect pump operation are set in New(): if(. && on && is_operational()) to_chat(user, "You cannot unwrench [src], turn it off first!") return FALSE -<<<<<<< HEAD else investigate_log("Pump, [src.name], was unwrenched by [key_name(usr)] at [x], [y], [z], [A]", INVESTIGATE_ATMOS) message_admins("Pump, [src.name], was unwrenched by [ADMIN_LOOKUPFLW(user)] at [A]") return TRUE -======= ->>>>>>> e8c2109... Atmos construction rework again (#31944) From 8be18696ce99c9e6005ae2e1263ee479cf6ac6eb Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 27 Oct 2017 01:16:04 -0500 Subject: [PATCH 213/227] Automatic changelog generation for PR #3611 [ci skip] --- html/changelogs/AutoChangeLog-pr-3611.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3611.yml diff --git a/html/changelogs/AutoChangeLog-pr-3611.yml b/html/changelogs/AutoChangeLog-pr-3611.yml new file mode 100644 index 0000000000..4cf47effae --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3611.yml @@ -0,0 +1,5 @@ +author: "ninjanomnom" +delete-after: True +changes: + - soundadd: "Portable generators have a sound while active." + - soundadd: "The supermatter has a sound that scales with stored energy." From 8f3dd97666aba01c6c59e6b0a840a167d0395b5d Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 27 Oct 2017 01:17:47 -0500 Subject: [PATCH 214/227] Automatic changelog generation for PR #3615 [ci skip] --- html/changelogs/AutoChangeLog-pr-3615.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3615.yml diff --git a/html/changelogs/AutoChangeLog-pr-3615.yml b/html/changelogs/AutoChangeLog-pr-3615.yml new file mode 100644 index 0000000000..ce963f647e --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3615.yml @@ -0,0 +1,4 @@ +author: "ShizCalev" +delete-after: True +changes: + - tweak: "The Staff of Change will now randomly assign a cyborg module when transforming a mob into a cyborg." From 606a711ed088a3eee328e878d3142a1ce597784c Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 27 Oct 2017 01:18:15 -0500 Subject: [PATCH 215/227] Automatic changelog generation for PR #3617 [ci skip] --- html/changelogs/AutoChangeLog-pr-3617.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3617.yml diff --git a/html/changelogs/AutoChangeLog-pr-3617.yml b/html/changelogs/AutoChangeLog-pr-3617.yml new file mode 100644 index 0000000000..23c34fe480 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3617.yml @@ -0,0 +1,4 @@ +author: "ShizCalev" +delete-after: True +changes: + - bugfix: "You will no longer be prompted to reenter your body while being defibbed if you can't actually be revived." From 5d1a061f2784c4fb55bb099a3214501971a27884 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 27 Oct 2017 01:18:49 -0500 Subject: [PATCH 216/227] Automatic changelog generation for PR #3618 [ci skip] --- html/changelogs/AutoChangeLog-pr-3618.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3618.yml diff --git a/html/changelogs/AutoChangeLog-pr-3618.yml b/html/changelogs/AutoChangeLog-pr-3618.yml new file mode 100644 index 0000000000..3b90caf60e --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3618.yml @@ -0,0 +1,4 @@ +author: "ShizCalev" +delete-after: True +changes: + - bugfix: "Lightgeists can now -actually- be spawned with gold slime cores." From 40c3094a2f6981627c189c8a94f4a81f70474329 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 27 Oct 2017 01:43:36 -0500 Subject: [PATCH 217/227] Automatic changelog generation for PR #3623 [ci skip] --- html/changelogs/AutoChangeLog-pr-3623.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3623.yml diff --git a/html/changelogs/AutoChangeLog-pr-3623.yml b/html/changelogs/AutoChangeLog-pr-3623.yml new file mode 100644 index 0000000000..5e385f17f4 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3623.yml @@ -0,0 +1,4 @@ +author: "ShizCalev" +delete-after: True +changes: + - bugfix: "Reflectors will no longer drop more materials than they took to make when deconstructed." From b5bae76272ff396c3f5d0e8e4b59dae9d24792ad Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 27 Oct 2017 01:44:18 -0500 Subject: [PATCH 218/227] Automatic changelog generation for PR #3624 [ci skip] --- html/changelogs/AutoChangeLog-pr-3624.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3624.yml diff --git a/html/changelogs/AutoChangeLog-pr-3624.yml b/html/changelogs/AutoChangeLog-pr-3624.yml new file mode 100644 index 0000000000..c98047a04c --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3624.yml @@ -0,0 +1,6 @@ +author: "Xhuis" +delete-after: True +changes: + - balance: "Clockwork marauders now move more slowly below 40% health." + - balance: "Instead of a 40% chance (or more) chance to block projectiles, clockwork marauders now have three fixed 100% blocks; after using those three, they cannot block anymore without avoiding projectiles for ten seconds. This number increases to four if war is declared." + - balance: "Projectiles that deal no damage DO reduce marauders' shield health. Use disabler shots to open them up, then use lasers to go for the kill!" From 6dbf6520e1ae9d82666cdbcde040d31d51ab538c Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 27 Oct 2017 01:47:58 -0500 Subject: [PATCH 219/227] Automatic changelog generation for PR #3641 [ci skip] --- html/changelogs/AutoChangeLog-pr-3641.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3641.yml diff --git a/html/changelogs/AutoChangeLog-pr-3641.yml b/html/changelogs/AutoChangeLog-pr-3641.yml new file mode 100644 index 0000000000..004acb1aaa --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3641.yml @@ -0,0 +1,19 @@ +author: "as334" +delete-after: True +changes: + - rscadd: "Massively Expands Atmospherics." + - rscadd: "New gases have been added:Brown Gas, Pluoxium, Stimulum, Hyper-Noblium and Tritium" + - rscadd: "Brown gas is acidic to breath, but mildly stimulation." + - rscadd: "Stimulum is more stimulating and much safer." + - rscadd: "Pluoxium is a non-reactive form of oxygen that delivers more oxygen into the bloodstream." + - rscadd: "Hyper-Noblium is an extremely noble gas, and stops gases from reacting." + - rscadd: "Tritium is radioactive and flammable." + - rscadd: "New reactions have also been added." + - rscadd: "Fusion. Plasma will fuse when heated to a high thermal energy, with tritium as a catalyst. Make +sure to manage the waste products." + - rscadd: "Brown gas formation: Heat oxygen and nitrogen." + - rscadd: "BZ fixation: Heat Tritium and Plasma." + - rscadd: "Stimulum formation: Heated tritium,plasma,bz and browns." + - rscadd: "Hyper-Noblium condensation: Needs nitrogen and tritium at a high heat. Cools rapidly." + - rscdel: "Freon has been removed." + - rscadd: "Water vapor now freezes the tile it is on when it is cooled heavily." From 0356a196fd93b51b91f756cf688463632c2429cc Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 27 Oct 2017 01:48:17 -0500 Subject: [PATCH 220/227] Automatic changelog generation for PR #3637 [ci skip] --- html/changelogs/AutoChangeLog-pr-3637.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3637.yml diff --git a/html/changelogs/AutoChangeLog-pr-3637.yml b/html/changelogs/AutoChangeLog-pr-3637.yml new file mode 100644 index 0000000000..b9dfcaecb8 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3637.yml @@ -0,0 +1,4 @@ +author: "deathride58" +delete-after: True +changes: + - bugfix: "Fixed LOOC error messages not appearing in goonchat" From 8ffa40a44ff9499f0a700aebfa6817af7886716a Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 27 Oct 2017 01:48:27 -0500 Subject: [PATCH 221/227] Automatic changelog generation for PR #3638 [ci skip] --- html/changelogs/AutoChangeLog-pr-3638.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3638.yml diff --git a/html/changelogs/AutoChangeLog-pr-3638.yml b/html/changelogs/AutoChangeLog-pr-3638.yml new file mode 100644 index 0000000000..d661f94d61 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3638.yml @@ -0,0 +1,4 @@ +author: "deathride58" +delete-after: True +changes: + - bugfix: "Miscreants will now generate properly." From f2dc4bd8c835b6f43f48836c734b1068346de794 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 27 Oct 2017 01:49:04 -0500 Subject: [PATCH 222/227] Automatic changelog generation for PR #3635 [ci skip] --- html/changelogs/AutoChangeLog-pr-3635.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3635.yml diff --git a/html/changelogs/AutoChangeLog-pr-3635.yml b/html/changelogs/AutoChangeLog-pr-3635.yml new file mode 100644 index 0000000000..99fb1d5289 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3635.yml @@ -0,0 +1,4 @@ +author: "ktccd" +delete-after: True +changes: + - rscdel: "Removed borer-HUDs" From 5c94555ccd0c9188443419fe9374bb9db51a0dab Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 27 Oct 2017 02:15:24 -0500 Subject: [PATCH 223/227] Automatic changelog generation for PR #3634 [ci skip] --- html/changelogs/AutoChangeLog-pr-3634.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3634.yml diff --git a/html/changelogs/AutoChangeLog-pr-3634.yml b/html/changelogs/AutoChangeLog-pr-3634.yml new file mode 100644 index 0000000000..3345c5ba6b --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3634.yml @@ -0,0 +1,4 @@ +author: "deathride58" +delete-after: True +changes: + - bugfix: "The vore panel and other vore-related commands are now operational again." From a5338759b75a10623c66a71edb47dfa9a7704a1b Mon Sep 17 00:00:00 2001 From: LetterJay Date: Fri, 27 Oct 2017 13:06:53 -0500 Subject: [PATCH 224/227] donation item --- code/citadel/custom_loadout/custom_items.dm | 5 +++++ icons/mob/feet.dmi | Bin 16215 -> 16425 bytes icons/obj/clothing/shoes.dmi | Bin 11400 -> 11593 bytes 3 files changed, 5 insertions(+) diff --git a/code/citadel/custom_loadout/custom_items.dm b/code/citadel/custom_loadout/custom_items.dm index 2c83912d0a..44f672e653 100644 --- a/code/citadel/custom_loadout/custom_items.dm +++ b/code/citadel/custom_loadout/custom_items.dm @@ -192,4 +192,9 @@ can_adjust = 0 +/obj/item/clothing/shoes/sneakers/pink + icon_state = "pink" + item_state = "pink" + + diff --git a/icons/mob/feet.dmi b/icons/mob/feet.dmi index 2eab8fa78eab1048ca23af738d74a00fc64588a6..de8587dba5903d1b9f6095784196b9f810518cfc 100644 GIT binary patch literal 16425 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 tm7zjrBje%v_zp0Fcz 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 g3Q?*UGw)pt8(;{2ve=PB0@#m^rh!I Date: Fri, 27 Oct 2017 15:33:23 -0500 Subject: [PATCH 225/227] Automatic changelog generation for PR #3630 [ci skip] --- html/changelogs/AutoChangeLog-pr-3630.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-3630.yml diff --git a/html/changelogs/AutoChangeLog-pr-3630.yml b/html/changelogs/AutoChangeLog-pr-3630.yml new file mode 100644 index 0000000000..0c69e04f40 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-3630.yml @@ -0,0 +1,4 @@ +author: "deathride58" +delete-after: True +changes: + - rscadd: "Admins are now able to mark open tickets as being handled. This makes it easier for staff members to provide feedback to players reporting issues via the admin help button." From 36f1aebdb5ed22e6bedc0431cdc2b0d0e4f73781 Mon Sep 17 00:00:00 2001 From: deathride58 Date: Fri, 27 Oct 2017 17:23:44 -0400 Subject: [PATCH 226/227] hard sync of sprites files missing in #3606 --- icons/obj/items_and_weapons.dmi | Bin 151700 -> 114381 bytes icons/obj/power.dmi | Bin 36770 -> 35925 bytes 2 files changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/obj/items_and_weapons.dmi b/icons/obj/items_and_weapons.dmi index b5ac65c2a84127f26b4c1fc44c975b382957bb37..636d895450b560fe6999d32d157b764ac11adf72 100644 GIT binary patch literal 114381 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

    Blob